/* ─── Design Tokens ─── */
:root {
  --bg-primary: #0a0804;
  --bg-secondary: #0f0c08;
  --bg-surface: rgba(180, 160, 120, 0.04);
  --bg-elevated: rgba(180, 160, 120, 0.08);
  --text-primary: #ddd8cc;
  --text-secondary: #8a8070;
  --text-muted: #4a4438;
  --accent-red: #c84c3c;
  --accent-red-dim: rgba(200, 76, 60, 0.12);
  --accent-green: #2eb88a;
  --accent-green-dim: rgba(46, 184, 138, 0.12);
  --accent-gold: #b89855;
  --accent-gold-dim: rgba(184, 152, 85, 0.12);
  --accent-blue: #8ab0cc;
  --accent-silver: #b4ccdc;
  --glass: rgba(10, 8, 4, 0.72);
  --glass-border: rgba(180, 160, 120, 0.1);
  --glass-highlight: rgba(180, 204, 220, 0.2);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-tap-highlight-color: transparent;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ─── Ticker ─── */
.ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 44px;
  background: rgba(8, 6, 2, 0.96);
  border-bottom: 1px solid rgba(200, 76, 60, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  padding-top: env(safe-area-inset-top);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  display: flex;
  align-items: center;
}

.ticker__label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-red);
  flex-shrink: 0;
  padding: 0 1rem;
  border-right: 1px solid rgba(200, 76, 60, 0.2);
  margin-right: 0.5rem;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.ticker__track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  height: 100%;
  animation: tickerScroll 110s linear infinite;
  will-change: transform;
}

.ticker__item {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  flex-shrink: 0;
  padding: 0 0.5rem;
}

.ticker__sep {
  color: var(--accent-red);
  margin: 0 1.2rem;
  font-size: 0.45rem;
  flex-shrink: 0;
  opacity: 0.5;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(46px + env(safe-area-inset-top) + 4rem) 2rem 5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 70% at 50% 0%, rgba(200, 76, 60, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 20% 80%, rgba(184, 152, 85, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(138, 176, 204, 0.04) 0%, transparent 50%),
    var(--bg-primary);
  text-align: center;
}

/* Snow layers — drifting white specks */
.hero__snow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__snow-layer {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 1px at 15% 20%, rgba(180, 204, 220, 0.4) 0%, transparent 50%),
    radial-gradient(circle 1px at 42% 8%, rgba(180, 204, 220, 0.3) 0%, transparent 50%),
    radial-gradient(circle 1px at 68% 35%, rgba(180, 204, 220, 0.25) 0%, transparent 50%),
    radial-gradient(circle 1.5px at 83% 15%, rgba(180, 204, 220, 0.35) 0%, transparent 50%),
    radial-gradient(circle 1px at 30% 60%, rgba(180, 204, 220, 0.2) 0%, transparent 50%),
    radial-gradient(circle 1px at 55% 75%, rgba(180, 204, 220, 0.3) 0%, transparent 50%),
    radial-gradient(circle 1px at 90% 55%, rgba(180, 204, 220, 0.25) 0%, transparent 50%),
    radial-gradient(circle 1.5px at 10% 85%, rgba(180, 204, 220, 0.3) 0%, transparent 50%),
    radial-gradient(circle 1px at 75% 90%, rgba(180, 204, 220, 0.2) 0%, transparent 50%),
    radial-gradient(circle 1px at 48% 45%, rgba(180, 204, 220, 0.15) 0%, transparent 50%);
}

.hero__snow-layer--1 { animation: snowDrift1 28s linear infinite; }
.hero__snow-layer--2 { animation: snowDrift2 40s linear infinite; opacity: 0.7; }
.hero__snow-layer--3 { animation: snowDrift3 55s linear infinite; opacity: 0.5; }

