/* ═══════════════════════════════════════════════════════════
   Senator Balkema · Data Hub · Shared Stylesheet
   Design: Polished Magazine / Editorial — Dark-first
   ═══════════════════════════════════════════════════════════ */

/* ─── VARIABLES ─────────────────────────────────────────────── */
:root {
  --navy:        #0d2448;
  --navy-light:  #1a3560;
  --navy-dark:   #08162e;
  --page-bg:     #05101e;
  --section-a:   #07111f;
  --section-b:   #0a1625;
  --gold:        #c9a227;
  --gold-light:  #e8c45a;
  --gold-dim:    rgba(201,162,39,0.15);
  --steel:       #2a4a7f;
  --ice:         #e8eef6;
  --charcoal:    #1c1c2e;
  --red-alert:   #b91c1c;
  --green-ok:    #166534;
  --text-main:   #1a1a2e;
  --text-muted:  #4a5568;
  /* Per-topic accent — override in each page <style> block */
  --topic-color:       var(--gold);
  --topic-color-light: var(--gold-light);

  --appbar-h: 52px;

  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --t-std:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ─── FOCUS VISIBILITY ───────────────────────────────────────────
   Keyboard-focus indicator, shown only for keyboard/AT navigation
   (not mouse clicks), since :focus-visible is used rather than
   :focus. Gold reads clearly against the dark chrome (appbar,
   hero, footer, sources-band); inside light `.section` content,
   the same gold ring falls below the 3:1 contrast minimum against
   white, so it's swapped for a high-contrast dark ring there. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
.section :focus-visible {
  outline-color: #16232f;
}
body {
  font-family: 'Barlow', sans-serif;
  background: var(--page-bg);
  color: rgba(255,255,255,0.82);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; }

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50%       { transform: translateY(6px) translateX(-50%); }
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── READING PROGRESS BAR ───────────────────────────────────── */
.reading-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width 0.12s linear;
}

/* ═══════════════════════════════════════════════════════════
   HUB APP BAR — replaces full site nav
   Minimal: ← All Topics  |  ⚡ Topic Name  |  Topics ▾
   ═══════════════════════════════════════════════════════════ */
.hub-appbar {
  position: sticky; top: 0; z-index: 500;
  height: var(--appbar-h);
  background: rgba(5, 16, 30, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,162,39,0.22);
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
  display: flex; align-items: center;
  padding: 0 1.5rem;
  gap: 0;
}

.appbar-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-light);
  padding: 7px 14px;
  border: 1px solid rgba(201,162,39,0.28);
  border-radius: 3px;
  flex-shrink: 0;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.appbar-back:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,162,39,0.07);
}

.appbar-sep {
  width: 1px; height: 24px;
  background: rgba(255,255,255,0.1);
  margin: 0 1.2rem;
  flex-shrink: 0;
}

.appbar-topic {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.appbar-topic-icon {
  font-size: 1.05rem; line-height: 1;
}
.appbar-topic-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: white;
}
.appbar-topic-context {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-right: 4px;
}

.appbar-spacer { flex: 1; min-width: 0; }

/* Topics dropdown */
.appbar-topics {
  position: relative; flex-shrink: 0;
}
.appbar-topics-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  background: none; border: none;
  padding: 6px 10px; cursor: pointer;
  transition: color var(--t-fast);
}
.appbar-topics-btn:hover { color: rgba(255,255,255,0.75); }

.appbar-topics-menu {
  display: none;
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 220px;
  background: var(--navy-dark);
  border: 1px solid rgba(201,162,39,0.2);
  border-top: 2px solid var(--gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  animation: fadeUp 0.15s var(--ease) both;
}
.appbar-topics:hover .appbar-topics-menu,
.appbar-topics:focus-within .appbar-topics-menu { display: block; }

.appbar-topics-menu li a,
.appbar-topics-menu li span {
  display: block;
  padding: 10px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  border-left: 2px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.appbar-topics-menu li:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.06); }
.appbar-topics-menu li.topic-live a { color: white; }
.appbar-topics-menu li.topic-current a { color: var(--gold-light); }
.appbar-topics-menu li a:hover {
  color: var(--gold-light);
  border-left-color: var(--gold);
  background: rgba(255,255,255,0.04);
}
.appbar-topics-menu li.topic-soon span { opacity: 0.32; cursor: default; }

/* Mobile: hamburger for appbar */
.appbar-hamburger {
  display: none; flex-direction: column; gap: 4px;
  background: none; padding: 6px; margin-left: 8px;
}
.appbar-hamburger span {
  display: block; width: 20px; height: 2px;
  background: rgba(255,255,255,0.58); border-radius: 2px;
  transition: transform var(--t-std), opacity var(--t-std);
}
.appbar-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.appbar-hamburger.open span:nth-child(2) { opacity: 0; }
.appbar-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.appbar-mobile-menu {
  display: none;
  position: fixed; top: var(--appbar-h); left: 0; right: 0;
  background: var(--navy-dark);
  border-bottom: 2px solid var(--gold);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 499;
  animation: fadeUp 0.18s var(--ease) both;
}
.appbar-mobile-menu.open { display: block; }
.appbar-mobile-menu a,
.appbar-mobile-menu span {
  display: block; padding: 11px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.appbar-mobile-menu a.topic-live { color: rgba(255,255,255,0.88); }
.appbar-mobile-menu a.topic-current { color: var(--gold-light); }
.appbar-mobile-menu a:hover { color: var(--gold-light); padding-left: 6px; }
.appbar-mobile-menu span { opacity: 0.28; cursor: default; }
.appbar-mobile-section {
  font-size: 0.6rem; color: var(--gold);
  padding: 1rem 0 0.3rem; border-bottom: none !important; opacity: 1 !important;
}

@media (max-width: 580px) {
  .appbar-topics { display: none; }
  .appbar-hamburger { display: flex; }
  .appbar-topic-name { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   HERO — Capitol photo, dark editorial treatment
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  min-height: 86vh;
  display: flex; align-items: flex-end;
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Deep dark gradient — left to right, bottom to top */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right,  rgba(5,16,30,0.92) 35%, rgba(5,16,30,0.40) 100%),
    linear-gradient(to top,    rgba(5,16,30,0.80) 0%,  transparent 55%);
}

/* Subtle dark grid texture */
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* Gold radial glow top-right */
.hero-accent {
  position: absolute; right: -80px; top: -80px; z-index: 1;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--appbar-h) + 3rem) 2rem 5rem;
}

.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.6rem;
  animation: fadeUp 0.5s var(--ease) both;
}
.hero-label::before {
  content: '';
  display: block; width: 36px; height: 2px;
  background: var(--gold); flex-shrink: 0;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900; color: white; line-height: 1.0;
  margin-bottom: 1.4rem;
  animation: fadeUp 0.5s var(--ease) 0.09s both;
}
.hero-title em { color: var(--gold); font-style: normal; }

.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.58);
  line-height: 1.80; max-width: 560px;
  margin-bottom: 2.8rem;
  animation: fadeUp 0.5s var(--ease) 0.18s both;
}

