:root {
  --bg: #0e0e10;
  --surface: #17171a;
  --border: #2a2a2e;
  --fg: #f0ede6;
  --fg-muted: #8a8680;
  --accent: #c8873a;
  --accent-bright: #e8a94b;
  --amber: #c8873a;
}

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

html { scroll-behavior: smooth; }

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 {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(14,14,16,0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  font-weight: 300;
}

/* ── HERO ── */
.hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-headline em {
  font-style: italic;
  color: var(--amber);
}
.hero-lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 520px;
  font-weight: 300;
}
.hero-stats {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.stat-block {
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
  font-weight: 300;
}

/* ── OUTCOMES ── */
.outcomes {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.outcome-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  transition: border-color 0.2s ease;
}
.outcome-card:hover {
  border-color: var(--accent);
}
.outcome-icon {
  margin-bottom: 20px;
}
.outcome-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.outcome-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── FEATURES ── */
.features {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.features-header {
  max-width: 600px;
  margin-bottom: 56px;
}
.features-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: 16px;
  font-weight: 300;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feature-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.feature-row:last-child {
  border-bottom: none;
}
.feature-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  color: var(--accent-bright);
  padding-top: 4px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.feature-content p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
  max-width: 600px;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 96px 0;
  background: #0b0b0d;
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.manifesto-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.4;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 28px;
  letter-spacing: -0.3px;
}
.manifesto-attribution {
  font-size: 15px;
  color: var(--fg-muted);
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.manifesto-attribution em {
  font-style: normal;
  color: var(--amber);
}

/* ── CLOSING ── */
.closing {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  max-width: 780px;
}
.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 32px;
  letter-spacing: -0.8px;
}
.closing-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* ── FOOTER ── */
.footer {
  padding: 48px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 8px;
}
.footer-sub {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 24px;
}
.footer-copy {
  font-size: 12px;
  color: #555;
  font-weight: 300;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .stat-block {
    flex: 1 1 140px;
  }
  .stat-number { font-size: 32px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 48px 1fr; gap: 16px; }
  .hero { padding: 64px 0 56px; }
  .outcomes, .features, .manifesto, .closing { padding: 64px 0; }
}
@media (max-width: 480px) {
  .hero-inner, .outcomes-inner, .features-inner, .manifesto-inner, .closing-inner { padding: 0 20px; }
  .manifesto-quote { font-size: 22px; }
  .closing-headline { font-size: 28px; }
}