@import url('colors_and_type.css');

/* ============================================================
   VoteShift × BEA · 2026 Phase 1 Texting Proposal
   Cross-platform responsive deck.
   Desktop: each slide reads as a 16:9-ish hero section.
   Mobile: continuous, vertically scrolled document.
   ============================================================ */

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

:root {
  /* Fluid spacing & type — clamp(min, preferred, max) */
  --pad-x: clamp(20px, 5vw, 96px);
  --pad-y: clamp(40px, 6vw, 80px);
  --gap-sm: clamp(12px, 1.5vw, 20px);
  --gap-md: clamp(20px, 3vw, 40px);
  --gap-lg: clamp(28px, 4vw, 64px);
  --gap-xl: clamp(32px, 5vw, 96px);

  /* Display scales */
  --t-hero: clamp(40px, 12vw, 168px);
  --t-display-xl: clamp(40px, 9vw, 96px);
  --t-display-l: clamp(34px, 6vw, 64px);
  --t-h2: clamp(26px, 3.6vw, 44px);
  --t-h3: clamp(20px, 2.2vw, 28px);
  --t-h4: clamp(17px, 1.7vw, 22px);

  /* Stat numbers */
  --t-stat-xl: clamp(48px, 11vw, 120px);
  --t-stat-l: clamp(40px, 7.5vw, 96px);
  --t-stat-m: clamp(32px, 5.5vw, 56px);

  /* Body */
  --t-lead: clamp(17px, 1.8vw, 26px);
  --t-body: clamp(15px, 1.4vw, 20px);
  --t-small: clamp(14px, 1.1vw, 17px);
  --t-eyebrow: clamp(11px, 0.95vw, 14px);
}

html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--vs-grey-100);
  font-family: var(--vs-font-sans);
  color: var(--vs-fg1);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--vs-teal-700); text-decoration: none; }

/* ============================================================
   TOP NAV — sticky, minimal, anchors to each slide
   ============================================================ */
.deck-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(18, 40, 84, 0.96);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(63, 197, 225, 0.25);
  color: var(--vs-white);
  font-family: var(--vs-font-sans);
}
.deck-nav .row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  max-width: 1600px; margin: 0 auto;
  padding: 12px var(--pad-x);
}
.deck-nav .brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--vs-font-display);
  font-weight: 900; font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase;
  min-width: 0; flex-shrink: 1;
}
.deck-nav .brand > span:not(.vs-mark) {
  min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.deck-nav .jump { flex-shrink: 0; max-width: 50%; }

.deck-nav .jump {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--vs-white);
  font-family: var(--vs-font-sans); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 12px;
  cursor: pointer;
}
.deck-nav .jump option { background: var(--vs-navy); color: var(--vs-white); }

.deck-nav .progress {
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: rgba(63, 197, 225, 0.15);
}
.deck-nav .progress .fill {
  display: block; height: 100%; background: var(--vs-teal);
  width: 0; transition: width 200ms var(--vs-ease-out);
}

@media (max-width: 540px) {
  .deck-nav .brand .text-long { display: none; }
  .deck-nav .brand { font-size: 11px; letter-spacing: 0.12em; gap: 8px; }
  .deck-nav .row { gap: 10px; }
  .deck-nav .jump { padding: 7px 8px; font-size: 11px; letter-spacing: 0.1em; }
}
@media (max-width: 380px) {
  .deck-nav .brand > span:not(.mark) { display: none; }
}

/* ============================================================
   SLIDE — base
   ============================================================ */
.slide {
  position: relative;
  background: var(--vs-white);
  color: var(--vs-fg1);
  padding-top: 0;
  padding-bottom: 0;
  display: flex; flex-direction: column;
  min-height: 100vh;
  scroll-margin-top: 56px; /* offset for sticky nav */
  border-bottom: 1px solid var(--vs-border);
}
.slide:last-child { border-bottom: 0; }

@media (max-width: 720px) {
  .slide { min-height: auto; }
}

.slide-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: var(--pad-y) var(--pad-x);
  flex: 1;
  display: flex; flex-direction: column;
}

/* Slide header: brand mark + meta */
.slide-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  font-family: var(--vs-font-sans);
  margin-bottom: clamp(20px, 3vw, 40px);
}
.slide-header .left { display: flex; align-items: center; gap: 12px; min-width: 0; }

