:root {
  --bg: #0a0f0a;
  --surface: #111711;
  --surface-2: #181f18;
  --fg: #e8f0e8;
  --fg-muted: #8a9e8a;
  --accent: #4a9c5a;
  --accent-bright: #6fc77a;
  --gold: #c9a84c;
  --border: #2a3a2a;
  --pos: #4a9c5a;
  --neg: #c96a4c;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* ── NAV ─────────────────────────────────── */
.nav {
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  border-left: 1px solid var(--border);
  padding-left: 20px;
}

/* ── HERO ─────────────────────────────────── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px 80px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── AHJ TABLE ────────────────────────────── */
.ahj-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 96px;
}
.ahj-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.ahj-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.ahj-row {
  display: grid;
  grid-template-columns: 2fr 1fr 80px 1.2fr 80px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  align-items: center;
  gap: 12px;
}
.ahj-row:last-child { border-bottom: none; }
.ahj-row.ahj-header {
  background: var(--surface-2);
  color: var(--fg-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ahj-name { font-weight: 500; color: var(--fg); }
.ahj-score {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-bright);
}
.ahj-pos { color: var(--pos); font-weight: 600; font-size: 0.875rem; }
.ahj-neg { color: var(--neg); font-weight: 600; font-size: 0.875rem; }
.ahj-footnote {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 12px;
  text-align: right;
}

/* ── PHILOSOPHY ──────────────────────────── */
.philosophy {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 48px;
  background: var(--surface);
}
.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}
.section-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.75;
}
.philosophy-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}
.stat-block { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--fg-muted); }

/* ── OUTCOMES ───────────────────────────── */
.outcomes {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
}
.outcomes-header { margin-bottom: 56px; }
.outcome-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.outcome-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.outcome-metric {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.outcome-type {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-bright);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.outcome-detail {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.outcome-scores { display: flex; flex-wrap: wrap; gap: 8px; }
.score-chip {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--fg-muted);
}

/* ── OPS ─────────────────────────────────── */
.ops {
  border-top: 1px solid var(--border);
  padding: 96px 48px;
  background: var(--surface);
}
.ops-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.ops-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.ops-item {
  background: var(--bg);
  padding: 32px 28px;
}
.ops-num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-bright);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.ops-item h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.ops-item p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.ops-tags {
  font-size: 0.7rem;
  color: var(--fg-muted);
  line-height: 1.6;
  opacity: 0.7;
}

/* ── CLOSING ─────────────────────────────── */
.closing {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── FOOTER ──────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
}
.footer-meta { font-size: 0.8rem; color: var(--fg-muted); }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-tag { display: none; }
  .hero { padding: 64px 24px 48px; }
  .ahj-section { padding: 0 24px 64px; }
  .ahj-row { grid-template-columns: 1fr 80px 60px; gap: 8px; }
  .ahj-row span:nth-child(2),
  .ahj-row span:nth-child(4) { display: none; }
  .philosophy { padding: 64px 24px; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 48px; }
  .outcomes { padding: 64px 24px; }
  .outcome-cards { grid-template-columns: 1fr; }
  .ops { padding: 64px 24px; }
  .ops-grid { grid-template-columns: 1fr 1fr; }
  .closing { padding: 64px 24px; }
  .footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 8px; }
}
@media (max-width: 600px) {
  .ops-grid { grid-template-columns: 1fr; }
}