:root {
  --navy: #0F1F2E;
  --navy-mid: #162535;
  --amber: #F59E0B;
  --amber-dim: #D97706;
  --cream: #F8F5F0;
  --cream-dark: #EDE9E0;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* Navigation */
.nav {
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--cream-dark);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--cream-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber-dim);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 42ch;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(15, 31, 46, 0.15);
}

/* How */
.how {
  background: var(--cream-dark);
  padding: 5rem 3rem;
}
.how-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.section-sub {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
}
.how-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.how-card {
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
}
.how-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1.25rem;
}
.how-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.how-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Outcomes */
.outcomes {
  padding: 5rem 3rem;
  background: var(--navy);
}
.outcomes-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.outcomes-stat {
  text-align: center;
  padding: 0 2rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--amber);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(248, 245, 240, 0.6);
  line-height: 1.5;
  font-weight: 300;
}
.outcomes-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.1);
}

/* Manifesto */
.manifesto {
  padding: 5rem 3rem;
  background: var(--cream);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--navy);
  font-style: italic;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.manifesto-attr {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 500;
}

/* Closing */
.closing {
  padding: 6rem 3rem;
  background: var(--navy-mid);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.closing-body {
  font-size: 1.05rem;
  color: rgba(248, 245, 240, 0.65);
  font-weight: 300;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 2rem 3rem;
  border-top: 1px solid rgba(15, 31, 46, 0.1);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem 2rem; }
  .hero-img { height: 260px; }
  .hero-lede { max-width: 100%; }
  .how-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 2rem; }
  .outcomes-divider { display: none; }
  .nav { padding: 1.25rem 1.5rem; }
  .how, .outcomes, .manifesto, .closing { padding: 3.5rem 1.5rem; }
  .footer { padding: 1.5rem; }
}
@media (max-width: 500px) {
  .hero-headline { font-size: 2rem; }
  .stat-num { font-size: 2.5rem; }
}