/* ── On Every Front — March 22, 2026 ─────────────────────────────────────── */

:root {
  --bg-primary: #160D1E;
  --bg-secondary: #1F1228;
  --bg-surface: #2A1A38;
  --bg-elevated: #362248;
  --text-primary: #F2EAF8;
  --text-secondary: #A892C0;
  --text-muted: #5C4878;
  --accent-primary: #C47AE8;
  --accent-primary-dim: rgba(196, 122, 232, 0.12);
  --accent-secondary: #F5A420;
  --accent-secondary-dim: rgba(245, 164, 32, 0.12);
  --accent-highlight: #E84C68;
  --accent-highlight-dim: rgba(232, 76, 104, 0.12);
  --accent-info: #48C8E8;
  --accent-info-dim: rgba(72, 200, 232, 0.12);
  --glass: rgba(22, 13, 30, 0.9);
  --glass-border: rgba(196, 122, 232, 0.15);
  --glass-highlight: rgba(196, 122, 232, 0.32);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', 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 { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

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

/* ── TICKER ─────────────────────────────────────────────────────────────── */

.ticker-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: calc(46px + env(safe-area-inset-top));
  z-index: 9999;
  overflow: hidden;
  background: rgba(22, 13, 30, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 122, 232, 0.2);
  display: flex;
  align-items: flex-end;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 90s linear infinite;
  padding-bottom: 10px;
}

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

.ticker-item {
  display: inline-block;
  padding: 0 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.ticker-item::after {
  content: ' ·';
  color: var(--accent-primary);
  opacity: 0.4;
  margin-left: 2.5rem;
}

/* ── HERO ────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: calc(46px + env(safe-area-inset-top) + 3.5rem);
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Concentric rings background — shield/protection aesthetic */
.hero__rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__rings::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 85vw;
  height: 85vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(196, 122, 232, 0.07) 0%, transparent 55%),
    radial-gradient(circle at 35% 40%, rgba(72, 200, 232, 0.04) 0%, transparent 50%);
  animation: ring-breathe 12s ease-in-out infinite;
}

.hero__rings::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 85vw;
  height: 85vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 30%, rgba(196, 122, 232, 0.06) 32%, transparent 34%),
    radial-gradient(circle, transparent 50%, rgba(196, 122, 232, 0.04) 52%, transparent 54%),
    radial-gradient(circle, transparent 70%, rgba(196, 122, 232, 0.025) 72%, transparent 74%);
  animation: ring-breathe 12s ease-in-out infinite 1.5s;
}

@keyframes ring-breathe {
  0%, 100% { opacity: 0.8; transform: translateY(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateY(-50%) scale(1.04); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: clamp(0.52rem, 1vw, 0.62rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero__eyebrow em {
  font-style: italic;
  font-family: var(--font-serif);
  text-transform: none;
  letter-spacing: normal;
  color: var(--accent-primary);
  opacity: 0.75;
  font-size: 0.8rem;
}

.hero__eyebrow-pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-primary);
  flex-shrink: 0;
  animation: dot-pulse 2.5s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.25; transform: scale(0.45); }
}

.hero__law-label {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent-primary);
  opacity: 0.3;
  margin-bottom: 0.1em;
}

.hero__sub-law {
  font-family: var(--font-mono);
  font-size: clamp(0.52rem, 1vw, 0.62rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-primary);
  opacity: 0.5;
  margin-bottom: 1.75rem;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero__headline em {
  font-style: italic;
  color: var(--accent-primary);
  display: block;
}

.hero__lead {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.78;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 2rem;
}

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

.hero__source:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}

/* Hero right: verdict grid */
.hero__verdict-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero__verdict-cell {
  padding: 1.25rem 1.5rem;
  border-radius: 3px;
  border: 1px solid;
}

.hero__verdict-cell--on {
  background: rgba(196, 122, 232, 0.06);
  border-color: rgba(196, 122, 232, 0.25);
}

.hero__verdict-cell--off {
  background: rgba(232, 76, 104, 0.04);
  border-color: rgba(232, 76, 104, 0.18);
}

.hero__verdict-cell--context {
  background: rgba(72, 200, 232, 0.04);
  border-color: rgba(72, 200, 232, 0.12);
}

.hero__verdict-status {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid;
}

.hero__verdict-cell--on .hero__verdict-status {
  color: var(--accent-primary);
  border-color: rgba(196, 122, 232, 0.18);
}

