:root {
  --bg: #111118;
  --surface: #1a1924;
  --fg: #f0ede6;
  --fg-muted: #9a9285;
  --accent: #b8703a;
  --accent-dim: rgba(184, 112, 58, 0.15);
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ─── NAV ─── */
.site-nav {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid rgba(240, 237, 230, 0.08);
}
.wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  color: var(--fg);
}
.nav-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── HERO ─── */
.hero {
  padding: 80px 48px 64px;
  max-width: 860px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── STATS ROW ─── */
.stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 40px 48px;
  border-top: 1px solid rgba(240, 237, 230, 0.08);
  border-bottom: 1px solid rgba(240, 237, 230, 0.08);
  overflow-x: auto;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 40px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.4;
  max-width: 130px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(240, 237, 230, 0.12);
  margin-right: 40px;
  flex-shrink: 0;
}

/* ─── SECTION SHARED ─── */
.section-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--fg);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

/* ─── HOW IT WORKS ─── */
.how-section {
  padding: 80px 48px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.step {
  background: var(--surface);
  padding: 36px 40px;
}
.step-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 12px;
}
.step p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ─── OUTCOMES ─── */
.outcomes-section {
  padding: 80px 48px;
  background: var(--surface);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.outcome {
  padding: 36px 40px;
  background: var(--bg);
}
.outcome-icon {
  margin-bottom: 20px;
}
.outcome h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 10px;
}
.outcome p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ─── CLOSING ─── */
.closing-section {
  padding: 96px 48px;
  max-width: 700px;
}
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

/* ─── FOOTER ─── */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-top: 1px solid rgba(240, 237, 230, 0.08);
}
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--fg);
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .site-nav { padding: 20px 24px; }
  .hero { padding: 56px 24px 48px; }
  .stats-row { padding: 32px 24px; gap: 0; overflow-x: auto; }
  .stat { padding-right: 24px; }
  .stat-divider { margin-right: 24px; }
  .how-section, .outcomes-section { padding: 56px 24px; }
  .steps-grid, .outcomes-grid { grid-template-columns: 1fr; }
  .closing-section { padding: 64px 24px; }
  .site-footer { padding: 24px; flex-direction: column; gap: 8px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .stat-num { font-size: 1.5rem; }
  .step, .outcome { padding: 28px 24px; }
}
