/* ─── Design Tokens ─── */
:root {
  --bg-primary: #060d14;
  --bg-secondary: #0a1520;
  --bg-surface: rgba(77, 166, 212, 0.04);
  --bg-elevated: rgba(77, 166, 212, 0.08);
  --text-primary: #e4f0f6;
  --text-secondary: #7eadc5;
  --text-muted: #344e5e;
  --accent-red: #e05c4b;
  --accent-red-dim: rgba(224, 92, 75, 0.12);
  --accent-green: #2eb88a;
  --accent-green-dim: rgba(46, 184, 138, 0.12);
  --accent-gold: #c8913a;
  --accent-gold-dim: rgba(200, 145, 58, 0.12);
  --accent-blue: #4da6d4;
  --accent-blue-dim: rgba(77, 166, 212, 0.1);
  --accent-teal: #27a69a;
  --glass: rgba(6, 18, 28, 0.72);
  --glass-border: rgba(77, 166, 212, 0.12);
  --glass-highlight: rgba(77, 166, 212, 0.28);
  --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.03;
  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(4, 10, 18, 0.95);
  border-bottom: 1px solid rgba(77, 166, 212, 0.18);
  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__track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  height: 100%;
  animation: tickerScroll 90s linear infinite;
  will-change: transform;
}

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

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

@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) + 3rem) 2rem 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(20, 80, 130, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 70%, rgba(39, 166, 154, 0.06) 0%, transparent 60%),
    var(--bg-primary);
  text-align: center;
}

/* Depth rings — concentric circles suggesting depth beneath the Straits */
.hero__depth-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(77, 166, 212, 0.07);
  pointer-events: none;
  animation: ringPulse 8s ease-in-out infinite;
}
.hero__depth-ring--1 { width: 40vmax; height: 40vmax; animation-delay: 0s; }
.hero__depth-ring--2 { width: 65vmax; height: 65vmax; animation-delay: 2.5s; }
.hero__depth-ring--3 { width: 90vmax; height: 90vmax; animation-delay: 5s; }

@keyframes ringPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.08; transform: scale(1.02); }
}

/* Pipeline visual — horizontal bar representing the pipeline beneath water */
.hero__pipeline {
  position: absolute;
  bottom: 28%;
  left: 0;
  right: 0;
  height: 2px;
  display: flex;
  align-items: center;
  pointer-events: none;
  overflow: hidden;
}

.hero__pipeline-tube {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(200, 145, 58, 0.15) 15%,
    rgba(200, 145, 58, 0.35) 30%,
    rgba(200, 145, 58, 0.5) 50%,
    rgba(200, 145, 58, 0.35) 70%,
    rgba(200, 145, 58, 0.15) 85%,
    transparent 100%
  );
  animation: pipelineFlow 6s linear infinite;
}

@keyframes pipelineFlow {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(0.55rem, 1.2vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-blue);
  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, 13vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0;
}

.hero__title-line--accent {
  color: var(--accent-blue);
  text-shadow: 0 0 60px rgba(77, 166, 212, 0.25);
}

.hero__title-line--stake {
  color: var(--accent-gold);
  text-shadow: 0 0 60px rgba(200, 145, 58, 0.2);
}

.hero__lead {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 660px;
  margin: 0 auto 2.5rem;
  opacity: 0;
}

.hero__meta-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(77, 166, 212, 0.12);
  border-radius: 3px;
  overflow: hidden;
  max-width: 620px;
  margin: 0 auto;
  opacity: 0;
}

.hero__meta-item {
  padding: 0.75rem 1.5rem;
  border-right: 1px solid rgba(77, 166, 212, 0.12);
  flex: 1;
  min-width: 120px;
  text-align: center;
}

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

.hero__meta-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.hero__meta-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-blue);
}

.hero__scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  opacity: 0;
  animation: scrollCueFade 2s ease-out 2s forwards;
}

.hero__scroll-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-arrow {
  width: 16px;
  height: 26px;
  animation: scrollBob 2.2s ease-in-out infinite;
}

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

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