/* Brand mark (used in slide-header and nav) */
.vs-mark { display: block; height: 22px; width: 32px; flex: none; }
.vs-mark .square { fill: var(--vs-navy); }
.vs-mark .bar { fill: var(--vs-teal); }
.slide-dark .vs-mark .square { fill: var(--vs-white); }
.deck-nav .vs-mark .square { fill: var(--vs-white); }
.deck-nav .vs-mark { height: 20px; width: 29px; }
.slide-header .firm {
  font-family: var(--vs-font-display); font-weight: 900;
  font-size: clamp(11px, 1vw, 14px); letter-spacing: 0.18em;
  color: var(--vs-navy); text-transform: uppercase;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.slide-header .meta {
  font-family: var(--vs-font-sans); font-weight: 700;
  font-size: clamp(10px, 0.9vw, 12px); letter-spacing: 0.16em;
  color: var(--vs-grey-500); text-transform: uppercase;
  white-space: nowrap; flex: none;
}

/* Slide footer */
.slide-footer {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-top: clamp(28px, 4vw, 48px); padding-top: 24px;
  font-size: clamp(10px, 0.9vw, 12px); letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--vs-grey-500); font-weight: 700;
}
.brand-bar { display: flex; gap: 6px; height: 6px; flex: 1; max-width: 420px; }
.brand-bar .a { background: var(--vs-navy); flex: 0 0 64%; min-width: 0; }
.brand-bar .b { background: var(--vs-teal); flex: 0 0 18%; min-width: 0; }

/* Dark slide variant */
.slide-dark { background: var(--vs-navy); color: var(--vs-white); }
.slide-dark .slide-header .firm { color: var(--vs-white); }
.slide-dark .slide-header .meta { color: rgba(255,255,255,0.55); }
.slide-dark .slide-header .vs-mark { background: var(--vs-white); }
.slide-dark .slide-footer { color: rgba(255,255,255,0.55); }
.slide-dark .slide-footer .brand-bar .a { background: var(--vs-white); }

/* Check-pattern background on light slides */
.bg-check { background-image: url('assets/check-pattern-bg.svg'); background-size: 220px 220px; }

/* ============================================================
   STRIP — slide title with rule + tag
   ============================================================ */
.strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  column-gap: 24px; row-gap: 8px;
  padding-bottom: 14px;
  border-bottom: 4px solid var(--vs-navy);
  margin-bottom: clamp(24px, 3.5vw, 40px);
}
.strip h2 {
  font-family: var(--vs-font-display); font-weight: 900;
  text-transform: uppercase;
  font-size: var(--t-h2);
  color: var(--vs-navy); margin: 0;
  letter-spacing: -0.01em; line-height: 1.05;
  text-wrap: balance;
}
.strip .tag {
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--vs-teal-700); font-weight: 700;
  padding-bottom: 4px;
  max-width: 320px; text-align: right; line-height: 1.35;
}
.slide-dark .strip { border-bottom-color: var(--vs-teal); }
.slide-dark .strip h2 { color: var(--vs-white); }
.slide-dark .strip .tag { color: var(--vs-teal); }

@media (max-width: 720px) {
  .strip { grid-template-columns: 1fr; padding-bottom: 12px; }
  .strip .tag { text-align: left; max-width: 100%; padding-bottom: 0; }
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  font-family: var(--vs-font-sans); font-weight: 700;
  font-size: var(--t-eyebrow); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--vs-navy); margin: 0;
}
.eyebrow.teal { color: var(--vs-teal-700); }
.eyebrow.muted { color: var(--vs-grey-500); }
.eyebrow.inv { color: var(--vs-teal); }

.body  { font-family: var(--vs-font-sans); font-weight: 400; font-size: var(--t-body); line-height: 1.55; color: var(--vs-navy-700); }
.body.lg { font-size: var(--t-lead); line-height: 1.45; }
.body.sm { font-size: var(--t-small); line-height: 1.55; }
.body.xl { font-size: clamp(18px, 2.4vw, 32px); line-height: 1.4; }

.caption {
  font-family: var(--vs-font-sans); font-weight: 400;
  font-size: clamp(11px, 0.95vw, 14px); letter-spacing: 0.04em;
  color: var(--vs-grey-500); text-transform: uppercase;
}

.kicker {
  display: inline-block;
  font-family: var(--vs-font-sans); font-weight: 700;
  font-size: clamp(10px, 0.95vw, 12px); letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--vs-teal); color: var(--vs-navy);
  padding: 5px 10px;
}

.source {
  font-size: clamp(11px, 0.9vw, 13px); letter-spacing: 0.02em;
  color: var(--vs-grey-500); font-weight: 400;
}
.slide-dark .source { color: rgba(255,255,255,0.55); }