@keyframes snowDrift1 {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(110%) translateX(2%); }
}
@keyframes snowDrift2 {
  0% { transform: translateY(-5%) translateX(0); }
  100% { transform: translateY(100%) translateX(-2%); }
}
@keyframes snowDrift3 {
  0% { transform: translateY(-10%) translateX(1%); }
  100% { transform: translateY(105%) translateX(-1%); }
}

/* Crack lines across hero */
.hero__crack {
  position: absolute;
  background: rgba(200, 76, 60, 0.08);
  pointer-events: none;
}
.hero__crack--1 {
  width: 1px;
  height: 60%;
  top: 10%;
  left: 30%;
  transform: rotate(4deg);
}
.hero__crack--2 {
  width: 1px;
  height: 45%;
  top: 30%;
  right: 25%;
  transform: rotate(-5deg);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1040px;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(0.52rem, 1vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 2rem;
  opacity: 0;
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
}

.hero__title-line {
  display: block;
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-transform: uppercase;
  opacity: 0;
}

.hero__title-line--cold {
  color: var(--accent-silver);
  text-shadow: 0 0 80px rgba(180, 204, 220, 0.15);
}

.hero__title-line--mid {
  color: var(--text-muted);
  font-size: clamp(2rem, 6vw, 5rem);
  letter-spacing: 0.1em;
}

.hero__title-line--fire {
  color: var(--accent-red);
  text-shadow: 0 0 80px rgba(200, 76, 60, 0.2);
}

.hero__lead {
  font-size: clamp(0.92rem, 1.6vw, 1.08rem);
  line-height: 1.72;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0;
}

.hero__badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(200, 76, 60, 0.14);
  border-radius: 2px;
  overflow: hidden;
  max-width: 680px;
  margin: 0 auto;
  opacity: 0;
}

.hero__badge {
  padding: 0.8rem 1.5rem;
  border-right: 1px solid rgba(200, 76, 60, 0.12);
  flex: 1;
  min-width: 120px;
  text-align: center;
  background: rgba(200, 76, 60, 0.03);
}

.hero__badge:last-child { border-right: none; }

.hero__badge--fire { background: rgba(200, 76, 60, 0.06); }
.hero__badge--ember { background: rgba(184, 152, 85, 0.05); }
.hero__badge--pale { background: rgba(138, 176, 204, 0.04); }

.hero__badge-num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 800;
  color: var(--accent-red);
  margin-bottom: 0.2rem;
}

.hero__badge--ember .hero__badge-num { color: var(--accent-gold); }
.hero__badge--pale .hero__badge-num { color: var(--accent-silver); }

.hero__badge-lbl {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  opacity: 0;
  animation: scrollFade 2s ease-out 2.5s forwards;
}

.hero__scroll-arrow {
  width: 14px;
  height: 24px;
  animation: scrollBob 2.4s ease-in-out infinite;
}