/* ─── Sections ─── */
.section {
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: calc(6rem + 0px);
}

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

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

.section--teal {
  background: linear-gradient(180deg, #070f18 0%, #081318 100%);
  border-top-color: rgba(39, 166, 154, 0.12);
}

.section--teal-dark {
  background: linear-gradient(180deg, #060e12 0%, #08111a 100%);
  border-top-color: rgba(39, 166, 154, 0.1);
}

.section--confrontation {
  background: linear-gradient(180deg, #080c14 0%, #0a1220 100%);
}

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

.section__overline {
  font-family: var(--font-mono);
  font-size: clamp(0.55rem, 1vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-blue);
  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.08;
  color: var(--text-primary);
  margin-bottom: 2rem;
  max-width: 900px;
  opacity: 0;
}

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

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

.section__body--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.section__cite {
  display: inline-flex;
  align-items: center;
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--accent-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(77, 166, 212, 0.25);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
  min-height: 44px;
  align-items: flex-end;
  padding-bottom: 8px;
}

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

.section__cite--center {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.section__callout {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(77, 166, 212, 0.05);
  border-left: 3px solid var(--accent-blue);
  border-radius: 0 3px 3px 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 780px;
  opacity: 0;
}

.section__callout-label {
  font-weight: 700;
  color: var(--accent-blue);
  margin-right: 0.4rem;
}

/* ─── Split Layout ─── */
.section__split {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3.5rem;
  margin-top: 0.5rem;
  align-items: start;
}

.section__split--narrow {
  grid-template-columns: 1fr 240px;
}

.section__split-main { }

.section__split-aside {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ─── Aside Cards ─── */
.aside-card {
  padding: 1.1rem 1.2rem;
  border-radius: 3px;
  border: 1px solid;
  opacity: 0;
}

.aside-card--blue {
  background: rgba(77, 166, 212, 0.06);
  border-color: rgba(77, 166, 212, 0.15);
}

.aside-card--amber {
  background: rgba(200, 145, 58, 0.06);
  border-color: rgba(200, 145, 58, 0.15);
}

.aside-card--red {
  background: rgba(224, 92, 75, 0.06);
  border-color: rgba(224, 92, 75, 0.15);
}

.aside-card--muted {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.06);
}

.aside-card__label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.aside-card__value {
  font-family: var(--font-mono);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.aside-card--blue .aside-card__value { color: var(--accent-blue); }
.aside-card--amber .aside-card__value { color: var(--accent-gold); }
.aside-card--red .aside-card__value { color: var(--accent-red); }

.aside-card__sub {
  font-size: 0.73rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.aside-card__sub--solo {
  margin-top: 0.2rem;
}

/* ─── Argument Grid ─── */
.argument-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  opacity: 0;
}

.argument-block {
  padding: 1.5rem 1.75rem;
  border-radius: 3px;
  border: 1px solid;
}

.argument-block--challenge {
  background: rgba(224, 92, 75, 0.04);
  border-color: rgba(224, 92, 75, 0.15);
}

.argument-block--enbridge {
  background: rgba(200, 145, 58, 0.04);
  border-color: rgba(200, 145, 58, 0.15);
}

.argument-block__header {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.argument-block--challenge .argument-block__header { color: var(--accent-red); }
.argument-block--enbridge .argument-block__header { color: var(--accent-gold); }

.argument-block__text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.argument-block__parties {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* ─── Big Numbers Wall (Gelman) ─── */
.numbers-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(39, 166, 154, 0.15);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 3rem;
  opacity: 0;
}

.big-number {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(39, 166, 154, 0.12);
  text-align: center;
}

.big-number:last-child { border-right: none; }

.big-number__figure {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--accent-teal);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.big-number__label {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.gelman-body {
  max-width: 760px;
  margin: 0 auto;
}

/* ─── Legislative Tracker ─── */
.legtrack {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 0;
  flex-wrap: wrap;
  opacity: 0;
}

.legtrack:last-of-type { border-bottom: none; }

.legtrack__bill {
  min-width: 160px;
  flex-shrink: 0;
}

.legtrack__bill-id {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 0.2rem;
}

.legtrack__bill-name {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.legtrack__stages {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 280px;
}

.legtrack__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.legtrack__stage-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

.legtrack__stage--done .legtrack__stage-dot {
  background: var(--accent-green);
}

.legtrack__stage-dot--active {
  background: var(--accent-green) !important;
  box-shadow: 0 0 10px rgba(46, 184, 138, 0.5);
}

.legtrack__stage-dot--pending {
  background: transparent !important;
  border: 1px solid var(--text-muted);
}

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

.legtrack__stage--done .legtrack__stage-label { color: var(--accent-green); }

.legtrack__stage-line {
  flex: 1;
  height: 1px;
  background: var(--text-muted);
  opacity: 0.3;
  min-width: 20px;
}

.legtrack__stage-line--done {
  background: var(--accent-green);
  opacity: 0.5;
}

.provision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
  margin: 2.5rem 0;
  opacity: 0;
}

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

.provision__icon {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-green);
  margin-bottom: 0.6rem;
  line-height: 1;
}

.provision__text {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
}

/* ─── Confrontation Layout ─── */
.confrontation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  opacity: 0;
}

.confrontation__side {
  padding: 2rem 1.75rem;
  border-radius: 3px;
}

.confrontation__side--left {
  background: rgba(224, 92, 75, 0.05);
  border: 1px solid rgba(224, 92, 75, 0.15);
}

.confrontation__side--right {
  background: rgba(77, 166, 212, 0.05);
  border: 1px solid rgba(77, 166, 212, 0.15);
}

.confrontation__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.confrontation__side--left .confrontation__label { color: var(--accent-red); }
.confrontation__side--right .confrontation__label { color: var(--accent-blue); }

.confrontation__text {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

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

.confrontation__tag--red {
  background: rgba(224, 92, 75, 0.12);
  color: var(--accent-red);
  border: 1px solid rgba(224, 92, 75, 0.2);
}

.confrontation__tag--blue {
  background: rgba(77, 166, 212, 0.1);
  color: var(--accent-blue);
  border: 1px solid rgba(77, 166, 212, 0.2);
}

.confrontation__divider {
  display: flex;
  align-items: center;
  padding-top: 2.5rem;
}

.confrontation__vs {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ─── Executive Order Card ─── */
.eo-card {
  border: 1px solid rgba(200, 145, 58, 0.15);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 0.5rem;
  opacity: 0;
}

.eo-card__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(200, 145, 58, 0.06);
  border-bottom: 1px solid rgba(200, 145, 58, 0.12);
}

.eo-card__seal {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-gold);
  border: 2px solid rgba(200, 145, 58, 0.35);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eo-card__number {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.eo-card__subject {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.eo-card__authority {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.eo-timeline {
  display: flex;
  gap: 0;
}

.eo-timeline__event {
  flex: 1;
  padding: 1.5rem 1.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.eo-timeline__event:last-child { border-right: none; }

.eo-timeline__date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.eo-timeline__desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ─── Pullquote ─── */
.pullquote {
  margin: 0 auto 2rem;
  max-width: 700px;
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--accent-blue);
  background: rgba(77, 166, 212, 0.04);
  border-radius: 0 3px 3px 0;
  opacity: 0;
}

.pullquote__text {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
  font-weight: 600;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.pullquote__cite {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-style: normal;
}

/* ─── Legal Breakdown ─── */
.legal-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
  opacity: 0;
}

.legal-breakdown__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.75rem;
}

.legal-breakdown__text {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ─── Rule Comparison (Wolverine PFAS) ─── */
.rule-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
  opacity: 0;
}

.rule-comparison__col {
  padding: 1.5rem 1.75rem;
  border-radius: 3px;
  border: 1px solid;
}

.rule-comparison__col--wolverine {
  background: rgba(200, 145, 58, 0.04);
  border-color: rgba(200, 145, 58, 0.15);
}

.rule-comparison__col--egle {
  background: rgba(46, 184, 138, 0.04);
  border-color: rgba(46, 184, 138, 0.15);
}

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

.rule-comparison__col--wolverine .rule-comparison__header { color: var(--accent-gold); }
.rule-comparison__col--egle .rule-comparison__header { color: var(--accent-green); }

.rule-comparison__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

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

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

.rule-comparison__cite {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ─── Case Card (COA PIP) ─── */
.case-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 0.5rem;
  opacity: 0;
}

.case-card__caption {
  padding: 0.85rem 1.5rem;
  background: rgba(255, 255, 255, 0.025);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.case-card__caption em { color: var(--text-secondary); font-style: italic; }

.case-card__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.case-card__col {
  padding: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.case-card__col:last-child { border-right: none; }

.case-card__section-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.75rem;
}

.case-card__text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ─── Enforcement Grid (Cannabis) ─── */
.enforcement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
  margin: 1.5rem 0;
  opacity: 0;
}

.enforcement-item {
  background: var(--bg-primary);
  padding: 1.25rem 1.5rem;
}

.enforcement-item__operator {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.enforcement-item__dba {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.enforcement-item__violation {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

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

.enforcement-item__status--complaint {
  background: rgba(224, 92, 75, 0.1);
  color: var(--accent-red);
  border: 1px solid rgba(224, 92, 75, 0.2);
}

.enforcement-item__status--disciplinary {
  background: rgba(200, 145, 58, 0.1);
  color: var(--accent-gold);
  border: 1px solid rgba(200, 145, 58, 0.2);
}

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

.horizon-event {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.015);
}

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

.horizon-event__what {
  font-size: 0.87rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ─── Footer ─── */
.site-footer {
  padding: 3.5rem 2rem calc(2.5rem + env(safe-area-inset-bottom));
  text-align: center;
  border-top: 1px solid rgba(77, 166, 212, 0.08);
  background: rgba(4, 10, 18, 0.9);
}

.site-footer__brand {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  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 4px rgba(46, 184, 138, 0.2); }
}

.site-footer__regen,
.site-footer__session,
.site-footer__timestamp {
  font-size: 0.78rem;
  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.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

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

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .numbers-wall { grid-template-columns: repeat(2, 1fr); }
  .provision-grid { grid-template-columns: repeat(2, 1fr); }
  .horizon-strip { grid-template-columns: repeat(2, 1fr); }
  .section__split { grid-template-columns: 1fr; }
  .section__split-aside { flex-direction: row; flex-wrap: wrap; }
  .aside-card { flex: 1; min-width: 180px; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 1.5rem; }
  .hero { padding: calc(44px + env(safe-area-inset-top) + 2rem) 1.5rem 3rem; }
  .argument-grid { grid-template-columns: 1fr; }
  .confrontation { grid-template-columns: 1fr; }
  .confrontation__divider { display: none; }
  .legal-breakdown { grid-template-columns: 1fr; }
  .rule-comparison { grid-template-columns: 1fr; }
  .case-card__split { grid-template-columns: 1fr; }
  .case-card__col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .enforcement-grid { grid-template-columns: 1fr; }
  .eo-timeline { flex-direction: column; }
  .eo-timeline__event { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .hero__meta-strip { gap: 0; }
  .hero__meta-item { min-width: 100px; padding: 0.6rem 0.75rem; }
  .legtrack { gap: 0.75rem; }
  .legtrack__stages { min-width: 220px; }
  .numbers-wall { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .section { padding: 3rem 1.25rem; }
  .hero__title-line { font-size: clamp(3rem, 16vw, 5rem); }
  .provision-grid { grid-template-columns: repeat(2, 1fr); }
  .horizon-strip { grid-template-columns: 1fr; }
  .numbers-wall { grid-template-columns: 1fr 1fr; }
  .big-number { padding: 1.25rem 1rem; }
  .pullquote { padding: 1.25rem 1.25rem; }
  .section__split-aside { flex-direction: column; }
  .aside-card { min-width: 100%; }
  .hero__meta-strip { flex-direction: column; }
  .hero__meta-item { border-right: none; border-bottom: 1px solid rgba(77,166,212,0.1); }
  .hero__meta-item:last-child { border-bottom: none; }
}