/* TOC inside hero — keeps the useful "what's on this page" box */
.hero-toc {
  animation: fadeUp 0.5s var(--ease) 0.26s both;
  background: rgba(13, 36, 72, 0.60);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201,162,39,0.25);
  border-top: 2px solid var(--gold);
  border-radius: 4px; padding: 1.6rem;
  max-width: 720px;
}
.hero-toc-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.hero-toc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.toc-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 0.55rem 0.7rem 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none; border-radius: 3px;
  transition: background var(--t-fast);
}
.toc-item:nth-child(odd) { padding-right: 1.2rem; }
.toc-item:last-child,
.toc-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.toc-item:hover { background: rgba(255,255,255,0.05); }
.toc-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 800;
  color: var(--gold); flex-shrink: 0; width: 22px; margin-top: 1px;
}
.toc-title { font-size: 0.82rem; color: rgba(255,255,255,0.88); font-weight: 600; line-height: 1.25; }
.toc-sub { font-size: 0.67rem; color: rgba(255,255,255,0.48); margin-top: 2px; line-height: 1.3; }

/* Scroll cue */
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.28);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.15em; font-weight: 600;
  animation: float 2.8s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); }

@media (max-width: 760px) {
  .hero { min-height: 75vh; }
  .hero-toc-grid { grid-template-columns: 1fr; }
  .hero-content { padding-bottom: 4rem; }
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 26px; border-radius: 3px;
  transition: background var(--t-std), transform var(--t-std), box-shadow var(--t-std);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,162,39,0.35);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.25);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 26px; border-radius: 3px;
  transition: border-color var(--t-std), color var(--t-std), background var(--t-std);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(201,162,39,0.06); }

/* ─── SECTION SHELLS ─────────────────────────────────────────── */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--section-b); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-header { margin-bottom: 3.2rem; }

/* Editorial section number — big, prominent, gold */
.section-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.28em; color: var(--gold);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 0.8rem;
}
.section-number::after {
  content: '';
  flex: 0 0 48px; height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(201,162,39,0));
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 900; color: white; line-height: 1.08;
}
.section-title em { color: var(--gold); font-style: normal; }

.section-desc {
  font-size: 0.98rem; color: rgba(255,255,255,0.52);
  line-height: 1.75; max-width: 680px;
  margin-top: 0.9rem;
}

/* Gold rule divider between hero and sections */
.divider {
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(201,162,39,0.2), transparent);
}

