:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #16161f;
  --fg: #e8e8ed;
  --fg-dim: #8888a0;
  --accent: #00ff88;
  --accent-glow: rgba(0, 255, 136, 0.15);
  --accent-secondary: #7b61ff;
  --border: #1e1e2a;
  --red: #ff4444;
  --yellow: #ffcc00;
  --green: #00ff88;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-display);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 24px 60px;
  position: relative;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 255, 136, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(123, 97, 255, 0.04) 0%, transparent 50%),
    var(--bg);
}

.hero-grid {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(0, 255, 136, 0.2);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.accent { color: var(--accent); }

.lede {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--fg-dim);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* TERMINAL */
.hero-visual { margin-top: 16px; }

.terminal {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 13px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: var(--red); }
.dot.yellow { background: var(--yellow); }
.dot.green { background: var(--green); }

.terminal-title {
  color: var(--fg-dim);
  font-size: 12px;
  margin-left: 8px;
}

.terminal-body {
  padding: 20px;
  line-height: 2;
}

.line { color: var(--fg-dim); }
.prompt { color: var(--accent); font-weight: 500; }
.cmd { color: var(--fg); }
.output { padding-left: 16px; }
.success { color: var(--accent); font-weight: 500; }
.cursor {
  color: var(--accent);
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* STATS */
.stats {
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-card {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-dim);
  margin-top: 8px;
  line-height: 1.4;
}

/* HOW IT WORKS */
.how {
  padding: 100px 24px;
}

.how-inner {
  max-width: 720px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent-secondary);
  margin-bottom: 16px;
}

.how h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
  padding-top: 2px;
}

.step-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--fg-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* NICHES */
.niches {
  padding: 100px 24px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(123, 97, 255, 0.06) 0%, transparent 60%),
    var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.niches-inner {
  max-width: 960px;
  margin: 0 auto;
}

.niches h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.niche-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  transition: border-color 0.2s;
}

.niche-card:hover {
  border-color: rgba(123, 97, 255, 0.3);
}

.niche-icon {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--accent-secondary);
  margin-bottom: 14px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123, 97, 255, 0.1);
  border-radius: 8px;
}

.niche-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.niche-rpm {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 10px;
}

.niche-card p {
  color: var(--fg-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
    var(--bg);
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.closing-text {
  color: var(--fg-dim);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.closing-sig {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.5px;
}

/* FOOTER */
.site-footer {
  padding: 32px 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.footer-note {
  font-size: 0.8rem;
  color: var(--fg-dim);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-card:not(:last-child)::after {
    display: none;
  }

  .niche-grid {
    grid-template-columns: 1fr;
  }

  .step {
    flex-direction: column;
    gap: 12px;
  }

  .hero {
    padding-top: 60px;
  }

  .terminal {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding: 48px 16px 40px; }
  .stats { padding: 48px 16px; }
  .how { padding: 64px 16px; }
  .niches { padding: 64px 16px; }
  .closing { padding: 80px 16px; }
}