:root {
  --bg: #0b0b0b;
  --surface: #141414;
  --surface2: #1c1c1c;
  --gold: #c9a84c;
  --gold-dim: #8a6f32;
  --text: #f0ece4;
  --text-dim: #7a766c;
  --text-muted: #4a4740;
  --border: #252520;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;
  /* Scenario comparison colors */
  --scenario-plus: #5ba85b;
  --scenario-minus: #8a6060;
}

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

html { scroll-behavior: smooth; }

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

/* ——— NAV ——— */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
  padding: 8px 18px;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.04em;
}
.nav-cta:hover {
  background: var(--gold);
  color: #0b0b0b;
}
.nav-tagline {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 400;
}

/* ——— HERO ——— */
.hero {
  padding: 80px 60px 90px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-lede {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 480px;
  font-weight: 300;
  margin-bottom: 32px;
}
.hero-btn {
  display: inline-block;
  background: var(--gold);
  color: #0b0b0b;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 16px 32px;
  border-radius: 3px;
  transition: opacity 0.15s;
}
.hero-btn:hover { opacity: 0.88; }
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 32px;
}
.card-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.card-figure {
  font-family: var(--ff-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.card-sub {
  font-size: 13px;
  color: var(--text-muted);
}
.hero-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 24px;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ——— MANIFESTO ——— */
.manifesto {
  padding: 80px 60px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}
.manifesto-mark {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
}
.manifesto-quote {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 28px;
}
.manifesto-body {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 620px;
  font-weight: 300;
}

/* ——— HOW ——— */
.how {
  padding: 80px 60px;
  border-bottom: 1px solid var(--border);
}
.how-inner { max-width: 1200px; }
.how-header { margin-bottom: 56px; }
.how-title {
  font-family: var(--ff-display);
  font-size: 38px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.how-sub {
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 300;
}
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { padding: 32px; background: var(--surface); border: 1px solid var(--border); border-radius: 4px; }
.step-num {
  font-family: var(--ff-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.step-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.75;
  font-weight: 300;
}

/* ——— OUTCOMES ——— */
.outcomes {
  padding: 80px 60px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.outcomes-inner { max-width: 1200px; }
.outcomes-header { margin-bottom: 48px; }
.outcomes-title {
  font-family: var(--ff-display);
  font-size: 38px;
  font-weight: 400;
  color: var(--text);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.outcome {
  background: var(--bg);
  padding: 40px 40px;
}
.outcome-icon {
  color: var(--gold);
  margin-bottom: 20px;
}
.outcome-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.outcome-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.75;
  font-weight: 300;
}

/* ——— CLOSING ——— */
.closing {
  padding: 100px 60px;
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing-body {
  font-family: var(--ff-display);
  font-size: 24px;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

/* ——— FOOTER ——— */
.footer {
  padding: 40px 60px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-name {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.footer-desc { font-size: 13px; color: var(--text-muted); }
.footer-meta { font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; }

/* ——— RESPONSIVE ——— */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-aside { width: 100%; }
  .how-steps { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 20px 28px; }
  .hero { padding: 56px 28px 64px; }
  .manifesto { padding: 56px 28px; }
  .how { padding: 56px 28px; }
  .outcomes { padding: 56px 28px; }
  .closing { padding: 64px 28px; }
  .footer { padding: 32px 28px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .hero-stat-row { grid-template-columns: 1fr; }
}