:root {
  --bg: #0f1117;
  --bg-2: #161922;
  --bg-3: #1c1f2e;
  --fg: #f0f2f7;
  --fg-2: #9aa0b4;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.15);
  --border: rgba(255,255,255,0.07);
  --font-body: 'DM Sans', sans-serif;
  --font-display: 'Syne', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-2);
  letter-spacing: 0.02em;
}

/* Section shared */
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 680px;
}

/* Hero */
.hero {
  padding: 80px 32px 96px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-2);
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  padding: 12px 18px;
}
.hero-stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 14px;
  color: var(--fg-2);
}

/* Funnel widget */
.funnel-widget {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.funnel-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-3);
  border-radius: 8px;
  font-size: 14px;
  color: var(--fg);
  font-weight: 500;
}
.funnel-step--result {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--accent);
  font-weight: 600;
}
.funnel-icon {
  color: var(--fg-2);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.funnel-step--result .funnel-icon { color: var(--accent); }
.funnel-arrow {
  display: flex;
  justify-content: center;
  color: var(--fg-2);
  padding: 2px 0;
}

/* What section */
.what { padding: 80px 32px; border-bottom: 1px solid var(--border); }
.what-inner { max-width: 1100px; margin: 0 auto; }
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.what-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.what-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.what-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.what-card p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
}

/* How section */
.how { padding: 80px 32px; border-bottom: 1px solid var(--border); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step { display: flex; flex-direction: column; gap: 12px; }
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
  letter-spacing: -0.04em;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.step p { font-size: 14px; color: var(--fg-2); line-height: 1.65; }

/* Niches section */
.niches { padding: 80px 32px; border-bottom: 1px solid var(--border); }
.niches-inner { max-width: 1100px; margin: 0 auto; }
.niches-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.niche-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.niche-item:nth-child(2n) { border-right: none; }
.niche-item:nth-last-child(-n+2) { border-bottom: none; }
.niche-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
}
.niche-signal {
  font-size: 13px;
  color: var(--fg-2);
}
.niches-note {
  font-size: 13px;
  color: var(--fg-2);
  margin-top: 20px;
  font-style: italic;
}

/* Closing */
.closing { padding: 96px 32px; text-align: center; }
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 20px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 16px;
}
.closing-cta {
  display: inline-block;
  margin-top: 8px;
}

/* Pricing CTA */
.pricing-cta {
  padding: 96px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.pricing-cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.pricing-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 36px;
}
.pricing-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
  text-align: left;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--fg);
  font-weight: 500;
}
.pricing-feature svg { color: var(--accent); flex-shrink: 0; }
.pricing-btn {
  display: inline-block;
  background: var(--accent);
  color: #0f1117;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.pricing-btn:hover { opacity: 0.88; }
.pricing-cta-note {
  font-size: 13px;
  color: var(--fg-2);
  margin-top: 16px;
}

/* Primary button (shared) */
.btn-primary {
  background: var(--accent);
  color: #0f1117;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { opacity: 0.88; }

/* Footer */
.footer { padding: 32px; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--fg);
}
.footer-desc {
  font-size: 13px;
  color: var(--fg-2);
  margin-top: 4px;
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-2);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-illustration { order: -1; }
  .what-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .niches-list { grid-template-columns: 1fr; }
  .niche-item { border-right: none; border-bottom: 1px solid var(--border); }
  .niche-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .niche-item:last-child { border-bottom: none; }
  .footer-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
  .hero { padding: 56px 24px 64px; }
  .what, .how, .niches { padding: 56px 24px; }
  .closing { padding: 64px 24px; }
}