/* ═══════════════════════════════════════════════════
   BLAZE.AI-INSPIRED RESKIN — The Orphan Tax
   Light, clean, premium SaaS aesthetic
   White backgrounds, dark text, minimal accent (#4d65ff)
   ═══════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Primary — Electric Blue (used sparingly) */
  --primary-900: #1a2266;
  --primary-800: #2a3599;
  --primary-700: #3b4fd9;
  --primary-600: #4d65ff;
  --primary-500: #6b7fff;
  --primary-400: #8a99ff;

  /* Amber — kept for highlight moments */
  --amber: #f59e0b;
  --burgundy: #8b2346;

  /* Accent aliases */
  --accent-600: #4d65ff;
  --accent-500: #6b7fff;
  --accent-400: #8a99ff;
  --accent-300: #a8b4ff;
  --accent-200: #c5ccff;
  --accent-100: #eef0ff;

  /* Light Palette — Blaze.ai inspired */
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --bg-elevated: #ffffff;
  --text: #111111;
  --text-primary: #111111;
  --text-secondary: #555555;
  --text-muted: #999999;
  --border: rgba(0, 0, 0, 0.06);
  --border-visible: rgba(0, 0, 0, 0.1);
  --card-bg: #ffffff;
  --card-hover-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

  /* Status */
  --green-600: #22c55e;
  --green-100: rgba(34, 197, 94, 0.08);
  --blue-600: #4d65ff;
  --blue-100: rgba(77, 101, 255, 0.08);
  --amber-600: #f59e0b;
  --amber-100: rgba(245, 158, 11, 0.08);
  --red-600: #ef4444;

  /* Type Scale */
  --text-xs: 0.8rem;
  --text-sm: 0.9rem;
  --text-base: 1rem;
  --text-lg: 1.15rem;
  --text-xl: 1.3rem;
  --text-2xl: clamp(1.5rem, 2.5vw, 2rem);
  --text-3xl: clamp(2rem, 3.5vw, 2.75rem);
  --text-4xl: clamp(2.5rem, 5vw, 4rem);
  --text-5xl: clamp(3rem, 6vw, 5.5rem);

  /* Fonts */
  --font-body: 'Open Sans', sans-serif;
  --font-heading: 'Open Sans', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --content-width: 740px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.1);
  --section-padding: clamp(6rem, 12vw, 10rem);
  --nav-height: 72px;

  /* Gradients — Blaze.ai premium accents */
  --gradient-accent: linear-gradient(135deg, #4d65ff 0%, #8b5cf6 100%);
  --gradient-accent-reverse: linear-gradient(135deg, #8b5cf6 0%, #4d65ff 100%);
  --gradient-dark-bg: linear-gradient(180deg, #0c1024 0%, #141832 50%, #0c1024 100%);
  --gradient-blue-tint: linear-gradient(180deg, rgba(77,101,255,0.02) 0%, rgba(77,101,255,0.04) 50%, rgba(77,101,255,0.02) 100%);
  --gradient-warm-tint: linear-gradient(180deg, rgba(245,158,11,0.015) 0%, rgba(245,158,11,0.03) 50%, rgba(245,158,11,0.015) 100%);

  /* Glass — translucent cards */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);

  /* Glow — accent effects */
  --glow-accent: 0 0 20px rgba(77, 101, 255, 0.15);
  --glow-accent-strong: 0 0 30px rgba(77, 101, 255, 0.25), 0 0 60px rgba(77, 101, 255, 0.1);
}

/* Dark mode overrides (theme toggle still works) */
[data-theme="dark"] {
  --bg: #0a0a0a;
  --bg-alt: #0d0d0d;
  --bg-elevated: #1a1a1a;
  --text: #f0f0f0;
  --text-primary: #f0f0f0;
  --text-secondary: #aaaaaa;
  --text-muted: #666666;
  --border: rgba(255, 255, 255, 0.06);
  --border-visible: rgba(255, 255, 255, 0.1);
  --card-bg: #141414;
  --card-hover-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

html { overflow-x: clip; }
/* Smooth scroll only for anchor navigation, not all scroll events */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', sans-serif;
}
button, input, select, textarea {
  font-family: 'Open Sans', sans-serif;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-600); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-700); }

/* Focus */
*:focus-visible { outline: 2px solid var(--primary-600); outline-offset: 2px; }

/* Skip Link */
.skip-link { position: absolute; top: -100px; left: 16px; background: var(--primary-600); color: #fff; padding: 12px 24px; border-radius: 0 0 8px 8px; z-index: 200; font-weight: 700; text-decoration: none; transition: top 0.2s; }
.skip-link:focus { top: 0; }

/* ── Utilities ── */
.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-600);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-4xl);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section-subtitle, .section-desc {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: var(--content-width);
  line-height: 1.6;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-alt { background: var(--bg-alt); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.desc-centered { margin: 0 auto; }
.desc-centered-mb0 { margin: 0 auto; margin-bottom: 0; }
.impact-caption { text-align: center; font-size: var(--text-xs); color: var(--text-muted); margin-top: 1.5rem; }

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section-title { font-size: clamp(1.75rem, 5vw, 2.25rem); }
  .section-desc, .section-subtitle { font-size: 1rem; }
  .section-label { font-size: 0.7rem; letter-spacing: 1.5px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-title { font-size: 1.5rem; }
}

/* ── Scroll Animations — Blaze.ai-style subtle reveals ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered children */
.stagger-children > .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.stagger-children > .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > .animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > .animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* ── HIDE floating UI — clean like Blaze.ai ── */
.share-bar { display: none !important; }
.scroll-progress { display: none !important; }
.sticky-bottom-counter { display: none !important; }
.theme-toggle { display: none !important; }

/* ── Sticky Alert Banner — subtle ── */
.sticky-alert {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--primary-600);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.sticky-alert.dismissing {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.sticky-alert.dismissed { display: none; }
.sticky-alert-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.2rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.sticky-alert-icon { font-size: 1rem; color: rgba(255,255,255,0.8); animation: none; }
.sticky-alert-text { color: #fff; font-size: 0.85rem; font-weight: 500; }
.sticky-alert-link { color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.sticky-alert-link:hover { color: #fff; }
.sticky-alert-close { background: none; border: none; color: rgba(255,255,255,0.6); font-size: 1.2rem; cursor: pointer; padding: 0 0.3rem; line-height: 1; margin-left: 0.5rem; }
.sticky-alert-close:hover { color: #fff; }
@keyframes sticky-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@media (max-width: 600px) {
  .sticky-alert-inner { flex-direction: column; text-align: center; gap: 0.15rem; padding: 1rem 2rem 0.35rem; position: relative; }
  .sticky-alert-icon { display: none; }
  .sticky-alert-text { font-size: 0.8rem; }
  .sticky-alert-link { font-size: 0.75rem; }
  .sticky-alert-close { position: absolute; right: 0.5rem; top: 50%; transform: translateY(-50%); }
}

/* ── Days Since Counter ── */
.days-since-counter {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 1.25rem 1.75rem;
  background: var(--blue-100);
  border-radius: var(--radius-lg);
}
.days-since-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-600);
  line-height: 1;
  letter-spacing: -0.03em;
}
.days-since-label { font-size: var(--text-base); color: var(--text-secondary); font-weight: 600; line-height: 1.4; }
[data-theme="dark"] .days-since-counter { background: rgba(77, 101, 255, 0.08); }
[data-theme="dark"] .days-since-number { color: var(--primary-500); }
[data-theme="dark"] .days-since-label { color: var(--text-secondary); }
@media (max-width: 768px) {
  .days-since-counter { flex-direction: column; align-items: center; text-align: center; gap: 0.4rem; padding: 1rem 1.25rem; }
  .days-since-number { font-size: 3rem; }
}

/* ══════════════════════════════════════
   NAVIGATION — Blur glass, minimal
   ══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.97);
  z-index: 100;
  display: flex;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-bottom-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid var(--border);
}
.nav.scrolled { background: #ffffff; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
[data-theme="dark"] .nav { background: rgba(10, 10, 10, 0.8); }
[data-theme="dark"] .nav.scrolled { background: #0a0a0a; }
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
/* .nav-brand styles are defined in the NAV BRAND section below */
[data-theme="dark"] .nav-brand { color: #fff; }
.nav-links {
  display: flex;
  flex-direction: row;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }
[data-theme="dark"] .nav-links a:hover { color: #fff; }
.nav-links a.nav-highlight {
  color: var(--primary-600);
  font-weight: 700;
  position: relative;
}
.nav-links a.nav-highlight::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-600);
  border-radius: 2px;
}
.mobile-menu a.mobile-highlight { color: var(--primary-600) !important; font-weight: 700; }
.nav-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-shrink: 0;
}
.nav-actions .btn-primary {
  padding: 10px 20px;
  font-size: 0.875rem;
  min-height: 40px;
}

/* ── Buttons — Clean, Blaze.ai style ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  min-height: 48px;
  background: var(--primary-600);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary::before { /* overridden by premium redesign gradient */ }
.btn-primary:hover {
  background: #3a50e6;
  color: #fff;
  box-shadow: 0 4px 16px rgba(77, 101, 255, 0.3);
  transform: translateY(-1px);
}
.btn-primary:active {
  background: #2e40c4;
  transition: background 0.1s;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 27px;
  min-height: 48px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid var(--border-visible);
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  position: relative;
}
.btn-outline::before { display: none !important; }
.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  transform: translateY(-1px);
}
.btn-outline:active { opacity: 0.9; }
[data-theme="dark"] .btn-outline { color: #fff; border-color: rgba(255,255,255,0.2); }
[data-theme="dark"] .btn-outline:hover { background: #fff; color: #111; border-color: #fff; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 5px; color: var(--text); }
.hamburger svg { width: 24px; height: 24px; }

/* Mobile Menu */
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 150; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s; }
.mobile-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu {
  position: fixed; top: 0; right: 0; width: 280px; height: 100vh;
  background: var(--bg); z-index: 151; padding: 24px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1); box-shadow: var(--shadow-xl);
}
.mobile-menu.open { transform: translateX(0); }
[data-theme="dark"] .mobile-menu { background: var(--bg-elevated); }
.mobile-menu-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text); padding: 10px; margin-bottom: 24px; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
.mobile-menu a { display: block; padding: 14px 0; font-size: var(--text-lg); font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); text-decoration: none; transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1); }
.mobile-menu a:hover { color: var(--primary-600); }