/* Band dividers between sections — editorial chapter break */
.band {
  background: var(--navy);
  border-top: 1px solid rgba(201,162,39,0.15);
  border-bottom: 1px solid rgba(201,162,39,0.15);
  padding: 3.5rem 2rem;
  text-align: center; position: relative; overflow: hidden;
}
.band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,162,39,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(13,36,72,0.5) 0%, transparent 55%);
}
.band h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2rem);
  color: white; position: relative; margin-bottom: 0.55rem; line-height: 1.1;
}
.band p {
  color: rgba(255,255,255,0.50);
  font-size: 0.95rem; position: relative;
  max-width: 640px; margin: 0 auto; line-height: 1.7;
}
.band .gold { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════════════════════ */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute; left: 110px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,162,39,0.2), var(--gold));
}
.timeline-item {
  display: flex; gap: 2rem; align-items: flex-start;
  margin-bottom: 2.5rem;
  opacity: 0; transform: translateX(-24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.timeline-item.visible { opacity: 1; transform: translateX(0); }
.timeline-year {
  flex: 0 0 80px; text-align: right;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 800;
  color: var(--gold); padding-top: 6px; line-height: 1.2;
}
.timeline-dot {
  flex: 0 0 44px; display: flex;
  align-items: flex-start; justify-content: center; padding-top: 8px;
}
.timeline-dot-inner {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--section-a); border: 3px solid var(--gold);
  position: relative; z-index: 1;
  transition: transform var(--t-std), background var(--t-std);
}
.timeline-item:last-child .timeline-dot-inner { background: var(--gold); }
.timeline-item:hover .timeline-dot-inner { transform: scale(1.4); background: var(--gold); }
.timeline-content {
  flex: 1;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid rgba(201,162,39,0.3);
  border-radius: 0 4px 4px 0;
  padding: 1.2rem 1.5rem;
  transition: border-left-color var(--t-std), background var(--t-std);
}
.timeline-item:hover .timeline-content { border-left-color: var(--gold); background: rgba(255,255,255,0.07); }
.timeline-content p { font-size: 0.93rem; line-height: 1.65; color: rgba(255,255,255,0.72); }
.timeline-content strong { color: white; }

/* ═══════════════════════════════════════════════════════════
   SPLIT COMPARE (Distributor vs Producer)
   ═══════════════════════════════════════════════════════════ */
.split-compare {
  display: grid; grid-template-columns: 1fr 56px 1fr;
  gap: 0; align-items: stretch;
}
.split-col {
  padding: 2.5rem;
  background: rgba(13,36,72,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px 0 0 6px;
}
.split-col.right {
  background: rgba(42,74,127,0.45);
  border-radius: 0 6px 6px 0;
}
.split-divider {
  background: var(--gold); display: flex;
  align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.6rem; font-weight: 800;
  color: var(--navy); writing-mode: vertical-rl;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.split-tag {
  font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900;
  color: white; margin-bottom: 0.3rem; line-height: 1.1;
}
.split-head {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.3rem; text-transform: uppercase;
}
.split-sub { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 1.4rem; font-style: italic; }
.split-list { list-style: none; }
.split-list li {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.78); font-size: 0.9rem; line-height: 1.55;
  padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.split-list li:last-child { border-bottom: none; }
.split-list li::before { content: '▸'; color: var(--gold); flex-shrink: 0; font-size: 0.75rem; margin-top: 2px; }
.split-list li strong { color: white; }

@media (max-width: 760px) {
  .split-compare { grid-template-columns: 1fr; }
  .split-col { border-radius: 6px !important; }
  .split-divider { writing-mode: horizontal-tb; padding: 0.75rem; height: 40px; border-radius: 0; }
}

/* ═══════════════════════════════════════════════════════════
   PJM / MISO TABLE CARDS
   ═══════════════════════════════════════════════════════════ */
.rto-table-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.rto-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; overflow: hidden;
}
.rto-card-header {
  background: rgba(13,36,72,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.rto-card-header h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 800; color: white;
}
.rto-badge {
  background: var(--gold); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; font-weight: 800;
  padding: 3px 10px; border-radius: 2px; letter-spacing: 0.1em;
}
.rto-rows { padding: 0 1.5rem 1.5rem; }
.rto-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); gap: 1rem;
}
.rto-row:last-child { border-bottom: none; }
.rto-row-label { font-size: 0.8rem; color: rgba(255,255,255,0.42); font-weight: 500; flex: 1; }
.rto-row-val { font-size: 0.88rem; color: rgba(255,255,255,0.78); font-weight: 600; text-align: right; max-width: 200px; }
.rto-row-val.highlight { color: var(--gold-light); font-weight: 700; }

@media (max-width: 720px) { .rto-table-wrap { grid-template-columns: 1fr; } }

/* ─── RTO MAP CARD ───────────────────────────────────────────── */
.rto-map-card {
  border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.rto-map-header {
  background: rgba(13,36,72,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.rto-map-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 800; color: white; }
.rto-map-note { font-size: 0.78rem; color: var(--gold-light); font-style: italic; }
.rto-map-body { background: rgba(255,255,255,0.03); padding: 1rem; }

/* ═══════════════════════════════════════════════════════════
   BILL BREAKDOWN
   ═══════════════════════════════════════════════════════════ */
.bill-breakdown-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; overflow: hidden; margin-top: 2rem;
}
.bill-breakdown-head {
  background: rgba(13,36,72,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.4rem 2rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.bill-breakdown-head h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 800; color: white;
}
.bill-breakdown-body { padding: 1.8rem 2rem; }

.bill-meter {
  display: flex; height: 34px; border-radius: 4px; overflow: hidden; margin-bottom: 1.2rem;
}
.bill-meter-supply {
  background: linear-gradient(90deg, var(--navy), var(--steel));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 800;
  color: white; letter-spacing: 0.08em;
}
.bill-meter-delivery {
  background: linear-gradient(90deg, #3b6cb7, #5a8ed6);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 800;
  color: white; letter-spacing: 0.08em;
}

.bill-breakdown-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.bill-breakdown-col h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 800;
  color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.8rem;
}
.bill-breakdown-col ul { list-style: none; }
.bill-breakdown-col ul li {
  font-size: 0.87rem; color: rgba(255,255,255,0.62); line-height: 1.55;
  padding: 0.4rem 0 0.4rem 1.1rem; position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.bill-breakdown-col ul li:last-child { border-bottom: none; }
.bill-breakdown-col ul li::before {
  content: ''; position: absolute; left: 0; top: 0.78rem;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}

.ares-warning {
  margin-top: 1.2rem; padding: 0.75rem 1rem;
  background: rgba(185,28,28,0.12); border-left: 3px solid var(--red-alert);
  border-radius: 0 4px 4px 0; font-size: 0.85rem; color: rgba(255,255,255,0.72); line-height: 1.6;
}
.ares-warning strong { color: #f87171; }

@media (max-width: 640px) { .bill-breakdown-cols { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   DEREGULATION FACTS GRID
   ═══════════════════════════════════════════════════════════ */
.dereg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2rem; }
.dereg-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid rgba(201,162,39,0.4);
  border-radius: 6px; padding: 1.4rem;
  transition: border-top-color var(--t-std), background var(--t-std);
}
.dereg-card:hover { border-top-color: var(--gold); background: rgba(255,255,255,0.07); }
.dereg-card-icon { font-size: 1.4rem; margin-bottom: 0.6rem; }
.dereg-card-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 800;
  color: white; margin-bottom: 0.4rem; line-height: 1.2;
}
.dereg-card-body { font-size: 0.85rem; color: rgba(255,255,255,0.50); line-height: 1.6; }

@media (max-width: 700px) { .dereg-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .dereg-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   KEY LEGISLATION CARDS
   ═══════════════════════════════════════════════════════════ */
.key-leg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.key-leg-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; overflow: hidden;
}
.key-leg-card-top {
  background: rgba(13,36,72,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 2rem; position: relative; overflow: hidden;
}
.key-leg-card-top::before {
  content: ''; position: absolute; right: -30px; top: -30px;
  width: 120px; height: 120px;
  background: rgba(201,162,39,0.1); border-radius: 50%;
}
.key-leg-act {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.62rem; font-weight: 800;
  color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.4rem;
}
.key-leg-name {
  font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 700;
  color: white; line-height: 1.15; margin-bottom: 0.5rem;
}
.key-leg-date { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.key-leg-body { padding: 1.8rem; }
.key-leg-body ul { list-style: none; }
.key-leg-body ul li {
  padding: 0.5rem 0 0.5rem 1.2rem; position: relative;
  font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.key-leg-body ul li:last-child { border-bottom: none; }
.key-leg-body ul li::before {
  content: ''; position: absolute; left: 0; top: 0.92rem;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.key-leg-body ul li strong { color: rgba(255,255,255,0.88); font-weight: 600; }

@media (max-width: 720px) { .key-leg-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   CURRENT LEGISLATION BILL CARDS
   ═══════════════════════════════════════════════════════════ */
.leg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.4rem; }
.leg-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid rgba(201,162,39,0.3);
  border-radius: 6px; overflow: hidden;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease),
              border-top-color var(--t-std), background var(--t-std);
}
.leg-card.visible { opacity: 1; transform: translateY(0); }
.leg-card:hover { border-top-color: var(--gold); background: rgba(255,255,255,0.07); }
.leg-card-head { padding: 1.4rem 1.5rem 0; }
.leg-bill {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase;
  background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.2);
  display: inline-block; padding: 2px 10px; border-radius: 2px; margin-bottom: 0.6rem;
}
.leg-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700;
  color: white; line-height: 1.2;
}
.leg-body { padding: 0.8rem 1.5rem 1.5rem; }
.leg-body p { font-size: 0.87rem; color: rgba(255,255,255,0.52); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   RE-REGULATION DEBATE
   ═══════════════════════════════════════════════════════════ */
.rereg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.rereg-p { font-size: 0.93rem; color: rgba(255,255,255,0.62); line-height: 1.75; margin-bottom: 1.2rem; }
.rereg-quote {
  border-left: 3px solid var(--gold); padding: 0.8rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border-radius: 0 4px 4px 0; margin-bottom: 1rem;
}
.rereg-quote-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem;
}
.rereg-quote p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.65; font-style: italic; }
.rereg-panel {
  background: rgba(13,36,72,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; padding: 1.8rem;
}
.rereg-panel-head {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.rereg-item { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.rereg-item:last-child { border-bottom: none; }
.rereg-item-title { font-size: 0.88rem; font-weight: 700; color: white; margin-bottom: 0.25rem; }
.rereg-item-desc { font-size: 0.82rem; color: rgba(255,255,255,0.50); line-height: 1.6; }

@media (max-width: 720px) { .rereg-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   CAPACITY vs GENERATION TABLE
   ═══════════════════════════════════════════════════════════ */
.cg-explainer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; overflow: hidden; margin-bottom: 3rem;
}
.cg-explainer-head { background: rgba(13,36,72,0.65); padding: 1.8rem 2rem; }
.cg-explainer-title {
  font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700;
  color: white; margin-bottom: 0.7rem;
}
.cg-explainer-sub {
  font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 820px; font-style: italic;
}
.cg-explainer-table-wrap { overflow-x: auto; }
.cg-table { width: 100%; border-collapse: collapse; }
.cg-table thead tr { background: rgba(26,82,118,0.4); }
.cg-table thead th {
  padding: 0.9rem 1.2rem; text-align: left;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.88rem; font-weight: 700;
  color: white; letter-spacing: 0.06em;
}
.cg-table thead th:first-child { width: 160px; background: rgba(13,36,72,0.6); }
.cg-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.cg-table tbody tr:nth-child(odd)  { background: rgba(255,255,255,0.025); }
.cg-table tbody tr:nth-child(even) { background: transparent; }
.cg-table tbody td { padding: 0.85rem 1.2rem; font-size: 0.92rem; color: rgba(255,255,255,0.65); vertical-align: top; line-height: 1.55; }
.cg-table tbody td strong { color: rgba(255,255,255,0.85); }
.cg-row-label {
  font-weight: 700; color: var(--gold-light) !important;
  background: rgba(201,162,39,0.08) !important;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.92rem;
}

/* ═══════════════════════════════════════════════════════════
   ACCREDITATION TABLE
   ═══════════════════════════════════════════════════════════ */
.acc-table-wrap {
  overflow-x: auto; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
}
table.acc-table { width: 100%; border-collapse: collapse; }
table.acc-table thead tr { background: rgba(13,36,72,0.7); }
table.acc-table thead th {
  padding: 1rem 1.2rem; text-align: left;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 700;
  color: white; letter-spacing: 0.1em; text-transform: uppercase;
}
table.acc-table thead th:not(:first-child) { color: var(--gold); text-align: center; }
table.acc-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.06); transition: background var(--t-fast); }
table.acc-table tbody tr:hover { background: rgba(255,255,255,0.04); }
table.acc-table tbody td { padding: 0.85rem 1.2rem; font-size: 0.9rem; color: rgba(255,255,255,0.65); }
table.acc-table tbody td:first-child { font-weight: 600; color: rgba(255,255,255,0.88); }
table.acc-table tbody td:not(:first-child) { text-align: center; }
.rate-bar-cell { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.rate-bar { height: 6px; border-radius: 3px; transition: width 1.2s var(--ease); }
.rate-val { font-size: 0.85rem; font-weight: 700; }
.rate-high { color: #4ade80; }
.rate-med  { color: #fcd34d; }
.rate-low  { color: #f87171; }

/* ═══════════════════════════════════════════════════════════
   CAPACITY FUNNEL
   ═══════════════════════════════════════════════════════════ */
.capacity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.capacity-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; overflow: hidden;
}
.capacity-panel-top {
  background: rgba(13,36,72,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.capacity-panel-top h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 800; color: white;
}
.capacity-funnel { padding: 2rem; display: flex; flex-direction: column; gap: 8px; }
.funnel-step {
  border-radius: 4px; display: flex; align-items: center; gap: 12px;
  padding: 1rem 1.2rem; position: relative; overflow: hidden;
}
.funnel-step-1 { background: linear-gradient(135deg, #1a3560, #2a4a7f); width: 100%; }
.funnel-step-2 { background: linear-gradient(135deg, #1e3f6e, #2d5190); width: 85%; }
.funnel-step-3 { background: linear-gradient(135deg, #225080, #3162a0); width: 70%; }
.funnel-arrow { text-align: center; color: var(--gold); font-size: 1.2rem; animation: bounce-down 1.5s ease-in-out infinite; }
.funnel-icon { font-size: 1.4rem; }
.funnel-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 800;
  color: var(--gold); white-space: nowrap;
}
.funnel-desc { font-size: 0.85rem; color: white; font-weight: 600; line-height: 1.3; }
.capacity-note { padding: 0 2rem 1.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.42); font-style: italic; }
.cap-warn {
  margin: 0 2rem 1.5rem; padding: 0.7rem 1rem;
  background: rgba(185,28,28,0.12); border-left: 3px solid var(--red-alert);
  border-radius: 0 4px 4px 0; font-size: 0.83rem; color: #f87171; font-weight: 500;
}
.cap-comparison {
  margin: 0 2rem 1.8rem; padding: 1.2rem 1.4rem;
  background: rgba(13,36,72,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 5px;
}
.cap-comp-row { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 0.7rem; }
.cap-comp-stat { text-align: center; }
.cap-comp-stat.supply .cap-comp-num { color: var(--gold); }
.cap-comp-stat.need   .cap-comp-num { color: #f87171; }
.cap-comp-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 800;
  display: block; line-height: 1;
}
.cap-comp-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.5); display: block; margin-top: 3px; line-height: 1.3; }
.cap-comp-vs {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: rgba(255,255,255,0.3); flex-shrink: 0;
}
.cap-comp-gap {
  text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 0.65rem; line-height: 1.5;
}

@media (max-width: 720px) { .capacity-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   INTERCONNECTION SECTION
   ═══════════════════════════════════════════════════════════ */
.interconnect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.interconnect-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.ic-stat-card {
  background: rgba(13,36,72,0.55);
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: 6px; padding: 1.4rem;
  text-align: center; position: relative; overflow: hidden;
}
.ic-stat-card::before {
  content: ''; position: absolute; bottom: -15px; right: -15px;
  width: 60px; height: 60px; border-radius: 50%; background: rgba(201,162,39,0.08);
}
.ic-stat-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 2.4rem; font-weight: 800;
  color: var(--gold); display: block; line-height: 1; margin-bottom: 0.3rem;
}
.ic-stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.55); line-height: 1.4; }
.interconnect-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.ic-compare-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; overflow: hidden;
}
.ic-compare-head {
  padding: 1rem 1.4rem;
  display: flex; align-items: center; gap: 10px;
}
.ic-compare-head.ameren { background: linear-gradient(90deg, rgba(13,36,72,0.8), rgba(26,53,96,0.8)); }
.ic-compare-head.comed  { background: linear-gradient(90deg, rgba(26,74,138,0.8), rgba(45,108,191,0.8)); }
.ic-compare-head h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 800; color: white; }
.ic-compare-body { padding: 1.2rem 1.4rem; }
.ic-compare-body ul { list-style: none; }
.ic-compare-body ul li {
  font-size: 0.87rem; color: rgba(255,255,255,0.62); line-height: 1.55;
  padding: 0.45rem 0 0.45rem 1rem; position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ic-compare-body ul li:last-child { border-bottom: none; }
.ic-compare-body ul li::before {
  content: ''; position: absolute; left: 0; top: 0.8rem;
  width: 5px; height: 5px; border-radius: 50%;
}
.ic-compare-head.ameren ~ .ic-compare-body ul li::before { background: var(--gold); }
.ic-compare-head.comed  ~ .ic-compare-body ul li::before { background: #5b9bd5; }

@media (max-width: 720px) {
  .interconnect-grid   { grid-template-columns: 1fr; }
  .interconnect-compare { grid-template-columns: 1fr; }
  .interconnect-stats  { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   RATE CHARTS
   ═══════════════════════════════════════════════════════════ */
.rates-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.rate-chart-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; padding: 2rem;
}
.rate-chart-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: white; margin-bottom: 1.5rem;
}
.bar-chart { display: flex; flex-direction: column; gap: 12px; }
.bar-row { display: flex; align-items: center; gap: 10px; }
.bar-label { width: 55px; font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.62); flex-shrink: 0; }
.bar-track { flex: 1; height: 26px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.bar-fill {
  height: 100%; border-radius: 3px;
  display: flex; align-items: center; padding-left: 8px;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.bar-fill span { font-size: 0.78rem; font-weight: 700; color: white; white-space: nowrap; }
.bar-ameren { background: linear-gradient(90deg, var(--navy), var(--steel)); }
.bar-comed  { background: linear-gradient(90deg, #1a4a8a, #2d6cbf); }
.hbar-wrap { display: flex; flex-direction: column; gap: 10px; }
.hbar-label { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.72); margin-bottom: 4px; display: flex; justify-content: space-between; }
.hbar-label span { font-weight: 400; color: rgba(255,255,255,0.40); }
.hbar-track { height: 10px; background: rgba(255,255,255,0.08); border-radius: 5px; overflow: hidden; }
.hbar-fill { height: 100%; border-radius: 5px; transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1); }
.hbar-il    { background: var(--gold); }
.hbar-other { background: rgba(148,163,184,0.6); }

@media (max-width: 720px) { .rates-wrap { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   UTILITY BILL PROJECTION
   ═══════════════════════════════════════════════════════════ */
.bill-proj-wrap {
  background: rgba(13,36,72,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; padding: 2.5rem;
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
}
.bill-bar-track { display: flex; align-items: flex-end; gap: 12px; height: 180px; }
.bill-bar-col { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.bill-bar-fill {
  width: 100%; border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--steel), var(--gold));
  display: flex; align-items: flex-start; justify-content: center; padding-top: 6px;
  transition: height 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.bill-bar-fill span {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 700;
  color: var(--navy); white-space: nowrap;
}
.bill-year { font-size: 0.72rem; color: rgba(255,255,255,0.4); font-weight: 500; }
.bill-proj-info h3 {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; color: white;
  margin-bottom: 0.8rem; line-height: 1.2;
}
.bill-big-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 800;
  color: var(--gold); display: block; line-height: 1;
}
.bill-big-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.42); margin-bottom: 1.4rem; display: block; }
.bill-proj-note {
  font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.65;
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--gold);
  padding: 0.8rem 1rem; border-radius: 0 4px 4px 0;
}

@media (max-width: 700px) { .bill-proj-wrap { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   HOW IT AFFECTS (3-column flow)
   ═══════════════════════════════════════════════════════════ */
.affect-grid {
  display: grid; grid-template-columns: 1fr 60px 1fr 60px 1fr;
  gap: 0; align-items: stretch;
}
.affect-col {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; padding: 2rem;
  border-top: 3px solid rgba(255,255,255,0.12);
}
.affect-col.demand-col  { border-top-color: var(--steel); }
.affect-col.outcome-col { border-top-color: var(--gold); }
.affect-connector { display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--gold); }
.affect-col-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.affect-col-tag {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem;
}
.affect-col h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 800;
  color: white; margin-bottom: 1rem; line-height: 1.1;
}
.affect-col ul { list-style: none; }
.affect-col ul li {
  padding: 0.55rem 0 0.55rem 1.2rem; position: relative;
  font-size: 0.92rem; line-height: 1.55; color: rgba(255,255,255,0.62);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.affect-col ul li:last-child { border-bottom: none; }
.affect-col ul li::before {
  content: ''; position: absolute; left: 0; top: 0.82rem;
  width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.3);
}
.affect-col.outcome-col ul li::before { background: #f87171; }

@media (max-width: 820px) {
  .affect-grid { grid-template-columns: 1fr; }
  .affect-connector { transform: rotate(90deg); height: 40px; }
}

/* ═══════════════════════════════════════════════════════════
   IMPORT SCENARIOS
   ═══════════════════════════════════════════════════════════ */
.scenarios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.scenario-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; overflow: hidden;
  transition: transform var(--t-std), background var(--t-std);
}
.scenario-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.07); }
.scenario-top {
  background: rgba(13,36,72,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.4rem;
}
.scenario-top h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 800; color: white; margin-bottom: 0.3rem; }
.scenario-top p { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.scenario-body { padding: 1.4rem; }
.scenario-crossover { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.78); margin-bottom: 0.25rem; }
.scenario-peak { font-size: 0.88rem; font-weight: 600; color: #f87171; margin-bottom: 0.25rem; }
.scenario-label { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
.scenario-badge {
  display: inline-block; margin-top: 0.8rem;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 2px; letter-spacing: 0.1em;
}
.badge-moderate { background: rgba(201,162,39,0.15); color: var(--gold-light); }
.badge-high     { background: rgba(185,28,28,0.15); color: #f87171; }
.badge-critical { background: var(--red-alert); color: white; }

@media (max-width: 720px) { .scenarios-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   PJM PRICE SURGE CARD
   ═══════════════════════════════════════════════════════════ */
.price-surge-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--red-alert);
  border-radius: 6px; overflow: hidden;
  display: grid; grid-template-columns: 200px 1fr;
}
.price-surge-num-wrap {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2.5rem 2rem; border-right: 1px solid rgba(255,255,255,0.08);
  background: rgba(127,29,29,0.2);
}
.price-surge-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 4rem; font-weight: 800;
  color: #f87171; line-height: 1; display: block;
}
.price-surge-num-lbl {
  font-size: 0.7rem; color: rgba(255,255,255,0.45); letter-spacing: 0.12em;
  text-transform: uppercase; margin-top: 4px; text-align: center;
}
.price-surge-body { padding: 2rem 2.5rem; }
.price-surge-body h3 {
  font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 700;
  color: white; margin-bottom: 0.6rem; line-height: 1.2;
}
.price-surge-body p { font-size: 0.9rem; color: rgba(255,255,255,0.60); line-height: 1.7; margin-bottom: 1rem; }
.price-surge-note {
  font-size: 0.82rem; color: var(--gold-light);
  background: rgba(201,162,39,0.08); border: 1px solid rgba(201,162,39,0.22);
  border-radius: 4px; padding: 0.7rem 1rem; line-height: 1.6;
}

@media (max-width: 600px) { .price-surge-card { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   ECONOMIC CONTEXT CARDS
   ═══════════════════════════════════════════════════════════ */
.econ-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.econ-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: 3px solid rgba(201,162,39,0.3);
  border-radius: 6px; overflow: hidden;
  transition: border-bottom-color var(--t-std);
}
.econ-card:hover { border-bottom-color: var(--gold); }
.econ-card-head { padding: 1.4rem 1.5rem 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.econ-card-head .econ-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.econ-card-head h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 800;
  color: white; line-height: 1.2;
}
.econ-card-body { padding: 1rem 1.5rem 1.5rem; font-size: 0.87rem; color: rgba(255,255,255,0.52); line-height: 1.65; }
.econ-card-body strong { color: rgba(255,255,255,0.85); }
.econ-bar-list { list-style: none; margin-top: 0.8rem; }
.econ-bar-item { margin-bottom: 0.6rem; }
.econ-bar-label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.72); margin-bottom: 3px;
}
.econ-bar-label span { font-weight: 400; color: rgba(255,255,255,0.38); }
.econ-bar-track { height: 8px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.econ-bar-fill { height: 100%; border-radius: 4px; transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1); }
.econ-bar-il    { background: var(--gold); }
.econ-bar-other { background: rgba(148,163,184,0.5); }

@media (max-width: 760px) { .econ-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .econ-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   EXECUTIVE ORDER CARD
   ═══════════════════════════════════════════════════════════ */
.exec-order-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; overflow: hidden;
  display: grid; grid-template-columns: 280px 1fr;
}
.exec-order-left {
  background: linear-gradient(160deg, rgba(10,28,59,0.8), rgba(26,53,96,0.8));
  padding: 3rem 2rem; display: flex; flex-direction: column; justify-content: space-between;
  border-right: 1px solid rgba(201,162,39,0.25);
}
.exec-order-left h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: white; line-height: 1.15; }
.exec-order-left .exec-meta { font-size: 0.78rem; color: rgba(255,255,255,0.42); margin-top: 0.5rem; }
.exec-order-left .exec-seal { font-size: 3rem; margin-top: 1.5rem; }
.exec-order-right { padding: 2.5rem; }
.exec-order-right ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.exec-order-right ul li {
  background: rgba(255,255,255,0.05); border-radius: 4px; padding: 1rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.70); line-height: 1.5;
  border-left: 2px solid var(--gold);
}
.exec-order-right ul li strong {
  color: white; display: block; margin-bottom: 0.3rem;
  font-size: 0.78rem; letter-spacing: 0.05em;
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
}
.exec-warning {
  margin-top: 1.5rem; padding: 0.8rem 1rem;
  background: rgba(201,162,39,0.08); border: 1px solid rgba(201,162,39,0.25);
  border-radius: 4px; font-size: 0.82rem; color: var(--gold-light);
  display: flex; align-items: center; gap: 8px;
}

@media (max-width: 720px) { .exec-order-card { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   STAT BOXES (accreditation / IPA study callouts)
   ═══════════════════════════════════════════════════════════ */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.stat-box {
  background: rgba(13,36,72,0.5);
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: 6px; padding: 1.8rem;
  text-align: center; position: relative; overflow: hidden;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.stat-box.visible { opacity: 1; transform: translateY(0); }
.stat-box::before {
  content: ''; position: absolute; bottom: -18px; right: -18px;
  width: 72px; height: 72px; border-radius: 50%; background: rgba(201,162,39,0.08);
}
.stat-box .big {
  font-family: 'Barlow Condensed', sans-serif; font-size: 2.6rem; font-weight: 800;
  color: var(--gold); line-height: 1; display: block; margin-bottom: 0.4rem;
}
.stat-box .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.52); line-height: 1.4; }

/* ═══════════════════════════════════════════════════════════
   LOOKING AHEAD SECTION
   ═══════════════════════════════════════════════════════════ */
.ahead-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.ahead-intro-text { font-size: 0.93rem; color: rgba(255,255,255,0.60); line-height: 1.8; }
.ahead-intro-text p { margin-bottom: 1rem; }
.ahead-stat-col { display: flex; flex-direction: column; gap: 1rem; }
.ahead-stat-box {
  background: rgba(13,36,72,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; padding: 1.4rem 1.8rem;
  display: flex; align-items: center; gap: 1.2rem;
}
.ahead-stat-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 800;
  color: var(--gold); flex-shrink: 0; line-height: 1;
}
.ahead-stat-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.60); line-height: 1.4; }
.nuclear-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.nuclear-col {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; overflow: hidden;
}
.nuclear-col-head { padding: 1.4rem 1.8rem; }
.nuclear-col-head.pro { background: rgba(13,36,72,0.65); }
.nuclear-col-head.con { background: rgba(74,21,21,0.65); }
.nuclear-col-head h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 800;
  color: white; margin-bottom: 0.2rem;
}
.nuclear-col-head p { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.nuclear-col-body { padding: 1.4rem 1.8rem; }
.nuclear-col-body ul { list-style: none; }
.nuclear-col-body ul li {
  font-size: 0.88rem; color: rgba(255,255,255,0.60); line-height: 1.6;
  padding: 0.5rem 0 0.5rem 1.2rem; position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nuclear-col-body ul li:last-child { border-bottom: none; }
.nuclear-col-body.pro ul li::before {
  content: ''; position: absolute; left: 0; top: 0.88rem;
  width: 6px; height: 6px; border-radius: 50%; background: #4ade80;
}
.nuclear-col-body.con ul li::before {
  content: ''; position: absolute; left: 0; top: 0.88rem;
  width: 6px; height: 6px; border-radius: 50%; background: #f87171;
}

@media (max-width: 720px) {
  .ahead-intro-grid { grid-template-columns: 1fr; }
  .nuclear-grid     { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  padding: 2.5rem 2rem; text-align: center;
}
footer p { color: rgba(255,255,255,0.32); font-size: 0.78rem; line-height: 1.75; }
footer a { color: var(--gold); text-decoration: none; }
footer a:hover { color: var(--gold-light); }
.footer-source-list {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 1rem;
}
.footer-source-tag {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px; padding: 3px 10px;
  font-size: 0.72rem; color: rgba(255,255,255,0.35);
  font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1050px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .section { padding: 4rem 0; }
}
@media (max-width: 600px) {
  .container { padding: 0 1.2rem; }
  .stat-row  { grid-template-columns: 1fr 1fr; }
  .leg-grid  { grid-template-columns: 1fr; }
  .key-leg-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   GOOGLE FONTS — ensure available when shared.css is the
   only stylesheet linked on a page
   ═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Barlow+Condensed:wght@300;400;600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

/* ═══════════════════════════════════════════════════════════
   COUNT-UP ANIMATED STATS
   Usage: <div class="count-up" data-count="315" data-prefix="$" data-suffix="B">
            <span class="count-num">0</span>
          </div>
   shared.js animates the number; CSS handles all layout/style.
   ═══════════════════════════════════════════════════════════ */
.count-up-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.count-up-grid--3 { grid-template-columns: repeat(3, 1fr); }

.count-up {
  background: rgba(13, 36, 72, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--topic-color);
  border-radius: 6px;
  padding: 2rem 1.6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease),
              border-top-color var(--t-std);
}
.count-up.visible { opacity: 1; transform: translateY(0); }
.count-up:hover { border-top-color: var(--topic-color-light); }

.count-up::after {
  content: '';
  position: absolute; bottom: -18px; right: -18px;
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(201, 162, 39, 0.07);
  pointer-events: none;
}

.count-up-icon {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 0.65rem;
  display: block;
}

.count-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.count-prefix,
.count-suffix {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--topic-color);
}

.count-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--topic-color);
  display: block;
  line-height: 1;
  transition: color var(--t-std);
}

.count-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'Barlow Condensed', sans-serif;
}

.count-note {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.30);
  margin-top: 0.4rem;
  line-height: 1.4;
  font-style: italic;
}

@media (max-width: 1000px) { .count-up-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .count-up-grid, .count-up-grid--3 { grid-template-columns: 1fr 1fr; } }

/* ═══════════════════════════════════════════════════════════
   PROGRESS METERS
   Usage: <div class="progress-meter">
            <div class="progress-header">
              <span class="progress-label">Pension Funding Ratio</span>
              <span class="progress-pct">43.6%</span>
            </div>
            <div class="progress-track">
              <div class="progress-fill fill-danger" data-pct="43.6"></div>
            </div>
          </div>
   ═══════════════════════════════════════════════════════════ */
.progress-group {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.progress-group-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--topic-color);
  margin-bottom: 0.4rem;
}

