/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --bg-panel: #141414;
  --bg-elev: #1c1c1c;
  --border: #2a2a2a;
  --border-strong: #3a3a3a;
  --text: #e8e6e1;
  --text-muted: #8a8680;
  --text-faint: #5a5852;
  --accent: #d4232c;
  --accent-dim: #8a1a20;
  --gold: #c9a961;
  --gold-dim: #8a7440;
  --max: 1180px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Subtle film-grain overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* Faint vignette */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.55) 100%);
}

main, header, footer { position: relative; z-index: 2; }

/* ---------- Type ---------- */
h1, h2, h3, h4, .display, .headline {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 0.6em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); margin-bottom: 0.4em; }
h4 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; }

p { margin-bottom: 1.1em; color: var(--text); }
p + p { margin-top: -0.2em; }

a { color: var(--accent); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #fff; }

.eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 1.2rem;
  padding-left: 18px;
  position: relative;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 12px; height: 1px;
  background: var(--accent);
}

.lede {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.5;
  color: var(--text);
  font-style: italic;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
section:last-of-type { border-bottom: none; }

/* ---------- Top masthead bar ---------- */
.masthead-bar {
  background: #000;
  border-bottom: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.masthead-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}
.masthead-bar .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2.4s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.brand .accent { color: var(--accent); }
.brand .tld { color: var(--text-muted); font-weight: 400; font-size: 0.85em; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 8px 12px;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

/* ---------- Hero ---------- */
.hero {
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(212,35,44,0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(212,35,44,0.12), transparent 50%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 980px; }
.hero h1 {
  margin-bottom: 28px;
  text-wrap: balance;
}
.hero .strike { color: var(--accent); font-style: italic; }
.hero .tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero .tagline .bar { width: 32px; height: 1px; background: var(--gold); }
.hero .intro {
  font-size: 1.15rem;
  max-width: 720px;
  color: var(--text);
  line-height: 1.7;
}
.hero .intro strong { color: #fff; font-weight: 600; }

/* ---------- Teaser cards ---------- */
.teasers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.teaser {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 36px 30px 30px;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.teaser:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.teaser .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
.teaser h3 {
  font-size: 1.55rem;
  margin-bottom: 14px;
  color: #fff;
}
.teaser p {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  flex-grow: 1;
}
.teaser .arrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: auto;
}
.teaser:hover .arrow { color: #fff; }

/* ---------- Pull quote ---------- */
.pullquote {
  background: var(--bg-panel);
  border-left: 4px solid var(--accent);
  padding: 50px 50px 50px 60px;
  margin: 80px 0 0;
  position: relative;
}
.pullquote .stat {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: #fff;
  margin-bottom: 18px;
}
.pullquote .stat .accent { color: var(--accent); }
.pullquote .stat-text {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 720px;
}
.pullquote .source {
  display: block;
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- Page header (non-home) ---------- */
.page-header {
  padding: 90px 0 60px;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(212,35,44,0.05) 0%, transparent 100%);
}
.page-header h1 { margin-bottom: 18px; max-width: 900px; text-wrap: balance; }
.page-header .lede { max-width: 760px; }

/* ---------- Proof page sections ---------- */
.proof-section {
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}
.proof-section:last-of-type { border-bottom: none; }
.proof-section .section-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.22em;
  margin-bottom: 14px;
}
.proof-section h2 { max-width: 900px; }
.proof-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 50px;
  margin-top: 30px;
  align-items: start;
}
.proof-body p { font-size: 1.02rem; }

.keyfact {
  background: #000;
  border: 1px solid var(--accent-dim);
  padding: 28px 26px;
  position: relative;
}
.keyfact::before {
  content: 'KEY FACT';
  position: absolute;
  top: -10px; left: 18px;
  background: var(--accent);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  padding: 3px 10px;
}
.keyfact .bignum {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.6rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}
.keyfact .bignum .accent { color: var(--accent); }
.keyfact p {
  font-size: 0.96rem;
  color: var(--text);
  margin-bottom: 0;
}
.keyfact .source {
  display: block;
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-faint);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- Subject dossier (portrait + facts) ---------- */
.dossier {
  margin-top: 60px;
  background: #000;
  border: 1px solid var(--border-strong);
  display: grid;
  grid-template-columns: 320px 1fr;
  position: relative;
  overflow: hidden;
}
.dossier::before {
  content: 'SUBJECT OF THE FILE';
  position: absolute;
  top: 0; left: 0;
  background: var(--accent);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  padding: 6px 12px;
  z-index: 3;
}
.dossier-portrait {
  position: relative;
  background: #111;
  overflow: hidden;
  min-height: 380px;
}
.dossier-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dossier-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%),
    radial-gradient(circle at 30% 30%, transparent 30%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
.dossier-portrait .scanlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    180deg,
    rgba(255,255,255,0.02) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
}
.dossier-meta {
  padding: 50px 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dossier-meta .name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.dossier-meta .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.dossier-facts {
  list-style: none;
  border-top: 1px solid var(--border);
  margin-top: 6px;
}
.dossier-facts li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
  align-items: baseline;
}
.dossier-facts .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.dossier-facts .value strong { color: #fff; font-weight: 600; }
.dossier-facts .value .accent { color: var(--accent); font-weight: 700; }

@media (max-width: 760px) {
  .dossier { grid-template-columns: 1fr; }
  .dossier-portrait { min-height: 320px; }
  .dossier-meta { padding: 36px 26px; }
  .dossier-meta .name { font-size: 1.7rem; }
  .dossier-facts li { grid-template-columns: 90px 1fr; gap: 12px; }
}

/* ---------- Rigged games grid ---------- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 22px;
  margin-top: 20px;
}
.game-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 0;
  cursor: pointer;
  transition: border-color 0.25s ease;
  overflow: hidden;
}
.game-card:hover { border-color: var(--accent); }

.game-card .game-head {
  padding: 24px 26px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}
.game-card .game-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.25;
}
.game-card .year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  white-space: nowrap;
  padding-top: 4px;
}
.game-card .game-body {
  padding: 22px 26px;
}
.game-card .what-happened {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 16px;
}
.game-card .why-suspicious {
  border-top: 1px dashed var(--border-strong);
  padding-top: 16px;
  display: none;
}
.game-card .why-suspicious .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}
.game-card .why-suspicious p {
  font-size: 0.94rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.game-card.expanded .why-suspicious { display: block; }
.game-card .expand-toggle {
  display: block;
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.game-card .expand-toggle:hover { color: #fff; }

/* ---------- By the Numbers ---------- */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.stat-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 40px 36px;
}
.stat-card.full { grid-column: 1 / -1; }
.stat-card .stat-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 18px;
}
.stat-card .stat-number {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  line-height: 0.95;
  color: #fff;
  margin-bottom: 10px;
}
.stat-card .stat-number .accent { color: var(--accent); }
.stat-card .stat-number .small {
  font-size: 0.4em;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 6px;
  letter-spacing: 0;
}
.stat-card .stat-label {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 18px;
  max-width: 520px;
}
.stat-card .stat-source {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Bar viz */
.bar-viz { margin-top: 24px; }
.bar-row {
  display: grid;
  grid-template-columns: 110px 1fr 70px;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
}
.bar-row .bar-label { color: var(--text-muted); letter-spacing: 0.08em; }
.bar-row .bar-track {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  height: 22px;
  position: relative;
  overflow: hidden;
}
.bar-row .bar-fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
}
.bar-row .bar-val { color: #fff; font-weight: 600; text-align: right; }

/* Series-length viz */
.series-viz {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.series-cell {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: 22px 18px;
  text-align: center;
}
.series-cell .games {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}
.series-cell .pct {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2rem;
  color: #fff;
}
.series-cell.long {
  background: rgba(212,35,44,0.08);
  border-color: var(--accent-dim);
}
.series-cell.long .pct { color: var(--accent); }

/* ---------- Action page ---------- */
.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.action-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 36px 30px;
}
.action-card .num {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  margin-bottom: 16px;
}
.action-card h3 { font-size: 1.45rem; margin-bottom: 14px; }
.action-card ul {
  list-style: none;
  margin-top: 14px;
}
.action-card li {
  padding: 10px 0 10px 22px;
  position: relative;
  font-size: 0.96rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.action-card li:last-child { border-bottom: none; }
.action-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #000;
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.share-btn:hover { border-color: var(--accent); color: #fff; background: rgba(212,35,44,0.08); }

.closing-statement {
  margin-top: 90px;
  padding: 70px 50px;
  background: #000;
  border-top: 4px solid var(--accent);
  text-align: center;
}
.closing-statement .display {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  max-width: 880px;
  margin: 0 auto 24px;
  text-wrap: balance;
}
.closing-statement .display .accent { color: var(--accent); }
.closing-statement p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-muted);
  font-style: italic;
}

/* ---------- Conversation starters ---------- */
.starters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.starter {
  background: var(--bg-panel);
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
}

/* ---------- Footer ---------- */
footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
  margin-top: 0;
}
footer .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: start;
}
footer .brand-block .brand { font-size: 1.6rem; margin-bottom: 12px; }
footer .brand-block .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
footer .disclaimer {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 22px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
footer .disclaimer strong { color: var(--text); display: block; margin-bottom: 6px; font-family: 'JetBrains Mono', monospace; font-size: 0.74rem; letter-spacing: 0.18em; }
footer .copyline {
  grid-column: 1 / -1;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: var(--text-faint);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 500px; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a {
    display: block;
    padding: 18px 28px;
    border-bottom: none;
  }
  .nav-links a:hover, .nav-links a.active { background: rgba(212,35,44,0.08); }

  .teasers, .action-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; gap: 30px; }
  .numbers-grid { grid-template-columns: 1fr; }
  .series-viz { grid-template-columns: repeat(2, 1fr); }
  .starters { grid-template-columns: 1fr; }
  footer .container { grid-template-columns: 1fr; }

  .pullquote { padding: 36px 30px; }
  .closing-statement { padding: 50px 30px; }
  .hero { padding: 70px 0 60px; }
  section { padding: 60px 0; }
  .masthead-bar .container { font-size: 0.62rem; }
  .masthead-bar .right { display: none; }
}

@media (max-width: 480px) {
  .bar-row { grid-template-columns: 80px 1fr 60px; gap: 10px; font-size: 0.74rem; }
}