/* Nav responsive */
@media (max-width: 1200px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.78rem; }
  .nav-actions .btn-primary { padding: 9px 16px; font-size: 0.8rem; min-height: 38px; }
}
@media (max-width: 1024px) {
  .nav { height: 60px !important; }
  .nav-links, .nav-actions .btn-primary { display: none !important; }
  .hamburger { display: flex !important; align-items: center; justify-content: center; width: 34px !important; height: 34px !important; flex-shrink: 0; }
  .hamburger svg { width: 22px; height: 22px; }
  .nav-actions { display: flex !important; align-items: center; gap: 10px !important; flex-shrink: 0; }
  .nav-inner { padding: 0 16px; height: 100%; }
  .nav-brand { font-size: 1.1rem; flex-shrink: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap !important; }
}
@media (max-width: 480px) { .nav-brand { font-size: 0.95rem; } .nav-actions { gap: 8px !important; } }
@media (max-width: 320px) { .nav-brand { font-size: 0.85rem; } .nav-inner { padding: 0 12px; } }

/* ══════════════════════════════════════
   HERO — Dark cinematic video background
   ══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
  background: #080b18;
}
.hero-dark { color: #fff; }

/* Video background */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(8, 11, 24, 0.6) 0%,
    rgba(8, 11, 24, 0.4) 50%,
    rgba(8, 11, 24, 0.7) 100%
  );
}