.progress-meter { display: flex; flex-direction: column; gap: 0.45rem; }

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.progress-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.3;
}

.progress-pct {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--topic-color);
  flex-shrink: 0;
}

.progress-track {
  height: 12px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 6px;
  background: var(--topic-color);
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Size variants */
.progress-meter--lg .progress-track { height: 20px; }
.progress-meter--sm .progress-track { height: 7px; }

/* Color overrides */
.progress-fill.fill-danger  { background: #ef4444; }
.progress-fill.fill-warning { background: #f59e0b; }
.progress-fill.fill-ok      { background: #22c55e; }

.progress-sublabel {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
  margin-top: 0.15rem;
}

/* ═══════════════════════════════════════════════════════════
   IMPACT CALLOUT — full-section dramatic stat
   Usage: <section class="impact-callout">
            <div class="impact-inner">
              <div class="impact-eyebrow">Pension Crisis</div>
              <div class="impact-num" data-count="315" data-prefix="$" data-suffix="B">$315B</div>
              <div class="impact-label">Illinois Unfunded Pension Liability</div>
              <p class="impact-body">…</p>
              <div class="impact-source">Source: COGFA FY2025</div>
            </div>
          </section>
   ═══════════════════════════════════════════════════════════ */
.impact-callout {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
  background: var(--navy-dark);
  text-align: center;
}

.impact-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(201, 162, 39, 0.12) 0%,
    transparent 65%);
  pointer-events: none;
}

.impact-callout--alert::before {
  background: radial-gradient(ellipse at 50% 50%,
    rgba(239, 68, 68, 0.14) 0%,
    transparent 65%);
}

.impact-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.impact-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--topic-color);
  margin-bottom: 1rem;
}