.slide-dark .body { color: rgba(255,255,255,0.82); }
.slide-dark .caption { color: rgba(255,255,255,0.6); }
.slide-dark .eyebrow { color: var(--vs-white); }
.slide-dark .eyebrow.teal { color: var(--vs-teal); }

/* HRs */
.hr { height: 1px; background: var(--vs-border); width: 100%; }
.hr.heavy { height: 4px; background: var(--vs-navy); }
.slide-dark .hr { background: rgba(255,255,255,0.12); }
.slide-dark .hr.heavy { background: var(--vs-teal); }

/* ============================================================
   GRIDS — desktop-first, collapse on smaller screens
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-md); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: var(--gap-md); }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* ============================================================
   STAT BLOCKS
   ============================================================ */
.stat { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.stat .num {
  font-family: var(--vs-font-display); font-weight: 900;
  color: var(--vs-navy); line-height: 0.92; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  font-size: var(--t-stat-l);
  white-space: nowrap;
  overflow-wrap: normal;
}
.big-stat-col .num,
.scenario .price-big,
.cta-box .price,
.budget-total .amt,
.budget-total .pct,
.swing .summary .delta {
  white-space: nowrap;
}
.stat .num.teal { color: var(--vs-teal-700); }
.stat .num.xl { font-size: var(--t-stat-xl); }
.stat .num.m { font-size: var(--t-stat-m); }
.stat .lbl {
  font-family: var(--vs-font-sans); font-weight: 700;
  font-size: clamp(12px, 1.05vw, 14px); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--vs-navy-700); margin-top: 6px;
}
.stat .sub {
  font-family: var(--vs-font-sans); font-weight: 400;
  font-size: clamp(13px, 1.05vw, 16px); line-height: 1.4;
  color: var(--vs-grey-600); margin-top: 4px;
}
.slide-dark .stat .num { color: var(--vs-white); }
.slide-dark .stat .num.teal { color: var(--vs-teal); }
.slide-dark .stat .lbl { color: rgba(255,255,255,0.85); }
.slide-dark .stat .sub { color: rgba(255,255,255,0.6); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--vs-white);
  border: 1px solid var(--vs-border);
  padding: clamp(20px, 2.4vw, 32px);
  position: relative;
}
.slide-dark .card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.14); }

/* ============================================================
   TABLES — convert to stacked rows on mobile
   ============================================================ */
.table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tbl {
  width: 100%; border-collapse: collapse;
  font-family: var(--vs-font-sans);
  font-size: clamp(13px, 1.1vw, 18px);
}
.tbl th {
  text-align: left;
  font-weight: 700; font-size: clamp(10px, 0.9vw, 12px);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--vs-grey-500);
  padding: 12px 14px;
  border-bottom: 2px solid var(--vs-navy);
  white-space: nowrap;
}
.tbl td {
  padding: 14px;
  color: var(--vs-navy-700);
  border-bottom: 1px solid var(--vs-border);
  vertical-align: middle;
}
.tbl td.num { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--vs-navy); text-align: right; white-space: nowrap; }
.tbl tr:last-child td { border-bottom: none; }
.tbl tr.total td { background: var(--vs-grey-100); font-weight: 700; color: var(--vs-navy); border-top: 2px solid var(--vs-navy); }
.tbl .state { font-weight: 700; color: var(--vs-navy); white-space: nowrap; }

.dot {
  display: inline-block; width: 8px; height: 8px;
  background: var(--vs-teal); margin-right: 8px; vertical-align: middle;
}

/* ============================================================
   BAR CHARTS
   ============================================================ */
.bar-row {
  display: grid; grid-template-columns: minmax(0, 1.6fr) 2fr 56px;
  gap: 14px; align-items: center;
  padding: 8px 0;
}
.bar-row .lbl { font-weight: 700; color: var(--vs-navy); font-size: clamp(13px, 1.1vw, 17px); min-width: 0; }
.bar-row .track { height: 14px; background: var(--vs-grey-200); position: relative; }
.bar-row .fill { height: 100%; background: var(--vs-navy); }
.bar-row .fill.teal { background: var(--vs-teal); }
.bar-row .val {
  font-variant-numeric: tabular-nums; font-weight: 900;
  font-family: var(--vs-font-display); color: var(--vs-navy);
  font-size: clamp(15px, 1.4vw, 22px); text-align: right;
}
.slide-dark .bar-row .lbl { color: var(--vs-white); }
.slide-dark .bar-row .track { background: rgba(255,255,255,0.14); }
.slide-dark .bar-row .fill { background: var(--vs-teal); }
.slide-dark .bar-row .val { color: var(--vs-white); }

