:root {
  --bg: #09090e;
  --surface: #111118;
  --surface2: #18181f;
  --fg: #f4f4f6;
  --fg-muted: #8b8b99;
  --accent: #c8f83a;
  --accent-dim: rgba(200, 248, 58, 0.12);
  --border: rgba(255,255,255,0.07);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1100px;
  --gutter: 48px;
}

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

html { font-size: 16px; }

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

/* Navbar */
.navbar {
  padding: 22px var(--gutter);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--gutter) 90px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 600;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 720px;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 580px;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 36px;
}
.stat:first-child { padding-left: 0; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 120px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Section commons */
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}
.section-eyebrow.light { color: rgba(200,248,58,0.6); }
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 600px;
}
.section-headline.light { color: var(--fg); }

/* How It Works */
.howitworks {
  background: var(--surface);
  padding: 80px var(--gutter);
}
.steps-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step { }
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 20px;
}
.step-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}
.step-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* Features */
.features {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--gutter);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature { }
.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,248,58,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.feature-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* Results */
.results {
  background: var(--surface);
  padding: 90px var(--gutter);
}
.results-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.results-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 56px;
}
.results-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.result-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.result-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--fg-muted);
}

/* Closing */
.closing {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px var(--gutter);
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px var(--gutter);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 4px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-muted);
  opacity: 0.5;
  margin-top: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  :root { --gutter: 20px; }
  .hero { padding: 48px var(--gutter) 60px; }
  .hero-headline { font-size: 2.2rem; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; gap: 28px; }
  .results-stats { grid-template-columns: 1fr; gap: 32px; }
  .closing { padding: 64px var(--gutter); }
  .howitworks, .features, .results { padding: 60px var(--gutter); }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.9rem; }
  .stat-value { font-size: 1.6rem; }
  .result-num { font-size: 2rem; }
}