:root {
  --bg: #F8F6F0;
  --fg: #1A1A1A;
  --accent: #1B4332;
  --accent-mid: #2D6A4F;
  --accent-light: #40916C;
  --amber: #B45309;
  --text-muted: #6B6B6B;
  --border: #E2DDD5;
  --card-bg: #FFFFFF;
  --signal-hot: #DC2626;
  --signal-warm: #B45309;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--accent); }
.nav-tagline { font-size: 13px; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 48px 96px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-mid);
  font-weight: 500;
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  font-size: 11px;
  padding: 5px 12px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* DATA VIZ */
.data-viz {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 32px rgba(27,67,50,0.07);
}
.viz-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 20px;
}
.signal-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.signal-row:last-of-type { border-bottom: none; }
.signal-hot .signal-dot { background: var(--signal-hot); }
.signal-alert .signal-dot { background: var(--amber); }
.signal-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #ccc;
  margin-top: 6px; flex-shrink: 0;
}
.signal-text { font-size: 13px; line-height: 1.5; color: var(--fg); }
.viz-footer { margin-top: 16px; font-size: 12px; color: var(--text-muted); text-align: right; }
.viz-footer strong { color: var(--accent); }

/* MANIFESTO */
.manifesto { background: var(--accent); padding: 80px 48px; }
.manifesto-inner { max-width: 840px; margin: 0 auto; }
.manifesto-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
  margin-bottom: 20px;
}
.manifesto-attribution { font-size: 13px; color: rgba(255,255,255,0.5); }

/* SECTION TITLE */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 48px;
}

/* FEATURES */
.features { padding: 80px 48px; max-width: 1280px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.feature-icon { color: var(--accent-mid); margin-bottom: 16px; }
.feature-title { font-size: 17px; font-weight: 500; color: var(--fg); margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* PROCESS */
.process { padding: 80px 48px; background: #F0EDE6; }
.process .section-title { max-width: 1280px; margin: 0 auto 48px; }
.process-steps { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.step-num { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--accent); line-height: 1; padding-top: 4px; }
.step-title { font-size: 18px; font-weight: 500; color: var(--fg); margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* OUTCOMES */
.outcomes { padding: 80px 48px; max-width: 1280px; margin: 0 auto; }
.outcomes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.outcome-item { text-align: center; }
.outcome-metric { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 10px; }
.outcome-label { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* CLOSING */
.closing { background: var(--accent); padding: 96px 48px; }
.closing-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  line-height: 1.2;
}
.closing-body { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7; }

/* FOOTER */
.footer { padding: 32px 48px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--accent); }
.footer-copy { font-size: 13px; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 48px 24px 64px; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { grid-template-columns: 48px 1fr; }
  .nav { padding: 16px 24px; }
  .manifesto, .features, .process, .outcomes, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .footer { flex-direction: column; gap: 8px; text-align: center; }
}