:root {
  --bg: #16161d;
  --surface: #1e1e28;
  --surface2: #26262f;
  --fg: #e8e8f0;
  --fg-muted: #8888a0;
  --accent: #00e5c4;
  --amber: #f59e0b;
  --border: rgba(255,255,255,0.06);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1100px; margin: 0 auto; }
.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-logo .accent { color: var(--accent); }

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 2rem 5rem;
  border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2rem;
  max-width: 700px;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
  font-weight: 300;
}
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 0.25rem; }
.hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.hero-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* PROOF */
.proof {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.proof-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  white-space: nowrap;
  font-weight: 500;
}
.proof-logos {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.proof-logo {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: -0.01em;
  opacity: 0.6;
}

/* HOW */
.how {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
  border-bottom: 1px solid var(--border);
}
.how-header { margin-bottom: 4rem; }
.how-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 500px;
  line-height: 1.2;
}
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.how-step:last-child { border-bottom: none; }
.how-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 0.35rem;
}
.how-step-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.how-step-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
  max-width: 480px;
}

/* FEATURES */
.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
  border-bottom: 1px solid var(--border);
}
.features-header { margin-bottom: 4rem; }
.features-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.features-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 300;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feature-card {
  background: var(--bg);
  padding: 2rem;
}
.feature-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.feature-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.feature-body {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* OUTCOMES */
.outcomes {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.outcomes-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}
.outcome {
  background: var(--surface);
  padding: 2rem;
  text-align: center;
}
.outcome-metric {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.outcome-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
  font-weight: 300;
}
.outcomes-cta-line {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 400;
  text-align: center;
  padding-top: 1rem;
}

/* CLOSING */
.closing {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 2rem;
  border-bottom: 1px solid var(--border);
}
.closing-inner { max-width: 600px; }
.closing-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* FOOTER */
.footer {
  background: var(--surface);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--fg);
}
.footer-logo .accent { color: var(--accent); }
.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .hero-stat-row { gap: 1.5rem; }
  .hero-divider { display: none; }
  .how-step { grid-template-columns: 1fr; gap: 0.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-inner { flex-direction: column; gap: 1rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .how { padding: 4rem 1.5rem; }
  .features { padding: 4rem 1.5rem; }
  .outcomes-inner { padding: 4rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .hero-headline { font-size: 2.25rem; }
}