.impact-callout--alert .impact-eyebrow { color: #f87171; }

.impact-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  color: var(--topic-color);
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
}

.impact-callout--alert .impact-num { color: #ef4444; }

.impact-label {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.impact-body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 1.2rem;
}

.impact-source {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.06em;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   KEY TAKEAWAY BLOCK
   Usage: <div class="takeaway reveal">
            <div class="takeaway-eyebrow">Key Takeaway</div>
            <h4 class="takeaway-title">…</h4>
            <p class="takeaway-text">…</p>
            <div class="takeaway-source">Source: …</div>
          </div>
   ═══════════════════════════════════════════════════════════ */
.takeaway {
  border-left: 4px solid var(--topic-color);
  background: rgba(201, 162, 39, 0.05);
  border-radius: 0 8px 8px 0;
  padding: 1.6rem 2rem;
  margin: 2.5rem 0;
  position: relative;
}

.takeaway--alert {
  border-left-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.takeaway-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--topic-color);
  margin-bottom: 0.4rem;
}

.takeaway--alert .takeaway-eyebrow { color: #f87171; }

.takeaway-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 0.55rem;
}

.takeaway-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.75;
  margin: 0;
}

.takeaway-source {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.30);
  margin-top: 0.6rem;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   RANKED LIST — medal-style state rankings
   Usage:
   <ol class="ranked-list">
     <li class="ranked-item ranked-item--highlight">
       <span class="ranked-pos pos-2">2</span>
       <span class="ranked-name">Illinois ↑</span>
       <span class="ranked-value">2.27%</span>
       <div class="ranked-bar-track"><div class="ranked-bar-fill" data-pct="91"></div></div>
     </li>
   </ol>
   ═══════════════════════════════════════════════════════════ */
