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

:root {
  --bg: #0e0e14;
  --surface: #151520;
  --surface2: #1e1e2e;
  --border: #2a2a3e;
  --fg: #f0f0f8;
  --fg-muted: #8888a8;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  background: rgba(14, 14, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -0.5px; color: var(--fg); }
.nav-tagline { font-size: 13px; color: var(--fg-muted); letter-spacing: 0.02em; }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
  padding: 160px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat { padding: 0 40px 0 0; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.hero-stat-label { display: block; font-size: 13px; color: var(--fg-muted); margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 48px; background: var(--border); margin: 0 40px 0 0; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.metric-ring { position: relative; width: 200px; height: 200px; }
.metric-ring svg { width: 100%; height: 100%; }
.metric-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
}

/* MISSION */
.mission { padding: 100px 48px; background: var(--surface); }
.mission-inner { max-width: 800px; margin: 0 auto; }
.mission-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.mission-text { font-size: 20px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 24px; }

/* CAPABILITIES */
.capabilities { padding: 100px 48px; background: var(--bg); }
.capabilities-inner { max-width: 1200px; margin: 0 auto; }
.capabilities-header { margin-bottom: 72px; }
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--fg);
}
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.cap-card {
  background: var(--surface);
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.cap-card:hover { border-color: var(--accent); }
.cap-icon { color: var(--accent); margin-bottom: 20px; }
.cap-title { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 12px; color: var(--fg); }
.cap-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* OUTCOMES */
.outcomes { padding: 100px 48px; background: var(--surface); }
.outcomes-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.outcomes-headline { font-family: var(--font-display); font-size: 38px; font-weight: 700; letter-spacing: -1px; line-height: 1.2; color: var(--fg); margin-bottom: 20px; }
.outcomes-body { font-size: 17px; color: var(--fg-muted); line-height: 1.7; }
.outcomes-right { display: flex; flex-direction: column; gap: 20px; }
.outcome-row { display: flex; align-items: flex-start; gap: 16px; }
.outcome-check { flex-shrink: 0; margin-top: 2px; }
.outcome-text { font-size: 16px; color: var(--fg); line-height: 1.5; }

/* MANIFESTO */
.manifesto { padding: 100px 48px; background: var(--bg); }
.manifesto-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.25;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 28px;
}
.manifesto-sub { font-size: 17px; color: var(--fg-muted); }

/* CLOSING */
.closing { padding: 120px 48px; background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%); }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-sub { font-size: 18px; color: var(--fg-muted); line-height: 1.7; }

/* FOOTER */
.footer { padding: 60px 48px; background: var(--surface); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.footer-tagline { font-size: 14px; color: var(--fg-muted); margin-bottom: 8px; }
.footer-copy { font-size: 13px; color: var(--fg-muted); opacity: 0.5; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 120px 24px 60px; }
  .hero-visual { display: none; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 48px; }
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
}
@media (max-width: 600px) {
  .cap-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-stat-divider { display: none; }
}