/* Stacked bar (HIT activation index) */
.stack {
  display: flex; height: clamp(48px, 5vw, 64px); width: 100%;
}
.stack > div {
  display: flex; align-items: center;
  padding: 0 12px; color: var(--vs-white);
  font-weight: 700; letter-spacing: 0.04em;
  font-size: clamp(11px, 1vw, 14px);
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}

/* ============================================================
   COMPARE CARDS (cycle comparison)
   ============================================================ */
.compare {
  border: 1px solid var(--vs-border);
  padding: clamp(20px, 2.2vw, 28px);
  background: var(--vs-white);
}
.compare .yr {
  font-family: var(--vs-font-display); font-weight: 900;
  font-size: var(--t-display-l); color: var(--vs-navy);
  letter-spacing: -0.02em; line-height: 0.95;
  margin-top: 12px;
}
.compare.future .yr { color: var(--vs-teal-700); }
.compare ul { padding: 0; margin: 14px 0 0; list-style: none; }
.compare ul li {
  padding: 10px 0; border-top: 1px solid var(--vs-border);
  display: flex; justify-content: space-between; gap: 12px;
  font-size: clamp(13px, 1.15vw, 17px); color: var(--vs-navy-700);
}
.compare ul li:first-child { border-top: 0; }
.compare ul li > span { min-width: 0; overflow-wrap: break-word; }
.compare ul li b { color: var(--vs-navy); font-variant-numeric: tabular-nums; font-weight: 700; flex-shrink: 0; white-space: nowrap; }

/* ============================================================
   STEPS (7-step universe)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.step {
  background: var(--vs-grey-100); padding: 14px 16px;
  border-bottom: 4px solid var(--vs-navy);
}
.step .n {
  font-family: var(--vs-font-display); font-weight: 900;
  color: var(--vs-teal-700); font-size: clamp(20px, 2.2vw, 28px); line-height: 1;
}
.step .t {
  font-weight: 700; color: var(--vs-navy);
  font-size: clamp(13px, 1.1vw, 15px); margin-top: 6px; line-height: 1.25;
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
}

/* ============================================================
   WAVE CARDS
   ============================================================ */
.wave-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.wave {
  display: grid; grid-template-columns: clamp(60px, 7vw, 80px) 1fr;
  gap: clamp(14px, 2vw, 24px);
  padding: clamp(20px, 2.5vw, 28px);
  border-top: 1px solid var(--vs-border);
}
.wave-list .wave:first-child,
.wave-list .wave:nth-child(2) { border-top: 4px solid var(--vs-navy); }
.wave .num {
  font-family: var(--vs-font-display); font-weight: 900;
  font-size: clamp(40px, 5.5vw, 64px); line-height: 0.9;
  color: var(--vs-teal-700);
}
.wave h4 {
  font-family: var(--vs-font-display); font-weight: 900;
  text-transform: uppercase;
  font-size: var(--t-h3); color: var(--vs-navy);
  margin: 0 0 6px; line-height: 1.1;
}
.wave .when {
  font-size: clamp(11px, 1vw, 13px); letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--vs-grey-500); font-weight: 700;
}
.wave p {
  margin: 8px 0 0; color: var(--vs-navy-700);
  font-size: clamp(14px, 1.2vw, 17px); line-height: 1.5;
}
.wave .ask {
  margin-top: 10px; font-size: clamp(11px, 0.95vw, 13px);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--vs-teal-700); font-weight: 700;
}

@media (max-width: 900px) {
  .wave-list { grid-template-columns: 1fr; }
  .wave-list .wave:nth-child(2) { border-top: 1px solid var(--vs-border); }
  .wave-list .wave:first-child { border-top: 4px solid var(--vs-navy); }
}

/* ============================================================
   COVER
   ============================================================ */