/* Nav transparency over dark hero */
.nav {
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom-color: var(--border) !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06) !important;
}
[data-theme="dark"] .nav.scrolled {
  background: rgba(10, 10, 10, 0.95) !important;
  border-bottom-color: rgba(255,255,255,0.06) !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3) !important;
}
/* Nav text white over hero, dark when scrolled */
.nav:not(.scrolled) .nav-brand,
.nav:not(.scrolled) .nav-links a,
.nav:not(.scrolled) .hamburger { color: #fff !important; }
.nav:not(.scrolled) .nav-links a:hover { color: rgba(255,255,255,0.7) !important; }
.nav:not(.scrolled) .nav-highlight::after { background: rgba(255,255,255,0.8) !important; }

.hero-inner { max-width: 750px; position: relative; z-index: 2; padding: 0 24px; margin-left: clamp(24px, 5vw, 80px); flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: clamp(4rem, 10vh, 8rem); }
.hero-rule { display: none; }
.hero-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.75rem;
  display: inline-block;
}
.hero-dark .hero-label { color: rgba(255,255,255,0.5); }
.hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(3.5rem, 10vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 2rem;
}
.hero-dark .hero-title a { color: inherit; text-decoration: none; }
.hero-dark .sweep-hl {
  color: #fff;
  background: linear-gradient(90deg, var(--primary-600), var(--accent-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: var(--text-xl);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 2.75rem;
  max-width: 640px;
}
.hero-dark .hero-subtitle strong { color: #fff; }
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@keyframes hero-btn-reveal {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-buttons .btn-primary, .hero-buttons .btn-outline { animation: hero-btn-reveal 0.75s cubic-bezier(0.16, 1, 0.3, 1) backwards; }
.hero-buttons > *:nth-child(1) { animation-delay: 0.3s; }
.hero-buttons > *:nth-child(2) { animation-delay: 0.45s; }

/* Hero buttons — larger, more impactful */
.hero-buttons .btn-hero {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 12px;
  min-height: 56px;
}
.btn-hero.btn-primary {
  background: #fff;
  color: #080b18;
  border: none;
  font-weight: 700;
}
.btn-hero.btn-primary:hover { background: rgba(255,255,255,0.9); box-shadow: 0 8px 30px rgba(255,255,255,0.15); }
.btn-hero.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-hero.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

/* Scroll indicator */
.hero-scroll-indicator {
  display: none;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

/* Decorative — hidden in video hero */
.hero-dark .hero-blob, .hero-dark .hero-particles { display: none; }
.hero-blob { display: none; }
.hero-particles { display: none; }
body::after { display: none !important; }

/* Hero mobile */
.mobile-only { display: none; }
@media (max-width: 768px) {
  .mobile-only { display: inline; }
  .hero { min-height: 100vh; padding-top: var(--nav-height); text-align: center; }
  .hero-inner { margin-left: auto; margin-right: auto; padding: 0 20px; }
  .hero-label { text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-title { font-size: clamp(2.25rem, 8vw, 3rem); line-height: 1.08; margin-bottom: 1.5rem; }
  .hero-title br:not(.mobile-only) { display: none; }
  .hero-subtitle { font-size: 1.05rem; margin-bottom: 2rem; padding: 0 8px; }
  .hero-buttons { gap: 12px; flex-direction: column; align-items: center; justify-content: center; }
  .hero-buttons .btn-hero { padding: 0.875rem 2rem; font-size: 1rem; border-radius: 12px; min-height: 50px; }
  .hero-buttons .btn-primary, .hero-buttons .btn-outline { width: 100%; max-width: 320px; justify-content: center; }
}
@media (max-width: 480px) {
  .hero { padding-top: var(--nav-height); }
  .hero-label { font-size: 0.65rem; margin-bottom: 1rem; padding: 0.4rem 1rem; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-buttons .btn-hero { padding: 0.75rem 1.75rem; font-size: 0.95rem; min-height: 46px; }
}

/* ══════════════════════════════════════
   HERO STATS BAR — Blaze.ai metrics row
   ══════════════════════════════════════ */
.hero-stats {
  background: #080b18;
  padding: 1.5rem 0 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.hero-stat {
  padding: 2rem 1.5rem;
}
.hero-stat-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.hero-stat-prefix, .hero-stat-suffix {
  font-size: 0.6em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.hero-stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  max-width: 220px;
  margin: 0 auto;
}
.hero-stat-source {
  margin-top: 0.5rem;
  font-size: 0.7rem;
}
.hero-stat-source a {
  color: rgba(255,255,255,0.3);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero-stat-source a:hover { color: rgba(255,255,255,0.6); }

/* Live counter in stats bar */
.hero-stats-live {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}
.hero-stats-live .live-counter {
  margin-top: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-stats-live .live-counter span { color: rgba(255,255,255,0.5); }
.hero-stats-live .live-counter-amount { color: #fff !important; }

@media (max-width: 768px) {
  .hero-stats { padding: 3rem 0; }
  .hero-stats-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-stat { padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .hero-stat:last-child { border-bottom: none; }
  .hero-stat-value { font-size: 2.5rem; }
}

/* ── Live Counter (standalone) ── */
.live-counter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-top: 4rem;
  padding: 14px 24px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  flex-wrap: wrap;
}
.live-counter-dot { width: 8px; height: 8px; background: var(--red-600); border-radius: 50%; animation: live-dot-blink 1.5s ease-in-out infinite; flex-shrink: 0; }
@keyframes live-dot-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.live-counter-amount { font-family: var(--font-heading); font-weight: 800; font-size: 1.15rem; color: var(--primary-600); min-width: 5em; text-align: center; }
.counter-explainer { font-size: var(--text-xs); color: var(--text-muted); margin-top: 0.5rem; text-align: center; }
.live-counter-citation { font-size: 0.7rem; color: var(--text-muted); text-align: center; margin-top: 0.75rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.live-counter-citation a { color: var(--text-muted); text-decoration: underline; }
@media (max-width: 768px) {
  .live-counter { margin-top: 2rem; padding: 12px 16px; font-size: 0.85rem; gap: 4px; }
  .live-counter-amount { font-size: 1rem; min-width: 4em; }
}

/* ══════════════════════════════════════
   HERO BOTTOM BANNERS — pinned to bottom of hero
   ══════════════════════════════════════ */
.hero-bottom-banners {
  position: relative;
  width: 100%;
}

/* ══════════════════════════════════════
   CAROUSEL SECTION
   ══════════════════════════════════════ */
.carousel-section {
  position: relative;
  background: #080b18;
  padding: 3rem 0 2rem;
}
.carousel-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(8, 11, 24, 0.6));
  pointer-events: none;
  z-index: 10;
}

/* ══════════════════════════════════════
   MEDIA BANNER
   ══════════════════════════════════════ */
.media-banner {
  padding: 1rem 0 0.75rem;
  background: transparent;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 2;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.media-banner-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}
.media-banner-track { display: flex; width: max-content; animation: scroll-logos 40s linear infinite; will-change: transform; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
@keyframes scroll-logos { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }
.media-banner-set { display: flex; align-items: center; gap: 4rem; padding: 0 2rem; }
.media-logo { font-size: 0.85rem; font-weight: 600; color: rgba(255, 255, 255, 0.5); white-space: nowrap; transition: opacity 0.2s; }
.media-logo:hover { color: rgba(255, 255, 255, 0.8); }
.media-logo.logo-bold { font-weight: 800; letter-spacing: 1px; font-size: 0.75rem; }
.media-logo.logo-serif { font-style: italic; }

/* ── Early CTA ── */
.early-cta { padding: 2rem 0; text-align: center; background: var(--bg); }

/* ══════════════════════════════════════
   QUOTES BANNER
   ══════════════════════════════════════ */
.quotes-banner {
  padding: 1rem 0 1.5rem;
  background: transparent;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 2;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.quotes-banner-label { text-align: center; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: rgba(255, 255, 255, 0.35); margin-bottom: 0.5rem; }
.quotes-banner-track { display: flex; width: max-content; animation: scroll-quotes 60s linear infinite; will-change: transform; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
@keyframes scroll-quotes { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }
.quotes-banner-set { display: flex; gap: 16px; padding: 0 8px; }
.quote-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  min-width: 280px;
  max-width: 340px;
  flex-shrink: 0;
}
.quote-item-text { font-size: 0.8rem; color: rgba(255, 255, 255, 0.75); line-height: 1.5; font-style: italic; }
.quote-item-divider { width: 24px; height: 1px; background: rgba(255, 255, 255, 0.2); margin: 0.6rem 0; border-radius: 1px; }
.quote-item-author { font-size: 0.65rem; font-weight: 700; color: rgba(255, 255, 255, 0.4); text-transform: uppercase; letter-spacing: 1px; }

/* ══════════════════════════════════════
   EXPLAINER CTA — Detailed messaging
   ══════════════════════════════════════ */
.explainer-cta {
  padding: var(--section-padding) 0;
  background: var(--bg);
  text-align: center;
}
.explainer-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}
.explainer-cta-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.explainer-cta-title a { color: inherit; text-decoration: none; }
.explainer-cta-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.explainer-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   STORY — Clean two-column
   ══════════════════════════════════════ */
.story-section { padding: var(--section-padding) 0; background: var(--bg); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-photo { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.story-headline { font-family: var(--font-heading); font-weight: 800; font-size: var(--text-3xl); line-height: 1.15; letter-spacing: -0.02em; color: var(--text); margin-bottom: 1.5rem; }
.story-text { font-size: var(--text-base); color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; }
.story-text strong { color: var(--text); }
.story-pullquote {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  font-style: italic;
  color: var(--primary-600);
  border-left: 3px solid var(--primary-600);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.5;
}
.advocacy-links-box { margin-top: 1.5rem; background: var(--bg-alt); border-radius: var(--radius-lg); overflow: hidden; }
.advocacy-links-label { padding: 1rem 1.5rem; font-weight: 700; color: var(--text); cursor: pointer; list-style: none; }
.advocacy-links-label::marker { content: ''; }
.advocacy-links-label::-webkit-details-marker { display: none; }
.advocacy-links-box:not([open]) .advocacy-links-grid { display: none; }
.advocacy-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; padding: 0 1.5rem 1.5rem; }
.advocacy-link { font-size: var(--text-sm); color: var(--primary-600); padding: 0.5rem 0; }
.advocacy-link:hover { color: var(--primary-700); }
@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .story-photo { max-height: 400px; }
  .story-headline { font-size: clamp(1.5rem, 5vw, 2rem); }
  .advocacy-links-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   EXPLAINER / ISSUE SECTION
   ══════════════════════════════════════ */
.explainer-section { padding: var(--section-padding) 0; background: var(--bg-alt); }
.explainer-text { text-align: center; margin-bottom: 3rem; }
.explainer-body { font-size: var(--text-base); color: var(--text-secondary); line-height: 1.8; max-width: 780px; margin: 0 auto; }
.explainer-body p { margin-bottom: 1.25rem; }
.explainer-body strong { color: var(--text); }
.explainer-body mark.sweep-hl, .sweep-hl { background: rgba(77, 101, 255, 0.1); color: var(--primary-600); padding: 0.1em 0.3em; border-radius: 3px; font-weight: 700; }
.redact-document { position: relative; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 3rem; margin-bottom: 3rem; }
.redact-stamp { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--red-600); border: 2px solid var(--red-600); padding: 4px 12px; border-radius: var(--radius-sm); transform: rotate(5deg); opacity: 0.5; }

/* How It Works */
.how-it-works { display: flex; align-items: center; justify-content: center; gap: 0; margin: 3rem auto; max-width: 1000px; flex-wrap: wrap; }
.how-step { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; text-align: center; flex: 1; min-width: 200px; transition: box-shadow 0.3s; }
.how-step:hover { box-shadow: var(--card-hover-shadow); }
.how-step-number { font-family: var(--font-heading); font-weight: 800; font-size: 0.75rem; color: var(--primary-600); background: var(--blue-100); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.how-step-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.how-step-title { font-family: var(--font-heading); font-weight: 700; font-size: var(--text-base); color: var(--text); margin-bottom: 0.5rem; }
.how-step-desc { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; }
.how-arrow { font-size: 1.5rem; color: var(--text-muted); padding: 0 0.5rem; }
@media (max-width: 768px) { .how-it-works { flex-direction: column; gap: 1rem; } .how-arrow { transform: rotate(90deg); } .how-step { min-width: auto; } }

/* Bottom Line */
.bottom-line { background: var(--blue-100); border-radius: var(--radius-xl); padding: 2rem; text-align: center; margin: 2rem auto; max-width: 800px; }
.bottom-line-title { font-family: var(--font-heading); font-weight: 800; font-size: var(--text-xl); color: var(--primary-600); margin-bottom: 0.75rem; }
.bottom-line p { color: var(--text-secondary); line-height: 1.7; }
.bottom-line strong { color: var(--text); }
.bottom-line a { color: var(--primary-600); }

/* Clarity Callout */
.clarity-callout { max-width: 800px; margin: 2.5rem auto; padding: 1.5rem 2rem; background: var(--blue-100) !important; border-left: 4px solid var(--primary-600) !important; border-radius: var(--radius-lg); }
.clarity-callout p { font-size: 1.05rem; line-height: 1.7; color: var(--text-secondary) !important; margin: 0; font-weight: 500; }
.clarity-callout strong { color: var(--text) !important; }

/* Impact Grid */
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.impact-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem 1.5rem; text-align: center; transition: box-shadow 0.3s; }
.impact-card:hover { box-shadow: var(--card-hover-shadow); }
[data-theme="dark"] .impact-card { background: var(--card-bg); border-color: var(--border); }
.impact-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.impact-value { font-family: var(--font-heading); font-weight: 800; font-size: var(--text-2xl); color: var(--text); }
.impact-label { font-size: var(--text-sm); color: var(--text-secondary); margin-top: 0.25rem; }
@media (max-width: 768px) { .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 480px) { .impact-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   ALL REMAINING SECTIONS — Consistent card & spacing system
   ══════════════════════════════════════ */

/* Disabled Youth Alert */
.disabled-message-section { padding: var(--section-padding) 0; background: var(--bg); }
.disabled-message-inner { max-width: 800px; margin: 0 auto; }
.disabled-message-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.disabled-message-icon { font-size: 2rem; color: var(--red-600); }
.pulse-icon { animation: none; }
.disabled-message-title { font-family: var(--font-heading); font-weight: 800; font-size: var(--text-3xl); color: var(--text); }
.disabled-message-body { margin-top: 1.5rem; }
.disabled-message-text { font-size: var(--text-base); color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; }
.disabled-message-text a { color: var(--primary-600); }
.disabled-message-callout { background: rgba(239, 68, 68, 0.04); border-radius: var(--radius-lg); padding: 1.5rem 2rem; margin: 1.5rem 0; }
.disabled-message-moral { color: var(--text-secondary); line-height: 1.7; margin-bottom: 0.75rem; }
.disabled-message-moral:last-child { margin-bottom: 0; }
.disabled-message-moral strong { color: var(--text); }
.disabled-message-moral em { color: var(--primary-600); }
.disabled-message-urgent { color: var(--text-secondary); line-height: 1.7; margin: 1.5rem 0; }
.disabled-message-urgent strong { color: var(--text); }
.disability-tax-teaser { font-family: var(--font-heading); font-size: var(--text-xl); font-weight: 700; color: var(--primary-600); margin: 2rem 0; text-align: center; }
.disabled-message-cta { display: flex; gap: 1rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }
.alert-flash { }

/* ACF Letter */
.acf-letter-section { padding: var(--section-padding) 0; background: var(--bg-alt); }
.acf-scene { margin: 3rem 0; }
.acf-float-wrapper { position: relative; max-width: 600px; margin: 0 auto; }
.acf-badge { display: inline-block; padding: 0.5rem 1rem; border-radius: var(--radius-full); font-size: var(--text-xs); font-weight: 700; margin-bottom: 0.75rem; }
.acf-badge-good { background: var(--green-100); color: var(--green-600); }
.acf-badge-bad { background: rgba(239, 68, 68, 0.06); color: var(--red-600); }
.acf-paper { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.5rem; margin-top: 1rem; }
.acf-paper-seal { font-size: 2rem; margin-bottom: 1rem; }
.acf-paper-stripe { width: 100%; height: 3px; background: linear-gradient(90deg, #b91c1c, #fff, #3b82f6); border-radius: 3px; margin-bottom: 1.5rem; }
.acf-paper-agency { font-family: var(--font-heading); font-weight: 800; font-size: var(--text-lg); color: var(--text); }
.acf-paper-dept { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: 1.5rem; }
.acf-paper-date { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: 0.75rem; }
.acf-paper-to { font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.acf-paper-body { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.8; }
.acf-paper-body a { color: var(--primary-600); }
.acf-paper-gap { display: block; margin-top: 1rem; padding: 0.75rem 1rem; background: rgba(239, 68, 68, 0.04); border-radius: var(--radius-sm); color: var(--red-600); font-weight: 800; font-size: var(--text-xs); letter-spacing: 1px; text-align: center; }
.acf-paper-sig { margin-top: 1.5rem; font-size: var(--text-sm); color: var(--text-secondary); }
.acf-context { max-width: 700px; margin: 2rem auto 0; text-align: center; color: var(--text-secondary); line-height: 1.7; }
.acf-context a { color: var(--primary-600); }
.acf-context strong { color: var(--text); }
.acf-context-cta { display: flex; gap: 1rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }

/* State Map */
.puzzle-map-section { padding: var(--section-padding) 0; background: var(--bg); }
.puzzle-map-header { text-align: center; margin-bottom: 2rem; }
.replay-btn { background: var(--bg-alt); border: 1px solid var(--border); color: var(--text-secondary); padding: 8px 16px; border-radius: var(--radius-full); cursor: pointer; font-size: var(--text-sm); margin-top: 1rem; transition: all 0.2s; }
.replay-btn:hover { color: var(--primary-600); }
.puzzle-map-container { max-width: 900px; margin: 0 auto; }
.puzzle-map-legend { display: flex; gap: 1.5rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 0.5rem; font-size: var(--text-sm); color: var(--text-secondary); }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.legend-green { background: var(--green-600); }
.legend-blue { background: var(--blue-600); }
.legend-orange { background: var(--amber-600); }
.legend-gray { background: #ccc; }
.puzzle-map-legend-note { text-align: center; margin-top: 0.75rem; font-size: var(--text-xs); color: var(--text-muted); }
.legend-pending-icon { color: var(--amber-600); }
.puzzle-map-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.puzzle-stat { text-align: center; }
.puzzle-stat-number { font-family: var(--font-heading); font-weight: 800; font-size: var(--text-3xl); color: var(--primary-600); }
.puzzle-stat-label { font-size: var(--text-sm); color: var(--text-muted); margin-top: 0.25rem; }
.puzzle-map-source { text-align: center; margin-top: 1.5rem; font-size: var(--text-xs); color: var(--text-muted); }
.puzzle-map-source a { color: var(--primary-600); }
@media (max-width: 768px) { .puzzle-map-stats { grid-template-columns: repeat(2, 1fr); } }

/* Puzzle Map SVG */
.puzzle-map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1.6;
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
}
.puzzle-map-wrapper svg {
  width: 100%;
  height: 100%;
}
.puzzle-map-wrapper .state-path {
  opacity: 0;
  transform: translateY(-50px);
  fill: #374151;
  stroke: var(--border-visible);
  stroke-width: 1;
  cursor: pointer;
  transition: fill 0.3s, transform 0.3s;
}
.puzzle-map-wrapper .state-path.dropped {
  opacity: 1;
  transform: translateY(0);
}
.puzzle-map-wrapper .state-path.status-full { fill: #22c55e; }
.puzzle-map-wrapper .state-path.status-partial { fill: #3b82f6; }
.puzzle-map-wrapper .state-path.status-introduced { fill: #f97316; }
.puzzle-map-wrapper .state-path.status-pending { fill: #eab308; }
.puzzle-map-wrapper .state-path.status-none { fill: #9ca3af; }
.puzzle-map-wrapper .state-path:hover {
  filter: brightness(1.2);
  transform: translateY(-2px);
}
.puzzle-map-wrapper .state-path.has-pending {
  filter: drop-shadow(0 0 8px #fbbf24) drop-shadow(0 0 4px #fcd34d) drop-shadow(0 0 2px #fff);
}
.puzzle-map-wrapper .state-label {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  fill: #fff;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6), 0 0 4px rgba(0,0,0,0.3);
  transition: opacity 0.3s ease;
}
.puzzle-map-wrapper .state-label.visible { opacity: 1; }
.puzzle-map-wrapper .leader-line {
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 1;
  stroke-dasharray: 3, 2;
}
.puzzle-map-wrapper .pending-dot {
  fill: #fcd34d;
  stroke: #fff;
  stroke-width: 2;
  opacity: 0;
  transform-origin: center center;
  transform-box: fill-box;
  pointer-events: none;
  transition: opacity 0.3s ease;
  filter: drop-shadow(0 0 4px #fbbf24) drop-shadow(0 0 8px #fbbf24);
}
.puzzle-map-wrapper .pending-dot.visible {
  opacity: 1;
  animation: statePendingPulse 1.5s ease-in-out infinite;
}
.puzzle-map-tooltip {
  position: fixed;
  background: rgba(0,0,0,0.9);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  line-height: 1.4;
  pointer-events: none;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 1000;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.puzzle-map-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes stateDrop {
  0% { opacity: 0; transform: translateY(-80px) scale(0.9); }
  50% { opacity: 0.8; transform: translateY(8px) scale(1.02); }
  70% { opacity: 1; transform: translateY(-3px) scale(1); }
  85% { transform: translateY(2px); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes statePendingPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 6px #fbbf24) drop-shadow(0 0 12px #fcd34d);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
    filter: drop-shadow(0 0 10px #fbbf24) drop-shadow(0 0 18px #fcd34d) drop-shadow(0 0 4px #fff);
  }
}

/* CAI Partner Banner */
.cai-partner-banner { padding: 2.5rem 0; background: var(--bg-alt); }
.cai-partner-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cai-partner-label { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); display: block; }
.cai-partner-name { font-family: var(--font-heading); font-size: var(--text-xl); font-weight: 800; color: var(--text); display: block; margin: 0.25rem 0; }
.cai-partner-desc { font-size: var(--text-sm); color: var(--text-secondary); display: block; }
.cai-partner-link { padding: 10px 20px; background: transparent; border: 1px solid var(--border-visible); border-radius: var(--radius-md); color: var(--primary-600); font-weight: 600; font-size: var(--text-sm); transition: all 0.2s; }
.cai-partner-link:hover { background: var(--primary-600); color: #fff; border-color: var(--primary-600); }
@media (max-width: 768px) { .cai-partner-inner { justify-content: center; text-align: center; } }

/* Success Stories */
.success-stories-section { padding: var(--section-padding) 0; background: var(--bg-alt); }
.success-stories-inner { text-align: center; }
.success-stories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; text-align: left; }
.success-story-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; transition: box-shadow 0.3s; }
.success-story-card:hover { box-shadow: var(--card-hover-shadow); }
.success-story-photo { margin-bottom: 1.5rem; }
.success-story-photo img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.success-story-name { font-family: var(--font-heading); font-weight: 700; font-size: var(--text-lg); color: var(--text); }
.success-story-role { font-size: var(--text-sm); color: var(--primary-600); margin: 0.25rem 0 1rem; }
.success-story-bio { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.65; }
.success-story-impact { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
.impact-badge { font-size: 0.7rem; font-weight: 700; padding: 4px 10px; background: var(--blue-100); color: var(--primary-600); border-radius: var(--radius-full); letter-spacing: 0.5px; }
.success-story-cta { border-style: dashed; border-color: var(--border-visible); }

/* Federal CTA */
.federal-cta { padding: var(--section-padding) 0; background: var(--bg); position: relative; overflow: hidden; }
.federal-blob { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.04; }
.federal-blob-1 { width: 600px; height: 600px; background: var(--primary-600); top: -200px; right: -200px; }
.federal-blob-2 { width: 500px; height: 500px; background: #6b7fff; bottom: -200px; left: -200px; }
.federal-cta-inner { position: relative; z-index: 1; }
.federal-cta-header { text-align: center; margin-bottom: 3rem; }
.federal-cta-seal { font-size: 3rem; margin-bottom: 1rem; }
.federal-cta-badge { display: inline-block; font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--primary-600); margin-bottom: 1rem; }
.federal-cta-title { font-family: var(--font-heading); font-weight: 800; font-size: var(--text-4xl); color: var(--text); margin-bottom: 1rem; }
.federal-cta-subtitle { font-size: var(--text-lg); color: var(--text-secondary); max-width: 600px; margin: 0 auto; line-height: 1.6; }
.federal-cta-subtitle a { color: var(--primary-600); }
.federal-cta-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.federal-cta-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; transition: box-shadow 0.3s; }
.federal-cta-card:hover { box-shadow: var(--card-hover-shadow); }
.federal-cta-card-number { font-family: var(--font-heading); font-weight: 800; font-size: 2rem; color: var(--primary-600); margin-bottom: 1rem; }
.federal-cta-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: var(--text-lg); color: var(--text); margin-bottom: 0.75rem; }
.federal-cta-card h3 a { color: var(--primary-600); }
.federal-cta-card p { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7; margin-bottom: 0.5rem; }
.federal-cta-card p a { color: var(--primary-600); }
.federal-cta-card-reason { font-size: var(--text-xs) !important; color: var(--text-muted) !important; font-style: italic; padding-top: 0.5rem; border-top: 1px solid var(--border); margin-top: 0.75rem !important; }
@media (max-width: 768px) { .federal-cta-cards { grid-template-columns: 1fr; } }

/* Open Letter */
.open-letter { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 2rem; }
.open-letter-header { display: flex; align-items: center; gap: 0.75rem; padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); }
.open-letter-icon { font-size: 1.5rem; }
.open-letter-header h3 { font-family: var(--font-heading); font-weight: 700; color: var(--text); }
.open-letter-body { padding: 2rem; font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.8; }
.open-letter-body p { margin-bottom: 1rem; }
.open-letter-body strong { color: var(--text); }
.open-letter-body a { color: var(--primary-600); }
.open-letter-body ol { padding-left: 1.5rem; margin: 1rem 0; }
.open-letter-body li { margin-bottom: 0.5rem; }
.open-letter-signature { font-style: italic; color: var(--text-muted); margin-top: 1.5rem; }
.open-letter-docs { padding: 0 2rem 2rem; display: grid; gap: 0.75rem; }
.doc-link { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: box-shadow 0.2s; text-decoration: none; }
.doc-link:hover { box-shadow: var(--card-hover-shadow); }
.doc-icon { font-size: 1.5rem; }
.doc-text { flex: 1; }
.doc-text strong { color: var(--text); font-size: var(--text-sm); display: block; }
.doc-text span { color: var(--text-muted); font-size: var(--text-xs); }
.doc-arrow { color: var(--primary-600); font-size: var(--text-lg); }
.federal-cta-footer { text-align: center; margin: 2rem 0; font-size: var(--text-lg); color: var(--text-secondary); }
.federal-cta-footer em { color: var(--primary-600); }
.inactive-states-callout { background: rgba(239, 68, 68, 0.03); border-radius: var(--radius-xl); padding: 2rem; margin-top: 2rem; text-align: center; }
.inactive-states-callout h3 { font-family: var(--font-heading); font-weight: 700; color: var(--text); margin-bottom: 0.75rem; }
.inactive-states-callout p { color: var(--text-secondary); line-height: 1.7; }
.inactive-states-callout a { color: var(--primary-600); }
.state-list { font-weight: 600; color: var(--text); margin: 1rem 0; }

/* News */
.news-section { padding: var(--section-padding) 0; background: var(--bg-alt); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.news-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; text-decoration: none; transition: box-shadow 0.3s; display: block; }
.news-card:hover { box-shadow: var(--card-hover-shadow); }
[data-theme="dark"] .news-card { background: var(--card-bg); border-color: var(--border); }
[data-theme="dark"] .news-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.news-card.featured { background: var(--blue-100); border-color: transparent; }
.news-featured-badge { font-size: var(--text-xs); font-weight: 700; color: var(--primary-600); margin-bottom: 0.75rem; display: block; }
.news-source { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 0.5rem; }
.news-title { font-family: var(--font-heading); font-weight: 700; font-size: var(--text-base); color: var(--text); line-height: 1.4; margin-bottom: 0.5rem; }
.news-date { font-size: var(--text-xs); color: var(--text-muted); }
.news-arrow { font-size: var(--text-sm); color: var(--primary-600); margin-top: 0.75rem; }

/* Savings Calculator */
.savings-section { padding: var(--section-padding) 0; background: var(--bg); }
.savings-inner { max-width: 900px; margin: 0 auto; }
.savings-calculator { margin-top: 3rem; }
.savings-input-section { margin-bottom: 2rem; }
.savings-label { font-weight: 600; color: var(--text); margin-bottom: 0.75rem; display: block; }
.savings-slider { width: 100%; height: 4px; background: #e5e5e5; border-radius: 4px; outline: none; -webkit-appearance: none; appearance: none; }
.savings-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--primary-600); cursor: pointer; box-shadow: 0 2px 8px rgba(77, 101, 255, 0.3); }
.savings-slider::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--primary-600); cursor: pointer; border: none; box-shadow: 0 2px 8px rgba(77, 101, 255, 0.3); }
.savings-slider::-moz-range-track { height: 4px; background: #e5e5e5; border-radius: 4px; border: none; }
.savings-slider-labels { display: flex; justify-content: space-between; font-size: var(--text-xs); color: var(--text-muted); margin-top: 0.5rem; }
.savings-current-value { color: var(--primary-600); font-weight: 700; }
.savings-roi-context { font-size: var(--text-xs); color: var(--text-muted); margin-top: 0.5rem; }
.savings-roi-context a { color: var(--primary-600); }
.savings-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2rem 0; }
.savings-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; text-align: center; }
.savings-card-label { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 0.5rem; }
.savings-card-value { font-family: var(--font-heading); font-weight: 800; font-size: var(--text-3xl); color: var(--primary-600); }
.savings-card-note { font-size: var(--text-xs); color: var(--text-muted); margin-top: 0.25rem; }
.savings-card-note a { color: var(--primary-600); }
.savings-context { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.8; margin-top: 2rem; }
.savings-context strong { color: var(--text); }
.savings-context a { color: var(--primary-600); }
@media (max-width: 768px) { .savings-results { grid-template-columns: 1fr; } }

/* Conservative Case */
.conservative-case-block { margin-top: 4rem; }
.conservative-case-header { text-align: center; margin-bottom: 2rem; }
.conservative-case-header h3 { font-family: var(--font-heading); font-weight: 800; font-size: var(--text-2xl); color: var(--text); }
.conservative-case-subtitle { font-size: var(--text-base); color: var(--text-secondary); margin-top: 0.5rem; }
.conservative-featured-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.conservative-quote-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; }
.conservative-featured { background: var(--blue-100); border-color: transparent; }
.conservative-quote-badge { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--primary-600); margin-bottom: 1rem; display: block; }
.conservative-quote-text { font-family: var(--font-heading); font-size: var(--text-lg); font-weight: 600; font-style: italic; color: var(--text); line-height: 1.5; border: none; padding: 0; margin: 0; }
.conservative-quote-secondary { font-size: var(--text-sm); font-style: italic; color: var(--text-secondary); margin-top: 0.75rem; border: none; padding: 0; }
.conservative-attribution { margin-top: 1rem; font-size: var(--text-sm); }
.conservative-attribution strong { color: var(--text); display: block; }
.conservative-attribution span { color: var(--text-muted); font-size: var(--text-xs); }
.conservative-attribution a { color: var(--primary-600); }
.conservative-orgs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.conservative-org-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; }
.conservative-org-header { margin-bottom: 1rem; }
.conservative-org-header strong { color: var(--text); font-size: var(--text-base); display: block; }
.conservative-org-header strong a { color: var(--primary-600); }
.conservative-org-header span { color: var(--text-muted); font-size: var(--text-xs); }
.conservative-org-point { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; }
.conservative-org-point strong { color: var(--text); }
.conservative-org-icon { font-size: 1.25rem; flex-shrink: 0; }
.conservative-org-position { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7; }
.conservative-org-position a { color: var(--primary-600); }
.conservative-case-footer { text-align: center; color: var(--text-secondary); font-weight: 500; }
@media (max-width: 768px) { .conservative-featured-grid, .conservative-orgs-grid { grid-template-columns: 1fr; } }

/* Supporters */
.supporters-section { padding: var(--section-padding) 0; background: var(--bg); }
.supporters-inner { text-align: center; }
.supporters-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; text-align: left; }
.supporter-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; transition: box-shadow 0.3s; }
.supporter-card:hover { box-shadow: var(--card-hover-shadow); }
.supporter-name { font-weight: 700; color: var(--primary-600); display: block; margin-bottom: 0.5rem; }
.supporter-desc { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; }
.supporter-desc a { color: var(--primary-600); }
.supporters-note { font-size: var(--text-sm); color: var(--text-muted); margin-top: 2rem; line-height: 1.7; text-align: center; }
.supporters-note a { color: var(--primary-600); }

/* Political Voices */
.political-voices-section { padding: var(--section-padding) 0; background: var(--bg-alt); }
.political-voices-inner { text-align: center; }
.political-quotes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; text-align: left; }
.political-quote-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; transition: box-shadow 0.3s; }
.political-quote-card:hover { box-shadow: var(--card-hover-shadow); }
.political-quote-party { margin-bottom: 1rem; }
.party-badge { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; font-size: 0.75rem; font-weight: 800; color: #fff; }
.party-badge.democrat { background: #3b82f6; }
.party-badge.republican { background: #ef4444; }
.political-quote-text { font-size: var(--text-sm); font-style: italic; color: var(--text-secondary); line-height: 1.7; border: none; padding: 0; margin: 0; }
.political-quote-attribution { margin-top: 1rem; font-size: var(--text-sm); }
.political-quote-attribution strong { color: var(--text); display: block; }
.political-quote-attribution strong a { color: var(--primary-600); }
.political-quote-attribution span { color: var(--text-muted); font-size: var(--text-xs); }
.political-quote-attribution a { color: var(--primary-600); }
@media (max-width: 768px) { .political-quotes-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-section { padding: var(--section-padding) 0; background: var(--bg); }
.faq-list { max-width: 800px; margin: 2rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; padding: 1.5rem 0; text-align: left; font-family: var(--font-heading); font-size: var(--text-base); font-weight: 700; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.faq-question:hover { color: var(--primary-600); }
.faq-question::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--text-muted); transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); flex-shrink: 0; }
.faq-question[aria-expanded="true"]::after { content: '\2212'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.faq-item.open .faq-answer { max-height: 800px; }
.faq-answer-inner { padding: 0 0 1.5rem; font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.8; }
.faq-answer-inner a { color: var(--primary-600); }

/* Media Quote */
.media-quote-block { padding: 5rem 24px; text-align: center; background: var(--bg); }
.media-quote-block.quote-alt { background: var(--bg-alt); }
.media-quote-text { font-family: var(--font-heading); font-size: var(--text-3xl); font-weight: 700; font-style: italic; color: var(--text); max-width: 800px; margin: 0 auto; line-height: 1.3; }
.media-quote-attr { margin-top: 1.5rem; font-size: var(--text-sm); color: var(--text-secondary); }
.media-quote-attr strong { color: var(--text); }
.media-quote-source { font-size: var(--text-xs); color: var(--text-muted); margin-top: 0.5rem; }

/* Calculator */
.calc-section { padding: var(--section-padding) 0; background: var(--bg-alt); }
.calc-container { max-width: 700px; margin: 2rem auto 0; }
.calc-input-row { display: flex; align-items: center; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.calc-label { font-size: var(--text-lg); color: var(--text); font-weight: 500; }
.calc-input { font-family: var(--font-heading); font-weight: 800; font-size: var(--text-2xl); color: var(--primary-600); background: var(--bg); border: 1px solid var(--border-visible); border-radius: var(--radius-md); padding: 0.5rem 1rem; width: 200px; text-align: center; transition: border-color 0.2s; }
.calc-input:focus { outline: none; border-color: var(--primary-600); }
.calc-results { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.calc-result-item { text-align: center; }
.calc-result-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.calc-result-value { font-family: var(--font-heading); font-weight: 800; font-size: var(--text-xl); color: var(--text); }
.calc-result-label { font-size: var(--text-xs); color: var(--text-muted); margin-top: 0.25rem; }
@media (max-width: 768px) { .calc-results { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .calc-results { grid-template-columns: 1fr; } }

/* Theft Quotes */
.theft-quotes-block { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.theft-quotes-header { display: flex; align-items: center; gap: 0.75rem; justify-content: center; margin-bottom: 2rem; }
.theft-quotes-icon { font-size: 1.5rem; }
.theft-quotes-header h3 { font-family: var(--font-heading); font-weight: 700; color: var(--text); text-align: center; }
.theft-quotes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.theft-quote-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.5rem; }
.theft-quote-party { margin-bottom: 0.75rem; }
.theft-quote-text { font-size: var(--text-sm); font-style: italic; color: var(--text-secondary); line-height: 1.6; border: none; padding: 0; margin: 0; }
.theft-quote-attribution { margin-top: 0.75rem; font-size: var(--text-xs); }
.theft-quote-attribution strong { color: var(--text); display: block; }
.theft-quote-attribution span { color: var(--text-muted); }
.theft-quote-attribution a { color: var(--primary-600); }
.theft-quotes-footer { text-align: center; margin-top: 2rem; color: var(--text-secondary); }
.theft-quotes-footer strong { color: var(--text); }
@media (max-width: 768px) { .theft-quotes-grid { grid-template-columns: 1fr; } }

/* Video */
.video-section { padding: var(--section-padding) 0; background: var(--bg); text-align: center; }
.video-container { max-width: 800px; margin: 2rem auto 0; border-radius: var(--radius-xl); overflow: hidden; position: relative; aspect-ratio: 16/9; background: #f0f0f0; }
[data-theme="dark"] .video-container { background: #1a1a1a; }
.video-fallback { width: 100%; height: 100%; position: relative; background: none; border: none; cursor: pointer; padding: 0; }
.video-thumbnail { width: 100%; height: 100%; object-fit: cover; }
.video-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(0,0,0,0.35); transition: background 0.2s; }
.video-fallback:hover .video-overlay { background: rgba(0,0,0,0.25); }
.video-play-btn { width: 72px; height: 72px; background: var(--primary-600); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(77, 101, 255, 0.4); transition: transform 0.2s; }
.video-fallback:hover .video-play-btn { transform: scale(1.08); }
.video-play-btn svg { width: 24px; height: 24px; fill: #fff; margin-left: 4px; }
.video-fallback-title { color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: var(--text-lg); margin-top: 1rem; }
.video-fallback-sub { color: rgba(255,255,255,0.7); font-size: var(--text-sm); margin-top: 0.25rem; }
.video-credit { font-size: var(--text-xs); color: var(--text-muted); margin-top: 1rem; }
.video-credit a { color: var(--primary-600); }

/* Scripture */
.scripture-section { padding: var(--section-padding) 0; background: var(--bg-alt); }
.scripture-carousel-section { position: relative; min-height: 120px; max-width: 620px; margin: 2rem auto; }
.scripture-slide { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; opacity: 0; visibility: hidden; transition: opacity 0.8s ease; text-align: center; }
.scripture-slide.active { opacity: 1; visibility: visible; }
.scripture-verse { font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-size: var(--text-lg); color: var(--text-secondary); display: block; line-height: 1.6; }
[data-theme="dark"] .scripture-verse { color: var(--text-secondary); }
.scripture-citation { display: block; margin-top: 0.75rem; font-family: var(--font-body); font-size: var(--text-sm); font-style: normal; font-weight: 600; color: var(--primary-600); letter-spacing: 0.5px; }
.scripture-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.scripture-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.75rem; transition: box-shadow 0.3s; }
.scripture-card:hover { box-shadow: var(--card-hover-shadow); }
.scripture-card.scripture-highlight { background: var(--blue-100); border-color: transparent; }
.scripture-text { font-style: italic; color: var(--text-secondary); line-height: 1.7; font-size: var(--text-sm); }
.scripture-ref { font-weight: 700; color: var(--text-muted); font-size: var(--text-xs); margin-top: 0.75rem; }

/* Stats / Numbers */
.numbers-section { padding: var(--section-padding) 0; background: var(--bg); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-heading); font-weight: 800; font-size: var(--text-4xl); color: var(--text); line-height: 1; }
.stat-label { font-size: var(--text-sm); color: var(--text-secondary); margin-top: 0.5rem; line-height: 1.4; }
.stat-source { font-size: 0.65rem; color: var(--text-muted); margin-top: 0.5rem; }
.stat-source a { color: var(--text-muted); text-decoration: underline; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

/* Timeline */
.timeline-section { padding: var(--section-padding) 0; background: var(--bg-alt); }
.timeline { max-width: 700px; margin: 2rem auto 0; position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 6px; top: 0; bottom: 0; width: 2px; background: var(--border-visible); }
.timeline-item { position: relative; padding-bottom: 2.5rem; padding-left: 2rem; }
.timeline-dot { position: absolute; left: -2rem; top: 0.25rem; width: 14px; height: 14px; background: var(--bg); border: 2px solid var(--border-visible); border-radius: 50%; z-index: 1; }
.timeline-item.highlight .timeline-dot { background: var(--primary-600); border-color: var(--primary-600); }
.timeline-year { font-family: var(--font-heading); font-weight: 800; font-size: var(--text-sm); color: var(--primary-600); margin-bottom: 0.25rem; }
.timeline-title { font-family: var(--font-heading); font-weight: 700; font-size: var(--text-base); color: var(--text); margin-bottom: 0.5rem; }
.timeline-title a { color: var(--primary-600); }
.timeline-desc { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7; }
.timeline-desc a { color: var(--primary-600); }

/* Take Action */
.action-section { padding: var(--section-padding) 0; background: var(--bg); }
.action-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.action-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; }
.action-card-wide { grid-column: 1 / -1; }
.action-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.action-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: var(--text-lg); color: var(--text); margin-bottom: 0.75rem; }
.action-card h4 { color: var(--text) !important; font-family: var(--font-heading) !important; }
.action-subheading { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin: 1.5rem 0 0.75rem; color: var(--text); }
.action-card p { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7; }
.action-card p a { color: var(--primary-600); }
.share-row { display: flex; gap: 0.75rem; margin-top: 1rem; }
.share-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-alt); border: 1px solid var(--border); color: var(--text-muted); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.share-btn:hover { background: var(--primary-600); color: #fff; border-color: var(--primary-600); }
.email-template { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; font-family: monospace; font-size: 0.8rem; color: var(--text-secondary); line-height: 1.7; white-space: pre-wrap; max-height: 300px; overflow-y: auto; margin-top: 0.75rem; }
.copy-btn { background: transparent; border: 1px solid var(--border-visible); color: var(--primary-600); padding: 8px 16px; border-radius: var(--radius-md); cursor: pointer; font-size: var(--text-sm); font-weight: 600; margin-top: 0.75rem; transition: all 0.2s; }
.copy-btn:hover { background: var(--primary-600); color: #fff; border-color: var(--primary-600); }
.legislator-btn { display: inline-block; margin-top: 1rem; background: none; border: 1px solid var(--border-visible); color: var(--primary-600) !important; padding: 8px 16px; border-radius: var(--radius-md); font-size: var(--text-sm); font-weight: 600; transition: all 0.2s; }
.legislator-btn:hover { background: var(--primary-600); color: #fff !important; border-color: var(--primary-600); }

/* Blog */
.blog-section { padding: var(--section-padding) 0; background: var(--bg-alt); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.blog-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.blog-card:hover { box-shadow: var(--card-hover-shadow); transform: translateY(-2px); }
.blog-card-body { padding: 1.75rem; flex: 1; }
.blog-card-tag { display: inline-block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 10px; border-radius: var(--radius-full); margin-bottom: 0.75rem; }
.tag-news { background: rgba(239, 68, 68, 0.06); color: #ef4444; }
.tag-update { background: var(--blue-100); color: var(--primary-600); }
.tag-opinion { background: var(--amber-100); color: var(--amber-600); }
.tag-explainer { background: var(--green-100); color: var(--green-600); }
.blog-card-title { font-family: var(--font-heading); font-weight: 700; font-size: var(--text-base); color: var(--text); line-height: 1.4; margin-bottom: 0.5rem; }
.blog-card-excerpt { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; }
.blog-card-footer { padding: 1rem 1.75rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: var(--text-xs); }
.blog-card-date { color: var(--text-muted); }
.blog-card-source { color: var(--primary-600); }

/* Contact */
.contact-section { padding: var(--section-padding) 0; background: var(--bg); }
.contact-form-container { max-width: 560px; margin: 2rem auto 0; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group label { display: block; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; font-size: var(--text-sm); }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; background: var(--bg); border: 1px solid var(--border-visible); border-radius: var(--radius-md); color: var(--text); font-family: var(--font-body); font-size: var(--text-base); transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-600); box-shadow: 0 0 0 3px rgba(77, 101, 255, 0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.contact-submit { align-self: flex-start; }

/* Sources */
.sources-section { padding: var(--section-padding) 0; background: var(--bg-alt); }
.sources-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; text-align: left; }
.source-category-title { font-family: var(--font-heading); font-weight: 700; font-size: var(--text-base); color: var(--text); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.source-list { list-style: none; }
.source-list li { margin-bottom: 0.75rem; }
.source-list a { color: var(--primary-600); font-size: var(--text-sm); line-height: 1.5; display: block; }
.source-note { display: block; font-size: var(--text-xs); color: var(--text-muted); margin-top: 0.15rem; }

/* ══════════════════════════════════════
   FOOTER — Dark, clean
   ══════════════════════════════════════ */
.footer { background: #111; padding: 3.5rem 24px; }
[data-theme="dark"] .footer { background: #050505; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.footer-brand { font-family: var(--font-heading); font-weight: 800; font-size: var(--text-lg); color: #fff; }
.footer-tagline { font-size: var(--text-sm); color: rgba(255,255,255,0.5); margin-top: 0.5rem; max-width: 300px; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; list-style: none; }
.footer-links a { font-size: var(--text-sm); color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
@media (max-width: 768px) {
  .footer-inner { flex-direction: column; text-align: center; align-items: center; }
  .footer-links { justify-content: center; }
  .media-quote-text { font-size: clamp(1.25rem, 4vw, 1.75rem); }
  .story-section, .explainer-section, .scripture-section { padding: 4rem 0; }
  .scripture-grid, .action-grid, .sources-grid { grid-template-columns: 1fr; }
}

/* ── Decorative ── */
.reveal-image { border-radius: var(--radius-xl); overflow: hidden; }
.domino-card { opacity: 0; transform: translateY(20px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.domino-stagger.visible .domino-card { opacity: 1; transform: translateY(0); }
.domino-stagger.visible .domino-card:nth-child(1) { transition-delay: 0s; }
.domino-stagger.visible .domino-card:nth-child(2) { transition-delay: 0.1s; }
.domino-stagger.visible .domino-card:nth-child(3) { transition-delay: 0.2s; }
.domino-stagger.visible .domino-card:nth-child(4) { transition-delay: 0.3s; }
.domino-stagger.visible .domino-card:nth-child(5) { transition-delay: 0.4s; }
.domino-stagger.visible .domino-card:nth-child(6) { transition-delay: 0.5s; }
.domino-stagger.visible .domino-card:nth-child(7) { transition-delay: 0.6s; }
.domino-reveal { }
.type-on-scroll { }
.hero-particles { display: none; }
body::after { display: none !important; }
blockquote { margin: 0; padding: 0; border: none; }
.state-search-input { background: var(--bg); border: 1px solid var(--border-visible); color: var(--text); border-radius: var(--radius-md); padding: 8px 16px; }
[data-theme="dark"] .state-search-input { background: var(--card-bg); color: var(--text); }
.map-tooltip { background: var(--card-bg); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px 12px; font-size: var(--text-xs); }
.search-suggestions { background: var(--card-bg); border: 1px solid var(--border); }
.search-suggestion:hover { background: var(--bg-alt); }
.search-result-card { background: var(--card-bg); border: 1px solid var(--border); }
.state-group-header { background: var(--bg-alt); border: 1px solid var(--border); }
.testimony-action-label { color: var(--primary-600); }
.testimony-action-card { background: var(--card-bg); border-color: var(--border); }
.testimony-action-title { color: var(--text); }
.testimony-action-meta { color: var(--text-muted); }
.testimony-action-arrow { color: var(--primary-600); }

/* Loading curtain — dark to match video hero */
.curtain-half { background: #080b18; }
[data-theme="dark"] .curtain-half { background: #080b18; }
.curtain-title { color: #fff; }
.curtain-tagline { color: rgba(255,255,255,0.5); }

/* ── Video picker for previewing different clips ── */
.video-picker {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 16px;
  min-width: 240px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}
.video-picker-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.video-picker-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 4px;
}
.video-picker-list::-webkit-scrollbar { width: 4px; }
.video-picker-list::-webkit-scrollbar-track { background: transparent; }
.video-picker-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }
.video-picker-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
}
.video-picker-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }
.video-picker-btn.active {
  background: var(--primary-600);
  border-color: var(--primary-600);
  color: #fff;
  font-weight: 700;
}
.video-picker-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
}
.video-picker-close:hover { color: #fff; }

/* ═══════════════════════════════════════════════════
   VIDEO CROSSFADE SYSTEM
   ═══════════════════════════════════════════════════ */
.hero-video-a,
.hero-video-b {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  will-change: opacity, transform;
  transform: scale(1.02);
}
.hero-video-a.active,
.hero-video-b.active {
  opacity: 1;
  animation: kenBurnsZoom 13s ease-out forwards;
}
.hero-video-a.fade-out,
.hero-video-b.fade-out {
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
@keyframes kenBurnsZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* ═══════════════════════════════════════════════════
   ENHANCED SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.animate-fade-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-fade-left.visible { opacity: 1; transform: translateX(0); }

.animate-fade-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-fade-right.visible { opacity: 1; transform: translateX(0); }

.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-scale.visible { opacity: 1; transform: scale(1); }

.animate-blur {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(10px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-blur.visible { opacity: 1; filter: blur(0); transform: translateY(0); }

/* ═══════════════════════════════════════════════════
   DEVICE MOCKUP — Laptop Browser Frame
   ═══════════════════════════════════════════════════ */
.device-mockup-section {
  padding: var(--section-padding) 0;
  background: var(--bg-alt);
  overflow: hidden;
}
.device-mockup-section .container { text-align: center; }
.device-mockup-wrap {
  max-width: 960px;
  margin: 0 auto;
  perspective: 1200px;
}
.device-laptop {
  position: relative;
  border-radius: 12px 12px 0 0;
  background: #1a1a2e;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transform: rotateX(6deg) scale(0.96);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center bottom;
}
.device-laptop.visible { transform: rotateX(0deg) scale(1); opacity: 1; }
.device-laptop.visible.float-active { animation: deviceFloat 4s ease-in-out infinite; }
@keyframes deviceFloat {
  0%, 100% { transform: rotateX(0deg) scale(1) translateY(0); }
  50% { transform: rotateX(0deg) scale(1) translateY(-8px); }
}
.device-chrome {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 16px;
  background: #141425;
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.device-chrome-dot { width: 10px; height: 10px; border-radius: 50%; }
.device-chrome-dot:nth-child(1) { background: #ff5f57; }
.device-chrome-dot:nth-child(2) { background: #febc2e; }
.device-chrome-dot:nth-child(3) { background: #28c840; }
.device-chrome-bar {
  flex: 1;
  height: 26px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  padding: 0 12px;
}
.device-chrome-url { font-family: var(--font-body); font-size: 11px; color: rgba(255, 255, 255, 0.35); letter-spacing: 0.3px; }
.device-screen { position: relative; background: var(--bg); overflow: hidden; aspect-ratio: 16 / 10; }
.device-screen-inner { width: 100%; height: 100%; overflow: hidden; }
.device-screen .puzzle-map-container { transform: scale(0.85); transform-origin: top center; padding-top: 1rem; }
.device-base {
  height: 14px;
  background: linear-gradient(180deg, #1a1a2e 0%, #12122a 100%);
  border-radius: 0 0 4px 4px;
  position: relative;
}
.device-base::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 6px;
  background: #1a1a2e;
  border-radius: 0 0 6px 6px;
}
.device-shadow { height: 40px; background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.08) 0%, transparent 70%); margin-top: 4px; }

@media (max-width: 768px) {
  .device-mockup-wrap { perspective: 800px; }
  .device-laptop { border-radius: 8px 8px 0 0; }
  .device-chrome { padding: 8px 12px; border-radius: 8px 8px 0 0; }
  .device-chrome-dot { width: 7px; height: 7px; }
  .device-chrome-bar { height: 22px; margin-left: 8px; }
  .device-chrome-url { font-size: 9px; }
  .device-base { height: 10px; }
  .device-base::after { width: 80px; height: 4px; bottom: -4px; }
}
@media (max-width: 480px) {
  .device-screen { aspect-ratio: 4 / 3; }
  .device-screen .puzzle-map-container { transform: scale(0.75); }
}

/* ═══════════════════════════════════════════════════
   NAV BRAND — Logo + Text
   ═══════════════════════════════════════════════════ */
.nav-brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  transition: color 0.3s ease;
  flex-shrink: 0;
  margin-right: 2rem;
}
.nav-brand-logo {
  flex-shrink: 0;
  width: 32px;
  height: 36px;
  color: inherit;
}
.nav-brand-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════
   PARALLAX HERO
   ═══════════════════════════════════════════════════ */
.hero-title[data-parallax-layer],
.hero-subtitle[data-parallax-layer],
.hero-buttons[data-parallax-layer],
.hero-label[data-parallax-layer] {
  will-change: transform;
  transition: transform 0.05s linear;
}

/* ═══════════════════════════════════════════════════
   STICKY COUNTER BAR
   ═══════════════════════════════════════════════════ */
.sticky-counter-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(8, 11, 24, 0.97);
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  pointer-events: none;
}
.sticky-counter-bar.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-counter-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.sticky-counter-dot {
  width: 8px;
  height: 8px;
  background: var(--red-600);
  border-radius: 50%;
  animation: live-dot-blink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.sticky-counter-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.sticky-counter-amount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
}
@media (max-width: 768px) {
  .sticky-counter-inner { padding: 10px 16px; gap: 6px; font-size: 0.85rem; }
  .sticky-counter-amount { font-size: 1rem; }
}

/* Hide the duplicate live-counter-sticky element */
.live-counter-sticky { display: none !important; }

/* ═══════════════════════════════════════════════════
   ODOMETER STYLES (created by bundle.js live counter)
   ═══════════════════════════════════════════════════ */
.odo-active { display: inline-flex; align-items: center; font-variant-numeric: tabular-nums; }
.odo-col { display: inline-block; height: 1.2em; overflow: hidden; position: relative; will-change: transform; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.odo-strip {
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.odo-strip span { display: block; height: 1.2em; line-height: 1.2em; }
.odo-sep { display: inline-block; }

/* ═══════════════════════════════════════════════════
   VIDEO IFRAME (CBS embed)
   ═══════════════════════════════════════════════════ */
.video-container iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
}

/* ═══════════════════════════════════════════════════
   BLAZE.AI PREMIUM REDESIGN — Dark sections, glass, gradients
   ═══════════════════════════════════════════════════ */

/* ── Phase 1: Core Transformation ── */

/* Noise texture removed — SVG feTurbulence filter on position:fixed
   caused expensive per-frame compositing that made scrolling janky */

/* Dark sections — cinematic backgrounds */
.section-dark {
  background: var(--gradient-dark-bg) !important;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-dark .section-label {
  color: var(--accent-300);
  background: rgba(77, 101, 255, 0.12);
  border: 1px solid rgba(77, 101, 255, 0.2);
}
.section-dark .section-title { color: #fff; }
.section-dark .section-subtitle,
.section-dark .section-desc { color: rgba(255, 255, 255, 0.7); font-weight: 400; }
.section-dark a { color: var(--accent-300); }
.section-dark a:hover { color: var(--accent-200); }
.section-dark .btn-primary { background: var(--gradient-accent); }
.section-dark .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.section-dark .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* Section gradient bleed — smooth transitions */
.section-dark::before,
.section-dark::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
  z-index: 1;
}
.section-dark::before {
  top: -1px;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 100%);
}
.section-dark::after {
  bottom: -1px;
  background: linear-gradient(0deg, #0c1024 0%, transparent 100%);
}
/* Fix bleed color for dark sections that follow bg-alt sections */
.disabled-message-section.section-dark::before,
.federal-cta.section-dark::before {
  background: linear-gradient(180deg, var(--bg-alt) 0%, transparent 100%);
}

/* Disabled Youth Alert — dark section overrides */
.section-dark.disabled-message-section .disabled-message-title { color: #fff; }
.section-dark.disabled-message-section .disabled-message-text { color: rgba(255, 255, 255, 0.7); }
.section-dark.disabled-message-section .disabled-message-text strong { color: #fff; }
.section-dark.disabled-message-section .disabled-message-text a { color: var(--accent-300); }
.section-dark.disabled-message-section .disabled-message-callout {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.section-dark.disabled-message-section .disabled-message-moral { color: rgba(255, 255, 255, 0.7); }
.section-dark.disabled-message-section .disabled-message-moral strong { color: #fff; }
.section-dark.disabled-message-section .disabled-message-moral em { color: var(--accent-300); }
.section-dark.disabled-message-section .disabled-message-urgent { color: rgba(255, 255, 255, 0.7); }
.section-dark.disabled-message-section .disabled-message-urgent strong { color: #fff; }
.section-dark.disabled-message-section .disabled-message-icon { color: #ef4444; }
.section-dark.disabled-message-section .disability-tax-teaser { color: var(--accent-300); }
.section-dark.disabled-message-section .days-since-counter {
  background: rgba(77, 101, 255, 0.1);
  border: 1px solid rgba(77, 101, 255, 0.15);
}
.section-dark.disabled-message-section .days-since-number { color: var(--accent-300); }
.section-dark.disabled-message-section .days-since-label { color: rgba(255, 255, 255, 0.7); }

/* Federal CTA — dark section overrides */
.section-dark.federal-cta .federal-cta-title { color: #fff; }
.section-dark.federal-cta .federal-cta-subtitle { color: rgba(255, 255, 255, 0.7); }
.section-dark.federal-cta .federal-cta-subtitle a { color: var(--accent-300); }
.section-dark.federal-cta .federal-cta-badge { color: var(--accent-300); }
.section-dark.federal-cta .federal-cta-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--glass-border);
}
.section-dark.federal-cta .federal-cta-card:hover {
  box-shadow: var(--glass-shadow);
  border-color: rgba(255, 255, 255, 0.15);
}
.section-dark.federal-cta .federal-cta-card-number { color: var(--accent-300); }
.section-dark.federal-cta .federal-cta-card h3 { color: #fff; }
.section-dark.federal-cta .federal-cta-card h3 a { color: var(--accent-300); }
.section-dark.federal-cta .federal-cta-card p { color: rgba(255, 255, 255, 0.7); }
.section-dark.federal-cta .federal-cta-card p a { color: var(--accent-300); }
.section-dark.federal-cta .federal-cta-card-reason {
  color: rgba(255, 255, 255, 0.55) !important;
  border-top-color: rgba(255, 255, 255, 0.08);
}
.section-dark.federal-cta .federal-cta-footer { color: rgba(255, 255, 255, 0.7); }
.section-dark.federal-cta .federal-cta-footer em { color: var(--accent-300); }
.section-dark.federal-cta .federal-blob { opacity: 0.08; }
.section-dark.federal-cta .open-letter {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--glass-border);
}
.section-dark.federal-cta .open-letter-header { border-bottom-color: rgba(255, 255, 255, 0.08); }
.section-dark.federal-cta .open-letter-header h3 { color: #fff; }
.section-dark.federal-cta .open-letter-body { color: rgba(255, 255, 255, 0.7); }
.section-dark.federal-cta .open-letter-body strong { color: #fff; }
.section-dark.federal-cta .open-letter-body a { color: var(--accent-300); }
.section-dark.federal-cta .open-letter-signature { color: rgba(255, 255, 255, 0.55); }
.section-dark.federal-cta .doc-link {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.section-dark.federal-cta .doc-link:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
}
.section-dark.federal-cta .doc-text strong { color: #fff; }
.section-dark.federal-cta .doc-text span { color: rgba(255, 255, 255, 0.55); }
.section-dark.federal-cta .doc-arrow { color: var(--accent-300); }
.section-dark.federal-cta .inactive-states-callout {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
}
.section-dark.federal-cta .inactive-states-callout h3 { color: #fff; }
.section-dark.federal-cta .inactive-states-callout p { color: rgba(255, 255, 255, 0.7); }
.section-dark.federal-cta .inactive-states-callout a { color: var(--accent-300); }
.section-dark.federal-cta .state-list { color: #fff; }

/* Political Voices — dark section overrides */
.section-dark.political-voices-section { background: var(--gradient-dark-bg) !important; }
.section-dark.political-voices-section .political-quote-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--glass-border);
}
.section-dark.political-voices-section .political-quote-card:hover {
  box-shadow: var(--glass-shadow);
  border-color: rgba(255, 255, 255, 0.15);
}
.section-dark.political-voices-section .political-quote-text { color: rgba(255, 255, 255, 0.75); }
.section-dark.political-voices-section .political-quote-attribution strong { color: #fff; }
.section-dark.political-voices-section .political-quote-attribution strong a { color: var(--accent-300); }
.section-dark.political-voices-section .political-quote-attribution span { color: rgba(255, 255, 255, 0.55); }
.section-dark.political-voices-section .political-quote-attribution a { color: var(--accent-300); }

/* Timeline — dark section overrides */
.section-dark.timeline-section { background: var(--gradient-dark-bg) !important; }
.section-dark.timeline-section .timeline::before { background: rgba(255, 255, 255, 0.1); }
.section-dark.timeline-section .timeline-dot {
  background: #1a1e36;
  border-color: rgba(255, 255, 255, 0.2);
}
.section-dark.timeline-section .timeline-item.highlight .timeline-dot {
  background: var(--primary-600);
  border-color: var(--primary-600);
  box-shadow: 0 0 12px rgba(77, 101, 255, 0.5), 0 0 24px rgba(77, 101, 255, 0.2);
  animation: timeline-dot-pulse 2.5s ease-in-out infinite;
}
@keyframes timeline-dot-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(77, 101, 255, 0.5), 0 0 24px rgba(77, 101, 255, 0.2); }
  50% { box-shadow: 0 0 18px rgba(77, 101, 255, 0.7), 0 0 36px rgba(77, 101, 255, 0.3); }
}
.section-dark.timeline-section .timeline-year { color: var(--accent-300); }
.section-dark.timeline-section .timeline-title { color: #fff; }
.section-dark.timeline-section .timeline-title a { color: var(--accent-300); }
.section-dark.timeline-section .timeline-desc { color: rgba(255, 255, 255, 0.7); }
.section-dark.timeline-section .timeline-desc a { color: var(--accent-300); }

/* Hero stats — glass-style cards (no backdrop-filter for scroll perf) */
.hero-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s;
}
.hero-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Button gradient hover */
.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before {
  content: '' !important;
  display: block !important;
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
  border-radius: inherit;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }
/* Ensure hero buttons keep their own styles */
.btn-hero.btn-primary::before { display: none !important; }

/* Subtle gradient tints on light sections — consistent blue tint / white alternation */
.explainer-cta { background: var(--gradient-blue-tint); }
.story-section { background: var(--bg); }
.faq-section { background: var(--gradient-blue-tint); }
.video-section { background: var(--bg); }
.action-section { background: var(--gradient-blue-tint); }
.contact-section { background: var(--bg); }
.savings-section { background: var(--gradient-blue-tint); }

/* ── Phase 2: Cards & Components ── */

/* Universal card hover upgrade */
.news-card,
.blog-card,
.success-story-card,
.supporter-card,
.impact-card,
.how-step,
.scripture-card,
.action-card,
.conservative-quote-card,
.conservative-org-card,
.theft-quote-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.news-card:hover,
.success-story-card:hover,
.supporter-card:hover,
.impact-card:hover,
.how-step:hover,
.scripture-card:hover,
.action-card:hover,
.conservative-quote-card:hover,
.conservative-org-card:hover,
.theft-quote-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(77, 101, 255, 0.08);
}

/* Political quote accent bars */
.political-quote-card {
  position: relative;
  overflow: hidden;
}
.political-quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
}
.political-quote-card:has(.party-badge.democrat)::before {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}
.political-quote-card:has(.party-badge.republican)::before {
  background: linear-gradient(90deg, #ef4444, #f87171);
}

/* News card gradient reveal */
.news-card {
  position: relative;
  overflow: hidden;
}
.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.news-card:hover::before { transform: scaleX(1); }
.news-card.featured::before { transform: scaleX(1); }

/* Blog card hover line */
.blog-card {
  position: relative;
  overflow: hidden;
}
.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}
.blog-card:hover::before { transform: scaleX(1); }

/* ── Phase 3: Typography & Labels ── */

/* Section labels → pill badges */
.section-label {
  display: inline-block;
  background: rgba(77, 101, 255, 0.06);
  border: 1px solid rgba(77, 101, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
}
/* Dark section label override — must come after pill badge base */
.section-dark .section-label {
  color: var(--accent-300);
  background: rgba(77, 101, 255, 0.12);
  border-color: rgba(77, 101, 255, 0.2);
}

/* Subtitle weight refinement */
.section-subtitle,
.section-desc {
  font-weight: 400;
}

/* ── Phase 4: Interactive Polish ── */

/* Input focus glow */
.form-group input:focus,
.form-group textarea:focus,
.calc-input:focus,
.state-search-input:focus {
  border-color: var(--primary-600);
  box-shadow: 0 0 0 4px rgba(77, 101, 255, 0.1), 0 0 20px rgba(77, 101, 255, 0.08);
}

/* FAQ visual upgrade */
.faq-item {
  transition: background 0.3s;
  border-radius: var(--radius-md);
  padding: 0 1rem;
  margin: 0 -1rem;
}
.faq-item:hover {
  background: rgba(77, 101, 255, 0.02);
}
.faq-item.open {
  background: rgba(77, 101, 255, 0.03);
}
.faq-question[aria-expanded="true"]::after {
  color: var(--primary-600);
}
.faq-answer-inner {
  animation: faqFadeIn 0.3s ease-out;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Phase 5: Global Polish ── */

/* Footer modernization */
.footer {
  background: linear-gradient(180deg, #0c1024 0%, #0a0e1c 100%);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
}
.footer-brand {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-links a {
  position: relative;
  transition: color 0.2s, transform 0.2s;
}
.footer-links a:hover {
  color: #fff;
  transform: translateY(-1px);
}

/* Media quote blocks */
.media-quote-block {
  position: relative;
}
.media-quote-block::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 8rem;
  line-height: 1;
  color: rgba(77, 101, 255, 0.09);
  pointer-events: none;
}

/* Dark section adjacent bleed overrides */
.section-dark + .section-alt { position: relative; }
.section-dark + section:not(.section-dark)::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, #0c1024 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Disabled message inner — glass card on dark section */
.section-dark.disabled-message-section .disabled-message-inner {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 3rem;
}

/* backdrop-filter removed globally for scroll performance —
   solid translucent backgrounds provide similar visual effect */

/* Dark mode support for dark sections */
[data-theme="dark"] .section-dark {
  background: linear-gradient(180deg, #060818 0%, #0a0e22 50%, #060818 100%) !important;
}
[data-theme="dark"] .section-dark::before {
  background: linear-gradient(180deg, var(--bg) 0%, transparent 100%);
}
[data-theme="dark"] .section-dark::after {
  background: linear-gradient(0deg, var(--bg) 0%, transparent 100%);
}

/* Scroll performance — skip rendering off-screen sections */
.explainer-cta,
.story-section,
.explainer-section,
.disabled-message-section,
.acf-letter-section,
.puzzle-map-section,
.success-stories-section,
.federal-cta,
.news-section,
.savings-section,
.supporters-section,
.political-voices-section,
.faq-section,
.calc-section,
.video-section,
.scripture-section,
.numbers-section,
.timeline-section,
.action-section,
.blog-section,
.contact-section,
.sources-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

/* Print */
@media print {
  .nav, .share-bar, .scroll-progress, .sticky-alert, .curtain-overlay, .video-picker, .sticky-counter-bar { display: none !important; }
  body { background: #fff; color: #000; }
}
