/* Legally Brief: Michigan — April 5, 2026 edition — “Pump Shock & Federal Friction” */

:root {
  --bg-primary: #060a12;
  --bg-secondary: #0a1220;
  --bg-surface: rgba(56, 189, 248, 0.04);
  --bg-elevated: rgba(251, 191, 36, 0.06);
  --text-primary: #e8f0f8;
  --text-secondary: #8ba4bc;
  --text-muted: #4a5f78;
  --accent-red: #f87171;
  --accent-red-dim: rgba(248, 113, 113, 0.12);
  --accent-green: #34d399;
  --accent-green-dim: rgba(52, 211, 153, 0.12);
  --accent-gold: #fbbf24;
  --accent-gold-dim: rgba(251, 191, 36, 0.14);
  --accent-blue: #38bdf8;
  --glass: rgba(6, 10, 18, 0.78);
  --glass-border: rgba(56, 189, 248, 0.12);
  --glass-highlight: rgba(251, 191, 36, 0.22);
  --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);
}

*, *::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);
  padding-top: calc(46px + env(safe-area-inset-top));
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0.045;
  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;
  min-height: 44px;
  background: rgba(4, 8, 16, 0.94);
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  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__track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  white-space: nowrap;
  animation: ticker-scroll 48s linear infinite;
  padding: 0.5rem 0;
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 1.5vw, 0.72rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.ticker__label {
  color: var(--accent-gold);
  font-weight: 700;
}

.ticker__sep { color: var(--text-muted); opacity: 0.6; }

.ticker__item { color: var(--text-primary); }

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

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(46px + env(safe-area-inset-top) + 2rem) 1.5rem 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 20% 20%, rgba(56, 189, 248, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 90% 70% at 85% 60%, rgba(251, 191, 36, 0.12) 0%, transparent 45%),
    linear-gradient(165deg, var(--bg-primary) 0%, var(--bg-secondary) 55%, #050810 100%);
  z-index: 0;
}