.cover {
  background: var(--vs-navy); color: var(--vs-white);
  position: relative; overflow: hidden;
}
.cover .bg {
  position: absolute; inset: 0;
  background-image: url('assets/check-pattern-bg-navy.svg');
  background-size: 220px;
  opacity: 0.4; pointer-events: none;
}
.cover .slide-inner {
  position: relative; z-index: 1;
  justify-content: space-between;
  gap: clamp(36px, 5vw, 64px);
  min-height: clamp(560px, 92vh, 1000px);
}
.cover .top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cover .firm-mark img {
  height: clamp(40px, 5vw, 64px); width: auto;
}
.cover .prepfor { text-align: right; min-width: 0; }
.cover .prepfor .lbl {
  font-size: clamp(10px, 0.9vw, 12px); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--vs-teal); font-weight: 700;
}
.cover .prepfor .who {
  font-family: var(--vs-font-display); font-weight: 900;
  font-size: clamp(18px, 1.8vw, 26px); text-transform: uppercase;
  margin-top: 6px; letter-spacing: 0.02em;
}

.cover .hero { display: flex; flex-direction: column; gap: clamp(20px, 2.5vw, 32px); }
.cover .hero .eyebrow-cover {
  font-family: var(--vs-font-sans); font-weight: 700;
  font-size: clamp(11px, 1.1vw, 14px); letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--vs-teal);
}
.cover .hero h1 {
  font-family: var(--vs-font-display); font-weight: 900;
  font-size: var(--t-hero); line-height: 0.88;
  letter-spacing: -0.02em; text-transform: uppercase;
  margin: 0; text-wrap: balance;
  overflow-wrap: break-word; hyphens: auto;
}
@media (max-width: 480px) {
  .cover .hero h1 { letter-spacing: -0.025em; word-spacing: -0.05em; }
}
.cover .hero h1 .accent { color: var(--vs-teal); }
.cover .hero .sub {
  font-size: clamp(15px, 1.7vw, 26px);
  line-height: 1.4; max-width: 1100px;
  color: rgba(255,255,255,0.85); font-weight: 400;
}

.cover .bottom {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cover .meta-block {
  display: grid; grid-template-columns: repeat(4, auto);
  gap: clamp(20px, 3vw, 56px);
}
.cover .meta-block .item { min-width: 0; }
.cover .meta-block .item .lbl {
  font-size: clamp(10px, 0.85vw, 11px); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--vs-teal); font-weight: 700;
}
.cover .meta-block .item .val {
  font-family: var(--vs-font-display); font-weight: 900;
  font-size: clamp(13px, 1.3vw, 18px);
  margin-top: 6px; text-transform: uppercase;
}

@media (max-width: 720px) {
  .cover .top { flex-direction: column; align-items: flex-start; }
  .cover .prepfor { text-align: left; }
  .cover .meta-block { grid-template-columns: 1fr 1fr; }
  .cover .bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   SECTION DIVIDER (slide 8)
   ============================================================ */
.section-slide { background: var(--vs-navy); color: var(--vs-white); }
.divider-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
  flex: 1; align-content: center;
  padding: clamp(20px, 4vw, 48px) 0;
}
.divider-grid .col-eyebrow {
  font-family: var(--vs-font-sans); font-weight: 700;
  font-size: clamp(11px, 1vw, 14px); letter-spacing: 0.22em;
  text-transform: uppercase; margin-bottom: clamp(20px, 3vw, 32px);
}
.divider-grid h2 {
  font-family: var(--vs-font-display); font-weight: 900;
  font-size: var(--t-display-xl); line-height: 0.92;
  text-transform: uppercase; color: var(--vs-white);
  margin: 0 0 clamp(18px, 2.4vw, 28px); letter-spacing: -0.01em;
}
.divider-grid h2 .accent { color: var(--vs-teal); }
.divider-grid p {
  font-size: clamp(16px, 2vw, 28px); line-height: 1.4;
  color: rgba(255,255,255,0.82); max-width: 680px; margin: 0;
}
.divider-grid p b { color: var(--vs-white); }
.divider-rule {
  height: 4px; background: var(--vs-teal);
  width: clamp(120px, 18vw, 200px);
  margin-top: clamp(20px, 3vw, 32px);
}

@media (max-width: 900px) {
  .divider-grid { grid-template-columns: 1fr; gap: clamp(36px, 6vw, 56px); }
}

/* ============================================================
   SENTIMENT SWING — bar chart pair
   ============================================================ */