.hero__verdict-cell--off .hero__verdict-status {
  color: var(--accent-highlight);
  border-color: rgba(232, 76, 104, 0.15);
}

.hero__verdict-cell--context .hero__verdict-status,
.hero__verdict-label {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-info);
  margin-bottom: 0.6rem;
}

.hero__verdict-item {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-secondary);
  padding: 0.2rem 0;
  line-height: 1.4;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.hero__verdict-cell--on .hero__verdict-item::before {
  content: '✓';
  color: var(--accent-primary);
  flex-shrink: 0;
  font-size: 0.6rem;
}

.hero__verdict-cell--off .hero__verdict-item::before {
  content: '✗';
  color: var(--accent-highlight);
  flex-shrink: 0;
  font-size: 0.6rem;
}

.hero__verdict-desc {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero__verdict-desc em {
  font-style: italic;
  color: var(--accent-info);
}

/* ── PAGE WRAP ───────────────────────────────────────────────────────────── */

.page-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

/* ── SECTIONS BASE ───────────────────────────────────────────────────────── */

section {
  position: relative;
  padding: 5.5rem 0;
  z-index: 2;
}

section:nth-of-type(even) {
  background: var(--bg-secondary);
}

/* ── SHARED ──────────────────────────────────────────────────────────────── */

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.citation-link {
  display: inline-flex;
  align-items: flex-end;
  min-height: 44px;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 122, 232, 0.18);
  padding-bottom: 2px;
  margin-top: 1.5rem;
  transition: color 0.2s, border-color 0.2s;
}

.citation-link:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}

/* ── SECTION: HUD FAIR HOUSING ───────────────────────────────────────────── */

.s-housing {
  background: var(--bg-secondary) !important;
}

.housing-rule-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(196, 122, 232, 0.2);
  border-bottom: 1px solid rgba(196, 122, 232, 0.2);
  margin-bottom: 2.5rem;
}

.housing-rule-label {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.housing-rule-date {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  color: var(--accent-secondary);
}

.housing-main {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start;
}

.housing-quote-col {
  padding: 2rem;
  background: var(--accent-primary-dim);
  border-left: 3px solid var(--accent-primary);
  border-radius: 0 2px 2px 0;
}

.housing-quote-mark {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 0.8;
  color: var(--accent-primary);
  opacity: 0.3;
  margin-bottom: 0.5rem;
  display: block;
}

.housing-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.housing-quote-attr {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.housing-quote-court {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  opacity: 0.6;
}

.housing-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.housing-body {
  font-size: clamp(0.92rem, 1.2vw, 1.02rem);
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.housing-conditions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.housing-condition {
  padding: 0.75rem 1rem;
  border-left: 2px solid rgba(232, 76, 104, 0.3);
  background: rgba(232, 76, 104, 0.04);
}

.housing-condition__tag {
  font-family: var(--font-mono);
  font-size: 0.48rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-highlight);
  margin-bottom: 0.2rem;
}

.housing-condition__text {
  font-size: clamp(0.85rem, 1.1vw, 0.93rem);
  color: var(--text-secondary);
  line-height: 1.45;
}

/* ── SECTION: HUMAN TRAFFICKING AB 1656 ─────────────────────────────────── */

.s-trafficking {
  background: var(--bg-primary) !important;
}

.trafficking-header {
  margin-bottom: 2rem;
}

.trafficking-eyebrow {
  color: var(--accent-secondary);
}

.trafficking-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.trafficking-author {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--accent-secondary);
}

.trafficking-vote-display {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 2rem 2.5rem;
  background: var(--accent-secondary-dim);
  border: 1px solid rgba(245, 164, 32, 0.2);
  border-radius: 2px;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.trafficking-vote-num,
.trafficking-vote-noes {
  font-family: var(--font-mono);
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent-secondary);
  text-shadow: 0 0 60px rgba(245, 164, 32, 0.25);
}

.trafficking-vote-dash {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 5vw, 3rem);
  color: rgba(245, 164, 32, 0.2);
  font-weight: 200;
  align-self: center;
}

.trafficking-vote-noes {
  color: var(--text-muted);
  opacity: 0.5;
  text-shadow: none;
}

.trafficking-vote-label {
  flex: 1;
  min-width: 200px;
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  color: var(--text-secondary);
  line-height: 1.55;
  align-self: center;
}

