/* ============================================================
   pages/homepage.css — Homepage styles
   ------------------------------------------------------------
   Depends on: tokens.css, base.css, chrome.css
   Notes:
     - Overrides chrome.css .container to a wider 1240px.
     - Adds .btn-red variant (homepage CTA).
     - Includes the V2 polish pass: dateline, scoreboard,
       §-numbered section mastheads, editorial stakes, Tweaks panel.
   ============================================================ */

/* Wider container on the homepage */
.container { max-width: 1240px; }

/* Homepage button variant */
.btn-red       { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-deep); border-color: var(--red-deep); }

/* ════════════════════════════════════════════
   LIVE TICKER — top of page (legacy strip; mostly replaced
   by .rtg-dateline in the V2 polish pass)
   ════════════════════════════════════════════ */
.live-ticker {
  background: var(--ink);
  color: #fff;
  font-size: 12px; font-weight: 500;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ticker-inner {
  display: flex; align-items: center; gap: 14px;
  padding: 8px 32px;
  white-space: nowrap;
}
.ticker-label {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(220,38,38,0.18);
  color: #fca5a5;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  flex-shrink: 0;
}
.ticker-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(220,38,38,0.6);
}
.ticker-feed {
  color: rgba(255,255,255,0.85);
  flex: 1;
  overflow: hidden;
  position: relative;
}
.ticker-feed-inner {
  display: inline-block;
  animation: scroll-ticker 40s linear infinite;
  padding-left: 100%;
}
.ticker-feed-inner span                  { margin: 0 32px; color: rgba(255,255,255,0.78); }
.ticker-feed-inner span strong           { color: #fff; font-weight: 700; }
.ticker-feed-inner span.aye strong       { color: #6ee7b7; }
.ticker-feed-inner span.no  strong       { color: #fca5a5; }
@keyframes scroll-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ════════════════════════════════════════════
   HERO — asymmetric two-column
   ════════════════════════════════════════════ */
.hero {
  padding: 80px 0 88px;
  background:
    radial-gradient(ellipse 70% 60% at 20% 0%, rgba(61,90,122,0.10) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(220,38,38,0.04) 0%, transparent 50%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero-copy { text-align: left; }
@media (max-width: 980px) { .hero-copy { text-align: center; } }

/* Capitol skyline silhouette as line drawing — subtle background */
.hero-skyline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  pointer-events: none;
  opacity: 0.05;
}
.hero-skyline svg { width: 100%; height: 100%; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red);
  background: var(--red-wash);
  border: 1px solid rgba(220,38,38,0.30);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 24px;
}

h1.hero-title {
  font-size: 58px; font-weight: 900;
  color: var(--ink); letter-spacing: -0.045em;
  line-height: 1.05; margin: 0 0 22px;
}
h1.hero-title .accent {
  color: var(--red);
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}
@media (max-width: 1200px) { h1.hero-title { font-size: 52px; } }
@media (max-width: 880px)  { h1.hero-title { font-size: 46px; margin: 0 auto 22px; } }
@media (max-width: 600px)  { h1.hero-title { font-size: 36px; } }

.hero-sub {
  font-size: 18px; line-height: 1.55;
  color: var(--body);
  margin: 0 0 28px;
  max-width: 540px;
}
@media (max-width: 980px) { .hero-sub { margin: 0 auto 28px; } }
@media (max-width: 720px) { .hero-sub { font-size: 16.5px; } }

.hero-ctas {
  display: flex; gap: 12px; justify-content: flex-start;
  flex-wrap: wrap; margin-bottom: 14px;
}
@media (max-width: 980px) { .hero-ctas { justify-content: center; } }
.hero-reassure {
  font-size: 13px; color: var(--muted); font-weight: 500;
  margin-bottom: 12px;
}
.hero-tour-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13.5px; font-weight: 700;
  color: var(--slate-blue);
  margin-bottom: 28px;
  transition: gap 0.15s ease;
}
.hero-tour-link:hover { gap: 10px; color: var(--slate-blue-deep); }
@media (max-width: 980px) {
  .hero-tour-link { justify-content: center; display: inline-flex; }
}

.diff-pills {
  display: flex; gap: 8px; justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
@media (max-width: 980px) { .diff-pills { justify-content: center; } }
.diff-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  padding: 9px 16px; border-radius: 999px;
  box-shadow: 0 2px 8px rgba(15,23,42,0.06);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
a.diff-pill:hover {
  transform: translateY(-1px);
  border-color: var(--slate-blue);
  box-shadow: 0 4px 14px rgba(61,90,122,0.16);
  color: var(--ink);
}
.diff-pill::after {
  content: '\2193';
  font-size: 11px; font-weight: 800;
  color: #94a3b8;
  margin-left: 2px;
}
a.diff-pill:hover::after { color: var(--slate-blue); }
.diff-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--slate-blue);
}
.diff-pill.live .dot {
  background: var(--red);
  animation: pulse 1.5s ease-in-out infinite;
}

/* Hero pill row — sits centered below both hero columns */
.hero-pills-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.hero-pills-wrap .diff-pills {
  justify-content: center;
  margin-bottom: 0;
}
@media (max-width: 980px) { .hero-pills-wrap { margin-top: 28px; } }

/* Live data counter row — spans full hero width below both columns */
.live-counter-wrap {
  display: flex;
  justify-content: center;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) { .live-counter-wrap { margin-top: 40px; } }
.live-counter {
  display: inline-flex; align-items: center;
  gap: 14px;
  padding: 9px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(15,23,42,0.06);
  margin: 0;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--body);
}
@media (max-width: 1100px) {
  .live-counter {
    flex-wrap: wrap; justify-content: center; gap: 8px 12px;
    padding: 10px 16px;
    font-size: 12px; border-radius: 14px;
  }
}
.live-counter-dot {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red);
}
.live-counter-dot::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  animation: pulse 1.5s ease-in-out infinite;
}
.live-counter-divider {
  width: 1px; height: 18px;
  background: var(--line);
}
.live-counter-stat strong {
  color: var(--ink); font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* Hero product — fills right column with floating elements */
.hero-product {
  position: relative;
  margin: 0;
  max-width: 100%;
}
@media (max-width: 980px) {
  .hero-product { max-width: 640px; margin: 0 auto; }
}

/* Video play overlay on hero screenshot */
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 4;
  border-radius: 14px;
  transition: background 0.2s ease;
}
.play-overlay:hover { background: rgba(15,23,42,0.05); }
.play-button {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 0 1px rgba(15,23,42,0.08),
    0 16px 40px -8px rgba(15,23,42,0.30),
    0 0 0 16px rgba(255,255,255,0.18);
  transition: all 0.2s ease;
  position: relative;
}
.play-overlay:hover .play-button {
  transform: scale(1.05);
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(15,23,42,0.10),
    0 20px 48px -8px rgba(15,23,42,0.40),
    0 0 0 22px rgba(255,255,255,0.22);
}
.play-button::before {
  content: '';
  width: 0; height: 0;
  border-left: 22px solid var(--red);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.play-label {
  position: absolute;
  bottom: -50px; left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 12.5px; font-weight: 700;
  padding: 7px 14px; border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(15,23,42,0.20);
}
@media (max-width: 720px) {
  .play-button         { width: 72px; height: 72px; }
  .play-button::before { border-left-width: 18px; border-top-width: 11px; border-bottom-width: 11px; }
}

/* Video modal */
.video-modal {
  position: fixed; inset: 0;
  background: rgba(15,23,42,0.92);
  display: none;
  align-items: center; justify-content: center;
  z-index: 100;
  padding: 24px;
  animation: modal-fade 0.25s ease;
}
.video-modal.is-open { display: flex; }
@keyframes modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.video-modal-inner {
  position: relative;
  width: 100%; max-width: 1100px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  animation: modal-scale 0.3s ease;
}
@keyframes modal-scale {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.video-modal-inner video,
.video-modal-inner iframe {
  width: 100%; height: 100%;
  display: block; border: 0;
}
.video-modal-close {
  position: absolute; top: -44px; right: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: #fff;
  font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}
.video-modal-close:hover {
  background: rgba(255,255,255,0.18);
  transform: scale(1.05);
}

/* Scroll-reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible          { opacity: 1; transform: none; transition: none; }
  .ticker-feed-inner,
  .ticker-pulse, .live-dot,
  .float-alert-head .live .dot,
  .live-counter-dot::before,
  .graph-svg-bg line,
  .vc-mode.live .vc-mode-dot,
  .diff-pill.live .dot                 { animation: none !important; }
}

.hero-product-frame { position: relative; }
.hero-product-frame > img,
.hero-product-frame > .db-mock {
  width: 100%; display: block;
  border-radius: 14px;
  box-shadow:
    0 32px 80px -16px rgba(15,23,42,0.22),
    0 12px 32px -8px rgba(15,23,42,0.10);
}

/* ── Dashboard mock — focused snippet of Dashboard.aspx ── */
.db-mock {
  background: #fff;
  overflow: hidden;
  color: #1e293b;
  font-size: 11px;
}
.db-topbar {
  display: flex; align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.db-logo {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--slate-blue);
}
.db-logo-mark {
  width: 18px; height: 18px;
  border: 2px solid var(--slate-blue);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.db-logo-mark::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; width: 7px; height: 1.5px;
  background: var(--slate-blue);
  transform: translate(-50%, -50%) rotate(-30deg);
  transform-origin: left center;
}
.db-logo strong { color: var(--red); }
.db-session-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 600;
  padding: 4px 9px; border-radius: 5px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #1e293b;
  margin-left: 6px;
}
.db-search {
  flex: 1;
  display: flex; align-items: center; gap: 7px;
  padding: 5px 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  font-size: 10.5px;
  color: #94a3b8;
  min-width: 0;
}
.db-search svg          { color: #94a3b8; flex-shrink: 0; }
.db-search-text         { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.db-kbd {
  font-size: 9px; font-weight: 700;
  color: #64748b;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 3px;
  padding: 1px 5px;
  font-family: ui-monospace, SFMono-Regular, monospace;
}
.db-notif {
  position: relative;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #64748b;
}
.db-notif-badge {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 16px; height: 13px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 8px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1;
}
.db-avatar-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 600;
  color: #1e293b;
}
.db-avatar {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--slate-blue), var(--slate-blue-deep));
  color: #fff;
  font-size: 9px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}