.hero__mesh {
  position: absolute;
  inset: -20%;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(56, 189, 248, 0.03) 80px, rgba(56, 189, 248, 0.03) 81px),
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(251, 191, 36, 0.02) 80px, rgba(251, 191, 36, 0.02) 81px);
  animation: mesh-drift 28s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes mesh-drift {
  from { transform: translate(0, 0) rotate(0deg); }
  to { transform: translate(-2%, 1%) rotate(0.5deg); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 58rem;
  text-align: center;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 1.4vw, 0.75rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 1.25rem;
  opacity: 0;
}

.hero__title {
  font-weight: 800;
  font-size: clamp(3.5rem, 12vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero__title .line-gold { color: var(--accent-gold); display: block; }
.hero__title .line-ice { color: var(--text-primary); display: block; }

.hero__lead {
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 44rem;
  margin: 0 auto 2rem;
  opacity: 0;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
}

.hero__stat {
  min-height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero__stat-val {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: var(--accent-gold);
}

.hero__stat-lbl {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.hero__scroll {
  position: absolute;
  bottom: calc(1.5rem + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  z-index: 2;
}

/* ─── Sections base ─── */
.section {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 1.5rem;
  border-top: 1px solid rgba(56, 189, 248, 0.08);
}

.ed-label {
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 1.2vw, 0.72rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 1rem;
  opacity: 0;
}

.section__title {
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 52rem;
  opacity: 0;
}

.section__body {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 42rem;
  opacity: 0;
}

.section__body + .section__body { margin-top: 1rem; }

.section__cite {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 1.75rem;
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(56, 189, 248, 0.25);
  transition: color 0.25s var(--ease-out-quart), border-color 0.25s;
}

.section__cite:hover {
  color: var(--accent-blue);
  border-color: var(--accent-blue);
}

/* Section skins */
.section--deep { background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%); }
.section--pulse { background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(248, 113, 113, 0.06) 0%, transparent 55%), var(--bg-primary); }
.section--lake { background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, transparent 40%), var(--bg-primary); }
.section--amber { background: linear-gradient(180deg, rgba(251, 191, 36, 0.04) 0%, transparent 60%); }

/* ─── MSC: case ribbon ─── */
.msc-wrap { max-width: 72rem; margin: 0 auto; opacity: 0; }

.msc-ribbon {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 3px solid var(--accent-gold);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.msc-case {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.msc-case:last-child { border-bottom: none; }

.msc-case__name {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.msc-case__hold {
  font-size: clamp(0.9rem, 1.15vw, 1.02rem);
  line-height: 1.65;
  color: var(--text-secondary);
}

.msc-dissent {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--accent-red-dim);
  border-radius: 2px;
  border: 1px solid rgba(248, 113, 113, 0.2);
}

.msc-dissent__tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 0.5rem;
}

.msc-dissent p {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── Compact: timeline rail ─── */
.compact-rail {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  margin: 2rem 0;
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
}

.compact-rail__seg {
  flex: 1 1 140px;
  min-width: 120px;
  padding: 1.25rem 1rem;
  background: var(--bg-surface);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.compact-rail__seg:last-child { border-right: none; }

.compact-rail__seg--done {
  background: var(--accent-green-dim);
}

.compact-rail__date {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.compact-rail__evt {
  font-weight: 600;
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  margin-top: 0.35rem;
  color: var(--text-primary);
}

.compact-rail__note {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 0.35rem;
}

.compact-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  margin-top: 1rem;
  overflow: hidden;
  max-width: 36rem;
}

.compact-bar__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
  border-radius: 4px;
}

/* ─── Swoope: split statute ─── */
.swoope-split {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  align-items: flex-start;
  opacity: 0;
}

.swoope-col {
  flex: 1 1 280px;
  padding: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: 2px;
}

.swoope-col--wrong h3 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 0.75rem;
}

.swoope-col--right h3 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 0.75rem;
}

.swoope-col p {
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  line-height: 1.7;
  color: var(--text-secondary);
}

.swoope-mcl {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-gold);
  margin-top: 1rem;
}

/* ─── Warren: quote pillar ─── */
.warren-pillar {
  max-width: 38rem;
  margin: 2rem auto 0;
  text-align: center;
  opacity: 0;
}

.warren-pillar blockquote {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
  font-style: italic;
  color: var(--text-primary);
  border: none;
  padding: 0;
}

.warren-pillar cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

/* ─── Vote: staggered file ─── */
.vote-file {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 48rem;
  opacity: 0;
}

.vote-file__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: 2px;
}

.vote-file__row:nth-child(even) { margin-left: 0; }

@media (min-width: 769px) {
  .vote-file__row:nth-child(even) { margin-left: 8%; max-width: 92%; }
}

.vote-file__k {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  flex: 0 0 100%;
}

.vote-file__v {
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ─── USDA: compare slabs ─── */
.usda-compare {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  opacity: 0;
}

.usda-slab {
  flex: 1 1 300px;
  padding: 1.75rem;
  border-radius: 2px;
  min-height: 44px;
}

.usda-slab--old {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
}

.usda-slab--new {
  background: var(--accent-red-dim);
  border: 1px solid rgba(248, 113, 113, 0.25);
}

.usda-slab h3 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.usda-slab--new h3 { color: var(--accent-red); }

.usda-slab ul {
  list-style: none;
  padding: 0;
}

.usda-slab li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.65rem;
  font-size: clamp(0.88rem, 1.05vw, 0.98rem);
  line-height: 1.55;
  color: var(--text-secondary);
}

.usda-slab li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--accent-blue);
  border-radius: 50%;
}

.usda-slab--new li::before { background: var(--accent-red); }

.usda-bigrow {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  color: var(--text-muted);
}

.usda-bigrow span { color: var(--accent-gold); font-weight: 600; }

/* ─── Brown: dissent band ─── */
.brown-band {
  margin-top: 2rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.06), transparent);
  border-top: 1px solid rgba(56, 189, 248, 0.12);
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
  opacity: 0;
}

.brown-band__nums {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1;
  color: var(--accent-red);
  margin-bottom: 0.5rem;
}