.trafficking-what {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(245, 164, 32, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.trafficking-what__block {
  padding: 1.75rem;
  border-right: 1px solid rgba(245, 164, 32, 0.08);
}

.trafficking-what__block:last-child { border-right: none; }

.trafficking-what__label {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(245, 164, 32, 0.08);
}

.trafficking-what__body {
  font-size: clamp(0.85rem, 1.1vw, 0.93rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── SECTION: VC REPORTING LAW ───────────────────────────────────────────── */

.s-vclaw {
  background: var(--bg-secondary) !important;
}

.vclaw-wrap {
  border: 1px solid rgba(72, 200, 232, 0.15);
  background: rgba(72, 200, 232, 0.03);
  border-radius: 2px;
  padding: 2.25rem;
  margin-bottom: 1rem;
}

.vclaw-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: rgba(245, 164, 32, 0.15);
  border: 1px solid rgba(245, 164, 32, 0.3);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  margin-bottom: 1.25rem;
}

.vclaw-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.vclaw-agency {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--accent-info);
}

.vclaw-date {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.vclaw-title {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.vclaw-body {
  font-size: clamp(0.92rem, 1.2vw, 1.02rem);
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  max-width: 700px;
}

/* VC Timeline */
.vclaw-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.vclaw-timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(72, 200, 232, 0.12);
}

.vclaw-timeline__item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 0.85rem 0;
  position: relative;
}

.vclaw-timeline__node {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.vclaw-timeline__item--done .vclaw-timeline__node {
  background: rgba(196, 122, 232, 0.15);
  border: 1px solid rgba(196, 122, 232, 0.25);
  color: var(--accent-primary);
}

.vclaw-timeline__item--pause .vclaw-timeline__node {
  background: rgba(245, 164, 32, 0.15);
  border: 1px solid rgba(245, 164, 32, 0.4);
  color: var(--accent-secondary);
}

.vclaw-timeline__item--pending .vclaw-timeline__node {
  background: transparent;
  border: 1px dashed var(--text-muted);
  color: var(--text-muted);
}

.vclaw-timeline__date {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.vclaw-timeline__item--pause .vclaw-timeline__date { color: var(--accent-secondary); }

.vclaw-timeline__text {
  font-size: clamp(0.87rem, 1.1vw, 0.96rem);
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── SECTION: SAN DIEGO ICE DETENTION ────────────────────────────────────── */

.s-detention {
  background: var(--bg-primary) !important;
}

.detention-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-highlight);
  margin-bottom: 1.75rem;
}

.detention-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.detention-title {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.detention-body {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.detention-stat {
  padding: 1rem 1.25rem;
  border-left: 2px solid rgba(232, 76, 104, 0.3);
  background: rgba(232, 76, 104, 0.03);
  margin-bottom: 0.75rem;
}

.detention-stat__num {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent-highlight);
  margin-bottom: 0.2rem;
}

.detention-stat__label {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.35;
}

.detention-conditions {
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: var(--bg-surface);
  border: 1px solid rgba(232, 76, 104, 0.12);
  border-radius: 2px;
}

.detention-conditions__label {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.detention-cond-item {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.4;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(196, 122, 232, 0.04);
  display: flex;
  gap: 0.5rem;
}

.detention-cond-item::before {
  content: '—';
  color: var(--accent-highlight);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  flex-shrink: 0;
}

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

/* ── SECTION: SMOKE INSURANCE ────────────────────────────────────────────── */

.s-smoke {
  background: var(--bg-secondary) !important;
}

.smoke-intro {
  margin-bottom: 2.5rem;
}

.smoke-eyebrow {
  color: var(--accent-highlight);
}

.smoke-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.smoke-lead {
  font-size: clamp(0.92rem, 1.3vw, 1.02rem);
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 680px;
}

.smoke-number-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2.5rem;
  background: var(--accent-highlight-dim);
  border: 1px solid rgba(232, 76, 104, 0.18);
  border-radius: 2px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.smoke-big-num {
  text-align: center;
}

.smoke-num-val {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent-highlight);
  text-shadow: 0 0 60px rgba(232, 76, 104, 0.2);
  margin-bottom: 0.4rem;
}

.smoke-num-label {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}

.smoke-divider {
  width: 1px;
  height: 80px;
  background: rgba(232, 76, 104, 0.15);
  flex-shrink: 0;
}

.smoke-provisions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(232, 76, 104, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.smoke-provision {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid rgba(232, 76, 104, 0.07);
  background: rgba(232, 76, 104, 0.02);
}

.smoke-provision:last-child { border-right: none; }

.smoke-provision__icon {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.smoke-provision__title {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-highlight);
  margin-bottom: 0.5rem;
}

.smoke-provision__body {
  font-size: clamp(0.83rem, 1vw, 0.9rem);
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── SECTION: EL MONTE SETTLEMENT ────────────────────────────────────────── */

.s-elmont {
  background: var(--bg-primary) !important;
}

.elmont-header {
  margin-bottom: 1.5rem;
}

.elmont-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.elmont-card {
  border: 1px solid rgba(196, 122, 232, 0.15);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.elmont-card__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(196, 122, 232, 0.1);
  background: rgba(196, 122, 232, 0.03);
}

.elmont-card__party {
  padding: 1.25rem 1.5rem;
  border-right: 1px solid rgba(196, 122, 232, 0.08);
}

.elmont-card__party:last-child { border-right: none; }

.elmont-card__party-label {
  font-family: var(--font-mono);
  font-size: 0.48rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.elmont-card__party-name {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent-primary);
  line-height: 1.3;
}

.elmont-card__body {
  padding: 2rem 2.25rem;
}

.elmont-card__body > p {
  font-size: clamp(0.92rem, 1.2vw, 1.02rem);
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.elmont-requirements {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.elmont-req {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 0.85rem 1rem;
  background: rgba(196, 122, 232, 0.04);
  border-left: 2px solid rgba(196, 122, 232, 0.22);
}

.elmont-req__num {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: 0.08em;
  padding-top: 0.1rem;
  white-space: nowrap;
}

.elmont-req__text {
  font-size: clamp(0.87rem, 1.1vw, 0.95rem);
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── SECTION: DACA DEPORTATION ───────────────────────────────────────────── */

.s-daca {
  background: var(--bg-secondary) !important;
}

.daca-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.daca-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.daca-fact-label {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.daca-fact-name {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.daca-fact-subtitle {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--accent-info);
  margin-bottom: 1.5rem;
}

.daca-fact-claim {
  margin-bottom: 0.75rem;
  padding: 0.9rem 1rem;
  border-left: 2px solid rgba(72, 200, 232, 0.22);
  background: rgba(72, 200, 232, 0.04);
}

.daca-fact-claim__label {
  font-family: var(--font-mono);
  font-size: 0.48rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.daca-fact-claim__text {
  font-size: clamp(0.87rem, 1.1vw, 0.96rem);
  color: var(--text-secondary);
  line-height: 1.5;
}

/* DACA sequence */
.daca-sequence {
  padding-top: 0.5rem;
}

.daca-seq__title {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.daca-seq-item {
  padding: 0.85rem 1rem;
  margin-bottom: 0.35rem;
  background: var(--bg-surface);
  border: 1px solid rgba(196, 122, 232, 0.08);
  border-radius: 2px;
}

.daca-seq-item--pending {
  background: rgba(245, 164, 32, 0.04);
  border-color: rgba(245, 164, 32, 0.1);
}

.daca-seq-item__date {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-info);
  margin-bottom: 0.2rem;
}

.daca-seq-item--pending .daca-seq-item__date {
  color: var(--accent-secondary);
}

.daca-seq-item__event {
  font-size: clamp(0.87rem, 1.1vw, 0.94rem);
  color: var(--text-secondary);
  line-height: 1.45;
}

/* ── SECTION: CAL SUPREME COURT LAW STUDENT RULES ───────────────────────── */

.s-bar {
  background: var(--bg-primary) !important;
}

.bar-annotation {
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(196, 122, 232, 0.12);
  background: rgba(196, 122, 232, 0.03);
  border-radius: 2px;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.bar-annotation__tag {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-primary);
  opacity: 0.7;
}

.bar-annotation__rule {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--text-primary);
}

.bar-annotation__date {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.bar-title {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.bar-text {
  font-size: clamp(0.92rem, 1.2vw, 1.02rem);
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.bar-changes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(196, 122, 232, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.bar-change {
  padding: 1.5rem;
  border-right: 1px solid rgba(196, 122, 232, 0.07);
}

.bar-change:last-child { border-right: none; }

.bar-change__program {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 0.6rem;
}

.bar-change__text {
  font-size: clamp(0.85rem, 1.1vw, 0.93rem);
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── SECTION: WEEK AHEAD ─────────────────────────────────────────────────── */

.s-weekahead {
  background: var(--bg-secondary) !important;
}

.weekahead-header {
  margin-bottom: 2.5rem;
}

.weekahead-eyebrow {
  color: var(--accent-primary);
}

.weekahead-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
}

/* Week entries: vertical stack with date-bar layout */
.weekahead-scroll {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(196, 122, 232, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.week-entry {
  display: grid;
  grid-template-columns: 72px 4px 1fr;
  gap: 0;
  min-height: 44px;
  border-bottom: 1px solid rgba(196, 122, 232, 0.07);
  background: var(--bg-primary);
}

.week-entry:nth-child(even) {
  background: rgba(22, 13, 30, 0.5);
}

.week-entry:last-child { border-bottom: none; }

.week-entry--urgent .week-entry__bar {
  background: var(--accent-highlight);
}

.week-entry--urgent {
  background: rgba(232, 76, 104, 0.04);
}

.week-entry__date {
  padding: 1.25rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.3;
  display: flex;
  align-items: flex-start;
  word-break: break-word;
  border-right: 1px solid rgba(196, 122, 232, 0.07);
}

.week-entry--urgent .week-entry__date {
  color: var(--accent-highlight);
}

.week-entry__bar {
  background: rgba(196, 122, 232, 0.2);
  width: 4px;
  flex-shrink: 0;
}

.week-entry__content {
  padding: 1.25rem 1.5rem;
}

.week-entry__title {
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.week-entry__body {
  font-size: clamp(0.85rem, 1.1vw, 0.93rem);
  color: var(--text-secondary);
  line-height: 1.55;
}

.week-entry__body em {
  font-style: italic;
  color: var(--text-primary);
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid rgba(196, 122, 232, 0.08);
  padding: 4rem 1.5rem calc(4rem + env(safe-area-inset-bottom));
  text-align: center;
  position: relative;
  z-index: 2;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.site-footer__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-primary);
  animation: pulse 2.8s ease-in-out infinite;
  flex-shrink: 0;
}

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

.site-footer__regen,
.site-footer__session,
.site-footer__timestamp {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.16);
  margin: 0.22rem 0;
}

/* ── ANIMATION BASE ──────────────────────────────────────────────────────── */

.js-reveal {
  opacity: 0;
  transform: translateY(22px);
}

.js-stagger > * {
  opacity: 0;
  transform: translateY(14px);
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero__right {
    order: -1;
  }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .housing-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trafficking-what {
    grid-template-columns: 1fr;
  }

  .trafficking-what__block {
    border-right: none;
    border-bottom: 1px solid rgba(245, 164, 32, 0.08);
  }

  .trafficking-what__block:last-child { border-bottom: none; }

  .detention-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .smoke-provisions {
    grid-template-columns: repeat(2, 1fr);
  }

  .smoke-provision:nth-child(2) { border-right: none; }
  .smoke-provision:nth-child(1),
  .smoke-provision:nth-child(2) {
    border-bottom: 1px solid rgba(232, 76, 104, 0.07);
  }

  .elmont-card__top {
    grid-template-columns: repeat(2, 1fr);
  }

  .elmont-card__party:nth-child(2) { border-right: none; }
  .elmont-card__party:nth-child(1),
  .elmont-card__party:nth-child(2) {
    border-bottom: 1px solid rgba(196, 122, 232, 0.08);
  }

  .daca-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bar-changes {
    grid-template-columns: 1fr;
  }

  .bar-change {
    border-right: none;
    border-bottom: 1px solid rgba(196, 122, 232, 0.07);
  }

  .bar-change:last-child { border-bottom: none; }

  .smoke-number-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .smoke-divider {
    width: 60px;
    height: 1px;
  }
}

@media (max-width: 480px) {
  .hero__law-label { font-size: clamp(2rem, 18vw, 3.5rem); }

  .trafficking-vote-num,
  .trafficking-vote-noes {
    font-size: clamp(2.5rem, 18vw, 4rem);
  }

  .smoke-provisions {
    grid-template-columns: 1fr;
  }

  .smoke-provision {
    border-right: none;
    border-bottom: 1px solid rgba(232, 76, 104, 0.07);
  }

  .smoke-provision:last-child { border-bottom: none; }

  .elmont-card__top {
    grid-template-columns: 1fr;
  }

  .elmont-card__party {
    border-right: none;
    border-bottom: 1px solid rgba(196, 122, 232, 0.08);
  }

  .elmont-card__party:last-child { border-bottom: none; }

  .week-entry {
    grid-template-columns: 60px 3px 1fr;
  }

  .vclaw-wrap { padding: 1.5rem; }

  .housing-quote-col { padding: 1.5rem; }

  .bar-annotation { padding: 1rem 1.25rem; }
}