.db-body {
  display: grid;
  grid-template-columns: 110px 1fr;
  min-height: 280px;
}
.db-sidebar {
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  padding: 10px 8px;
  display: flex; flex-direction: column; gap: 1px;
}
.db-nav {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 10px; font-weight: 600;
  color: #64748b;
  white-space: nowrap;
}
.db-nav svg          { color: #94a3b8; flex-shrink: 0; }
.db-nav.active       { background: rgba(61,90,122,0.10); color: var(--slate-blue); }
.db-nav.active svg   { color: var(--slate-blue); }
.db-nav-new {
  font-size: 7.5px; font-weight: 800;
  background: #dcfce7; color: #15803d;
  padding: 1px 4px; border-radius: 3px;
  letter-spacing: 0.04em;
  margin-left: auto;
}

.db-main { padding: 12px; overflow: hidden; }
.db-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.db-stat-card {
  padding: 9px 11px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  position: relative;
}
.db-stat-label {
  font-size: 9px; font-weight: 700;
  color: #64748b;
  margin-bottom: 4px;
}
.db-stat-num {
  font-size: 18px; font-weight: 800;
  color: #1e293b;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.db-stat-sub {
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #94a3b8;
  margin-top: 4px;
}
.db-stat-icon {
  position: absolute; top: 8px; right: 9px;
  width: 18px; height: 18px;
  background: rgba(34,197,94,0.10);
  color: #15803d;
  border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
}
.db-stat-icon.amber { background: rgba(245,158,11,0.10); color: #b45309; }
.db-stat-icon.slate { background: rgba(61,90,122,0.10); color: var(--slate-blue); }

.db-tracked {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
}
.db-tracked-head {
  padding: 8px 11px;
  border-bottom: 1px solid #e2e8f0;
  display: flex; align-items: center; gap: 8px;
  background: #f8fafc;
}
.db-tracked-title {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 700;
  color: #1e293b;
}
.db-tracked-title svg { color: var(--slate-blue); }
.db-tracked-new {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 8.5px; font-weight: 800;
  background: rgba(220,38,38,0.10);
  color: var(--red);
  padding: 2px 6px; border-radius: 3px;
  letter-spacing: 0.04em;
}
.db-tracked-sort {
  margin-left: auto;
  font-size: 9.5px; font-weight: 600;
  color: #64748b;
  padding: 3px 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
}
.db-bill-row {
  padding: 7px 11px;
  border-bottom: 1px solid #f1f5f9;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  font-size: 10px;
}
.db-bill-row:last-child { border-bottom: none; }
.db-bill-row.new        { border-left: 3px solid #22c55e; padding-left: 8px; }
.db-bill-id {
  font-size: 10.5px; font-weight: 700;
  color: var(--slate-blue);
  font-variant-numeric: tabular-nums;
}
.db-bill-author {
  color: #1e293b;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.db-bill-author strong { font-weight: 600; }
.db-bill-author small {
  display: block;
  font-size: 9px;
  color: #94a3b8;
  margin-top: 1px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.db-bill-pos {
  font-size: 8.5px; font-weight: 700;
  padding: 2px 7px; border-radius: 999px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.db-bill-pos.support { background: rgba(34,197,94,0.15); color: #15803d; }
.db-bill-pos.oppose  { background: rgba(220,38,38,0.15); color: #b91c1c; }
.db-bill-pos.sponsor { background: rgba(61,90,122,0.15); color: var(--slate-blue); }
.db-bill-pos.watch   { background: rgba(245,158,11,0.15); color: #b45309; }

/* Floating: live alert card on top-right */
.float-alert {
  position: absolute;
  top: 40px; right: -24px;
  width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(15,23,42,0.25);
  z-index: 3;
  transform: rotate(2deg);
}
.float-alert-head {
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; font-weight: 700;
}
.float-alert-head .live {
  display: inline-flex; align-items: center; gap: 6px;
  color: #fca5a5;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.float-alert-head .live .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  animation: pulse 1.5s ease-in-out infinite;
}
.float-alert-head .time   { color: rgba(255,255,255,0.65); font-weight: 500; }
.float-alert-body         { padding: 14px 16px; }
.float-alert-bill         { font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.float-alert-meta         { font-size: 11.5px; color: var(--muted); margin-bottom: 10px; }
.float-alert-channels     { display: flex; gap: 5px; }
.float-alert-channels span {
  font-size: 9.5px; font-weight: 700;
  padding: 3px 7px; border-radius: 3px;
  background: #dcfce7; color: #15803d;
}
@media (max-width: 720px) { .float-alert { display: none; } }

/* Floating: stat badge bottom-left */
.float-stat {
  position: absolute;
  bottom: -20px; left: -28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 16px 40px -8px rgba(15,23,42,0.20);
  z-index: 3;
  transform: rotate(-1.5deg);
}
.float-stat-num {
  font-size: 20px; font-weight: 800;
  color: var(--ink); line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.float-stat-num .accent {
  color: var(--red);
  font-size: 22px;
  margin: 0 2px;
}
.float-stat-label {
  font-size: 11px; font-weight: 600;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
@media (max-width: 720px) { .float-stat { display: none; } }

/* ════════════════════════════════════════════
   LIVE-NOW STRIP — between hero and trust
   ════════════════════════════════════════════ */
.live-now {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.live-now-inner {
  display: grid; grid-template-columns: auto 1fr;
  align-items: start; gap: 14px 28px;
}
@media (max-width: 880px) {
  .live-now-inner { grid-template-columns: 1fr; gap: 16px; }

  /* Tighter chamber gap on mobile. Original flex-wrap naturally stacks
     chambers when viewport < 2 × 280px basis, so no direction override needed. */
  .live-now-events { gap: 14px; }

  /* Snapshot stats: center on mobile + replace pipe separators with subtle
     left-borders so wrap behavior is clean (no orphan pipes at line edges) */
  .live-now-snapshot { text-align: center; }
  .live-now-snapshot-stats {
    justify-content: center;
    gap: 8px 12px;
  }
  .live-now-stat-sep { display: none; }
  .live-now-stat {
    padding-left: 12px;
    border-left: 1px solid var(--line);
    line-height: 1.4;
  }
  .live-now-stat:first-of-type {
    padding-left: 0;
    border-left: 0;
  }
}
.live-now-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.live-now-events {
  display: flex; gap: 32px;
  flex: 1; min-width: 0;
  flex-wrap: wrap;
}
.live-now-chamber {
  display: flex; flex-direction: column;
  gap: 5px;
  flex: 1 1 280px; min-width: 0;
}
.live-now-chamber-head {
  display: flex; align-items: center;
  gap: 8px;
}
.live-now-chamber-name {
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink);
}
.live-now-chamber-status {
  display: inline-flex; align-items: center;
  gap: 5px;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 2px 9px; border-radius: 999px;
}
.live-now-chamber-status.upcoming {
  background: var(--slate-blue-soft);
  color: var(--slate-blue);
}
.live-now-chamber-status.live {
  background: rgba(34,197,94,0.15);
  color: #15803d;
}
.live-now-chamber-status.live .ticker-pulse {
  background: #16a34a;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.55);
  animation: livePulse 1.6s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0   rgba(34,197,94,0.55); }
  70%  { box-shadow: 0 0 0 6px rgba(34,197,94,0);    }
  100% { box-shadow: 0 0 0 0   rgba(34,197,94,0);    }
}
.live-now-chamber-line {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.4;
}
.live-now-chamber-line strong {
  color: var(--ink);
  font-weight: 700;
}
/* Outcome words in last-vote line */
.live-now-chamber-line .passed { color: #15803d; font-weight: 700; }
.live-now-chamber-line .failed { color: #b91c1c; font-weight: 700; }
.live-now-chamber-meta {
  margin-left: 6px;
  font-size: 11.5px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

/* ── Adjourned (chamber done for the day) ── */
.live-now-chamber-status.adjourned {
  background: rgba(100,116,139,0.12);
  color: #475569;
}
/* ── Convened but no votes yet ── */
.live-now-chamber-status.convened {
  background: rgba(245,158,11,0.15);
  color: #b45309;
}
/* ── Dark day — chamber not in session (Friday, recess, etc.) ── */
.live-now-chamber-status.dark {
  background: rgba(15,23,42,0.08);
  color: #64748b;
}

/* ── Activity Snapshot — yesterday's chamber-wide totals.
   Span the full width of the live-now-inner grid so it doesn't
   widen the auto label column and squash the chambers into stacking. ── */
.live-now-snapshot {
  grid-column: 1 / -1;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.live-now-snapshot-label {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted);
}
.live-now-snapshot-stats {
  display: inline-flex; align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13.5px;
  color: var(--body);
}
.live-now-stat strong {
  color: var(--ink);
  font-weight: 700;
  margin-right: 4px;
  font-variant-numeric: tabular-nums;
}
.live-now-stat .passed  { color: #15803d; font-weight: 600; }
.live-now-stat .failed  { color: #b91c1c; font-weight: 600; }
.live-now-stat .oncall  { color: #b45309; font-weight: 600; }
.live-now-stat-sep      { color: #cbd5e1; }

/* ============================================================
   FAST FACTS BANNER  ->  This Week in the Legislature
   Soft-slate band beneath the live-now strip; styled as a
   clickable promo (NOT a stat ticker) so it doesn't twin with
   .live-now above. Static copy for now; swap to live numbers
   when the DB-driven version ships.
   ============================================================ */
.fff-banner-band {
  background: var(--slate-blue-soft);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.fff-banner {
  display: flex; align-items: center; gap: 16px 26px; flex-wrap: wrap;
  text-decoration: none;
}
.fff-banner:hover { text-decoration: none; }
.fff-banner-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--slate-blue-deep);
  background: #fff; border: 1px solid var(--line);
  padding: 6px 13px; border-radius: 999px;
  white-space: nowrap;
}
.fff-banner-brand { display: inline-flex; flex-direction: column; align-items: center; gap: 3px; }
.fff-banner-cadence {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; color: var(--muted);
  text-align: center;
}
.fff-banner-hook {
  flex: 1; min-width: 240px;
  font-size: 15.5px; font-weight: 500;
  color: var(--ink-mid); line-height: 1.45;
}
.fff-banner-hook strong { font-weight: 800; color: var(--red-deep); }
.fff-banner-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  padding: 11px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 700; white-space: nowrap;
  transition: background 0.15s, transform 0.12s;
}
.fff-banner:hover .fff-banner-cta { background: var(--red-deep); transform: translateX(2px); }
@media (max-width: 880px) {
  .fff-banner-cta { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════
   TRUST STRIP
   ════════════════════════════════════════════ */
.trust { padding: 80px 0 60px; }
.trust-label {
  text-align: center;
  font-size: 13px; font-weight: 600;
  color: var(--muted);
  margin-bottom: 36px;
}
.trust-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px; align-items: center;
}
@media (max-width: 880px) { .trust-logos { grid-template-columns: repeat(3, 1fr); } }
.trust-logo {
  height: 32px;
  background: var(--line-soft);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: var(--faint);
  letter-spacing: 0.06em;
  transition: all 0.2s ease;
}
.trust-logo:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}
.trust-switch {
  text-align: center; margin-top: 36px;
  font-size: 14px;
}
.trust-switch a {
  color: var(--slate-blue); font-weight: 600;
  border-bottom: 1px dashed rgba(61,90,122,0.4);
  padding-bottom: 1px;
}

/* ════════════════════════════════════════════
   SECTION HEADERS — common
   ════════════════════════════════════════════ */
.section-header {
  max-width: 760px; margin: 0 auto 60px;
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate-blue);
  margin-bottom: 16px;
}
.section-title {
  font-size: 52px; font-weight: 900;
  color: var(--ink); letter-spacing: -0.04em;
  line-height: 1.05; margin: 0 0 22px;
}
.section-title .accent {
  color: var(--slate-blue);
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
}
.section-title .accent.red { color: var(--red); }
.section-title .accent.plain {
  font-style: normal;
  font-family: inherit;
  font-weight: inherit;
}
@media (max-width: 720px) { .section-title { font-size: 36px; } }
.section-sub {
  font-size: 18px; color: var(--body); margin: 0;
  line-height: 1.55;
}

/* ════════════════════════════════════════════
   THREE-STEP — Track / Analyze / Act
   ════════════════════════════════════════════ */
.three-step {
  padding: 40px 0 110px;
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 32px 28px 0;
  overflow: hidden;
  transition: all 0.25s ease;
  position: relative;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -10px rgba(15,23,42,0.15);
  border-color: rgba(61,90,122,0.3);
}
.step-num-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--ink); color: #fff;
  font-weight: 800; font-size: 14px;
  box-shadow: 0 4px 10px -2px rgba(15,23,42,0.20);
}
.step-num.analyze {
  background: var(--slate-blue);
  box-shadow: 0 4px 10px -2px rgba(61,90,122,0.35);
}
.step-num.act {
  background: var(--red);
  box-shadow: 0 4px 10px -2px rgba(220,38,38,0.30);
}
.step-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--slate-blue);
}
.step-title {
  font-size: 26px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.02em;
  margin: 0 0 12px; line-height: 1.15;
}
.step-text {
  font-size: 15px; color: var(--body);
  margin: 0 0 26px; line-height: 1.55;
}
.step-img        { margin: 0 -28px -1px; }
.step-img img    { width: 100%; display: block; }

/* Step mocks — CSS-drawn alternatives to product screenshots */
.step-mock {
  margin: 0 -28px -1px;
  background: #fff;
  border-top: 1px solid var(--line-soft);
}
.step-mock-head {
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--slate-blue-soft) 0%, #fff 100%);
  border-bottom: 1px solid var(--line-soft);
}
.step-mock-pill {
  display: inline-block;
  font-size: 9.5px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate-blue);
  background: rgba(61,90,122,0.10);
  padding: 3px 8px; border-radius: 3px;
  margin-bottom: 6px;
}
.step-mock-title {
  font-size: 13.5px; font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.step-mock-meta {
  font-size: 11px; color: var(--muted);
  margin-top: 2px;
}
.step-mock-list { list-style: none; padding: 0; margin: 0; }
.step-mock-list li {
  display: flex; align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 12.5px;
  min-height: 38px;
}
.step-mock-list li:last-child { border-bottom: none; }

/* TRACK mock — bill list */
.step-bill-num {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px; font-weight: 700;
  color: var(--slate-blue-deep);
  background: var(--slate-blue-soft);
  padding: 2px 7px; border-radius: 3px;
  flex-shrink: 0;
}
.step-bill-name {
  flex: 1;
  color: var(--ink); font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-size: 12.5px;
}
.step-tag.support { background: #dcfce7; color: #15803d; }
.step-tag.oppose  { background: #fee2e2; color: #b91c1c; }
.step-tag.watch   { background: #f1f5f9; color: var(--muted); }
.step-tag {
  font-size: 10px; font-weight: 700;
  padding: 3px 9px; border-radius: 999px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ANALYZE mock — AI summary */
.step-mock-body { padding: 16px 20px; }
.step-search-row {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--body);
}
.step-search-row .icon  { color: var(--muted); font-weight: 800; }
.step-search-row .query { flex: 1; color: var(--ink); font-weight: 500; }
.step-search-row .concept-pill {
  font-size: 9.5px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--slate-blue);
  background: var(--slate-blue-soft);
  padding: 2px 6px; border-radius: 3px;
}
.step-summary-lead {
  font-size: 12px;
  color: var(--body);
  line-height: 1.55;
  margin: 0 0 12px;
}
.step-summary-lead strong { color: var(--ink); font-weight: 700; }
.step-summary-points {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}
.step-point {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 11.5px;
  color: var(--ink);
  line-height: 1.4;
}
.step-point::before {
  content: '→';
  color: var(--slate-blue);
  font-weight: 800;
  flex-shrink: 0;
}

/* TRACK mock — BillSearchHub row with Track/Tracked button */
.step-bsh-list { padding: 0; }
.step-bsh-list li {
  display: block;
  padding: 13px 20px;
  border-bottom: 1px solid var(--line-soft);
  min-height: 0;
}
.step-bsh-list li:last-child { border-bottom: none; }
.step-bsh-row-top {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}
.step-bsh-author {
  font-size: 11px;
  color: var(--muted);
  flex: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.step-track-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 700;
  padding: 3px 10px; border-radius: 5px;
  border: 1px solid #15803d;
  color: #15803d;
  background: #fff;
  flex-shrink: 0;
  font-family: inherit;
  white-space: nowrap;
}
.step-track-btn.tracked     { background: #16a34a; color: #fff; border-color: #16a34a; }
.step-track-btn .check      { font-size: 10px; font-weight: 900; }
.step-track-btn .bullseye-mini {
  width: 9px; height: 9px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}
.step-track-btn .bullseye-mini::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 3px; height: 3px;
  background: currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.step-bsh-title {
  font-size: 12px;
  color: var(--ink);
  margin-bottom: 5px;
  font-weight: 500;
  line-height: 1.35;
}
.step-bsh-location {
  font-size: 10.5px;
  color: var(--muted);
  display: flex; align-items: center; gap: 5px;
}
.step-bsh-pin { color: #94a3b8; flex-shrink: 0; }

/* ANALYZE mock — position change card */
.step-position-card { padding: 16px 20px; }
.step-position-meta {
  font-size: 10.5px; color: var(--muted);
  margin-bottom: 12px;
}
.step-position-stats {
  display: flex; gap: 14px;
  padding: 10px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 14px;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
.step-position-stat strong {
  font-size: 14px; font-weight: 800;
  color: var(--ink);
  margin-right: 3px;
}
.step-position-stat                  { color: var(--muted); }
.step-position-stat.support strong   { color: #15803d; }
.step-position-stat.oppose  strong   { color: #b91c1c; }
.step-position-stat.neutral strong   { color: #475569; }
.step-position-switched {
  background: rgba(245,158,11,0.10);
  border: 1px solid rgba(245,158,11,0.35);
  border-radius: 8px;
  padding: 11px 13px;
}
.step-switched-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 9.5px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #b45309;
  margin-bottom: 6px;
}
.step-switched-org {
  font-size: 12.5px; font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.step-switched-flow {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px;
  color: var(--body);
}
.step-switched-flow .pos-from { color: #15803d;       font-weight: 700; }
.step-switched-flow .pos-to   { color: #475569;       font-weight: 700; }
.step-switched-flow .arrow    { color: #b45309;       font-weight: 800; }
.step-switched-flow .pos-date { color: var(--faint);  font-size: 10px; }

/* ACT mock — single on-call alert card */
.step-oncall { padding: 14px 20px 16px; }
.step-oncall-pulse {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 9.5px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.step-oncall-pulse::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  animation: pulse 1.5s ease-in-out infinite;
}
.step-oncall-bill {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}
.step-oncall-bill .step-bill-num { font-size: 12px; }
.step-oncall-bill-name {
  font-size: 13.5px; font-weight: 700;
  color: var(--ink);
}
.step-oncall-context {
  font-size: 11.5px; color: var(--body);
  margin-bottom: 12px;
}
.step-oncall-context strong { color: var(--ink); font-weight: 700; }
.step-oncall-channels {
  display: flex; align-items: center; gap: 6px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  font-size: 10.5px; color: var(--muted);
}
.step-oncall-channels-label {
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
}
.step-channel-pill {
  font-size: 9.5px; font-weight: 800;
  letter-spacing: 0.04em;
  padding: 2px 7px; border-radius: 3px;
  background: #dcfce7;
  color: #15803d;
}
.step-oncall-eta {
  margin-left: auto;
  font-size: 10px; font-weight: 700;
  color: var(--red);
}

/* ACT mock — notification stack */
.step-alerts li { padding: 12px 20px; }
.step-alert-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.step-alert-dot.passed   { background: #15803d; }
.step-alert-dot.failed   { background: #b91c1c; }
.step-alert-dot.upcoming {
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(220,38,38,0.5);
  animation: pulse 1.5s ease-in-out infinite;
}
.step-alert-body {
  flex: 1;
  display: flex; flex-direction: column;
  gap: 1px; min-width: 0;
}
.step-alert-body strong { font-size: 12px;   color: var(--ink); font-weight: 700; }
.step-alert-body span   { font-size: 10.5px; color: var(--muted); }
.step-alert-time {
  font-size: 10.5px;
  color: var(--faint);
  font-weight: 600;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

/* ════════════════════════════════════════════
   STAKES STRIPE — competitive jab between sections
   ════════════════════════════════════════════ */
.stakes {
  background: var(--bg);
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.stakes-loud {
  font-size: 56px; font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 920px;
  margin: 0 auto;
}
.stakes-loud .accent {
  color: var(--red);
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
}
@media (max-width: 720px) { .stakes-loud { font-size: 38px; } }

/* ════════════════════════════════════════════
   LOBBYIST SEARCH — full-bleed dark with directory mock
   ════════════════════════════════════════════ */
.lobbyist {
  background: var(--ink);
  padding: 120px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.lobbyist::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(220,38,38,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.lobbyist::after {
  content: ''; position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(74,111,165,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.lobbyist-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
@media (max-width: 880px) { .lobbyist-grid { grid-template-columns: 1fr; gap: 50px; } }
.lobbyist-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff;
  background: rgba(220,38,38,0.20);
  border: 1px solid rgba(220,38,38,0.45);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 28px;
}
.lobbyist h2 {
  font-size: 56px; font-weight: 900;
  color: #fff; letter-spacing: -0.04em;
  line-height: 1.05; margin: 0 0 24px;
}
.lobbyist h2 .accent {
  color: #fca5a5;
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
}
@media (max-width: 720px) { .lobbyist h2 { font-size: 36px; } }
.lobbyist p {
  font-size: 17px; line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin: 0 0 18px;
}
.lobbyist p strong { color: #fff; }
.lobbyist-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  font-size: 14.5px; font-weight: 700;
  color: #fca5a5;
  transition: gap 0.15s ease;
}
.lobbyist-cta:hover { gap: 14px; color: #fee2e2; }

/* Lobbyist Search — looks like a cropped screenshot of LobbyistSearch.aspx
   (light card on dark stripe; mirrors entity tabs + type-pill palette
   from the shipped product). */
.ls-mock {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.50);
  overflow: hidden;
  color: #1e293b;
  font-size: 13px;
}
.ls-mock-title {
  padding: 18px 22px 10px;
  font-size: 20px;
  font-weight: 500;
  color: #1e293b;
  letter-spacing: -0.3px;
}
.ls-mock-tabs {
  display: flex; gap: 0;
  padding: 0 8px;
  background: rgba(61,90,122,0.04);
  border-bottom: 1px solid #e2e8f0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ls-mock-tabs::-webkit-scrollbar { display: none; height: 0; }
.ls-mock-tab {
  background: transparent; border: none;
  padding: 10px 9px 9px;
  font-size: 11.5px; font-weight: 600;
  color: #64748b;
  letter-spacing: 0.1px;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  display: inline-flex; align-items: center; gap: 5px;
  white-space: nowrap;
  cursor: pointer;
}
.ls-mock-tab.active {
  color: var(--slate-blue);
  border-bottom-color: var(--slate-blue);
}
.ls-tab-count {
  font-size: 9.5px; font-weight: 700;
  background: rgba(61,90,122,0.10);
  color: var(--slate-blue);
  padding: 1px 6px; border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
.ls-mock-tab.active .ls-tab-count { background: var(--slate-blue); color: #fff; }
.ls-mock-toolbar {
  padding: 11px 22px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.ls-mock-searchbox {
  display: flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 12px;
  color: #1e293b;
  font-size: 13px;
}
.ls-mock-searchbox svg          { color: #94a3b8; flex-shrink: 0; }
.ls-mock-searchbox-text         { font-weight: 500; }
.ls-mock-caret {
  display: inline-block; width: 1.5px; height: 14px;
  background: var(--slate-blue);
  margin-left: 1px;
  animation: ls-caret 1s steps(2) infinite;
}
@keyframes ls-caret { 50% { opacity: 0; } }
.ls-mock-chips-row {
  padding: 9px 22px;
  background: rgba(61,90,122,0.04);
  border-bottom: 1px solid #e2e8f0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
}
.ls-mock-chip {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.3px;
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 20px;
  color: #64748b;
  padding: 4px 10px;
  text-transform: uppercase;
}
.ls-mock-chip.active {
  background: rgba(61,90,122,0.10);
  border-color: rgba(61,90,122,0.25);
  color: var(--slate-blue);
}
.ls-chip-count {
  margin-left: 4px;
  color: inherit;
  opacity: 0.7;
  font-weight: 700;
}
.ls-mock-sort {
  margin-left: auto;
  font-size: 11px;
  color: #64748b;
  display: flex; align-items: center; gap: 6px;
  font-weight: 600;
}
.ls-mock-sort-value {
  padding: 3px 8px;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #fff;
  color: #1e293b;
  font-size: 10.5px;
}
.ls-mock-resultshead {
  padding: 8px 22px;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}
.ls-mock-resultshead strong { color: #1e293b; }
.ls-mock-row {
  padding: 12px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
}
.ls-mock-row:last-child { border-bottom: none; }
.ls-mock-row-main       { min-width: 0; }
.ls-mock-row-title {
  font-size: 13.5px; font-weight: 600;
  color: #1e293b;
  margin-bottom: 3px;
  line-height: 1.35;
}
.ls-mock-row-meta {
  font-size: 11px; color: #64748b;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ls-type-pill {
  display: inline-block;
  font-size: 9px; font-weight: 700;
  padding: 2px 7px; border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 5px; vertical-align: 1px;
}
.ls-type-pill.lobbyist { background: rgba(37,99,235,0.10);  color: #2563eb; }
.ls-type-pill.firm     { background: rgba(249,115,22,0.10); color: #ea580c; }
.ls-type-pill.employer { background: rgba(79,70,229,0.10);  color: #4f46e5; }
.ls-type-pill.spender  { background: rgba(245,158,11,0.12); color: #b45309; }
.ls-status-pill {
  display: inline-block;
  font-size: 9px; font-weight: 700;
  padding: 2px 7px; border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-right: 5px; vertical-align: 1px;
  color: #15803d;
  background: rgba(22,163,74,0.12);
}
.ls-mock-stats {
  display: flex; gap: 18px; align-items: center;
  flex-shrink: 0;
}
.ls-mock-stat { text-align: center; min-width: 58px; }
.ls-mock-stat-num {
  font-size: 15px; font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.3px;
  line-height: 1;
  color: #1e293b;
}
.ls-mock-stat-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  font-weight: 700;
  display: block;
  margin-top: 4px;
}
.ls-mock-stat.zero .ls-mock-stat-num,
.ls-mock-stat.zero .ls-mock-stat-label { color: #cbd5e1; }

/* ════════════════════════════════════════════
   POSITION MATRIX — light stripe between Lobbyist Search and Votecards
   ════════════════════════════════════════════ */
.position-matrix {
  padding: 120px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.pm-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 72px; align-items: center;
}
.pm-grid.reverse { grid-template-columns: 1.1fr 1fr; }
@media (max-width: 880px) {
  .pm-grid,
  .pm-grid.reverse { grid-template-columns: 1fr; gap: 48px; }
}
.pm-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--slate-blue);
  background: var(--slate-blue-soft);
  border: 1px solid rgba(61,90,122,0.20);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 28px;
}
.pm-copy h2 {
  font-size: 52px; font-weight: 900;
  color: var(--ink); letter-spacing: -0.04em;
  line-height: 1.05; margin: 0 0 24px;
}
.pm-copy h2 .accent {
  color: var(--red);
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
}
@media (max-width: 720px) { .pm-copy h2 { font-size: 34px; } }
.pm-copy p {
  font-size: 17px; color: var(--body);
  line-height: 1.65; margin: 0 0 18px;
}
.pm-copy p strong { color: var(--ink); }

/* Position matrix snippet — light card */
.pm-mock {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 50px -12px rgba(15,23,42,0.18);
  color: #1e293b;
  font-size: 12px;
}
.pm-mock-head {
  padding: 14px 18px 10px;
  border-bottom: 1px solid #e2e8f0;
}
.pm-mock-title {
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--slate-blue);
  margin-bottom: 3px;
}
.pm-mock-sub { font-size: 11.5px; color: #64748b; }
.pm-mock-legend {
  display: flex; flex-wrap: wrap;
  gap: 5px 10px;
  padding: 10px 18px;
  background: rgba(61,90,122,0.04);
  border-bottom: 1px solid #e2e8f0;
  font-size: 11px; color: #64748b;
}
.pm-mock-legend-item {
  display: inline-flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.pm-mock-chips {
  padding: 11px 18px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
}
.pm-mock-chip {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.3px;
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: #64748b;
  padding: 4px 10px;
  text-transform: uppercase;
}
.pm-mock-chip.active {
  background: rgba(61,90,122,0.10);
  border-color: rgba(61,90,122,0.25);
  color: var(--slate-blue);
}
.pm-mock-chip-num { margin-left: 4px; opacity: 0.85; }
.pm-mock-chip.switched-chip {
  background: rgba(245,158,11,0.10);
  border-color: rgba(245,158,11,0.40);
  color: #b45309;
}
.pm-mock-resultshead {
  padding: 8px 18px;
  font-size: 11px; font-weight: 600;
  color: #64748b;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}
.pm-mock-resultshead strong { color: #1e293b; }
.pm-mock-tablehead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px 88px;
  gap: 10px;
  padding: 9px 18px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--slate-blue);
}
.pm-mock-tablehead .pm-event-date {
  text-align: center;
  color: #94a3b8;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-top: 2px;
}
.pm-mock-tablehead-event { text-align: center; }
.pm-mock-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px 88px;
  gap: 10px;
  align-items: center;
  padding: 10px 18px;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
}
.pm-mock-row:last-child { border-bottom: none; }
.pm-mock-row.switched { background: rgba(245,158,11,0.04); }
.pm-org {
  font-size: 12.5px; font-weight: 600;
  color: #1e293b;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  display: flex; align-items: center; gap: 7px;
  min-width: 0;
}
.pm-org-name {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.pm-switched-badge {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 8.5px; font-weight: 800;
  background: rgba(245,158,11,0.15);
  color: #b45309;
  border: 1px solid rgba(245,158,11,0.40);
  padding: 1px 6px; border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.pm-event-cell { text-align: center; }
.pm-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 24px;
  border-radius: 999px;
  font-size: 11px; font-weight: 800;
  border: 1px solid transparent;
}
.pm-pill.s   { background: rgba(34,197,94,0.20);   color: #15803d;       border-color: rgba(34,197,94,0.40); }
.pm-pill.o   { background: rgba(239,68,68,0.18);   color: #b91c1c;       border-color: rgba(239,68,68,0.40); }
.pm-pill.n   { background: rgba(148,163,184,0.20); color: #475569;       border-color: rgba(148,163,184,0.40); }
.pm-pill.sia { background: rgba(132,204,22,0.20);  color: #3f6212;       border-color: rgba(132,204,22,0.40); }
.pm-pill.oua { background: rgba(245,158,11,0.20);  color: #b45309;       border-color: rgba(245,158,11,0.40); }
.pm-pill.src { background: rgba(61,90,122,0.18);   color: var(--slate-blue); border-color: rgba(61,90,122,0.35); }
.pm-pill-dash {
  display: inline-block;
  color: #cbd5e1;
  font-size: 14px; font-weight: 600;
}

/* ════════════════════════════════════════════
   ORG DIRECTORY — dark stripe, org-side intelligence
   ════════════════════════════════════════════ */
.org-directory {
  background: var(--ink);
  padding: 120px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.org-directory::before {
  content: ''; position: absolute;
  top: -180px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74,111,165,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.org-directory::after {
  content: ''; position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(220,38,38,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.od-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 72px; align-items: center;
  position: relative; z-index: 2;
}
@media (max-width: 880px) { .od-grid { grid-template-columns: 1fr; gap: 50px; } }
.od-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff;
  background: rgba(220,38,38,0.20);
  border: 1px solid rgba(220,38,38,0.45);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 28px;
}
.od-copy h2 {
  font-size: 56px; font-weight: 900;
  color: #fff; letter-spacing: -0.04em;
  line-height: 1.05; margin: 0 0 24px;
}
.od-copy h2 .accent {
  color: #fca5a5;
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
}
@media (max-width: 720px) { .od-copy h2 { font-size: 36px; } }
.od-copy p {
  font-size: 17px; line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin: 0 0 18px;
}
.od-copy p strong { color: #fff; }

/* Org Directory mock — light card on dark stripe */
.od-mock {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 70px -16px rgba(0,0,0,0.60);
  color: #1e293b;
  font-size: 12px;
}
.od-mock-head {
  padding: 16px 20px 14px;
  border-bottom: 1px solid #e2e8f0;
}
.od-mock-breadcrumb {
  font-size: 10.5px;
  color: #94a3b8;
  margin-bottom: 8px;
}
.od-mock-breadcrumb .crumb-link    { color: var(--slate-blue); font-weight: 600; }
.od-mock-breadcrumb .crumb-sep     { margin: 0 5px; color: #cbd5e1; }
.od-mock-breadcrumb .crumb-current { color: #1e293b; font-weight: 600; }
.od-mock-org-name {
  font-size: 18px; font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.3px;
  margin-bottom: 2px;
}
.od-mock-org-sub { font-size: 11px; color: #64748b; }

.od-mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px 18px;
  background: rgba(61,90,122,0.04);
  border-bottom: 1px solid #e2e8f0;
}
.od-stat {
  padding: 11px 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}
.od-stat-num {
  font-size: 22px; font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.od-stat-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #64748b;
}
.od-stat.support              { background: rgba(34,197,94,0.08);  border-color: rgba(34,197,94,0.30); }
.od-stat.support .od-stat-num { color: #15803d; }
.od-stat.oppose               { background: rgba(220,38,38,0.07);  border-color: rgba(220,38,38,0.28); }
.od-stat.oppose .od-stat-num  { color: #b91c1c; }
.od-stat.switched             { background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.30); }
.od-stat.switched .od-stat-num{ color: #b45309; }
.od-stat.moving               { background: rgba(61,90,122,0.06);  border-color: rgba(61,90,122,0.25); }
.od-stat.moving .od-stat-num  { color: var(--slate-blue); }

.od-mock-tabs {
  display: flex;
  padding: 0 12px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  overflow-x: auto;
  scrollbar-width: none;
}
.od-mock-tabs::-webkit-scrollbar { display: none; }
.od-tab {
  padding: 9px 10px 8px;
  font-size: 11px; font-weight: 600;
  color: #64748b;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 5px;
}
.od-tab.active {
  color: var(--slate-blue);
  border-bottom-color: var(--slate-blue);
}
.od-tab-count {
  font-size: 9px; font-weight: 700;
  background: rgba(61,90,122,0.10);
  color: var(--slate-blue);
  padding: 1px 6px; border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
.od-tab.active .od-tab-count { background: var(--slate-blue); color: #fff; }

.od-mock-rows-head {
  padding: 9px 20px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #64748b;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex; justify-content: space-between; align-items: center;
}
.od-mock-rows-head-range {
  font-size: 10px; font-weight: 600;
  color: #94a3b8;
  text-transform: none;
  letter-spacing: 0;
}
.od-bill-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 11px 20px;
  border-bottom: 1px solid #f1f5f9;
}
.od-bill-row:last-child { border-bottom: none; }
.od-bill-id {
  font-size: 11.5px; font-weight: 700;
  color: var(--slate-blue);
  font-variant-numeric: tabular-nums;
}
.od-bill-info { min-width: 0; }
.od-bill-title {
  font-size: 12px; font-weight: 500;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 3px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.od-bill-meta {
  font-size: 10.5px;
  color: #64748b;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.od-bill-meta::before {
  content: '\2022';
  color: #22c55e;
  margin-right: 5px;
}
.od-bill-pos {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 10px; border-radius: 6px;
  border: 1px solid transparent;
  white-space: nowrap;
  text-transform: uppercase;
}
.od-bill-pos.oppose {
  background: rgba(220,38,38,0.10);
  border-color: rgba(220,38,38,0.30);
  color: #b91c1c;
}
.od-bill-pos.support {
  background: rgba(34,197,94,0.10);
  border-color: rgba(34,197,94,0.30);
  color: #15803d;
}
.od-bill-pos.abstain {
  color: #475569;
  font-weight: 600;
  border: none;
  padding: 3px 0;
}
.od-bill-pos.abstain::before {
  content: '\003D';
  margin-right: 4px;
  color: #94a3b8;
}

/* ════════════════════════════════════════════
   VOTECARDS
   ════════════════════════════════════════════ */
.votecards {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}
.vc-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 72px; align-items: center;
}
@media (max-width: 880px) { .vc-grid { grid-template-columns: 1fr; gap: 48px; } }
.vc-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red);
  background: var(--red-wash);
  border: 1px solid rgba(220,38,38,0.30);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 28px;
}
.vc-copy h2 {
  font-size: 52px; font-weight: 900;
  color: var(--ink); letter-spacing: -0.04em;
  line-height: 1.05; margin: 0 0 24px;
}
.vc-copy h2 .accent {
  color: var(--slate-blue);
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
}
@media (max-width: 720px) { .vc-copy h2 { font-size: 34px; } }
.vc-copy p {
  font-size: 17px; color: var(--body);
  line-height: 1.65; margin: 0 0 18px;
}
.vc-copy p strong { color: var(--ink); }
.vc-modes {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 28px;
}
.vc-mode {
  font-size: 12px; font-weight: 700;
  padding: 8px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 7px;
}
.vc-mode-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--slate-blue);
}
.vc-mode.live {
  border-color: rgba(220,38,38,0.4);
  background: var(--red-wash);
}
.vc-mode.live .vc-mode-dot {
  background: var(--red);
  animation: pulse 1.5s ease-in-out infinite;
}

/* Votecards mock — snippet of VotecardBill.aspx */
.vc-mock {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(15,23,42,0.20);
  color: #1e293b;
  font-size: 13px;
}
/* — Whip count card (top section) — */
.vc-whip-card {
  padding: 18px 22px 14px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.vc-whip-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.vc-whip-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--slate-blue);
}
.vc-whip-export {
  font-size: 11px; font-weight: 600;
  color: var(--slate-blue);
  border: 1px solid rgba(61,90,122,0.30);
  padding: 4px 10px; border-radius: 6px;
  background: #fff;
}
.vc-whip-bar {
  display: flex;
  height: 22px;
  border-radius: 5px;
  overflow: hidden;
  background: #f1f3f9;
  color: #fff;
  font-size: 12px; font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.vc-whip-bar-seg {
  display: flex; align-items: center; justify-content: center;
  padding: 0 6px;
  min-width: 24px;
}
.vc-whip-bar-seg.staff-aye { background: #22c55e; color: #14532d; }
.vc-whip-bar-seg.unknown   { background: #fbbf24; color: #78350f; }
.vc-whip-bar-seg.staff-no  { background: #fca5a5; color: #7f1d1d; }
.vc-whip-bar-seg.lay-off   { background: #475569; color: #fff; }
.vc-whip-chips {
  display: flex; flex-wrap: wrap;
  gap: 5px 12px;
  margin-top: 9px;
  font-size: 11px; color: #64748b;
  align-items: center;
}
.vc-whip-chip { display: inline-flex; align-items: center; gap: 5px; }
.vc-whip-chip-num {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; padding: 1px 6px;
  border-radius: 4px;
  font-size: 11px; font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.vc-whip-chip-num.confirmed-aye { background: #14532d; color: #fff; }
.vc-whip-chip-num.staff-aye     { background: #dcfce7; color: #14532d; }
.vc-whip-chip-num.unknown       { background: #fef3c7; color: #78350f; }
.vc-whip-chip-num.staff-no      { background: #fee2e2; color: #7f1d1d; }
.vc-whip-chip-num.confirmed-no  { background: #7f1d1d; color: #fff; }
.vc-whip-chip-num.lay-off       { background: #475569; color: #fff; }
.vc-whip-chip-num.not-set       { background: #e2e8f0; color: #475569; }
.vc-whip-chip.not-set-wrap { margin-left: auto; opacity: 0.85; }

/* — Roster filter strip — */
.vc-roster-head {
  padding: 10px 22px;
  background: rgba(61,90,122,0.04);
  border-bottom: 1px solid #e2e8f0;
  display: flex; flex-wrap: wrap;
  gap: 6px 8px;
  align-items: center;
}
.vc-roster-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--slate-blue);
  margin-right: 4px;
}
.vc-filter-chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600;
  padding: 4px 11px; border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  white-space: nowrap;
}
.vc-filter-chip.active {
  background: var(--slate-blue);
  border-color: var(--slate-blue);
  color: #fff;
}
.vc-filter-chip-dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0;
}
.vc-filter-chip-dot.aye     { background: #22c55e; }
.vc-filter-chip-dot.no      { background: #ef4444; }
.vc-filter-chip-dot.layoff  { background: #475569; }
.vc-filter-chip-dot.unknown { background: #f59e0b; }
.vc-filter-divider {
  width: 1px; height: 16px;
  background: #cbd5e1;
  margin: 0 2px;
}
.vc-roster-search-wrap {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 11.5px;
  color: #94a3b8;
  margin-left: auto;
}
.vc-roster-search-wrap svg { color: #94a3b8; flex-shrink: 0; }
.vc-roster-count {
  font-size: 10.5px; color: #94a3b8;
  margin-left: 4px;
}

/* — Legislator rows — */
.vc-leg-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px 22px;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
}
.vc-leg-row:last-child { border-bottom: none; }
.vc-leg-party {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700; font-size: 11px;
  flex-shrink: 0;
}
.vc-leg-party.d { background: #3b7ddd; }
.vc-leg-party.r { background: #dc3545; }
.vc-leg-name-block { min-width: 0; }
.vc-leg-name {
  font-size: 13px; font-weight: 600;
  color: #1e293b; line-height: 1.25;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.vc-leg-sub { font-size: 10.5px; color: #64748b; margin-top: 1px; }
.vc-leg-byyou {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 3px 8px; border-radius: 999px;
  white-space: nowrap;
}
.vc-leg-byyou svg { width: 9px; height: 9px; color: #94a3b8; }
.vc-leg-byyou.coalition {
  color: var(--slate-blue);
  background: rgba(61,90,122,0.10);
  border: 1px solid rgba(61,90,122,0.20);
  padding: 2px 7px;
}
.vc-leg-pos-pill {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 5px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.vc-leg-pos-pill.confirmed-aye { background: #14532d; color: #fff; }
.vc-leg-pos-pill.staff-aye {
  background: rgba(34,197,94,0.20); color: #14532d;
  border: 1px solid rgba(34,197,94,0.50);
}
.vc-leg-pos-pill.unknown {
  background: rgba(245,158,11,0.20); color: #78350f;
  border: 1px solid rgba(245,158,11,0.50);
}
.vc-leg-pos-pill.staff-no {
  background: rgba(239,68,68,0.20); color: #7f1d1d;
  border: 1px solid rgba(239,68,68,0.50);
}
.vc-leg-pos-pill.confirmed-no  { background: #7f1d1d; color: #fff; }
.vc-leg-pos-pill.lay-off       { background: #475569; color: #fff; }
.vc-leg-details {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600;
  color: var(--slate-blue);
  border: 1px solid rgba(61,90,122,0.30);
  padding: 3px 9px; border-radius: 5px;
  background: #fff;
}

/* ════════════════════════════════════════════
   REAL-TIME STRIPE — dark with big stats
   ════════════════════════════════════════════ */
.realtime {
  background:
    radial-gradient(ellipse 60% 60% at 30% 30%, rgba(220,38,38,0.10) 0%, transparent 50%),
    var(--ink);
  padding: 120px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.realtime-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
.realtime-grid.reverse { grid-template-columns: 1.2fr 1fr; }
@media (max-width: 880px) {
  .realtime-grid,
  .realtime-grid.reverse { grid-template-columns: 1fr; gap: 48px; }
}
.realtime-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff;
  background: rgba(220,38,38,0.20);
  border: 1px solid rgba(220,38,38,0.45);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 28px;
}
.realtime h2 {
  font-size: 56px; font-weight: 900;
  color: #fff; letter-spacing: -0.04em;
  line-height: 1.05; margin: 0 0 24px;
}
.realtime h2 .accent {
  color: #fca5a5;
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
}
@media (max-width: 720px) { .realtime h2 { font-size: 36px; } }
.realtime p {
  font-size: 17px; line-height: 1.65;
  color: rgba(255,255,255,0.78); margin: 0 0 22px;
}
.realtime-stats {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.stat-num {
  font-size: 56px; font-weight: 900;
  color: #fff; letter-spacing: -0.05em;
  line-height: 1;
}
.stat-num.stat-phrase {
  font-size: 48px;
  letter-spacing: -0.03em;
}
.stat-num .red { color: #fca5a5; }
.stat-label {
  font-size: 12px; color: rgba(255,255,255,0.6);
  margin-top: 10px; font-weight: 600;
  letter-spacing: 0.04em;
}
.realtime-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 32px 80px -16px rgba(0,0,0,0.6);
}

/* Live Activity mock — snippet of LiveActivityList.aspx */
.lv-mock {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 70px -16px rgba(0,0,0,0.60);
  color: #1e293b;
  font-size: 12px;
}
.lv-mock-toolbar {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 6px 8px;
  padding: 11px 16px;
  background: rgba(61,90,122,0.04);
  border-bottom: 1px solid #e2e8f0;
}
.lv-filter-chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600;
  padding: 4px 11px; border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  white-space: nowrap;
}
.lv-filter-chip.active {
  color: var(--slate-blue);
  border-color: rgba(61,90,122,0.30);
  background: rgba(61,90,122,0.08);
}
.lv-filter-chip svg     { color: currentColor; flex-shrink: 0; }
.lv-filter-chip .caret  { font-size: 8px; opacity: 0.55; margin-left: 1px; }
.lv-view-report {
  margin-left: auto;
  font-size: 11px; font-weight: 600;
  color: var(--slate-blue);
  border: 1px solid rgba(61,90,122,0.30);
  padding: 4px 11px; border-radius: 6px;
  background: #fff;
  display: inline-flex; align-items: center; gap: 4px;
}
.lv-snapshot {
  padding: 13px 16px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.lv-snapshot-label {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 7px;
}
.lv-snapshot-stats {
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 6px 18px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.lv-stat strong {
  font-size: 16px; font-weight: 700;
  color: #1e293b;
  margin-right: 4px;
}
.lv-stat              { color: #64748b; }
.lv-stat-sep          { width: 1px; height: 16px; background: #e2e8f0; }
.lv-stat.warn strong  { color: #b91c1c; }
.lv-stat.pass strong  { color: #15803d; }
.lv-stat.fail strong  { color: #94a3b8; }
.lv-mock-thead {
  display: grid;
  grid-template-columns: 60px minmax(0, 1.2fr) 105px 32px 32px 32px auto;
  gap: 10px;
  padding: 8px 16px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--slate-blue);
}
.lv-mock-thead span { white-space: nowrap; }
.lv-mock-thead .lv-h-y,
.lv-mock-thead .lv-h-n,
.lv-mock-thead .lv-h-nv      { text-align: center; }
.lv-mock-thead .lv-h-outcome { text-align: right; }
.lv-mock-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 1.2fr) 105px 32px 32px 32px auto;
  gap: 10px;
  align-items: center;
  padding: 8px 16px;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  font-size: 12px;
}
.lv-mock-row:last-child { border-bottom: none; }
@media (max-width: 720px) {
  .lv-mock-thead,
  .lv-mock-row {
    grid-template-columns: 56px minmax(0, 1fr) 26px 26px 26px auto !important;
    gap: 8px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .lv-mock-thead > span:nth-child(3),
  .lv-date         { display: none !important; }
  .lv-author small { display: none; }
}
.lv-mock-row:nth-child(odd) { background: #fff; }
.lv-mock-row:hover { background: rgba(61,90,122,0.03); }
.lv-bill {
  font-weight: 700;
  color: var(--slate-blue);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.lv-author {
  color: #1e293b;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.lv-author small {
  display: block;
  font-size: 10px;
  color: #94a3b8;
  margin-top: 1px;
}
.lv-date {
  font-size: 10.5px;
  color: #64748b;
  font-variant-numeric: tabular-nums;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.lv-y, .lv-n, .lv-nv {
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.lv-y  { color: #15803d; }
.lv-n  { color: #b91c1c; }
.lv-nv { color: #94a3b8; }
.lv-outcome { text-align: right; }
.lv-outcome-pill {
  display: inline-block;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 2px 9px; border-radius: 4px;
}
.lv-outcome-pill.pass   { background: rgba(34,197,94,0.18);  color: #15803d; }
.lv-outcome-pill.fail   { background: rgba(220,38,38,0.18);  color: #b91c1c; }
.lv-outcome-pill.oncall { background: rgba(245,158,11,0.18); color: #b45309; }

/* ════════════════════════════════════════════
   PULSE MOBILE
   ════════════════════════════════════════════ */
.pulse {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  padding: 120px 0;
}
.pulse-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 880px) { .pulse-grid { grid-template-columns: 1fr; gap: 48px; } }
.pulse-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--slate-blue);
  background: var(--slate-blue-soft);
  border: 1px solid rgba(61,90,122,0.20);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 28px;
}
.pulse h2 {
  font-size: 52px; font-weight: 900;
  color: var(--ink); letter-spacing: -0.04em;
  line-height: 1.05; margin: 0 0 24px;
}
.pulse h2 .accent {
  color: var(--slate-blue);
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
}
@media (max-width: 720px) { .pulse h2 { font-size: 34px; } }
.pulse p {
  font-size: 17px; color: var(--body); line-height: 1.65; margin: 0 0 18px;
}
.pulse-features {
  list-style: none; padding: 0; margin: 28px 0 0;
}
.pulse-features li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--ink); font-weight: 600;
}
.pulse-features li:last-child { border-bottom: none; }
.pulse-check {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--slate-blue);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 900;
  box-shadow: 0 2px 8px rgba(61,90,122,0.30);
}
.pulse-img-wrap {
  display: flex; justify-content: center;
  position: relative;
}
.pulse-img-wrap::before {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(61,90,122,0.16) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.pulse-img-wrap img {
  max-width: 560px;
  width: 100%;
  filter: drop-shadow(0 40px 70px rgba(15,23,42,0.28));
  position: relative; z-index: 2;
}

/* ════════════════════════════════════════════
   QUOTE — cinematic
   ════════════════════════════════════════════ */
.quote {
  background:
    radial-gradient(ellipse 50% 60% at 25% 30%, rgba(220,38,38,0.06) 0%, transparent 50%),
    var(--slate-blue-soft);
  padding: 140px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.quote-inner {
  max-width: 920px; margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-size: 96px; line-height: 0.7; color: var(--red);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  opacity: 0.55;
  margin-bottom: 16px;
}
.quote-text {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 38px; font-weight: 500;
  color: var(--ink); letter-spacing: -0.02em;
  line-height: 1.3; margin: 0 0 40px;
}
@media (max-width: 720px) { .quote-text { font-size: 26px; } }
.quote-attr {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
}
.quote-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--slate-blue), var(--slate-blue-deep));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 18px;
  box-shadow: 0 6px 16px rgba(61,90,122,0.30);
}
.quote-name { text-align: left; }
.quote-name strong {
  display: block; color: var(--ink);
  font-size: 15px; font-weight: 800;
}
.quote-name span { color: var(--muted); font-size: 13.5px; }

/* ════════════════════════════════════════════
   PRICING TEASER + price cards
   ════════════════════════════════════════════ */
.pricing { padding: 120px 0; }
.price-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
@media (max-width: 880px) { .price-cards { grid-template-columns: 1fr; } }
.price-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 36px 30px;
  transition: all 0.25s ease;
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -10px rgba(15,23,42,0.14);
  border-color: var(--slate-blue);
}
.price-card.featured {
  border-color: var(--red);
  background: linear-gradient(180deg, var(--red-wash) 0%, #fff 25%);
  box-shadow: 0 16px 36px -12px rgba(220,38,38,0.20);
  position: relative;
  transform: translateY(-8px);
}
.price-card.featured:hover {
  border-color: var(--red-deep);
  box-shadow: 0 20px 40px -12px rgba(185,28,28,0.30);
  transform: translateY(-12px);
}
.price-card.featured::before {
  content: 'Most popular';
  position: absolute; top: -12px; right: 26px;
  background: linear-gradient(135deg, #f87171, var(--red-deep));
  color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em;
  padding: 5px 12px; border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(185,28,28,0.40);
}
.price-tier {
  font-size: 12px; font-weight: 800;
  color: var(--slate-blue);
  letter-spacing: 0.10em; text-transform: uppercase;
  margin-bottom: 12px;
}
.price-card.featured .price-tier { color: var(--red); }
.price-amount {
  display: flex; align-items: baseline; gap: 5px;
  margin-bottom: 18px;
}
.price-amount .num {
  font-size: 52px; font-weight: 900; color: var(--ink);
  letter-spacing: -0.04em; line-height: 1;
}
.price-amount .unit {
  font-size: 14px; color: var(--muted); font-weight: 500;
}
.price-desc {
  font-size: 14px; color: var(--body);
  margin: 0 0 28px; min-height: 42px;
}
.price-features { list-style: none; padding: 0; margin: 0 0 32px; }
.price-features li {
  font-size: 14px; color: var(--body);
  padding: 8px 0;
  display: flex; align-items: center; gap: 10px;
  border-top: 1px solid var(--line-soft);
}
.price-features li:first-child { border-top: none; }
.price-features li::before {
  content: '✓'; color: var(--slate-blue);
  font-weight: 800; font-size: 13px;
}
.price-card.featured .price-features li::before { color: var(--red); }
.price-cta { width: 100%; justify-content: center; }

/* ════════════════════════════════════════════
   PRICING TEASER — lightweight 3-tier strip
   ════════════════════════════════════════════ */
.price-teaser {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 48px;
}
@media (max-width: 880px) { .price-teaser { grid-template-columns: 1fr; } }
.price-teaser-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 26px 24px;
  text-align: center;
  position: relative;
  transition: all 0.2s ease;
}
.price-teaser-card:hover {
  border-color: var(--slate-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -10px rgba(15,23,42,0.12);
}
.price-teaser-card.featured {
  border-color: var(--red);
  background: linear-gradient(180deg, var(--red-wash) 0%, #fff 40%);
}
.price-teaser-card.featured:hover {
  border-color: var(--red-deep);
  box-shadow: 0 12px 28px -10px rgba(220,38,38,0.20);
}
.price-teaser-card.featured::before {
  content: 'Most popular';
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #f87171, var(--red-deep));
  color: #fff; font-size: 10px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px;
  white-space: nowrap;
}
.price-teaser-card .price-tier          { margin-bottom: 10px; }
.price-teaser-card.featured .price-tier { color: var(--red); }
.price-teaser-card .price-desc {
  margin: 0; min-height: 0;
  font-size: 14px; line-height: 1.5;
}
.price-teaser-cta {
  display: flex; justify-content: center;
  margin-top: 44px;
}

/* ════════════════════════════════════════════
   FINAL CTA — bold, layered
   ════════════════════════════════════════════ */
.final-cta {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(61,90,122,0.10) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 50% 100%, rgba(220,38,38,0.06) 0%, transparent 50%),
    var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  padding: 120px 0;
  text-align: center;
}
.final-cta h2 {
  font-size: 64px; font-weight: 900;
  color: var(--ink); letter-spacing: -0.05em;
  line-height: 1.0; margin: 0 auto 22px;
  max-width: 800px;
}
.final-cta h2 .accent {
  color: var(--red);
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
}
@media (max-width: 720px) { .final-cta h2 { font-size: 40px; } }
.final-cta p {
  font-size: 19px; color: var(--body);
  max-width: 600px; margin: 0 auto 40px;
}
.final-cta .hero-ctas { justify-content: center; }
.final-trust {
  margin-top: 64px; padding-top: 40px;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; max-width: 880px; margin-left: auto; margin-right: auto;
}
@media (max-width: 720px) { .final-trust { grid-template-columns: 1fr; } }
.final-trust-item {
  text-align: left;
  display: flex; align-items: flex-start; gap: 14px;
}
.final-trust-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--slate-blue-soft);
  color: var(--slate-blue);
  display: inline-flex; align-items: center; justify-content: center;
}
.final-trust-icon svg { width: 18px; height: 18px; }
.final-trust-icon.red {
  background: var(--red-wash); color: var(--red);
}
.final-trust strong {
  display: block; font-size: 15px; font-weight: 800;
  color: var(--ink); margin-bottom: 3px;
}
.final-trust span { font-size: 13.5px; color: var(--muted); }
.final-trust a    { color: var(--slate-blue); font-weight: 600; }

/* ────────── Residual .footer-col rules ──────────
   Bundle uses the inline footer nav from chrome.css. These
   .footer-col rules stay only in case a stale partial still
   uses the older column-style markup. */
.footer-col h4 {
  font-size: 12px; font-weight: 800;
  color: var(--ink); letter-spacing: 0.08em;
  text-transform: uppercase; margin: 0 0 16px;
}
.footer-col ul     { list-style: none; padding: 0; margin: 0; }
.footer-col li     { margin-bottom: 10px; }
.footer-col a      { color: var(--muted); font-size: 13.5px; }
.footer-col a:hover { color: var(--ink); }

/* Back-to-top — homepage adds focus + reduced-motion variants */
.back-to-top:focus-visible {
  outline: 2px solid var(--slate-blue);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top            { transition: opacity 0.15s ease; transform: none; }
  .back-to-top.is-visible { transform: none; }
  .back-to-top:hover      { transform: none; }
}

/* ════════════════════════════════════════════════════════════════════════
   ─── V2 POLISH PASS ─────────────────────────────────────────────────────
   Live dateline, scoreboard, §-numbered section mastheads,
   editorial stakes treatment, Tweaks panel.
   (Type-vars block lives in tokens.css.)
   ════════════════════════════════════════════════════════════════════════ */

/* Unify all the existing italic-serif accent moments through one set of
   vars so the Tweaks panel can swap them in one place. !important because
   the original rules in this file hardcode font-family/style/weight. */
h1.hero-title .accent,
.section-title .accent,
.stakes-loud .accent,
.stakes-loud em,
.lobbyist h2 .accent,
.pm-copy h2 .accent,
.od-copy h2 .accent,
.vc-copy h2 .accent,
.realtime h2 .accent,
.pulse h2 .accent,
.final-cta h2 .accent,
.quote-text {
  font-family: var(--accent-font) !important;
  font-style:  var(--accent-style) !important;
  font-weight: var(--accent-weight) !important;
}
body[data-type="modern"] h1.hero-title .accent,
body[data-type="modern"] .section-title .accent,
body[data-type="modern"] .stakes-loud .accent,
body[data-type="modern"] .stakes-loud em,
body[data-type="modern"] .lobbyist h2 .accent,
body[data-type="modern"] .pm-copy h2 .accent,
body[data-type="modern"] .od-copy h2 .accent,
body[data-type="modern"] .vc-copy h2 .accent,
body[data-type="modern"] .realtime h2 .accent,
body[data-type="modern"] .pulse h2 .accent,
body[data-type="modern"] .final-cta h2 .accent {
  letter-spacing: -0.055em !important;
}
/* Don't apply the variable swap to the big drop-quotation mark itself —
   it should stay Fraunces for the curly character form regardless. */
.quote-mark { font-family: 'Fraunces', Georgia, serif !important; }


/* ─── Live dateline strip (replaces hidden ticker) ───
   Sits above the nav, scrolls away with the page — newspaper-style. */
.rtg-dateline {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rtg-dateline-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 36px;
  overflow: hidden;
  white-space: nowrap;
}
.rtg-dl-cell {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 18px;
  height: 100%;
  border-right: 1px solid rgba(255,255,255,0.10);
  white-space: nowrap;
  color: rgba(255,255,255,0.62);
}
.rtg-dl-cell:first-child { padding-left: 0; }
.rtg-dl-cell strong      { color: #fff; font-weight: 600; }
.rtg-dl-place {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.rtg-dl-tag {
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-left: auto;
  border-right: none;
}
.rtg-dl-time { font-variant-numeric: tabular-nums; }
.rtg-dl-sep  { color: rgba(255,255,255,0.30); margin: 0 6px; }
.rtg-dl-live {
  margin-left: auto;
  border-right: none;
  color: #fca5a5;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}
.rtg-dl-live .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  animation: pulse 1.5s ease-in-out infinite;
  display: inline-block;
}
@media (max-width: 960px) {
  .rtg-dl-tag { display: none; }
}
@media (max-width: 720px) {
  .rtg-dateline             { font-size: 10px; }
  .rtg-dl-cell              { padding: 0 12px; }
  .rtg-dl-cell:nth-child(2) { display: none; }
}


/* ─── Section masthead (publication chapter marker) ─── */
.sx-mast {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 28px;
  padding: 14px 0 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 64px;
}
.sx-mast-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--slate-blue);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.sx-mast-label {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.sx-mast-meta {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
}
.sx-mast.dark {
  border-top-color: rgba(255,255,255,0.16);
  border-bottom-color: rgba(255,255,255,0.16);
}
.sx-mast.dark .sx-mast-num   { color: #fca5a5; }
.sx-mast.dark .sx-mast-label { color: #fff; }
.sx-mast.dark .sx-mast-meta  { color: rgba(255,255,255,0.50); }
@media (max-width: 720px) {
  .sx-mast {
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 10px 0 12px;
    margin-bottom: 36px;
  }
  .sx-mast-meta  { display: none; }
  .sx-mast-label { font-size: 10.5px; letter-spacing: 0.18em; }
}


/* ─── "Today on RTG" scoreboard ─── */
.rtg-sb {
  padding: 88px 0 72px;
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
}
.rtg-sb-head {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}
.rtg-sb-num-head {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--slate-blue);
}
.rtg-sb-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.rtg-sb-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
  margin-left: auto;
  letter-spacing: 0.04em;
}
.rtg-sb-meta .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  animation: pulse 1.5s ease-in-out infinite;
}
.rtg-sb-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid var(--line);
}
@media (max-width: 980px) {
  .rtg-sb-grid                       { grid-template-columns: repeat(2, 1fr); }
  .rtg-sb-grid > :nth-child(2n+1)    { border-left: 1px solid var(--line); margin-left: -1px; }
}
@media (max-width: 520px) {
  .rtg-sb-grid { grid-template-columns: 1fr; }
}
.rtg-sb-cell {
  border-right: 1px solid var(--line);
  padding: 22px 24px 24px;
  position: relative;
}
.rtg-sb-num {
  font-family: var(--mono);
  font-size: 48px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.045em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 14px;
  display: inline-block;
}
.rtg-sb-cell.pass .rtg-sb-num { color: #15803d; }
.rtg-sb-cell.fail .rtg-sb-num { color: #94a3b8; }
.rtg-sb-cell.call .rtg-sb-num { color: var(--red); }
.rtg-sb-cell.call::after {
  content: '';
  position: absolute;
  top: 30px; right: 22px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.5s ease-in-out infinite;
}
.rtg-sb-lbl {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
.rtg-sb-sub {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.45;
}
.rtg-sb-sub strong {
  color: var(--ink);
  font-weight: 600;
}


/* ─── Editorial Stakes treatment ─── */
.stakes-frame {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.stakes-kicker {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.stakes-kicker-rule {
  flex: 0 0 60px;
  height: 1px;
  background: var(--line);
}
.stakes-kicker-text {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate-blue);
  font-weight: 600;
  white-space: nowrap;
}
.stakes-loud em {
  /* picks up var-driven accent rules from above */
  color: var(--ink);
  font-family: var(--accent-font);
  font-style: var(--accent-style);
  font-weight: var(--accent-weight);
}
.stakes-dek {
  max-width: 660px;
  margin: 40px auto 0;
  font-size: 20px;
  line-height: 1.55;
  color: var(--body);
}
.stakes-dek strong { color: var(--ink); font-weight: 700; }
@media (max-width: 720px) {
  .stakes-dek { font-size: 17px; }
}
.stakes-byline {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.stakes-byline-label { color: var(--muted); }
.stakes-byline-sep   { color: var(--faint); }
.stakes-byline-name  { color: var(--ink); font-weight: 600; }


/* ─── Tweaks panel ─── */
.rtg-tweaks {
  position: fixed;
  bottom: 88px; right: 28px;
  width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow:
    0 24px 60px -12px rgba(15,23,42,0.30),
    0 4px 12px -2px rgba(15,23,42,0.10);
  z-index: 90;
  font-size: 13px;
  overflow: hidden;
}
.rtg-tweaks[hidden] { display: none; }
.rtg-tweaks-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px 12px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.rtg-tweaks-head h3 {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.rtg-tweaks-close {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 18px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.15s ease;
}
.rtg-tweaks-close:hover {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.rtg-tweaks-body { padding: 14px 16px 16px; }
.rtg-tweaks-section-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.rtg-tweaks-radios {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rtg-tweaks-radio       { display: block; cursor: pointer; }
.rtg-tweaks-radio input { display: none; }
.rtg-tweaks-radio-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  transition: all 0.15s ease;
}
.rtg-tweaks-radio:hover .rtg-tweaks-radio-card {
  border-color: var(--slate-blue);
}
.rtg-tweaks-radio input:checked + .rtg-tweaks-radio-card {
  border-color: var(--slate-blue);
  background: var(--slate-blue-wash);
  box-shadow: inset 0 0 0 1px var(--slate-blue);
}
.rtg-tweaks-radio-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
.rtg-tweaks-radio-preview {
  font-size: 22px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.025em;
}
.rtg-tweaks-radio-preview .pre-accent { color: var(--red); }
.rtg-tweaks-radio-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
@media (max-width: 720px) {
  .rtg-tweaks { right: 16px; left: 16px; width: auto; bottom: 80px; }
}


/* ─── Three-step refinement ───────────────────────────────────────
   Drop the three-isolated-cards read; unify them into a single
   hairline-divided workflow surface. */
.three-step { padding-bottom: 120px; }
.three-step .steps {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto 1fr auto;
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px -16px rgba(15,23,42,0.10);
}
.three-step .step {
  background: #fff !important;
  border: none !important;
  border-right: 1px solid var(--line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  transform: none !important;
  position: relative;
  transition: background 0.18s ease;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
}
.three-step .step > .step-num-row { padding: 40px 32px 0; }
.three-step .step > .step-title   { padding: 0 32px; }
.three-step .step > .step-text    { padding: 0 32px 32px; }
.three-step .step:last-child      { border-right: none !important; }
.three-step .step:hover {
  background: var(--bg-soft) !important;
  transform: none !important;
  box-shadow: none !important;
  border-color: var(--line) !important;
}
/* Colored top-bar per column — section-color discipline (ink/slate/red). */
.three-step .step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ink);
}
.three-step .step:nth-child(2)::before { background: var(--slate-blue); }
.three-step .step:nth-child(3)::before { background: var(--red); }

/* Editorial mono numeral replaces the colored chip number. */
.three-step .step .step-num-row {
  align-items: baseline !important;
  gap: 16px !important;
  margin-bottom: 24px !important;
  padding-bottom: 20px !important;
  border-bottom: 1px solid var(--line);
}
.three-step .step .step-num {
  background: transparent !important;
  color: var(--ink) !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: var(--mono) !important;
  font-size: 44px !important;
  font-weight: 500 !important;
  letter-spacing: -0.055em !important;
  line-height: 0.85 !important;
  align-self: baseline;
  font-variant-numeric: tabular-nums;
}
.three-step .step .step-num.analyze { color: var(--slate-blue) !important; }
.three-step .step .step-num.act     { color: var(--red) !important; }

/* Tag turns into a quiet mono kicker, anchored right. */
.three-step .step .step-num-row > .step-tag {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--muted);
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.three-step .step .step-num-row > .step-tag::before {
  content: 'Step \00a0\00b7\00a0';
  color: var(--faint);
  font-weight: 500;
}

/* Headline + body: tighten and crisp. */
.three-step .step-title {
  font-size: 27px !important;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 14px !important;
}
.three-step .step-text {
  font-size: 14.5px !important;
  line-height: 1.6;
  margin-bottom: 32px !important;
  color: var(--body);
}

/* Mock extends edge-to-edge with a hairline above only. */
.three-step .step-mock {
  margin: 0 !important;
  border-top: 1px solid var(--line) !important;
  align-self: start;
}

@media (max-width: 880px) {
  .three-step .steps {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .three-step .step {
    border-right: none !important;
    border-bottom: 1px solid var(--line) !important;
    display: block;
    grid-row: auto;
  }
  .three-step .step:last-child       { border-bottom: none !important; }
  .three-step .step > .step-num-row  { padding: 32px 24px 0; }
  .three-step .step > .step-title    { padding: 0 24px; }
  .three-step .step > .step-text     { padding: 0 24px 24px; }
}