.ranked-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ranked-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  transition: background var(--t-fast);
}

.ranked-item:last-child { border-bottom: none; }
.ranked-item:hover { background: rgba(255, 255, 255, 0.03); }

.ranked-item--highlight {
  background: rgba(201, 162, 39, 0.07);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 5px;
  box-shadow: 0 0 0 0 rgba(201, 162, 39, 0);
  animation: ranked-pulse 3s ease-in-out infinite;
}

@keyframes ranked-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.12); }
  50%       { box-shadow: 0 0 0 6px rgba(201, 162, 39, 0); }
}

.ranked-pos {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.40);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.ranked-pos.pos-1 {
  background: linear-gradient(135deg, #c9a227, #e8c45a);
  color: #08162e;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.5);
}
.ranked-pos.pos-2 {
  background: linear-gradient(135deg, #94a3b8, #cbd5e1);
  color: #08162e;
  border-color: transparent;
}
.ranked-pos.pos-3 {
  background: linear-gradient(135deg, #a16207, #ca8a04);
  color: white;
  border-color: transparent;
}

.ranked-name {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.ranked-item--highlight .ranked-name {
  color: var(--topic-color-light);
  font-weight: 700;
}

.ranked-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: white;
  white-space: nowrap;
  min-width: 60px;
  text-align: right;
}

.ranked-item--highlight .ranked-value { color: var(--topic-color); }

.ranked-bar-track {
  width: 120px;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.ranked-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  background: rgba(148, 163, 184, 0.45);
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ranked-item--highlight .ranked-bar-fill { background: var(--topic-color); }

@media (max-width: 540px) {
  .ranked-bar-track { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   ICON FACT GRID
   ═══════════════════════════════════════════════════════════ */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
}

.icon-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform var(--t-std), border-top-color var(--t-std), background var(--t-std);
  opacity: 0;
  transform: translateY(16px);
}

.icon-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.icon-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--topic-color);
  background: rgba(255, 255, 255, 0.07);
}

.icon-card-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.icon-card-stat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--topic-color);
  line-height: 1;
}