.swing-pair {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px); align-items: start;
}
@media (max-width: 900px) {
  .swing-pair { grid-template-columns: 1fr; }
}
.swing {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  gap: clamp(12px, 2vw, 24px); align-items: end;
  margin-top: clamp(18px, 2.4vw, 24px);
}
.swing .col {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.swing .col .caption {
  font-size: clamp(11px, 0.95vw, 13px); letter-spacing: 0.08em;
}
.swing .bar {
  height: clamp(140px, 18vw, 240px);
  width: clamp(60px, 7vw, 120px);
  background: var(--vs-grey-200); position: relative;
}
.swing .bar > .fill {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 10px;
  color: var(--vs-white);
  font-family: var(--vs-font-display); font-weight: 900;
  font-size: clamp(15px, 1.6vw, 24px);
}
.swing .arrow {
  font-family: var(--vs-font-display); font-weight: 900;
  font-size: clamp(40px, 6vw, 96px);
  color: var(--vs-teal-700); line-height: 1;
  align-self: center;
  padding-bottom: clamp(40px, 6vw, 90px);
}
.swing .arrow.muted { color: var(--vs-navy-300); }
.swing .summary {
  align-self: center;
  padding-bottom: clamp(8px, 1vw, 16px);
}
.swing .summary .delta {
  font-family: var(--vs-font-display); font-weight: 900;
  font-size: clamp(54px, 9vw, 120px); line-height: 0.9;
  color: var(--vs-teal-700); letter-spacing: -0.02em;
}
.swing .summary.down .delta { color: var(--vs-danger); }
.swing .summary .lbl {
  font-family: var(--vs-font-sans); font-weight: 700;
  font-size: clamp(11px, 1vw, 14px); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--vs-navy); margin-top: 4px;
}

/* ============================================================
   THE 2026 MOMENT — big stat columns
   ============================================================ */
.big-stat-col .num {
  font-family: var(--vs-font-display); font-weight: 900;
  font-size: var(--t-stat-xl);
  color: var(--vs-navy); line-height: 0.9;
  margin: clamp(14px, 2vw, 24px) 0 8px; letter-spacing: -0.02em;
}
.big-stat-col .num.teal { color: var(--vs-teal-700); }

/* ============================================================
   OBJECTIVE CARDS (slide 10)
   ============================================================ */
.obj-card {
  display: grid;
  grid-template-columns: clamp(48px, 5vw, 64px) 1fr;
  column-gap: clamp(12px, 1.5vw, 16px);
  align-items: start;
  padding: clamp(20px, 2.4vw, 28px);
  background: var(--vs-white);
  border: 1px solid var(--vs-border);
  border-left: 4px solid var(--vs-teal);
}
.obj-card .n {
  font-family: var(--vs-font-display); font-weight: 900;
  font-size: clamp(28px, 3.2vw, 40px);
  color: var(--vs-teal-700); line-height: 1;
}
.obj-card h4 {
  font-family: var(--vs-font-display); font-weight: 900;
  text-transform: uppercase;
  font-size: var(--t-h4); color: var(--vs-navy);
  margin: 0 0 6px; line-height: 1.15;
}
.obj-card p { margin: 0; }
.obj-list { display: flex; flex-direction: column; gap: 16px; }

/* ============================================================
   BUDGET ROWS
   ============================================================ */
.budget {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3.5vw, 56px);
  align-items: start;
}
@media (max-width: 900px) {
  .budget { grid-template-columns: 1fr; }
}
.budget-row {
  display: grid;
  grid-template-columns: 32px 1fr auto auto;
  gap: clamp(10px, 1.4vw, 18px);
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--vs-border);
}
.budget-row:first-child { border-top: none; }
.budget-row .swatch { width: 22px; height: 22px; background: var(--vs-navy); }
.budget-row .name { font-weight: 700; color: var(--vs-navy); font-size: clamp(14px, 1.2vw, 19px); min-width: 0; }
.budget-row .name small {
  display: block; font-weight: 400;
  font-size: clamp(12px, 0.95vw, 14px);
  color: var(--vs-grey-600);
  margin-top: 4px;
  letter-spacing: 0; text-transform: none;
}
.budget-row .pct,
.budget-row .amt {
  font-family: var(--vs-font-display); font-weight: 900;
  color: var(--vs-navy); text-align: right;
  font-variant-numeric: tabular-nums;
}
.budget-row .pct { font-size: clamp(15px, 1.4vw, 22px); }
.budget-row .amt { font-size: clamp(16px, 1.5vw, 24px); }

