:root {
  --bg: #faf8f5;
  --fg: #0d1b2a;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --navy: #0d1b2a;
  --muted: #64748b;
  --border: #e2ddd8;
  --card-bg: #ffffff;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1200px; margin: 0 auto; width: 100%; }
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-logo-accent { color: var(--accent); }

/* Hero */
.hero {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-graphic {
  margin-top: 12px;
  filter: drop-shadow(0 24px 48px rgba(13,27,42,0.3));
}
.hero-graphic svg { display: block; }
.hero-stats {
  background: var(--navy);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-stat { padding: 20px 0; }
.hero-stat-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero-stat-label {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
  line-height: 1.4;
}
.hero-divider { height: 1px; background: rgba(255,255,255,0.08); }
.hero-note {
  margin-top: 24px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}

/* Manifesto */
.manifesto {
  background: var(--navy);
  padding: 100px 40px;
}
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.manifesto-sub {
  font-size: 17px;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 640px;
}

/* Features */
.features {
  background: var(--bg);
  padding: 100px 40px;
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 600px;
  margin-bottom: 60px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--card-bg);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature-card:hover { background: #f5f0ea; }
.feature-icon { margin-bottom: 20px; }
.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Outcomes */
.outcomes {
  background: #f0ebe4;
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.outcomes-inner { max-width: 800px; margin: 0 auto; }
.outcomes-list { display: flex; flex-direction: column; gap: 0; }
.outcome {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.outcome:last-child { border-bottom: none; }
.outcome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}
.outcome-text {
  font-size: 17px;
  color: var(--fg);
  line-height: 1.65;
}
.outcome-text strong { font-weight: 600; }

/* Closing */
.closing {
  background: var(--fg);
  padding: 120px 40px;
  text-align: center;
}
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.closing-sub {
  font-size: 18px;
  color: #94a3b8;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Footer */
.footer {
  background: var(--fg);
  padding: 32px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.7); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.3); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { order: -1; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 44px; }
  .hero-stat-number { font-size: 28px; }
  .manifesto, .features, .outcomes, .closing { padding: 60px 24px; }
}