:root {
  --bg: #0f1117;
  --bg-secondary: #161922;
  --bg-card: #1c1f2a;
  --fg: #f0f0f0;
  --fg-muted: #8b8f9e;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(255,255,255,0.07);
  --radius: 10px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.02em;
}
header nav { display: flex; gap: 28px; }
header nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
header nav a:hover { color: var(--fg); }

/* Hero */
.hero {
  position: relative;
  padding: 100px 32px 96px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-text h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--fg);
}
.lede {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
}
.hero-pillars {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.pillar {
  border-left: 1px solid var(--border);
  padding-left: 24px;
}
.pillar-num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 6px;
}
.pillar h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.pillar p {
  font-size: 14px;
  color: var(--fg-muted);
}
.hero-bg-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Capabilities */
.capabilities {
  background: var(--bg-secondary);
  padding: 88px 32px;
}
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 40px;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cap-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.25s;
}
.cap-card:hover { border-color: rgba(245,158,11,0.3); }
.cap-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.cap-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.cap-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* Manifesto */
.manifesto {
  padding: 96px 32px;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 32px;
}
.manifesto-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Outcomes */
.outcomes {
  background: var(--accent-dim);
  padding: 80px 32px;
  border-top: 1px solid rgba(245,158,11,0.15);
  border-bottom: 1px solid rgba(245,158,11,0.15);
}
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcome-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.outcome { text-align: center; }
.stat {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* Closing */
.closing {
  padding: 112px 32px;
}
.closing-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.15;
  margin-bottom: 28px;
}
.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-inner .wordmark { font-size: 16px; }
.tagline { font-size: 13px; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-row { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .stat { font-size: 42px; }
}
@media (max-width: 600px) {
  .hero { padding: 64px 20px 72px; }
  .capabilities { padding: 64px 20px; }
  .cap-grid { grid-template-columns: 1fr; }
  .outcomes { padding: 60px 20px; }
  .outcome-row { grid-template-columns: 1fr; gap: 32px; }
  .closing { padding: 72px 20px; }
  header nav { display: none; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}