.budget-total {
  display: grid;
  grid-template-columns: 32px 1fr auto auto;
  gap: clamp(10px, 1.4vw, 18px);
  align-items: baseline; padding-top: 18px;
}
.budget-total .label {
  font-family: var(--vs-font-display); font-weight: 900;
  font-size: clamp(20px, 2vw, 32px); text-transform: uppercase;
  color: var(--vs-navy); letter-spacing: 0.02em;
}
.budget-total .pct {
  font-family: var(--vs-font-display); font-weight: 900;
  color: var(--vs-navy); text-align: right;
  font-size: clamp(20px, 2vw, 32px); font-variant-numeric: tabular-nums;
}
.budget-total .amt {
  font-family: var(--vs-font-display); font-weight: 900;
  color: var(--vs-navy); text-align: right;
  font-size: clamp(24px, 2.6vw, 40px); font-variant-numeric: tabular-nums;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.tl-list { display: flex; flex-direction: column; }
.tl {
  display: grid;
  grid-template-columns: clamp(120px, 14vw, 220px) 1fr;
  gap: 0;
  padding: 14px 0;
  border-top: 1px solid var(--vs-border);
  align-items: flex-start;
}
.tl:first-child { border-top: 4px solid var(--vs-navy); }
.tl .when {
  font-family: var(--vs-font-display); font-weight: 900;
  font-size: clamp(13px, 1.2vw, 17px);
  color: var(--vs-teal-700); letter-spacing: 0.04em;
  text-transform: uppercase; padding-top: 4px; padding-right: 12px;
}
.tl .what {
  color: var(--vs-navy);
  font-size: clamp(14px, 1.3vw, 19px);
  font-weight: 400; line-height: 1.45;
}
.tl .what b { font-weight: 700; }

@media (max-width: 560px) {
  .tl { grid-template-columns: 1fr; gap: 4px; }
  .tl .when { padding-right: 0; }
}

/* ============================================================
   CTA
   ============================================================ */
.cta-box {
  background: var(--vs-teal);
  padding: clamp(20px, 3vw, 32px) clamp(24px, 3.5vw, 40px);
  display: flex; flex-direction: column; gap: 0;
}
.cta-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.cta-box .lbl {
  font-family: var(--vs-font-sans); font-weight: 700;
  font-size: clamp(11px, 1vw, 12px); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--vs-navy);
}
.cta-box .ask {
  font-family: var(--vs-font-display); font-weight: 900;
  font-size: clamp(22px, 2.6vw, 36px); color: var(--vs-navy);
  text-transform: uppercase; letter-spacing: -0.005em;
  line-height: 1; margin-top: 6px;
}
.cta-box .ask.sm { font-size: clamp(18px, 2.1vw, 28px); }
.cta-box .price {
  font-family: var(--vs-font-display); font-weight: 900;
  font-size: clamp(48px, 6vw, 84px); color: var(--vs-navy);
  line-height: 0.9; letter-spacing: -0.02em;
}
.cta-box .scope {
  font-family: var(--vs-font-display); font-weight: 900;
  color: var(--vs-navy);
  font-size: clamp(20px, 2.2vw, 32px);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.cta-divider { height: 1px; background: rgba(18,40,84,0.18); margin: clamp(16px, 2vw, 24px) 0; }

/* ============================================================
   ALERT CALLOUT (the navy "Why VoteShift" card)
   ============================================================ */
.callout {
  background: var(--vs-navy); color: var(--vs-white);
  padding: clamp(20px, 2.5vw, 32px);
}
.callout p { color: rgba(255,255,255,0.88); margin-top: 14px; }
.callout p:first-child { margin-top: 0; }
.callout p b.teal { color: var(--vs-teal); }

/* Helper boxes */
.note {
  background: var(--vs-grey-100);
  border-left: 4px solid var(--vs-teal);
  padding: clamp(16px, 1.8vw, 22px);
}
.note.navy { border-left-color: var(--vs-navy); }
.note p { margin: 0; }

/* Highlight perf cards on dark slide */
.perf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 1.4vw, 18px); }
.perf-card {
  padding: clamp(16px, 1.8vw, 22px);
  border: 1px solid rgba(63,197,225,0.3);
  background: rgba(63,197,225,0.12);
}
.perf-card.muted { border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); }
.perf-card .kicker { background: var(--vs-teal); color: var(--vs-navy); }
.perf-card.muted .kicker { background: rgba(255,255,255,0.28); color: var(--vs-white); }
.perf-card h4 {
  font-family: var(--vs-font-display); font-weight: 900;
  text-transform: uppercase; font-size: clamp(15px, 1.5vw, 22px);
  color: var(--vs-white); margin: 12px 0 6px; line-height: 1.1;
}
.perf-card.muted h4 { color: rgba(255,255,255,0.6); }
.perf-card p { color: rgba(255,255,255,0.78); margin: 0; }
.perf-card.muted p { color: rgba(255,255,255,0.55); }

