/* ============================================================
   COMPARED TO WHAT? — Global Styles
   Data journalism aesthetic · Dark professional theme
   ============================================================ */

:root {
  --bg: #04060a;
  --bg-2: #0a0c10;
  --bg-3: #10121a;
  --bg-card: rgba(212, 160, 86, 0.016);
  --border: rgba(212, 160, 86, 0.08);
  --border-accent: rgba(212, 160, 86, 0.3);
  --text: #e6edf3;
  --text-muted: #8b949e;
  --text-dim: #5a5e6a;
  --accent: #d4a056;
  --accent-dim: rgba(212, 160, 86, 0.15);
  --accent-glow: rgba(212, 160, 86, 0.08);
  --negative: #ff4444;
  --positive: #44cc88;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Rajdhani', 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  --max-w: 1100px;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================================ TYPOGRAPHY */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; }
h1 { font-family: var(--font-display); }
h2 {
  font-family: var(--font-display);
  background: linear-gradient(135deg, #fff, #f0d8b0, #d4a056);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent {
  color: transparent;
  background: linear-gradient(135deg, #d4a056, #f0d8b0);
  -webkit-background-clip: text;
  background-clip: text;
}

a { color: var(--accent); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }

/* ============================================================ LAYOUT */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }

/* ============================================================ NAV */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(4, 6, 10, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

/* ============================================================ HERO */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 160, 86, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-author {
  max-width: var(--max-w);
  margin: 0 auto 32px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-accent);
  object-fit: cover;
}

.hero-author-text {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.hero-author-text strong {
  color: var(--text);
  font-weight: 600;
}

.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff, #f0d8b0, #d4a056);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 32px;
}

.hero-sub {
  font-size: clamp(14px, 1.2vw, 17px);
  color: var(--text-muted);
  max-width: 800px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hero-sub:last-of-type {
  margin-bottom: 48px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.9rem 2.5rem;
  background: transparent;
  border: 1px solid rgba(212, 160, 86, 0.4);
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.hero-cta:hover {
  background: rgba(212, 160, 86, 0.1);
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(212, 160, 86, 0.15);
  opacity: 1;
  color: var(--accent);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================================ THE CASE SECTION */
.the-case-section {
  padding: 60px 0 20px;
  background: var(--bg);
}

.the-case-title {
  font-size: clamp(20px, 2vw, 28px);
  margin-bottom: 24px;
  text-align: center;
}

.the-case-content {
  max-width: 820px;
  margin: 0 auto;
}

.the-case-lead {
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 16px;
}

.the-case-body {
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.the-case-body em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

.the-case-body:last-child {
  margin-bottom: 0;
}

/* ============================================================ JFK VIDEO SECTION */
.jfk-section {
  padding: 12px 0 80px;
  background: var(--bg);
}

.jfk-intro {
  max-width: 820px;
  margin: 0 auto 36px;
}

.jfk-intro p {
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.jfk-intro p:last-child {
  margin-bottom: 0;
}

.jfk-staircase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px 32px;
}

.jfk-step-video-left {
  grid-column: 1;
  grid-row: 1 / 2;
}

.jfk-step-quote-left {
  grid-column: 2;
  grid-row: 1 / 2;
  align-self: end;
}

.jfk-step-video-right {
  grid-column: 2;
  grid-row: 2 / 3;
}

.jfk-step-quote-right {
  grid-column: 1;
  grid-row: 2 / 3;
  align-self: start;
}

.jfk-video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-accent);
  box-shadow: 0 0 60px rgba(212, 160, 86, 0.08);
  aspect-ratio: 16 / 9;
}

.jfk-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jfk-step-quote {
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  background: rgba(212, 160, 86, 0.03);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.jfk-step-quote p {
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

.jfk-step-quote .accent-text {
  color: var(--accent);
  font-weight: 600;
  font-style: normal;
}

.jfk-step-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: normal;
  letter-spacing: 0.02em;
}

.jfk-parallel {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.jfk-parallel p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: center;
}

.jfk-parallel em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

.closing-quote {
  margin: 32px auto;
  border-left-width: 2px;
  max-width: 800px;
}

@media (max-width: 700px) {
  .jfk-staircase {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .jfk-step-video-left { grid-column: 1; grid-row: auto; }
  .jfk-step-quote-left { grid-column: 1; grid-row: auto; }
  .jfk-step-video-right { grid-column: 1; grid-row: auto; }
  .jfk-step-quote-right { grid-column: 1; grid-row: auto; order: 4; }
}

/* ============================================================ ENEMIES GRID */
.enemies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.enemy-card {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.enemy-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 0 40px rgba(212, 160, 86, 0.06);
}

.enemy-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.enemy-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.enemy-stat {
  font-size: 0.95rem;
  color: var(--text);
  padding: 10px 14px;
  background: rgba(212, 160, 86, 0.06);
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 2px solid var(--accent);
}

.enemy-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.enemy-card .sources-inline {
  font-size: 0.75rem;
}

.enemies-thesis {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 0;
}

.enemies-thesis-big {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 20px;
}

.enemies-thesis-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

@media (max-width: 700px) {
  .enemies-grid {
    grid-template-columns: 1fr;
  }
  .jfk-step-quote {
    padding: 24px 20px;
  }
}

/* ============================================================ FRAMEWORK */
#framework {
  padding: 60px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.framework-grid {
  display: flex;
  align-items: center;
  gap: 24px;
}

.framework-item {
  flex: 1;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.framework-num {
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.framework-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.framework-arrow {
  font-size: 1.5rem;
  color: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ============================================================ SECTION HEADERS */
.section-header {
  margin-bottom: 64px;
}

.section-label {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-intro {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* ============================================================ CTW BADGE */
.ctw-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.ctw-badge.large {
  font-size: 1.05rem;
  padding: 8px 16px;
}

/* ============================================================ CHART BLOCKS */
.chart-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 40px;
  transition: border-color 0.3s;
}

.chart-block:hover {
  border-color: rgba(212, 160, 86, 0.2);
}

.chart-header h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.chart-note {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.chart-wrap {
  position: relative;
  height: 300px;
  margin-bottom: 28px;
}

.chart-wrap-tall {
  height: 380px;
}

.chart-verdict {
  padding: 16px 20px;
  background: var(--accent-glow);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 12px;
}

.sources-inline {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.7;
}

/* ============================================================ COMPARISON CARDS */
.comparison-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.comparison-cards.triple {
  grid-template-columns: repeat(3, 1fr);
}

.comp-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.comp-card:hover {
  border-color: rgba(212, 160, 86, 0.2);
  transform: translateY(-3px);
}

.comp-card.highlight {
  border-color: var(--border-accent);
  background: rgba(212, 160, 86, 0.05);
}

.comp-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.comp-label {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.4;
}

.comp-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.comp-value.negative {
  color: var(--negative);
}

.comp-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================================ NUCLEAR TIMELINE */
#nuclear {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.nuclear-timeline {
  position: relative;
  padding-left: 40px;
  margin-bottom: 60px;
}

.nuclear-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-2);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  min-width: 60px;
  padding-top: 2px;
  letter-spacing: -0.03em;
}

.timeline-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================ CALLOUT BLOCK */
.callout-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.callout-left h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.callout-left p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.callout-left p strong { color: var(--text); }

.callout-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.callout-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.callout-stat-label {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================ PARALLEL BOX */
.parallel-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
}

.parallel-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.parallel-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.parallel-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.parallel-item:last-child { border-bottom: none; }

.parallel-then {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.parallel-now {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.4;
}

.parallel-arrow {
  color: var(--accent);
  opacity: 0.6;
  font-size: 1rem;
  text-align: center;
}

.parallel-conclusion {
  margin-top: 20px;
  padding: 16px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  font-size: 1.05rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
}

/* ============================================================ LINEAR CALLOUT */
.linear-callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  margin: 40px 0;
  text-align: center;
}

.linear-callout h3 {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.linear-big {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--text);
}

.linear-callout > .linear-content > p:not(.linear-big) {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.linear-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.linear-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.linear-item-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.linear-item-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.linear-item-text strong { color: var(--text); }

/* ============================================================ ALL-IN BLOCK */
.allin-block {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
}

.allin-header {
  padding: 32px 40px 0;
}

.allin-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 24px 40px 40px;
}

.allin-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.allin-text p:last-child { margin-bottom: 0; }
.allin-text strong { color: var(--text); }

.allin-scale {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.scale-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scale-label {
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.scale-bar {
  height: 8px;
  border-radius: 100px;
  transition: width 1s ease-out;
}

.scale-item.bad .scale-label { color: var(--text-muted); }
.scale-item.bad .scale-bar { background: var(--text-muted); }

.scale-item.worst .scale-label { color: var(--negative); }
.scale-item.worst .scale-bar { background: var(--negative); }

.scale-item.good .scale-label { color: var(--positive); }
.scale-item.good .scale-bar { background: var(--positive); }

.scale-outcome {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.scale-outcome strong { color: var(--text); }

/* ============================================================ CLOSING */
#closing {
  background: var(--bg-2);
  text-align: center;
  border-top: 1px solid var(--border);
}

.closing-content {
  max-width: 760px;
  margin: 0 auto;
}

.closing-content h2 {
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.closing-big {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.ctw-final {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 40px 0;
  text-shadow: 0 0 80px rgba(212, 160, 86, 0.3);
}

.closing-body {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  text-align: left;
}

/* ============================================================ SOURCES */
#sources {
  border-top: 1px solid var(--border);
}

.sources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.source-category h4 {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}

.source-category ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.source-category li {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 12px;
  border-left: 2px solid var(--border);
  transition: border-color 0.2s;
}

.source-category li:hover {
  border-left-color: var(--accent);
}

.source-category em {
  font-style: italic;
  color: var(--text);
}

/* ============================================================ AUTHOR & DISCLAIMER */
.author-footer {
  text-align: center;
  padding: 5rem 2rem 3rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, #020407 100%);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.author-footer a {
  color: var(--accent);
  text-decoration: none;
}

.author-footer a:hover {
  text-decoration: underline;
  opacity: 1;
}

.footer-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--border-accent);
  margin-bottom: 1.25rem;
  object-fit: cover;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.footer-title {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.footer-links {
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  max-width: 640px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-disclaimer-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-disclaimer-text {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.footer-disclaimer-text strong {
  color: var(--text-muted);
  font-weight: 600;
}

.footer-compiled {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* ============================================================ FOOTER */
#footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.footer-left p, .footer-right p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.footer-small { opacity: 0.6; font-size: 1rem !important; margin-top: 4px; }

/* ============================================================ JUMP NAVIGATION */
.crit-jump-nav {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 48px;
}

.crit-jump-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.crit-jump-link:hover {
  border-color: var(--accent);
  color: var(--text);
  opacity: 1;
}

.crit-jump-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.6;
  min-width: 22px;
}

/* ============================================================ CRITICISM BLOCKS (expandable) */
.crit-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.crit-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s;
}

.crit-block:nth-child(even) {
  background: rgba(212, 160, 86, 0.032);
}

.crit-block:hover,
.crit-block[open] {
  border-color: rgba(212, 160, 86, 0.2);
}

.crit-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.crit-summary::-webkit-details-marker { display: none; }

.crit-number {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.5;
  min-width: 32px;
}

.crit-topic {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  flex: 1;
  min-width: 0;
}

.crit-key-stat {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  white-space: nowrap;
  margin-left: auto;
}

.crit-key-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
  margin-left: 6px;
}

.crit-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, border-color 0.2s;
  position: relative;
}

.crit-toggle::before,
.crit-toggle::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  border-radius: 1px;
  transition: transform 0.3s;
}

.crit-toggle::before {
  width: 12px;
  height: 2px;
}

.crit-toggle::after {
  width: 2px;
  height: 12px;
}

.crit-block[open] .crit-toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

.crit-block[open] .crit-toggle {
  border-color: var(--accent);
}

.crit-body {
  padding: 0 28px 28px;
  border-top: 1px solid var(--border);
  margin: 0 28px;
  padding-top: 24px;
}

.crit-context {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.crit-context strong { color: var(--text); }

/* Big stat row inside criticism body */
.crit-big-stat-row {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.crit-big-stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.crit-big-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.crit-big-num.accent { color: var(--accent); }
.crit-big-num.positive { color: var(--positive); }
.crit-big-num.negative { color: var(--negative); }

.crit-big-label {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Mini timeline (vertical, compact) */
.mini-timeline {
  position: relative;
  padding-left: 28px;
  margin-bottom: 24px;
}

.mini-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--border), var(--accent));
}

.mini-timeline-item {
  position: relative;
  padding: 10px 0;
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.mini-timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  border: 2px solid var(--bg-card);
}

.mini-timeline-item.highlight::before {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(212, 160, 86, 0.4);
}

.mini-timeline-item.highlight {
  padding: 12px 16px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  margin-left: -8px;
}

.mini-timeline-year {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  min-width: 50px;
  letter-spacing: -0.02em;
}

.mini-timeline-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.mini-timeline-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-left: 4px;
}

/* Scale bars inside crit-body reuse .allin-scale */
.crit-body .allin-scale {
  margin-bottom: 24px;
}

/* Chart blocks inside crit-body */
.crit-body .chart-block {
  margin-bottom: 24px;
  background: var(--bg-3);
}

.crit-body .comparison-cards {
  margin-bottom: 24px;
}

.crit-body .parallel-box {
  margin-bottom: 24px;
}

.crit-body .chart-verdict {
  margin-bottom: 12px;
}

.crit-body .sources-inline {
  margin-top: 8px;
}

/* ============================================================ DATA CENTER FEATURES */
.dc-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.dc-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.3s;
}

.dc-feature:hover {
  border-color: rgba(212, 160, 86, 0.2);
}

.dc-feature-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.dc-feature-stat {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.dc-feature-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================ SPACE SECTION */
.space-section {
  margin-top: 60px;
}

.space-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.space-benefit {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s;
}

.space-benefit:hover {
  border-color: rgba(212, 160, 86, 0.2);
}

.space-benefit .comp-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.space-benefit h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.space-benefit p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* NIMBY callout */
.nimby-callout {
  background: var(--bg-card);
  border: 1px solid rgba(255, 68, 68, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 48px;
}

.nimby-callout h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--negative);
  letter-spacing: -0.02em;
}

.nimby-callout p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.nimby-callout p:last-child { margin-bottom: 0; }
.nimby-callout strong { color: var(--text); }

/* Nuclear-powered AI callout */
.nuclear-ai-callout {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 40px 0;
}

.nuclear-ai-callout h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.nuclear-ai-callout p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.nuclear-ai-callout p:last-child { margin-bottom: 0; }
.nuclear-ai-callout strong { color: var(--text); }

/* Space timeline */
.space-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.space-timeline-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.space-timeline-item .timeline-year {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.space-timeline-item p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================ SECTION DIVIDER */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4a056, transparent);
  border: none;
  margin: 0;
}

/* ============================================================ SCROLL REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grid containers */
.framework-grid .framework-item { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ============================================================ RESPONSIVE */
@media (max-width: 900px) {
  .framework-grid {
    flex-direction: column;
  }
  .framework-arrow {
    transform: rotate(90deg);
  }
  .callout-block {
    grid-template-columns: 1fr;
  }
  .allin-content {
    grid-template-columns: 1fr;
  }
  .sources-grid {
    grid-template-columns: 1fr;
  }
  .comparison-cards.triple {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .crit-jump-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .crit-key-stat {
    font-size: 1.3rem;
  }
  .dc-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .space-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .space-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  section { padding: 72px 0; }
}

@media (max-width: 600px) {
  .linear-grid {
    grid-template-columns: 1fr;
  }
  .callout-stat-row {
    grid-template-columns: 1fr;
  }
  .chart-block {
    padding: 24px 20px;
  }
  .linear-callout {
    padding: 36px 24px;
  }
  .allin-content {
    padding: 20px 24px 28px;
  }
  .allin-header {
    padding: 24px 24px 0;
  }
  .footer-inner {
    flex-direction: column;
  }
  .footer-avatar {
    width: 80px;
    height: 80px;
  }
  .comparison-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .dc-feature-grid {
    grid-template-columns: 1fr;
  }
  .space-benefits {
    grid-template-columns: 1fr 1fr;
  }
  .space-timeline {
    grid-template-columns: 1fr;
  }
  .nimby-callout,
  .nuclear-ai-callout {
    padding: 24px;
  }
  .crit-jump-nav {
    grid-template-columns: 1fr;
  }
  .crit-summary {
    padding: 20px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .crit-body {
    padding: 0 20px 20px;
    margin: 0 20px;
  }
  .crit-big-stat-row {
    gap: 16px;
  }
  .crit-big-num {
    font-size: 2rem;
  }
  .mini-timeline-item.highlight {
    margin-left: 0;
  }
}
