:root {
  --bg: #0A1628;
  --surface: #0F1E33;
  --fg: #F8F6F0;
  --fg-muted: #8898A8;
  --accent: #F59E0B;
  --accent-dim: #C47A08;
  --border: rgba(248,246,240,0.08);
}

* { 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: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--fg);
}
.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 80px 48px 64px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-left {
  max-width: 680px;
  margin-bottom: 56px;
}
.hero-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 20px;
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 540px;
}

.hero-stats {
  display: flex;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  width: fit-content;
}
.stat {
  padding: 28px 40px;
  background: var(--surface);
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* SECTION LABELS */
.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--fg);
  line-height: 1.2;
  max-width: 640px;
  margin-bottom: 48px;
}

/* HOW IT WORKS */
.how {
  padding: 80px 48px;
  background: var(--surface);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.workflow {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}
.step {
  flex: 1;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
}
.step-num {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.step h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 28px;
  flex-shrink: 0;
}
.how-note {
  font-size: 15px;
  color: var(--fg-muted);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  max-width: 560px;
  line-height: 1.6;
}

/* DIFFERENCE */
.diff {
  padding: 80px 48px;
}
.diff-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.diff-col {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.diff-col h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.diff-col p {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 14px;
}
.diff-label-old {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}
.diff-callout {
  padding: 32px 40px;
  background: var(--accent);
  border-radius: 4px;
}
.diff-callout h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--bg);
}

/* OUTCOMES */
.outcomes {
  padding: 80px 48px;
  background: var(--surface);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.outcome {
  padding: 28px;
}
.outcome-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.outcome h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.outcome p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* MANIFESTO */
.manifesto {
  padding: 80px 48px;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}
.manifesto-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 80px 48px;
  background: var(--surface);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--fg);
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav, .hero, .how, .diff, .outcomes, .manifesto, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero { padding-top: 56px; padding-bottom: 48px; }
  .hero-left { margin-bottom: 40px; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }
  .workflow { flex-direction: column; }
  .step-arrow { display: none; }
  .diff-grid { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
}