/* Phase 2 scenarios */
.scenario {
  padding: clamp(20px, 2.4vw, 32px);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  position: relative;
}
.scenario.featured {
  border-color: var(--vs-teal);
  background: rgba(63,197,225,0.10);
}
.scenario .badge {
  position: static; display: inline-block; margin-bottom: 12px;
  background: var(--vs-teal); color: var(--vs-navy);
  padding: 5px 10px;
  font-family: var(--vs-font-sans); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}
.scenario .price-big {
  font-family: var(--vs-font-display); font-weight: 900;
  color: var(--vs-white);
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.9;
  margin: clamp(14px, 2vw, 24px) 0 10px;
  letter-spacing: -0.02em;
}
.scenario.featured .price-big { color: var(--vs-teal); }
.scenario .meta-line { color: rgba(255,255,255,0.7); }
.scenario p { color: rgba(255,255,255,0.85); margin: 0; }

/* ============================================================
   MOBILE OVERRIDES — collected here for clarity
   ============================================================ */

/* Sentiment swing chart: stack on mobile, hide arrows */
@media (max-width: 720px) {
  .swing { grid-template-columns: 1fr 1fr auto; gap: 16px; align-items: end; }
  .swing .arrow { display: none; }
  .swing .summary { padding-bottom: 0; align-self: end; }
  .swing .bar { width: 100%; }
}
@media (max-width: 480px) {
  .swing { grid-template-columns: 1fr 1fr; gap: 14px; }
  .swing .summary { grid-column: 1 / -1; padding-top: 8px; }
}

/* Grid breakpoint fills */
@media (max-width: 720px) {
  .grid-3 { grid-template-columns: 1fr; }
  .perf-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; gap: 16px; }
}

/* CTA box wrapping at narrow widths */
@media (max-width: 560px) {
  .cta-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cta-box .price { margin-top: 6px; }
  .cta-box .scope { white-space: normal; font-size: clamp(20px, 6vw, 28px); }
}

/* Tables: convert to stacked cards on mobile */
@media (max-width: 560px) {
  .tbl colgroup,
  .tbl thead { display: none; }
  .tbl, .tbl tbody, .tbl tr, .tbl td { display: block; width: 100%; }
  .tbl tr {
    background: var(--vs-grey-100);
    border-left: 4px solid var(--vs-teal);
    margin-bottom: 12px;
    padding: 14px 16px;
    border-bottom: 0;
  }
  .tbl tr.total {
    background: var(--vs-navy);
    border-left-color: var(--vs-teal);
  }
  .tbl tr.total td {
    color: var(--vs-white);
    background: transparent;
    border-top: 0;
  }
  .tbl tr.total td.num { color: var(--vs-white); }
  .tbl tr.total td::before { color: rgba(255,255,255,0.6); }
  .tbl td {
    border: 0;
    padding: 6px 0;
    text-align: left !important;
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 16px;
  }
  .tbl td::before {
    content: attr(data-label);
    font-size: 11px; letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--vs-grey-500);
    font-weight: 700;
    flex-shrink: 0;
  }
  .tbl td:first-child {
    font-size: 18px; font-weight: 900;
    font-family: var(--vs-font-display); text-transform: uppercase;
    color: var(--vs-navy);
    border-bottom: 1px solid var(--vs-border);
    padding-bottom: 10px;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
    display: block;
    white-space: normal;
  }
  .tbl td:first-child::before { display: none; }
  .tbl tr.total td:first-child { color: var(--vs-white); border-bottom-color: rgba(255,255,255,0.18); }
  .tbl td.num { white-space: normal; }
  .slide-dark .tbl tr { background: rgba(255,255,255,0.05); border-left-color: var(--vs-teal); }
  .slide-dark .tbl td:first-child { color: var(--vs-white); border-bottom-color: rgba(255,255,255,0.12); }
}

/* Slide-footer pinning: works because .slide-inner is flex column */
.slide-inner { flex: 1; }
.slide-footer { margin-top: auto; }

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

/* Print */
@media print {
  body { background: white; }
  .deck-nav { display: none; }
  .slide { min-height: auto; page-break-after: always; break-after: page; }
  .slide:last-child { page-break-after: auto; break-after: auto; }
  .table-wrap { overflow: visible; }
  .tbl { font-size: 10pt; min-width: 0; }
  .tbl thead, .tbl colgroup { display: table-header-group; }
  .tbl tr, .tbl td { display: table-row; }
  .tbl td { display: table-cell; }
  .tbl td::before { content: none; }
  .scenario .badge { display: inline-block !important; }
}