@keyframes scrollBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes scrollFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─── Shared Section Styles ─── */
.section {
  padding: 5.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.section--ash {
  background: var(--bg-primary);
}

.section--mid {
  background: var(--bg-secondary);
}

.section--pale {
  background: linear-gradient(180deg, #100e0a 0%, #0d0b08 100%);
  border-top-color: rgba(184, 152, 85, 0.08);
}

.section--ember {
  background: linear-gradient(180deg, #0d0906 0%, #120a07 100%);
  border-top-color: rgba(200, 76, 60, 0.1);
}

.section--graphite {
  background: linear-gradient(180deg, #0c0c0e 0%, #0a0a0c 100%);
  border-top-color: rgba(138, 176, 204, 0.08);
}

.section--horizon {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-top: 1px solid rgba(180, 204, 220, 0.08);
}

.frost-label {
  font-family: var(--font-mono);
  font-size: clamp(0.52rem, 0.9vw, 0.65rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-silver);
  margin-bottom: 1.5rem;
  opacity: 0;
}

.section__title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.07;
  color: var(--text-primary);
  margin-bottom: 2rem;
  max-width: 860px;
  opacity: 0;
}

.section__title--wide {
  max-width: 100%;
  text-align: center;
}

.section__body {
  font-size: clamp(0.93rem, 1.25vw, 1.04rem);
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 780px;
  margin-bottom: 1.4rem;
  opacity: 0;
}

.section__body--narrow { max-width: 680px; }

.section__cite {
  display: inline-flex;
  align-items: flex-end;
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--accent-silver);
  text-decoration: none;
  border-bottom: 1px solid rgba(180, 204, 220, 0.2);
  padding-bottom: 6px;
  min-height: 44px;
  transition: border-color 0.2s, color 0.2s;
}

.section__cite:hover {
  border-color: var(--accent-silver);
  color: var(--text-primary);
}

/* ─── EO 2026-2 Layout ─── */
.eo2-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
  opacity: 0;
}

.eo2-card {
  border-radius: 2px;
  border: 1px solid;
  padding: 1.1rem 1.25rem;
  margin-bottom: 0.75rem;
}

.eo2-card--emergency {
  background: rgba(200, 76, 60, 0.05);
  border-color: rgba(200, 76, 60, 0.18);
}

.eo2-card--energy {
  background: rgba(184, 152, 85, 0.04);
  border-color: rgba(184, 152, 85, 0.15);
}

.eo2-card__type {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.eo2-card--emergency .eo2-card__type { color: var(--accent-red); }
.eo2-card--energy .eo2-card__type { color: var(--accent-gold); }

.eo2-card__counties {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.eo2-card__law {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.eo2-stat {
  background: rgba(180, 204, 220, 0.04);
  border: 1px solid rgba(180, 204, 220, 0.1);
  border-radius: 2px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}

.eo2-stat--amber {
  background: rgba(184, 152, 85, 0.04);
  border-color: rgba(184, 152, 85, 0.12);
}

.eo2-stat__num {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--accent-silver);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.eo2-stat--amber .eo2-stat__num { color: var(--accent-gold); }

.eo2-stat__label {
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--text-muted);
}

/* ─── Compact Countdown ─── */
.compact-countdown {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(200, 76, 60, 0.04);
  border: 1px solid rgba(200, 76, 60, 0.12);
  border-radius: 2px;
  flex-wrap: wrap;
  opacity: 0;
}

.compact-countdown__clock {
  text-align: center;
  flex-shrink: 0;
}

.compact-countdown__days {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--accent-red);
  line-height: 1;
  display: block;
}

.compact-countdown__unit {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.compact-countdown__when {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.compact-countdown__context { flex: 1; min-width: 240px; }

.compact-deadline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.compact-deadline__label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.compact-deadline__date {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-red);
}

.compact-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Standoff Grid */
.standoff-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 3rem;
  opacity: 0;
}

.standoff-col {
  padding: 1.5rem;
  border-radius: 2px;
}

.standoff-col--house {
  background: rgba(138, 176, 204, 0.05);
  border: 1px solid rgba(138, 176, 204, 0.14);
}

.standoff-col--senate {
  background: rgba(184, 152, 85, 0.05);
  border: 1px solid rgba(184, 152, 85, 0.14);
}

.standoff-col--vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 1.5rem;
}

.standoff-col__chamber {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.standoff-col__bill {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.1rem;
}

.standoff-col__sponsor {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.standoff-col__pos {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.standoff-col__result {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  display: inline-block;
}

.standoff-col__result--pass {
  background: rgba(46, 184, 138, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(46, 184, 138, 0.2);
}

.standoff-col__vs-text {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent-red);
  text-align: center;
}

.standoff-col__vs-resolved {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: var(--accent-green);
  text-align: center;
}

/* Compact Impact Strip */
.compact-impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.5rem;
  opacity: 0;
}

.compact-impact__item {
  background: var(--bg-secondary);
  padding: 1.5rem;
  text-align: center;
}

.compact-impact__num {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--accent-silver);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.compact-impact__desc {
  font-size: 0.74rem;
  line-height: 1.4;
  color: var(--text-muted);
}

/* ─── Tariff Layout ─── */
.tariff-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 3rem;
  align-items: start;
  opacity: 0;
}

.tariff-quote {
  border-left: 3px solid var(--accent-red);
  padding: 1.25rem 1.5rem;
  background: rgba(200, 76, 60, 0.04);
  border-radius: 0 2px 2px 0;
  margin-bottom: 2rem;
}

.tariff-quote p {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 600;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

.tariff-quote cite {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-style: normal;
}

.tariff-stat {
  background: rgba(180, 204, 220, 0.04);
  border: 1px solid rgba(180, 204, 220, 0.1);
  border-radius: 2px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.tariff-stat--red {
  background: rgba(200, 76, 60, 0.04);
  border-color: rgba(200, 76, 60, 0.12);
}

.tariff-stat__num {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--accent-silver);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.tariff-stat--red .tariff-stat__num { color: var(--accent-red); }

.tariff-stat__label {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.tariff-key {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.6rem;
}

.tariff-key--date {
  background: rgba(200, 76, 60, 0.03);
  border-color: rgba(200, 76, 60, 0.1);
}

.tariff-key__label {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.tariff-key__text {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

/* ─── Statute War (Insulin) ─── */
.statute-war {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.5rem;
  opacity: 0;
}

.statute-war__header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.statute-war__col-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
}

.statute-war__col-label--left { color: var(--accent-green); }
.statute-war__col-label--right { color: var(--accent-red); text-align: right; }

.statute-war__divider-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  padding: 0.75rem;
}

.statute-war__body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}

.statute-war__col {
  padding: 1.75rem;
}

.statute-war__col--left {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.statute-war__pivot {
  display: flex;
  align-items: center;
  padding: 1rem;
}

.statute-war__pivot-arrow {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.statute-war__case {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  font-style: italic;
}

.statute-war__text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.statute-war__status {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
}

.statute-war__status--msc {
  background: rgba(46, 184, 138, 0.08);
  color: var(--accent-green);
  border: 1px solid rgba(46, 184, 138, 0.15);
}

.statute-war__status--house {
  background: rgba(200, 76, 60, 0.08);
  color: var(--accent-red);
  border: 1px solid rgba(200, 76, 60, 0.15);
}

.statute-war__quote {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: italic;
  background: rgba(200, 76, 60, 0.03);
}

.statute-war__quote-attr {
  font-weight: 700;
  font-style: normal;
  color: var(--accent-red);
  margin-right: 0.4rem;
}

/* ─── Carry Layout ─── */
.carry-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 3rem;
  align-items: start;
  opacity: 0;
}

.carry-status {
  border-radius: 2px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  border: 1px solid;
}

.carry-status--house {
  background: rgba(138, 176, 204, 0.04);
  border-color: rgba(138, 176, 204, 0.12);
}

.carry-status--senate {
  background: rgba(200, 76, 60, 0.04);
  border-color: rgba(200, 76, 60, 0.12);
}

.carry-status--gov {
  background: rgba(200, 76, 60, 0.04);
  border-color: rgba(200, 76, 60, 0.1);
}

.carry-status__label {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.carry-status__val {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.1rem;
}

.carry-status--senate .carry-status__val { color: var(--accent-red); }
.carry-status--gov .carry-status__val { color: var(--accent-red); }

.carry-status__note {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.carry-law {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  padding: 0.9rem 1rem;
}

.carry-law__label {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.carry-law__text {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

/* ─── Medical Debt Progress ─── */
.meddebt-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
}

.meddebt-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}

.meddebt-stage__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-muted);
}

.meddebt-stage--done .meddebt-stage__dot { background: var(--accent-green); }
.meddebt-stage__dot--active {
  background: var(--accent-gold) !important;
  box-shadow: 0 0 12px rgba(184, 152, 85, 0.5);
}
.meddebt-stage__dot--pending {
  background: transparent !important;
  border: 1px solid var(--text-muted);
}

.meddebt-stage__label {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.meddebt-stage--done .meddebt-stage__label { color: var(--accent-green); }
.meddebt-stage--active .meddebt-stage__label { color: var(--accent-gold); }

.meddebt-stage__note {
  font-size: 0.58rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.meddebt-line {
  flex: 1;
  height: 1px;
  background: var(--text-muted);
  opacity: 0.25;
  min-width: 24px;
}

.meddebt-line--done {
  background: var(--accent-green);
  opacity: 0.4;
}

.meddebt-tension {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0;
}

.meddebt-tension__item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  padding: 1.5rem;
}

.meddebt-tension__item--amber {
  background: rgba(184, 152, 85, 0.04);
  border-color: rgba(184, 152, 85, 0.12);
}

.meddebt-tension__label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.meddebt-tension__item--amber .meddebt-tension__label { color: var(--accent-gold); }

.meddebt-tension__text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ─── Voter Roll Timeline ─── */
.voterroll-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
}

.voterroll-event {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.voterroll-event:last-child { border-bottom: none; }

.voterroll-event--past { background: rgba(255, 255, 255, 0.012); }
.voterroll-event--now { background: rgba(200, 76, 60, 0.05); }
.voterroll-event--future { background: rgba(138, 176, 204, 0.03); }

.voterroll-event__when {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 0.1rem;
}

.voterroll-event--now .voterroll-event__when { color: var(--accent-red); }

.voterroll-event__what {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ─── Death Certificate Layout ─── */
.deathcert-layout {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  opacity: 0;
}

.deathcert-before,
.deathcert-after {
  flex: 1;
  min-width: 220px;
  padding: 1.5rem;
  border-radius: 2px;
  border: 1px solid;
}

.deathcert-before {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

.deathcert-after {
  background: rgba(46, 184, 138, 0.04);
  border-color: rgba(46, 184, 138, 0.14);
}

.deathcert-col__head {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.deathcert-col__head--new { color: var(--accent-green); }

.deathcert-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.deathcert-list li {
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text-secondary);
  padding-left: 1rem;
  position: relative;
}

.deathcert-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

.deathcert-list--new li::before { color: var(--accent-green); }

.deathcert-arrow {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  color: var(--accent-green);
  flex-shrink: 0;
}

/* ─── EV Wall ─── */
.ev-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 3rem;
  opacity: 0;
}

.ev-item {
  background: var(--bg-primary);
  padding: 2rem 1.75rem;
  border-top: 3px solid transparent;
}

.ev-item--ford { border-top-color: #2a4a6a; }
.ev-item--gm  { border-top-color: #4a2a2a; }
.ev-item--stellantis { border-top-color: #4a3a1a; }

.ev-item__maker {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.ev-item__charge {
  font-family: var(--font-mono);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--accent-red);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.ev-item__desc {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.ev-item__status {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 2px;
}

.ev-item__status--red {
  background: rgba(200, 76, 60, 0.1);
  color: var(--accent-red);
  border: 1px solid rgba(200, 76, 60, 0.18);
}

.ev-context { opacity: 0; }

/* ─── Gun Safety Layout ─── */
.gunsafety-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  opacity: 0;
}

.gunsafety-col {
  border-radius: 2px;
  padding: 1.5rem;
  border: 1px solid;
}

.gunsafety-col--dem {
  background: rgba(46, 184, 138, 0.03);
  border-color: rgba(46, 184, 138, 0.1);
}

.gunsafety-col--rep {
  background: rgba(200, 76, 60, 0.03);
  border-color: rgba(200, 76, 60, 0.1);
}

.gunsafety-col__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.gunsafety-col--dem .gunsafety-col__label { color: var(--accent-green); }
.gunsafety-col--rep .gunsafety-col__label { color: var(--accent-red); }

.gunsafety-items { display: flex; flex-direction: column; gap: 0.6rem; }

.gunsafety-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.gunsafety-item__icon {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
  padding: 0.3rem 0.4rem;
  flex-shrink: 0;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-width: 36px;
  text-align: center;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gunsafety-item__text {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

.gunsafety-col__note {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── Horizon Grid ─── */
.horizon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
  opacity: 0;
}

.horizon-card {
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  padding: 1.5rem 1.25rem;
}

.horizon-card__when {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-silver);
  margin-bottom: 0.6rem;
}

.horizon-card__what {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.horizon-card__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.horizon-card__tag--green {
  background: rgba(46, 184, 138, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(46, 184, 138, 0.18);
}

.horizon-card__tag--amber {
  background: rgba(184, 152, 85, 0.1);
  color: var(--accent-gold);
  border: 1px solid rgba(184, 152, 85, 0.18);
}

.horizon-card__tag--red {
  background: rgba(200, 76, 60, 0.1);
  color: var(--accent-red);
  border: 1px solid rgba(200, 76, 60, 0.18);
}

.horizon-card__tag--pale {
  background: rgba(180, 204, 220, 0.06);
  color: var(--accent-silver);
  border: 1px solid rgba(180, 204, 220, 0.12);
}

/* ─── Footer ─── */
.site-footer {
  padding: 3.5rem 2rem calc(2.5rem + env(safe-area-inset-bottom));
  text-align: center;
  border-top: 1px solid rgba(200, 76, 60, 0.08);
  background: rgba(8, 6, 2, 0.95);
}

.site-footer__brand {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.site-footer__pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px rgba(46, 184, 138, 0.6);
  animation: footerPulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes footerPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(46, 184, 138, 0.6); }
  50% { opacity: 0.4; box-shadow: 0 0 3px rgba(46, 184, 138, 0.2); }
}

.site-footer__regen,
.site-footer__session,
.site-footer__timestamp {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin: 0.3rem 0;
  line-height: 1.5;
}

.source {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  min-height: 44px;
}

.source:hover {
  color: var(--accent-silver);
  border-color: var(--accent-silver);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .eo2-layout { grid-template-columns: 1fr; }
  .tariff-layout { grid-template-columns: 1fr; }
  .carry-layout { grid-template-columns: 1fr; }
  .standoff-grid { grid-template-columns: 1fr; }
  .standoff-col--vs { flex-direction: row; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 0.75rem 0; }
  .statute-war__header { grid-template-columns: 1fr auto; }
  .statute-war__col-label--right { display: none; }
  .statute-war__body { grid-template-columns: 1fr; }
  .statute-war__pivot { display: none; }
  .statute-war__col--left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .ev-wall { grid-template-columns: 1fr; }
  .horizon-grid { grid-template-columns: repeat(2, 1fr); }
  .compact-impact { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 1.5rem; }
  .hero { padding: calc(44px + env(safe-area-inset-top) + 2.5rem) 1.5rem 4rem; }
  .gunsafety-layout { grid-template-columns: 1fr; }
  .meddebt-tension { grid-template-columns: 1fr; }
  .voterroll-event { grid-template-columns: 60px 1fr; gap: 1rem; padding: 1.25rem 1.25rem; }
  .deathcert-layout { flex-direction: column; }
  .deathcert-arrow { display: block; text-align: center; font-size: 1.4rem; }
  .horizon-grid { grid-template-columns: 1fr; }
  .compact-countdown { flex-direction: column; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .section { padding: 3rem 1.25rem; }
  .hero__title-line { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .hero__badge-row { flex-direction: column; }
  .hero__badge { border-right: none; border-bottom: 1px solid rgba(200,76,60,0.1); min-width: 100%; }
  .hero__badge:last-child { border-bottom: none; }
  .compact-impact { grid-template-columns: 1fr; }
}