.brown-band__sub {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.brown-band p {
  max-width: 48rem;
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  color: var(--text-secondary);
}

.brown-dissent {
  margin-top: 1.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--accent-gold);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  color: var(--text-secondary);
  line-height: 1.65;
}

.brown-dissent strong { color: var(--text-primary); }

/* ─── CREBLA: filing strip ─── */
.crebla-strip {
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: clamp(0.78rem, 1.05vw, 0.88rem);
  line-height: 1.8;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  padding: 1.5rem;
  border-radius: 2px;
  opacity: 0;
}

.crebla-strip .row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

.crebla-strip .row:last-child { border-bottom: none; }

.crebla-strip .k { color: var(--text-muted); min-width: 8rem; }
.crebla-strip .v { color: var(--text-primary); flex: 1 1 200px; }

/* ─── PFAS: monument ─── */
.pfas-monument {
  margin-top: 2.5rem;
  text-align: center;
  opacity: 0;
}

.pfas-monument__num {
  font-weight: 800;
  font-size: clamp(3rem, 14vw, 7rem);
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pfas-monument__cap {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.pfas-deadline {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent-green-dim);
  border: 1px solid rgba(52, 211, 153, 0.25);
  font-family: var(--font-mono);
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  color: var(--accent-green);
  letter-spacing: 0.06em;
}

/* ─── HUD: impact strip ─── */
.hud-strip {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
}

.hud-pill {
  flex: 1 1 200px;
  padding: 1.25rem 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: 2px;
}

.hud-pill__n {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--accent-blue);
}

.hud-pill__t {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 0.35rem;
  line-height: 1.5;
}

/* ─── Tariff: docket strip + ring ─── */
.tariff-docket {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  opacity: 0;
}

.tariff-ring-wrap {
  flex: 0 0 auto;
  width: 120px;
  height: 120px;
  position: relative;
}

.tariff-ring-wrap svg { transform: rotate(-90deg); }

.tariff-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 8;
}

.tariff-ring-fg {
  fill: none;
  stroke: var(--accent-gold);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
}

.tariff-docket__text {
  flex: 1 1 260px;
}

.tariff-docket__text p {
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  color: var(--text-secondary);
}

.tariff-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* ─── Horizon: vertical timeline ─── */
.horizon-vt {
  margin-top: 2rem;
  max-width: 44rem;
  border-left: 2px solid rgba(56, 189, 248, 0.25);
  padding-left: 1.75rem;
  opacity: 0;
}

.horizon-node {
  position: relative;
  padding-bottom: 2rem;
}

.horizon-node::before {
  content: '';
  position: absolute;
  left: calc(-1.75rem - 6px);
  top: 0.35rem;
  width: 10px;
  height: 10px;
  background: var(--accent-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--bg-primary);
}

.horizon-node__when {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.35rem;
}

.horizon-node__what {
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ─── Footer ─── */
.site-footer {
  padding: 3rem 1.5rem calc(3rem + env(safe-area-inset-bottom));
  text-align: center;
  border-top: 1px solid rgba(56, 189, 248, 0.1);
  background: var(--bg-secondary);
}

.site-footer__brand {
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.15rem);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.site-footer__pulse {
  width: 8px;
  height: 8px;
  background: #17b26a;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(23, 178, 106, 0.7);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(1.15); }
}

.site-footer__regen {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 28rem;
  margin: 0 auto 1rem;
}

.site-footer__session {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-blue);
}

.site-footer__timestamp {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.site-footer .source {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  text-decoration: none;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

/* Initial hidden states for JS */
.msc-wrap,
.compact-rail,
.swoope-split,
.warren-pillar,
.vote-file,
.usda-compare,
.brown-band,
.crebla-strip,
.pfas-monument,
.hud-strip,
.tariff-docket,
.horizon-vt { opacity: 0; }

@media (max-width: 768px) {
  .swoope-split { flex-direction: column; }
  .compact-rail { flex-direction: column; }
  .compact-rail__seg { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .compact-rail__seg:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; align-items: stretch; }
  .hero__stat { align-items: flex-start; }
  .vote-file__row:nth-child(even) { margin-left: 0; max-width: 100%; }
}