.icon-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
}

.icon-card-body {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   COMPARE CARDS — problem / solution side by side
   ═══════════════════════════════════════════════════════════ */
.compare-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.compare-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 4px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.compare-card--negative {
  border-top-color: #ef4444;
  background: rgba(239, 68, 68, 0.04);
}

.compare-card--positive {
  border-top-color: #22c55e;
  background: rgba(34, 197, 94, 0.04);
}

.compare-card--neutral {
  border-top-color: var(--topic-color);
}

.compare-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.compare-card--negative .compare-card__header { background: rgba(239, 68, 68, 0.08); }
.compare-card--positive .compare-card__header { background: rgba(34, 197, 94, 0.07); }
.compare-card--neutral  .compare-card__header { background: rgba(201, 162, 39, 0.07); }

.compare-card__header-icon {
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}

.compare-card__header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
}

.compare-card--negative .compare-card__header h3 { color: #fca5a5; }
.compare-card--positive .compare-card__header h3 { color: #86efac; }

.compare-list {
  list-style: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.compare-list li {
  padding: 0.55rem 0 0.55rem 1.2rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.compare-list li:last-child { border-bottom: none; }

.compare-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.5);
}

.compare-card--negative .compare-list li::before { background: #f87171; }
.compare-card--positive .compare-list li::before { background: #4ade80; }
.compare-card--neutral  .compare-list li::before { background: var(--topic-color); }

@media (max-width: 640px) {
  .compare-pair { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   TAB SWITCHER
   Usage:
   <div class="tabs">
     <div class="tab-nav">
       <button class="tab-btn active" data-tab="tab-a">Label A</button>
       <button class="tab-btn" data-tab="tab-b">Label B</button>
     </div>
     <div class="tab-panel active" data-panel="tab-a">…</div>
     <div class="tab-panel" data-panel="tab-b">…</div>
   </div>
   ═══════════════════════════════════════════════════════════ */
.tabs { width: 100%; }

.tab-nav {
  display: flex;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  gap: 0;
  margin-bottom: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.tab-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.85rem 1.4rem;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--t-fast), border-color var(--t-fast);
}

.tab-btn:hover { color: rgba(255, 255, 255, 0.72); }

.tab-btn.active {
  color: white;
  border-bottom-color: var(--topic-color);
}

.tab-panel {
  display: none;
  padding-top: 2rem;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.22s var(--ease) both;
}

/* ═══════════════════════════════════════════════════════════
   DEFINITION LIST / GLOSSARY
   ═══════════════════════════════════════════════════════════ */
.def-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.def-item {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.def-term {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--topic-color);
  min-width: 180px;
  flex-shrink: 0;
  padding-top: 1px;
  line-height: 1.3;
}

.def-body {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  flex: 1;
}

.def-source {
  display: inline-block;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.28);
  font-style: italic;
  margin-top: 0.25rem;
}

@media (max-width: 560px) {
  .def-item { flex-direction: column; gap: 0.3rem; }
  .def-term  { min-width: 0; }
}

/* ═══════════════════════════════════════════════════════════
   SOURCE CITATION BAND
   ═══════════════════════════════════════════════════════════ */
.sources-band {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  padding: 4rem 2rem;
}

.sources-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sources-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sources-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201, 162, 39, 0.2);
}

.source-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  columns: 2;
  column-gap: 3rem;
}

@media (max-width: 720px) { .source-list { columns: 1; } }

.source-item {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  break-inside: avoid;
  padding-bottom: 0.35rem;
}

.source-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
  min-width: 1.4rem;
}

.source-item a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--t-fast), text-decoration-color var(--t-fast);
}

.source-item a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ═══════════════════════════════════════════════════════════
   CHAPTER TABS + STEPPER
   Built by shared.js from section[id][data-nav-label] elements
   (replaces the old sticky side-nav — scrollspy doesn't make
   sense once only one chapter is visible at a time). Per-chapter
   accent color is read at runtime from that chapter's own
   .section-label background and applied via the --tab-accent
   custom property, so nothing page-specific lives here.
   ═══════════════════════════════════════════════════════════ */
.chapter-tabs-wrap {
  position: sticky;
  top: var(--appbar-h);
  z-index: 490;
  background: #fff;
  border-bottom: 1px solid rgba(22,35,47,0.1);
  box-shadow: 0 2px 14px rgba(22,35,47,0.05);
}

.chapter-tabs {
  display: flex;
  gap: 0.2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.chapter-tab {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 0.95rem 1rem 0.8rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}

.chapter-tab-num {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  opacity: 0.55;
}

.chapter-tab:hover { color: var(--text-main); }

.chapter-tab.active {
  color: var(--tab-accent, var(--topic-color));
  border-bottom-color: var(--tab-accent, var(--topic-color));
}

/* Chapter panels: only the active one renders */
.chapter-panel { display: none; }
.chapter-panel.chapter-active { display: block; }

/* Prev / Next stepper, injected at the bottom of each panel */
.chapter-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(22,35,47,0.1);
}

.chapter-stepper-btn {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0;
  max-width: 42%;
}

.chapter-stepper-prev { align-items: flex-start; text-align: left; }
.chapter-stepper-next { align-items: flex-end; text-align: right; margin-left: auto; }

.chapter-stepper-eyebrow {
  font-family: 'Inter', 'Barlow Condensed', sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.chapter-stepper-label {
  font-family: 'Inter', 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  transition: color 0.15s;
}

.chapter-stepper-btn:hover .chapter-stepper-label { color: var(--topic-color); }

.chapter-stepper-progress {
  font-family: 'Inter', 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .chapter-stepper { flex-wrap: wrap; }
  .chapter-stepper-progress { order: 3; width: 100%; text-align: center; margin-top: 0.5rem; }
  .chapter-stepper-btn { max-width: 46%; }
}

/* ═══════════════════════════════════════════════════════════
   CHART CONTAINER WRAPPERS — for Chart.js charts
   ═══════════════════════════════════════════════════════════ */
.chart-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.chart-container canvas {
  width: 100% !important;
  height: auto !important;
  display: block;
}

.chart-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.chart-subtitle {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.4rem;
  line-height: 1.5;
}

.chart-source {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.28);
  font-style: italic;
  margin-top: 0.8rem;
  text-align: right;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
}

.legend-swatch {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   STAT BAND — headline numbers across full width
   ═══════════════════════════════════════════════════════════ */
.stat-band {
  background: var(--navy);
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.stat-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(201, 162, 39, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(13, 36, 72, 0.6) 0%, transparent 50%);
  pointer-events: none;
}

.stat-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.stat-band-item {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.stat-band-item:last-child { border-right: none; }

.stat-band-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--topic-color);
  line-height: 1;
  display: block;
}

.stat-band-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.4;
}

.stat-band-sublabel {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
  margin-top: 0.1rem;
}

@media (max-width: 760px) {
  .stat-band-inner { flex-wrap: wrap; }
  .stat-band-item {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.2rem;
  }
  .stat-band-item:nth-child(odd)  { border-right: 1px solid rgba(255, 255, 255, 0.07); }
  .stat-band-item:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════════════════════
   CALLOUT QUOTE — pull quote / highlighted statement
   ═══════════════════════════════════════════════════════════ */
.callout-quote {
  border-left: 5px solid var(--gold);
  background: rgba(13, 36, 72, 0.55);
  border-radius: 0 8px 8px 0;
  padding: 2rem 2.5rem;
  margin: 2rem 0;
  position: relative;
}

.callout-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(201, 162, 39, 0.18);
  line-height: 1;
  pointer-events: none;
}

.callout-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: white;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin-bottom: 0.9rem;
}

.callout-quote-attr {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
}

.callout-quote-attr span { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   DATA TABLE — general purpose
   ═══════════════════════════════════════════════════════════ */
.data-table-wrap {
  overflow-x: auto;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table thead tr {
  background: rgba(13, 36, 72, 0.85);
  border-bottom: 2px solid rgba(201, 162, 39, 0.25);
}

.data-table thead th {
  padding: 1rem 1.2rem;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.data-table thead th:not(:first-child) { text-align: right; }

.data-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background var(--t-fast);
}

.data-table tbody tr:nth-child(odd)  { background: rgba(255, 255, 255, 0.025); }
.data-table tbody tr:nth-child(even) { background: transparent; }
.data-table tbody tr:hover           { background: rgba(255, 255, 255, 0.055); }

.data-table tbody td {
  padding: 0.85rem 1.2rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  vertical-align: middle;
}

.data-table tbody td:first-child {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.data-table tbody td:not(:first-child) { text-align: right; }

.data-table td.highlight { color: var(--gold-light); font-weight: 700; }
.data-table td.alert     { color: #f87171;           font-weight: 700; }
.data-table td.good      { color: #4ade80;           font-weight: 700; }

.data-table tr.row-highlight {
  background: rgba(201, 162, 39, 0.06) !important;
  border-left: 3px solid var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   NEW COMPONENT RESPONSIVE OVERRIDES
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .impact-callout { padding: 4rem 1.5rem; }
  .callout-quote  { padding: 1.5rem 1.8rem; }
}

@media (max-width: 600px) {
  .count-up-grid,
  .count-up-grid--3 { grid-template-columns: 1fr 1fr; }
  .icon-grid         { grid-template-columns: 1fr 1fr; }
  .stat-band-item    { flex: 0 0 100%; border-right: none; }
  .tab-btn           { padding: 0.75rem 0.9rem; font-size: 0.72rem; }
  .takeaway          { padding: 1.2rem 1.4rem; }
  .data-table        { font-size: 0.82rem; }
  .data-table th,
  .data-table td     { padding: 0.7rem 0.8rem; }
}
