/* =============================================================
   DECK THEME  —  edit this ONE file to restyle EVERY slide
   =============================================================
   This file holds all the shared "design tokens": colors, fonts,
   sizes and spacing. Change a value here and it updates on every
   slide that links to this file. That is what keeps a multi-slide
   deck uniform.

   The actual content of each slide lives in its own .html file
   (e.g. cover-slide.html). Copy that file to make a new slide.
   ============================================================= */

/* ---- 1. FONTS -------------------------------------------------
   Loaded from Google Fonts in each slide's <head>. To swap a
   typeface, change the link in the HTML and the variable below. */
:root {
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif; /* headlines */
  --font-sans:  "Montserrat", "Segoe UI", Arial, sans-serif;          /* labels / chart */
}

/* ---- 2. BRAND COLORS ----------------------------------------- */
:root {
  --color-bg:      #FDF7EF;  /* page / slide background (cream)   */
  --color-card:    #FBF4E7;  /* chart panel background            */
  --color-navy:    #17244B;  /* primary dark text                 */
  --color-teal:    #114E4F;  /* secondary accent / "support" line */
  --color-orange:  #E2520B;  /* primary accent / "favorability"   */
  --color-green:   #1A7A3C;  /* bright forest green (stats/arrows) */
  --color-muted:   #6B6F7A;  /* footnotes, axis labels            */
  --color-hairline: rgba(23, 36, 75, 0.12); /* faint borders/grid */
  --shadow-soft:   0 12px 28px rgba(23, 36, 75, 0.08);
  --shadow-tight:  0 7px 18px rgba(23, 36, 75, 0.07);
  --surface-cream: #FFFCF6;
}

/* ---- 3. TYPE SCALE & SPACING --------------------------------
   Sizes are in px relative to the 1280x720 slide. Tweak once,
   every slide inherits the change. */
:root {
  --eyebrow-size:   22px;
  --headline-size:  56px;   /* shared by .headline (slide 1) and .hero (slide 2) */
  --subhead-size:   35px;
  --card-title-size:18px;
  --label-size:     16px;
  --footnote-size:  16px;

  --slide-pad:      64px;   /* outer margin inside the slide */
  --slide-scroll-offset: 96px;
  --slide-height: clamp(720px, calc(100svh - var(--slide-scroll-offset)), 900px);
}

/* =============================================================
   SLIDE FRAME  —  viewport-aware canvas, fixed again for PDF/print
   ============================================================= */
* { box-sizing: border-box; }

html { height: 100%; }
body {
  margin: 0;
  height: 100vh;
  overflow-y: scroll;
  background: #F8F0E5;
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;              /* stack slides vertically  */
  align-items: stretch;
  gap: 0;
  padding: 68px 0 0;
  scroll-behavior: smooth;
  scroll-snap-type: none;
}
body.drawer-open {
  overflow: hidden;
}

.slide {
  position: relative;
  width: 100%;
  height: var(--slide-height);
  background: linear-gradient(180deg, var(--color-bg) 0%, #FBF1E3 100%);
  overflow: hidden;
  flex: none;
  border: 0;
  border-bottom: 1px solid rgba(23,36,75,.09);
  box-shadow: none;
  scroll-snap-align: none;
  scroll-margin-top: var(--slide-scroll-offset);
}

.slide[hidden] {
  display: none !important;
}

/* =============================================================
   DECK CHROME  —  navigation + counter (hidden when printing)
   ============================================================= */
.chapter-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: none;
  z-index: 60;
  width: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 64px;
  padding: 10px 46px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  border-radius: 0;
  background: rgba(27, 32, 44, .97);
  box-shadow: 0 10px 26px rgba(7,13,31,.18);
  backdrop-filter: blur(12px);
}
.chapter-nav__primary {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
  justify-self: start;
}
.chapter-nav :where(button) {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-sans);
}
.chapter-nav__brand {
  min-width: 0;
  width: 190px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #F4CA5D;
  overflow: hidden;
  text-align: center;
  box-shadow: none;
  justify-self: center;
  display: block;
}
.chapter-nav__brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  transform: none;
  filter: saturate(1.02) contrast(1.02);
}

.chapter-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}
.chapter-nav__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.chapter-nav__download:hover {
  background: rgba(255,255,255,.15);
}
.chapter-nav__menu {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex !important;
  position: relative;
  align-items: center;
  min-height: 36px;
  padding: 0 22px 0 52px;
  border-radius: 999px;
  background: #fff;
  color: var(--color-navy);
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.chapter-nav__menu span {
  position: absolute;
  left: 20px;
  top: 50%;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.chapter-nav__menu span:nth-of-type(1) { transform: translateY(-7px); }
.chapter-nav__menu span:nth-of-type(2) { transform: translateY(-1px); }
.chapter-nav__menu span:nth-of-type(3) { transform: translateY(5px); }
.chapter-nav__menu strong {
  display: block;
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: min(420px, calc(100vw - 32px)) minmax(0, 1fr);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.nav-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nav-drawer__scrim {
  all: unset;
  grid-column: 2;
  grid-row: 1;
  background: rgba(7, 13, 31, .48);
}
.nav-drawer__panel {
  grid-column: 1;
  grid-row: 1;
  height: 100vh;
  min-height: 100vh;
  background: #FFF9F1;
  border-right: 1px solid rgba(23,36,75,.12);
  box-shadow: 22px 0 48px rgba(7,13,31,.22);
  transform: translateX(-100%);
  transition: transform .24s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.nav-drawer.is-open .nav-drawer__panel {
  transform: translateX(0);
}
.nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px 18px;
  border-bottom: 1px solid rgba(23,36,75,.12);
}
.nav-drawer__head p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 31px;
  line-height: 1;
  font-weight: 700;
  color: var(--color-navy);
}
.nav-drawer__head button {
  all: unset;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(23,36,75,.08);
  color: var(--color-navy);
  font-size: 27px;
  line-height: 1;
}
.nav-drawer__links {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 8px 0 18px;
  overflow-y: auto;
}
.nav-drawer__section {
  padding: 8px 0 9px;
  border-bottom: 1px solid rgba(23,36,75,.09);
}
.nav-drawer__section:last-child {
  border-bottom: 0;
}
.nav-drawer__section-title {
  margin: 0 30px 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 10.5px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(23,36,75,.54);
}
.nav-drawer__section-title b {
  width: 28px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(23,36,75,.08);
  color: var(--color-navy);
  font-size: 10px;
  letter-spacing: .06em;
}
.nav-drawer__links button {
  all: unset;
  cursor: pointer;
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  grid-template-areas: "num label";
  column-gap: 10px;
  margin: 0 18px;
  padding: 8px 12px;
  border-radius: 12px;
  color: var(--color-navy);
}
.nav-drawer__links button:hover,
.nav-drawer__links button.is-active {
  background: rgba(17,78,79,.06);
}
.nav-drawer__links button span {
  grid-area: num;
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(23,36,75,.08);
  font-family: var(--font-sans);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
}
.nav-drawer__links button.is-active span {
  background: var(--color-navy);
  color: #fff;
}
.nav-drawer__links strong {
  grid-area: label;
  font-family: var(--font-sans);
  font-size: 12.5px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-drawer__links em {
  display: none;
}

.deck-counter {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 58;
  width: min(248px, calc(100vw - 34px));
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(20, 29, 56, .76);
  color: #fff;
  box-shadow: 0 5px 16px rgba(7,13,31,.14);
  backdrop-filter: blur(10px);
}
.deck-counter__button {
  all: unset;
  box-sizing: border-box;
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.045);
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.deck-counter__button:hover { background: rgba(255,255,255,.11); }
.deck-counter__body {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 3px;
}
.deck-counter__title {
  display: none;
}
.deck-counter__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  line-height: 1;
}
.deck-counter__count {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .04em;
}
.deck-counter__count b {
  font-size: 12.5px;
  color: #fff;
}
.deck-counter__chapter {
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.deck-counter__track {
  height: 1px;
  opacity: .65;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
}
.deck-counter__track i {
  display: block;
  width: 7%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #F0BF52, var(--color-orange));
}


/* =============================================================
   PRINT  —  export to PDF, one slide per landscape page
   ============================================================= */
@media print {
  @page { size: 1280px 720px; margin: 0; }
  :root {
    --slide-height: 720px;
    --slide-scroll-offset: 0px;
  }
  html, body {
    width: 1280px; height: auto; overflow: visible; background: #fff;
    display: block; padding: 0; gap: 0;
  }
  .slide {
    width: 1280px;
    height: 720px;
    box-shadow: none;
    margin: 0;
    border-bottom: 0;
    break-after: page;
    page-break-after: always;
  }
  .slide:last-of-type { break-after: auto; page-break-after: auto; }
  .deck-counter,
  .chapter-nav,
  .nav-drawer { display: none !important; }
  .slide9--states-only .impact-quadrant { margin-bottom: 0 !important; }
  .slide11 { padding: 18px 46px 16px !important; }
}

/* =============================================================
   REUSABLE TEXT COMPONENTS  (use on any slide)
   ============================================================= */

/* small tracked uppercase kicker with an orange tick under it */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: var(--eyebrow-size);
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin: 0;
  white-space: nowrap;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 70px;
  height: 5px;
  background: var(--color-orange);
  margin-top: 18px;
}

/* big serif headline */
.headline {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--headline-size);
  line-height: 1.05;
  color: var(--color-navy);
  margin: 22px 0 0;
}

/* stacked serif sub-lines; color each line with a modifier class */
.subhead {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--subhead-size);
  line-height: 1.18;
  color: var(--color-navy);
  margin: 26px 0 0;
}
.subhead p { margin: 0; }
.t-navy   { color: var(--color-navy); }
.t-teal   { color: var(--color-teal); }
.t-orange { color: var(--color-orange); }

/* =============================================================
   LAYOUT: two-column cover (text left, chart card right)
   ============================================================= */
.cover {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  height: 100%;
  padding: var(--slide-pad);
}
.cover__left  { display: flex; flex-direction: column; }
.cover--simple {
  display: flex;
  align-items: center;
  padding: var(--slide-pad) 96px var(--slide-pad) var(--slide-pad);
}
.cover--simple .cover__left {
  max-width: 760px;
  padding-bottom: 28px;
}
.cover--simple .headline { max-width: 760px; }

.slide-cover {
  background:
    radial-gradient(circle at 87% 24%, rgba(226,82,11,.08), transparent 30%),
    linear-gradient(180deg, var(--color-bg) 0%, #FBF1E3 100%);
}
.slide.slide-cover:first-of-type {
  background:
    radial-gradient(circle at 87% 24%, rgba(226,82,11,.08), transparent 30%),
    linear-gradient(180deg, var(--color-bg) 0%, #FBF1E3 100%);
}
.slide.slide-cover:first-of-type::before { content: none; display: none; }
.cover--mandate {
  grid-template-columns: minmax(0, .96fr) minmax(330px, .54fr);
  gap: 46px;
  align-items: center;
  padding: 58px 72px 58px 64px;
}
.cover--mandate .cover__left {
  max-width: 790px;
  padding-bottom: 18px;
}
.cover--mandate .headline {
  max-width: 790px;
  font-size: 58px;
  line-height: 1.03;
  margin-top: 18px;
}
.cover-copy {
  max-width: 735px;
  margin: 26px 0 0;
  padding-left: 22px;
  border-left: 5px solid var(--color-orange);
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1.46;
  font-weight: 500;
  color: var(--color-navy);
}
.cover-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}
.cover-visual::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(17,78,79,.08) 0 45%, transparent 46%),
    radial-gradient(circle, rgba(226,82,11,.07), transparent 66%);
  border: 1px solid rgba(17,78,79,.10);
  transform: translateX(26px);
}
.cover-compass {
  position: relative;
  z-index: 1;
  transform: translateX(22px);
  filter: drop-shadow(0 18px 28px rgba(23,36,75,.10));
}

.slide-chart-cover .cover__left {
  justify-content: center;
  padding-bottom: 18px;
}
.slide-chart-cover .headline {
  max-width: 520px;
  margin-top: 18px;
}
.state-note {
  margin-top: 26px;
  max-width: 500px;
  padding: 4px 0 4px 18px;
  border-left: 5px solid var(--color-orange);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.state-note p {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 27px;
  line-height: 1.18;
  color: var(--color-teal);
}

/* =============================================================
   CHART CARD
   ============================================================= */
.card {
  position: relative;
  background: var(--surface-cream);
  border: 1px solid var(--color-hairline);
  border-radius: 22px;
  padding: 30px 34px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}
.card__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--card-title-size);
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin: 0 0 16px;
}
.legend { display: flex; flex-direction: column; gap: 8px; margin-bottom: 6px; }
.legend__row {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-sans);
  font-size: var(--label-size);
  color: var(--color-navy);
}
.legend__swatch { width: 34px; height: 4px; border-radius: 2px; flex: none; }

.card__flag {                       /* "EARLY SIGNS OF REVERSAL" */
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-orange);
  text-align: right;
  margin: 6px 0 0;
}
.chart { flex: 1; width: 100%; }
.footnote {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: var(--footnote-size);
  line-height: 1.4;
  color: var(--color-muted);
  margin: 14px 0 0;
}

/* chart text styles (applied to SVG <text> via classes) */
.chart .axis-label   { font-family: var(--font-sans); font-weight:700; font-size:18px; fill: var(--color-navy); }
.chart .axis-sub     { font-family: var(--font-sans); font-weight:400; font-size:16px; fill: var(--color-navy); }
.chart .value-label  { font-family: var(--font-sans); font-weight:700; font-size:20px; }
.chart .gridline     { stroke: var(--color-hairline); stroke-width: 1; }

.slide:first-of-type {
  background:
    linear-gradient(90deg, transparent 0 66%, rgba(17,78,79,.065) 66% 100%),
    linear-gradient(180deg, var(--color-bg) 0%, #FBF1E3 100%);
}
.slide:first-of-type::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 34%;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.24), rgba(255,255,255,0)),
    repeating-linear-gradient(135deg, rgba(17,78,79,.09) 0 2px, transparent 2px 24px);
  box-shadow: inset 1px 0 0 rgba(23,36,75,.06);
}
#compass {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  width: 420px !important;
  height: 420px !important;
  opacity: .9 !important;
}

/* =============================================================
   SLIDE 2 — Compliance & Independence Notice
   ============================================================= */
.slide-disclaimer {
  padding: 44px 62px 40px;
  background: linear-gradient(180deg, var(--color-bg) 0%, #FBF1E3 100%);
}
.disc-wrap {
  height: 100%;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 24px 40px;
}
.disc-head {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 22px;
}
.disc-title {
  margin: 22px 0 0;
  font-family: var(--font-serif);
  font-size: 50px;
  line-height: 1.02;
  font-weight: 700;
  color: var(--color-navy);
}
.disc-lede {
  margin: 24px 0 0;
  padding-left: 18px;
  border-left: 5px solid var(--color-orange);
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.44;
  font-weight: 600;
  color: var(--color-teal);
}
.disc-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: center;
}
.disc-card {
  --disc-accent: var(--color-teal);
  min-height: 220px;
  padding: 18px 22px 20px;
  border: 1px solid color-mix(in srgb, var(--disc-accent) 18%, transparent);
  border-top: 5px solid var(--disc-accent);
  border-radius: 14px;
  background: var(--surface-cream);
  box-shadow: var(--shadow-tight);
}
.disc-card--orange { --disc-accent: var(--color-orange); }
.disc-card--green { --disc-accent: var(--color-green); }
.disc-card--muted { --disc-accent: #7E89A3; }
.disc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 28px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--disc-accent) 13%, #fff);
  color: var(--disc-accent);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.disc-card h2 {
  margin: 14px 0 0;
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.05;
  font-weight: 700;
  color: var(--color-navy);
}
.disc-card p {
  margin: 12px 0 0;
  font-family: var(--font-sans);
  font-size: 13.7px;
  line-height: 1.43;
  font-weight: 500;
  color: var(--color-navy);
}
.disc-footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 18px;
  border: 1px solid var(--color-hairline);
  border-radius: 999px;
  background: rgba(255,252,246,.78);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* =============================================================
   SLIDE 2 — "Background Information" three-step timeline
   ============================================================= */
.slide2 { padding: var(--slide-pad); background: linear-gradient(180deg, var(--color-bg) 0%, #FBF1E3 100%); }

.hero {                              /* main slide title — shares the headline size */
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--headline-size);
  line-height: 1.05;
  color: var(--color-navy);
  margin: 22px 0 0;
  max-width: 70%;                    /* keep clear of the compass */
}

/* top-right compass for this slide */
.compass2 { position: absolute; top: -34px; right: 0; opacity: .82; } /* top-right watermark */

/* the three columns */
.timeline {
  position: absolute;
  left: var(--slide-pad);
  right: var(--slide-pad);
  bottom: 50px;
  height: 390px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.tl-col { display: flex; flex-direction: column; padding: 0 36px; }
.tl-col:first-child { padding-left: 0; }
.tl-col + .tl-col { border-left: 2px dotted var(--color-hairline); } /* dotted dividers */

.tl-head { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; }
.tl-badge {
  width: 66px; height: 66px; border-radius: 50%;
  background: var(--color-teal);
  display: flex; align-items: center; justify-content: center;
  flex: none;
  box-shadow: 0 9px 20px rgba(17,78,79,.16);
}
.tl-year {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 40px; color: var(--color-navy); line-height: 1;
}
.tl-text {
  font-family: var(--font-sans); font-size: 19px; line-height: 1.36;
  color: var(--color-navy); margin: 0; max-width: 92%;
}
.tl-text b { font-weight: 700; }

/* 2x2 icon card (column 1) */
.mini {
  margin-top: auto;
  background: var(--surface-cream);
  border: 1px solid var(--color-hairline);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-tight);
}
.mini__cell {
  height: 104px;                     /* fixed → all four quadrants equal */
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  padding: 8px 12px;
  text-align: center;
  font-family: var(--font-sans); font-weight: 600; font-size: 16px;
  color: var(--color-navy);
}
.mini__cell + .mini__cell { } /* spacing handled by borders below */
.mini__cell:nth-child(1), .mini__cell:nth-child(2) { border-bottom: 1px solid var(--color-hairline); }
.mini__cell:nth-child(1), .mini__cell:nth-child(3) { border-right: 1px solid var(--color-hairline); }

.mini--three {
  grid-template-columns: 1fr;
}
.mini--three .mini__cell {
  height: 72px;
  flex-direction: row;
  justify-content: flex-start;
  gap: 16px;
  padding: 10px 20px;
  text-align: left;
  font-size: 15px;
}
.mini--three .mini__cell svg {
  flex: 0 0 54px;
  max-width: 54px;
}
.mini--three .mini__cell span {
  line-height: 1.14;
}
.mini--three .mini__cell:nth-child(1),
.mini--three .mini__cell:nth-child(2) {
  border-bottom: 1px solid var(--color-hairline);
}
.mini--three .mini__cell:nth-child(1),
.mini--three .mini__cell:nth-child(3) {
  border-right: 0;
}

/* big faded circle holding state shapes (columns 2 & 3) */
.tl-viz { margin-top: auto; display: flex; justify-content: center; align-items: flex-end; }
.viz-circle {
  position: relative;
  width: 230px; height: 230px; border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, #fff 0%, #F1E7D4 74%);
  border: 1px solid rgba(23,36,75,.08);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  box-shadow: var(--shadow-tight);
}
.viz-circle .state { display: block; }
.state-label {
  position: absolute;
  font-family: var(--font-sans); font-weight: 700; font-size: 26px;
  color: #fff; pointer-events: none;
}

/* =============================================================
   SLIDE 3 — "2026 is a new world" comparison
   ============================================================= */
:root {
  --s3-warm:     #F6ECDA;   /* left numbered content cards   */
  --s3-warmDeep: #F1E3CC;   /* the big number boxes          */
  --s3-sage:     #EAEBE2;   /* right checklist card + footer */
}
.slide3 { padding: 34px 54px; background: linear-gradient(180deg, var(--color-bg) 0%, #FBF1E3 100%); }
.slide3 .hero { margin-top: 14px; max-width: 56%; }

.s3-sub {                            /* teal serif sub-headline */
  font-family: var(--font-serif); font-weight: 600;
  font-size: 26px; line-height: 1.18;
  color: var(--color-teal);
  margin: 10px 0 0; max-width: 56%;
}

.s3-program-note {
  position: absolute;
  top: 34px;
  right: 54px;
  width: 410px;
  border-radius: 16px;
  background: rgba(255, 252, 246, .9);
  border: 1px solid rgba(23,36,75,.12);
  box-shadow: var(--shadow-tight);
  padding: 18px 22px 17px;
}
.s3-program-note::before {
  content: "";
  display: block;
  width: 52px;
  height: 5px;
  border-radius: 999px;
  background: var(--color-orange);
  margin-bottom: 12px;
}
.s3-program-note p {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.38;
  color: var(--color-navy);
  margin: 0;
}
.s3-program-note p + p {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(23,36,75,.10);
}

/* the VS comparison grid */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  column-gap: 14px;
  align-items: start;
  margin-top: 14px;
}
.vs-mid { position: relative; align-self: stretch; }
.vs-mid::before {                    /* dotted divider line */
  content: ""; position: absolute; left: 50%; top: 64px; bottom: 6px;
  border-left: 2px dotted var(--color-hairline);
}
.vs-badge {
  position: absolute; left: 50%; top: 56%; transform: translate(-50%, -50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--color-teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-weight: 700; font-size: 20px;
  box-shadow: 0 8px 20px rgba(17,78,79,.18);
}

/* column heads (badge + title + subtitle) */
.vs-head { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; }
.vs-title {
  font-family: var(--font-sans); font-weight: 700; font-size: 21px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--color-navy);
  line-height: 1.1;
}
.vs-sub { font-family: var(--font-sans); font-size: 16px; color: var(--color-navy); margin-top: 3px; }

/* shared text inside cards */
.card-h { font-family: var(--font-sans); font-weight: 700; font-size: 17px; color: var(--color-navy); margin: 0 0 3px; }
.card-p { font-family: var(--font-sans); font-weight: 400; font-size: 14.5px; line-height: 1.38; color: var(--color-navy); margin: 0; }

/* left: numbered cards */
.num-row { display: flex; gap: 10px; margin-bottom: 9px; min-height: 140.5px; } /* equal rows; bottom aligns with right checklist card */
.num-box {
  flex: none; width: 88px; border-radius: 16px;
  background: var(--s3-warmDeep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700; font-size: 56px; color: var(--color-navy);
  border: 1px solid rgba(23,36,75,.08);
  box-shadow: var(--shadow-tight);
}
.num-card {
  flex: 1; border-radius: 16px; background: var(--s3-warm);
  padding: 16px 20px; display: flex; align-items: center; gap: 16px;
  border: 1px solid rgba(23,36,75,.08);
  box-shadow: var(--shadow-tight);
}
.num-card .ico { flex: none; }

/* right: checklist card */
.check-card { border-radius: 18px; background: var(--s3-sage); padding: 4px 22px; border: 1px solid rgba(23,36,75,.08); box-shadow: var(--shadow-tight); }
.check-item { display: flex; align-items: center; gap: 16px; padding: 15px 0; min-height: 94px; } /* equal-height rows */
.check-item + .check-item { border-top: 1px solid rgba(23,36,75,.10); }
.check-item .ico { flex: none; }

/* =============================================================
   SLIDE 4 — Early Messaging Framework: Presence Before Persuasion
   ============================================================= */
.slide-message {
  padding: 50px 62px 42px;
  background:
    radial-gradient(circle at 82% 16%, rgba(226,82,11,.08), transparent 28%),
    radial-gradient(circle at 16% 92%, rgba(26,122,60,.10), transparent 26%),
    linear-gradient(180deg, var(--color-bg) 0%, #FBF1E3 100%);
}
.presence-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: stretch;
  margin-top: 26px;
}
.presence-lead {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 16px;
}
.presence-title {
  max-width: 520px;
  margin: 34px 0 0;
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: .96;
  font-weight: 700;
  color: var(--color-navy);
}
.presence-diagnosis {
  position: absolute;
  top: 144px;
  right: 62px;
  width: 535px;
  margin: 0;
  padding: 24px 28px 24px 26px;
  border-left: 6px solid var(--color-orange);
  border-radius: 0 18px 18px 0;
  background: rgba(255,252,246,.82);
  box-shadow: var(--shadow-tight);
  font-family: var(--font-serif);
  font-size: 31px;
  line-height: 1.12;
  font-weight: 700;
  color: var(--color-teal);
}
.presence-stem {
  position: absolute;
  left: 62px;
  right: 62px;
  bottom: 354px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(23,36,75,.72);
  white-space: nowrap;
}
.presence-metrics {
  position: absolute;
  left: 62px;
  right: 62px;
  bottom: 78px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.presence-metric {
  --metric-accent: var(--color-teal);
  min-height: 248px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 21px 21px 20px;
  border: 1px solid color-mix(in srgb, var(--metric-accent) 18%, transparent);
  border-top: 7px solid var(--metric-accent);
  border-radius: 18px;
  background: rgba(255,252,246,.9);
  box-shadow: var(--shadow-tight);
}
.presence-metric--green,
.presence-metric--teal,
.presence-metric--orange,
.presence-metric--purple { --metric-accent: #7E89A3; }
.presence-metric h2 {
  margin: 0;
  min-height: 64px;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.06;
  font-weight: 700;
  color: var(--color-navy);
}
.presence-metric__values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(23,36,75,.12);
}
.presence-metric__values div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}
.presence-metric__values strong {
  font-family: var(--font-serif);
  font-size: 46px;
  line-height: .9;
  font-weight: 700;
  color: var(--color-navy);
}
.presence-metric__values div:last-child strong {
  color: #5D2E8C;
}
.presence-metric__values span {
  font-family: var(--font-sans);
  font-size: 11.2px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--color-navy);
}

/* =============================================================
   SLIDE 5 — Early Messaging Framework: Perspectives Before Policy
   ============================================================= */
.slide-perspectives {
  padding: 50px 62px 42px;
  background:
    radial-gradient(circle at 78% 18%, rgba(93,46,140,.08), transparent 28%),
    radial-gradient(circle at 20% 90%, rgba(226,82,11,.08), transparent 26%),
    linear-gradient(180deg, var(--color-bg) 0%, #FBF1E3 100%);
}
.persp-title {
  max-width: 620px;
  margin: 34px 0 0;
  font-family: var(--font-serif);
  font-size: 70px;
  line-height: .98;
  font-weight: 700;
  color: var(--color-navy);
}
.persp-origin {
  position: absolute;
  top: 122px;
  right: 62px;
  width: 520px;
  padding: 20px 24px 20px;
  border-left: 6px solid var(--color-orange);
  border-radius: 0 18px 18px 0;
  background: rgba(255,252,246,.86);
  box-shadow: var(--shadow-tight);
}
.persp-origin span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--color-orange);
}
.persp-origin p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.38;
  font-weight: 600;
  color: var(--color-navy);
}
.persp-quote-stem {
  position: absolute;
  left: 62px;
  right: 62px;
  bottom: 390px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7E89A3;
}
.persp-cards {
  position: absolute;
  left: 62px;
  right: 62px;
  bottom: 74px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.persp-card {
  --persp-accent: var(--color-teal);
  height: 300px;
  min-height: 0;
  padding: 24px 30px 22px;
  border: 1px solid color-mix(in srgb, var(--persp-accent) 18%, transparent);
  border-top: 7px solid var(--persp-accent);
  border-radius: 19px;
  background: rgba(255,252,246,.9);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.persp-card--teal { --persp-accent: var(--color-teal); }
.persp-card--orange { --persp-accent: var(--color-orange); }
.persp-card__kicker {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--persp-accent);
}
.persp-card h2 {
  margin: 12px 0 0;
  max-width: none;
  font-family: var(--font-serif);
  font-size: 15.7px;
  line-height: 1.18;
  font-weight: 700;
  color: var(--color-navy);
}
.persp-card p {
  margin: 16px 0 0;
  max-width: 510px;
  font-family: var(--font-sans);
  font-size: 15.2px;
  line-height: 1.42;
  font-weight: 500;
  color: var(--color-navy);
}
.persp-card .persp-stem {
  margin-top: 17px;
  padding-top: 11px;
  border-top: 1px solid rgba(23,36,75,.12);
  font-family: var(--font-sans);
  font-size: 10.8px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.persp-proof {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px 12px;
  align-items: baseline;
  margin-top: 8px;
  padding-top: 0;
  border-top: 0;
}
.persp-proof strong {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1;
  color: var(--persp-accent);
}
.persp-proof span {
  font-family: var(--font-sans);
  font-size: 10.4px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.persp-bottomline {
  position: absolute;
  left: 62px;
  right: 62px;
  bottom: 34px;
  margin: 0;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.18;
  font-weight: 700;
  color: var(--color-teal);
}

/* =============================================================
   SLIDE 6 — Early Messaging Framework: Issue Priorities
   ============================================================= */
.slide-issues {
  padding: 50px 62px 42px;
  background:
    linear-gradient(90deg, rgba(23,36,75,.035) 0 1px, transparent 1px) 0 0 / 48px 48px,
    radial-gradient(circle at 86% 14%, rgba(126,137,163,.15), transparent 27%),
    radial-gradient(circle at 14% 88%, rgba(17,78,79,.10), transparent 28%),
    linear-gradient(180deg, #FFFCF6 0%, #FBF1E3 100%);
}
.issues-title {
  max-width: 760px;
  margin: 28px 0 0;
  font-family: var(--font-serif);
  font-size: 51px;
  line-height: 1;
  font-weight: 700;
  color: var(--color-navy);
}

.issues-read {
  position: absolute;
  top: 174px;
  right: 62px;
  width: 430px;
  padding: 17px 21px 18px;
  border-left: 6px solid var(--color-orange);
  border-radius: 0 18px 18px 0;
  background: rgba(255,252,246,.9);
  box-shadow: var(--shadow-tight);
}
.issues-read span,
.issues-kicker {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--color-orange);
}
.issues-read p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 13.8px;
  line-height: 1.32;
  font-weight: 600;
  color: var(--color-navy);
}

.issues-grid {
  position: absolute;
  left: 62px;
  right: 62px;
  top: 334px;
  bottom: 52px;
  display: grid;
  grid-template-columns: .9fr 1.28fr 1.08fr;
  grid-template-rows: minmax(0, 1fr);
  gap: 18px;
}

.issues-grid article {
  min-width: 0;
  min-height: 0;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  padding: 22px 24px;
  border: 1px solid rgba(23,36,75,.12);
  border-radius: 18px;
  background: rgba(255,252,246,.92);
  box-shadow: var(--shadow-tight);
}

.issues-pain {
  grid-column: 1;
  grid-row: 1;
  border-top: 7px solid var(--color-teal) !important;
  background: linear-gradient(180deg, rgba(235,245,239,.94) 0%, rgba(255,252,246,.92) 100%) !important;
}
.issues-pain .issues-kicker,
.issues-priority .issues-kicker { color: var(--color-teal); }
.issues-pain strong {
  display: block;
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: 66px;
  line-height: .9;
  font-weight: 700;
  color: var(--color-teal);
}
.issues-pain p {
  margin: 16px 0 0;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.22;
  font-weight: 650;
  color: var(--color-navy);
}
.issues-priority {
  grid-column: 2;
  grid-row: 1;
  border-top: 7px solid var(--color-teal) !important;
}
.issues-priority h2,
.issues-heads h2 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: 25px;
  line-height: 1.03;
  font-weight: 700;
  color: var(--color-navy);
}

.issue-bars {
  display: grid;
  gap: 18px;
}
.issue-bar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding-bottom: 10px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.1;
  font-weight: 800;
  color: rgba(23,36,75,.78);
}
.issue-bar span,
.issue-bar b {
  position: relative;
  z-index: 1;
}
.issue-bar b {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1;
  color: var(--color-navy);
}
.issue-bar::before,
.issue-bar i {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  background: rgba(23,36,75,.08);
}
.issue-bar i {
  right: auto;
  width: calc(var(--w) * 1%);
  background: #7E89A3;
}
.issue-bar--lead {
  color: var(--color-navy);
}
.issue-bar--lead i {
  background: var(--color-teal);
}
.issue-bar--lead b {
  color: var(--color-teal);
}

.issues-heads {
  grid-column: 3;
  grid-row: 1;
  border-top: 7px solid var(--color-orange) !important;
}
.issues-heads .issues-kicker { color: var(--color-orange); }
.heads-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px minmax(0, .85fr);
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-top: 1px solid rgba(23,36,75,.1);
}
.heads-row:first-of-type {
  border-top: 0;
}
.heads-row div {
  min-width: 0;
}
.heads-row b {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: .95;
  color: var(--color-orange);
}
.heads-row div:last-child b {
  color: #7E89A3;
}
.heads-row span {
  display: block;
  margin-top: 4px;
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--color-navy);
}
.heads-row em {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.heads-row--muted b {
  font-size: 29px;
}

.issues-culture {
  grid-column: 1;
  grid-row: 2;
  border-top: 7px solid #7E89A3 !important;
}
.issues-culture .issues-kicker { color: #7E89A3; }
.issues-culture h2 {
  margin-bottom: 10px;
  font-size: 20px;
}
.culture-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}
.culture-stats div {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  padding-left: 0;
  border-left: 0;
}
.culture-stats strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: .95;
  color: #7E89A3;
}
.culture-stats span {
  display: block;
  margin-top: 0;
  font-family: var(--font-sans);
  font-size: 9.8px;
  line-height: 1.12;
  font-weight: 700;
  color: var(--color-navy);
}
.presence-thesis {
  max-width: 500px;
  margin: 24px 0 0;
  padding-left: 20px;
  border-left: 5px solid var(--color-orange);
  font-family: var(--font-serif);
  font-size: 29px;
  line-height: 1.16;
  font-weight: 600;
  color: var(--color-teal);
}
.presence-quote {
  max-width: 470px;
  margin-top: 34px;
  padding: 24px 26px 21px;
  border-radius: 16px;
  background: rgba(255,252,246,.86);
  border: 1px solid rgba(23,36,75,.12);
  box-shadow: var(--shadow-tight);
}
.presence-quote p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 27px;
  line-height: 1.14;
  font-weight: 700;
  color: var(--color-navy);
}
.presence-quote span {
  display: block;
  margin-top: 13px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.presence-stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
  min-width: 0;
}
.presence-step {
  --step-accent: var(--color-teal);
  min-height: 132px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px 26px 22px 24px;
  border: 1px solid color-mix(in srgb, var(--step-accent) 18%, transparent);
  border-left: 7px solid var(--step-accent);
  border-radius: 17px;
  background: rgba(255,252,246,.9);
  box-shadow: var(--shadow-tight);
}
.presence-step--green { --step-accent: var(--color-green); }
.presence-step--teal { --step-accent: var(--color-teal); }
.presence-step--orange { --step-accent: var(--color-orange); }
.presence-step__num {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--step-accent) 13%, #fff);
  color: var(--step-accent);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .08em;
}
.presence-step h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 31px;
  line-height: 1;
  font-weight: 700;
  color: var(--color-navy);
}
.presence-step p {
  margin: 9px 0 0;
  font-family: var(--font-sans);
  font-size: 15.6px;
  line-height: 1.34;
  font-weight: 500;
  color: var(--color-navy);
}
.presence-proof {
  position: absolute;
  left: 62px;
  right: 62px;
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.presence-proof__item {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 15px 20px;
  border-radius: 15px;
  border: 1px solid rgba(23,36,75,.10);
  background: rgba(255,252,246,.78);
  box-shadow: 0 8px 18px rgba(23,36,75,.05);
}
.presence-proof__item strong {
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  color: var(--color-green);
}
.presence-proof__item:nth-child(2) strong { color: var(--color-teal); }
.presence-proof__item:nth-child(3) strong { color: var(--color-orange); }
.presence-proof__item span {
  font-family: var(--font-sans);
  font-size: 12.5px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-navy);
}

/* =============================================================
   SLIDE 4 — "The Biggest ROI in Politics" (agenda + fact card)
   ============================================================= */
.slide4 { padding: 58px 60px; background: linear-gradient(180deg, var(--color-bg) 0%, #FBF1E3 100%); }
.roi-grid { display: grid; grid-template-columns: 38% 1fr; gap: 34px; height: 100%; }

.roi-grid .eyebrow {
  font-size: 20px;
  letter-spacing: .12em;
}

.roi-title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 56px; line-height: 1.02; color: var(--color-navy);
  margin: 22px 0 28px;
}

/* numbered agenda list
   IMPORTANT: every item has the SAME box model (uniform padding + a 2px
   border that is transparent when inactive). Because box-sizing is
   border-box and the item text is identical on every Fact slide, all five
   rows are pixel-identical across slides — only COLORS change per state,
   so nothing shifts when you click through. */
.agenda { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.agenda__item {
  position: relative;
  display: flex; align-items: center; gap: 16px;
  padding: 14px 16px;
  border: 2px solid transparent;     /* constant size; states only recolor */
  border-radius: 12px;
}
/* divider line (absolute → never affects height) */
.agenda__item:not(:last-child)::after {
  content: ""; position: absolute; left: 16px; right: 8px; bottom: -4px;
  height: 1px; background: var(--color-hairline);
}
.agenda__item.is-active::after,
.agenda__item:has(+ .is-active)::after { display: none; }  /* no line touching the card */

.agenda__num {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: #D3D5DA; color: #8A8D94;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-weight: 700; font-size: 17px;
}
.agenda__txt {
  flex: 1; font-family: var(--font-sans); font-weight: 600; font-size: 18px;
  line-height: 1.3; color: #8A8D94;
}
.agenda__check { flex: none; color: var(--color-green); font-weight: 700; font-size: 22px; display: none; }

/* DONE: dark text, light circle, checkmark visible */
.agenda__item.is-done .agenda__num { background: #DCE7DE; color: #7FA088; }
.agenda__item.is-done .agenda__txt { color: var(--color-navy); }
.agenda__item.is-done .agenda__check { display: block; }

/* ACTIVE: card look via color + inset accent (no geometry change) */
.agenda__item.is-active {
  border-color: var(--color-teal);
  background: rgba(255,255,255,.55);
  box-shadow: inset 4px 0 0 var(--color-teal);
}
.agenda__item.is-active .agenda__num { background: var(--color-teal); color: #fff; }
.agenda__item.is-active .agenda__txt { color: var(--color-navy); font-weight: 700; }

/* right: big fact card */
.fact-card {
  background: var(--surface-cream);
  border: 1px solid var(--color-hairline);
  border-radius: 22px;
  padding: 34px 44px;
  display: flex; flex-direction: column;
  min-height: 0;
  box-shadow: var(--shadow-soft);
}
.fact-label {
  text-align: center; color: var(--color-green);
  font-family: var(--font-sans); font-weight: 700; font-size: 18px;
  letter-spacing: .14em; text-transform: uppercase;
}
.fact-label::after { content: ""; display: block; width: 130px; height: 2px;
  background: var(--color-green); margin: 12px auto 0; }
.fact-h {
  text-align: center; font-family: var(--font-serif); font-weight: 700;
  font-size: 40px; line-height: 1.08; color: var(--color-navy);
  margin: 22px 0 0;
}

/* arrow chart (one self-contained SVG; text scales with it) */
.fact-chart { flex: 1; min-height: 200px; margin: 4px 0; }
.fact-chart svg { width: 100%; height: 100%; display: block; }
.fc-year { font-family: var(--font-sans); font-weight: 700; font-size: 28px; fill: var(--color-navy); }
.fc-big  { font-family: var(--font-serif); font-weight: 700; font-size: 88px; fill: var(--color-green); }
.fc-cap  { font-family: var(--font-sans); font-weight: 700; font-size: 23px; letter-spacing: .04em; fill: var(--color-green); }
.fc-sub  { font-family: var(--font-sans); font-weight: 400; font-size: 23px; fill: var(--color-navy); }

/* stat row */
.fact-stat {
  display: flex; align-items: center; gap: 26px;
  border: 1px solid var(--color-hairline); border-radius: 16px;
  padding: 16px 30px; margin-top: 4px;
  background: rgba(255,255,255,.58);
  box-shadow: var(--shadow-tight);
}
.fact-stat .stat-icon { flex: none; }
.fact-stat .stat-divider { width: 1px; align-self: stretch; background: var(--color-hairline); }
.fact-stat .stat-num {
  font-family: var(--font-sans); font-weight: 800; font-size: 70px;
  color: var(--color-green); line-height: 1;
}
.fact-stat .stat-cap {
  font-family: var(--font-sans); font-weight: 700; font-size: 22px;
  line-height: 1.05; color: var(--color-green);
}
.fact-note {
  text-align: center; font-family: var(--font-sans); font-weight: 500;
  font-size: 20px; line-height: 1.35; color: var(--color-navy); margin: 20px 0 0;
}

/* =============================================================
   SLIDE 5 — "Fact 2" extras (reuses .fact-card / .fact-label / .fact-h)
   ============================================================= */
:root {
  --s5-greenbg:  #E9F1EA;
  --s5-orangebg: #FCEFE2;
}
/* slide 5 is content-dense, but the card padding, FACT label and headline
   stay IDENTICAL to slide 4 (so header + heading don't jump). Only the
   content BELOW the headline is compressed to fit. */
/* narrower side padding on slide 5 so the outcome cards stretch wider
   (top padding stays 34px → FACT label + headline stay aligned with slide 4) */
.slide5 .fact-card { padding: 28px 30px 24px; }
.slide5 .fact-h { font-size: 35px; line-height: 1.04; margin-top: 16px; }
.f2-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 13px 0 9px;
  font-family: var(--font-sans); font-weight: 700; font-size: 12.5px; line-height: 1.2;
  color: var(--color-navy);
}
.f2-legend .row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  border: 1px solid rgba(23,36,75,.08);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,.66);
  box-shadow: 0 4px 12px rgba(23,36,75,.035);
}
.f2-legend .row.is-orange { color: var(--color-orange); }
.f2-legend .swatch { width: 42px; height: 0; flex: none; }
.f2-legend .swatch.solid  { border-top: 5px solid var(--color-green); border-radius: 3px; }
.f2-legend .swatch.dashed { border-top: 5px dashed var(--color-orange); }

.f2-chart {
  flex: none;
  height: 146px;
  margin: 0 0 13px;
  padding: 6px 12px 0;
  background:
    linear-gradient(180deg, rgba(17,78,79,.055), rgba(255,255,255,.55));
  border: 1px solid rgba(23,36,75,.08);
  border-radius: 15px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), var(--shadow-tight);
}
.f2-chart svg { width: 100%; height: 100%; display: block; }
.f2-year { font-family: var(--font-sans); font-weight: 700; font-size: 15px; fill: var(--color-navy); }

/* two outcome cards (bordered, like the reference) */
.f2-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.f2-card {
  --f2-accent: var(--color-navy);
  border-radius: 16px;
  padding: 13px 15px 14px;
  border: 1px solid color-mix(in srgb, var(--f2-accent) 18%, transparent);
  border-top: 5px solid var(--f2-accent);
  display: flex;
  flex-direction: column;
  min-height: 154px;
  box-shadow: var(--shadow-tight);
}
.f2-card--green  { --f2-accent: var(--color-green); background: linear-gradient(180deg, #F7FCF7 0%, var(--s5-greenbg) 100%); }
.f2-card--orange { --f2-accent: var(--color-orange); background: linear-gradient(180deg, #FFF8F1 0%, var(--s5-orangebg) 100%); }
.f2-card__head { display: flex; align-items: center; gap: 10px; padding-bottom: 10px; }
.f2-card__title {
  font-family: var(--font-sans); font-weight: 800; font-size: 11.5px;
  letter-spacing: .03em; text-transform: uppercase; line-height: 1.22;
}
.f2-card--green  .f2-card__title { color: var(--color-green); }
.f2-card--orange .f2-card__title { color: var(--color-orange); }
.f2-icon { flex: none; }

.f2-card__body {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(94px, .76fr) minmax(0, 1.24fr);
  grid-template-rows: 1fr;
  column-gap: 15px;
  align-items: stretch;
}
.f2-bignum { font-family: var(--font-sans); font-weight: 800; font-size: 32px; line-height: .96; white-space: nowrap; }
.f2-card--green  .f2-bignum { color: var(--color-green); }
.f2-card--orange .f2-bignum { color: var(--color-orange); }
.f2-bigcap {
  display: block; font-size: 11.4px; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; margin-top: 7px; line-height: 1.16;
}
.f2-statcol {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid color-mix(in srgb, var(--f2-accent) 20%, transparent);
  padding-right: 13px;
}
.f2-list {
  min-width: 0;
  margin: 0;
  padding: 10px 10px 10px 24px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12.2px;
  line-height: 1.28;
  color: var(--color-navy);
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(23,36,75,.08);
  border-radius: 11px;
}
.f2-card--green  .f2-list li::marker { color: var(--color-green); }
.f2-card--orange .f2-list li::marker { color: var(--color-orange); }
.f2-list li { margin: 2px 0; }

.f2-divider { display: none; }
.f2-card--green  .f2-divider { background: rgba(26,122,60,.35); }
.f2-card--orange .f2-divider { background: rgba(226,82,11,.35); }

/* =============================================================
   SLIDE 6 — "Fact 3" four stat cards + summary
   (reuses .fact-card / .fact-label / .fact-h from slides 4–5)
   ============================================================= */
:root {
  --s6-blue:   #2456A6;  --s6-bluebg:   #E7EDF7;
  --s6-purple: #6A4C93;  --s6-purplebg: #EFEAF5;
  --s6-summbg: #E7ECF5;
}
.slide6 .fact-card { padding-left: 30px; padding-right: 30px; }

.f3-grid { flex: 1; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; margin-top: 10px; }
.f3-card {
  --acc: var(--color-navy);
  display: flex; align-items: center; gap: 13px;
  border-radius: 14px; padding: 11px 15px;
  border: 1px solid color-mix(in srgb, var(--acc) 14%, transparent);
  box-shadow: var(--shadow-tight);
}
.f3-card--blue   { --acc: var(--s6-blue);     background: var(--s6-bluebg); }
.f3-card--green  { --acc: var(--color-green);  background: var(--s5-greenbg); }
.f3-card--orange { --acc: var(--color-orange); background: var(--s5-orangebg); }
.f3-card--purple { --acc: var(--s6-purple);   background: var(--s6-purplebg); }

.f3-iconwrap {
  flex: none; width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--acc);
}
.f3-card--blue   .f3-iconwrap { background: #D5E0F2; }
.f3-card--green  .f3-iconwrap { background: #D7E8DA; }
.f3-card--orange .f3-iconwrap { background: #FBE0CB; }
.f3-card--purple .f3-iconwrap { background: #E2D8EF; }

.f3-divider { flex: none; width: 1px; align-self: stretch; background: var(--acc); opacity: .3; }
.f3-text { flex: 1; font-family: var(--font-sans); font-size: 13.5px; line-height: 1.32; color: var(--color-navy); }
.f3-text b { font-weight: 800; font-size: 21px; color: var(--acc); }

.f3-summary {
  display: flex; align-items: center; gap: 18px;
  background: var(--s6-summbg); border: 1px solid rgba(23,36,75,.08); border-radius: 14px; padding: 12px 22px; margin-top: 14px;
  box-shadow: var(--shadow-tight);
}
.f3-summary .f3-iconwrap { background: var(--color-navy); color: #fff; width: 54px; height: 54px; }
.f3-summary p {
  flex: 1; font-family: var(--font-sans); font-weight: 600; font-size: 16px;
  line-height: 1.35; color: var(--color-navy); margin: 0;
}

/* =============================================================
   SLIDE 7 — "Fact 4" three benchmark cards + bottom line + source
   (reuses .fact-card / .fact-label / .fact-h)
   ============================================================= */
:root { --s7-red: #D8382C; }
.slide7 .fact-card { padding-left: 30px; padding-right: 30px; }

.f4-sub {
  text-align: center; font-family: var(--font-sans); font-weight: 700;
  font-size: 12.5px; letter-spacing: .02em; text-transform: uppercase;
  color: var(--color-muted); margin: 6px 0 0;
}

.f4-grid { flex: 1; display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 1fr; gap: 12px; margin-top: 10px; }
.f4-card {
  --acc: var(--color-navy);
  background: #FCFAF4; border: 1px solid var(--color-hairline); border-radius: 14px;
  padding: 10px 10px 12px; display: flex; flex-direction: column; align-items: center; text-align: center;
  box-shadow: var(--shadow-tight);
}
.f4-card--red   { --acc: var(--s7-red); }
.f4-card--navy  { --acc: var(--color-navy); }
.f4-card--green { --acc: var(--color-green); }
.f4-card__title {
  font-family: var(--font-sans); font-weight: 700; font-size: 14.5px; line-height: 1.18;
  color: var(--color-navy); min-height: 34px; display: flex; align-items: center;
}
.f4-rule { width: 82%; height: 2px; border-radius: 2px; margin: 4px 0 7px; background: var(--acc); opacity: .85; }
.f4-big { font-family: var(--font-sans); font-weight: 800; font-size: 37px; line-height: 1; color: var(--acc); }
.f4-cap { font-family: var(--font-sans); font-weight: 600; font-size: 13px; line-height: 1.2; color: var(--color-navy); margin-top: 5px; }
.f4-bar { width: 100%; height: 8px; border-radius: 5px; background: #E4E1D8; margin-top: auto; overflow: hidden; }
.f4-bar i { display: block; height: 100%; border-radius: 5px; background: var(--acc); }
.f4-card--navy .f4-bar i { background: #6B6F7A; }

.f4-bottom {
  display: flex; align-items: center; gap: 16px;
  background: var(--s5-greenbg); border: 1.5px solid rgba(26,122,60,.4);
  border-radius: 14px; padding: 8px 18px; margin-top: 10px;
  box-shadow: var(--shadow-tight);
}
.f4-bl-left { display: flex; align-items: center; gap: 11px; flex: none; }
.f4-bl-check { width: 40px; height: 40px; border-radius: 50%; background: #CFE6D4; display: flex; align-items: center; justify-content: center; flex: none; }
.f4-bl-lbl { font-family: var(--font-sans); font-weight: 800; font-size: 13px; letter-spacing: .04em; color: var(--color-green); line-height: 1.1; }
.f4-bl-div { width: 1px; align-self: stretch; background: rgba(26,122,60,.3); flex: none; }
.f4-bl-text { flex: 1; font-family: var(--font-sans); font-weight: 600; font-size: 13.5px; line-height: 1.3; color: var(--color-navy); margin: 0; }
.f4-bl-right { display: flex; align-items: center; gap: 11px; flex: none; max-width: 200px; }
.f4-bl-right .big { font-family: var(--font-sans); font-weight: 800; font-size: 26px; color: var(--color-green); line-height: 1; }
.f4-bl-right .cap { font-family: var(--font-sans); font-size: 11.5px; line-height: 1.2; color: var(--color-navy); }

.f4-source { display: flex; align-items: center; gap: 10px; margin-top: 8px; font-family: var(--font-sans); font-size: 11.5px; line-height: 1.25; color: var(--color-navy); }
.f4-source svg { flex: none; }

/* =============================================================
   SLIDE 8 — "Fact 5" elections table
   (reuses .fact-card / .fact-label / .fact-h)
   ============================================================= */
.slide8 .fact-card { padding-left: 26px; padding-right: 26px; }
.f5-sub {
  text-align: center; font-family: var(--font-sans); font-weight: 500;
  font-size: 15px; line-height: 1.3; color: var(--color-muted); margin: 8px 0 0;
  max-width: 92%; margin-left: auto; margin-right: auto;
}

.f5 { width: 100%; border-collapse: separate; border-spacing: 0; table-layout: fixed; margin-top: 10px; flex: 1; overflow: hidden; border-radius: 14px; }
.f5 th, .f5 td { text-align: center; padding: 6px 3px; vertical-align: middle; }
.f5 thead th { vertical-align: bottom; padding-bottom: 9px; }
.f5 .ico { display: block; margin: 0 auto 5px; }
.f5 .colhdr { font-family: var(--font-sans); font-weight: 800; font-size: 12.5px; letter-spacing: .04em; }
.f5 .c-pres  { color: var(--color-navy); }
.f5 .c-sen   { color: var(--s6-purple); }
.f5 .c-gov   { color: var(--color-green); }
.f5 .c-house { color: var(--color-orange); }
.f5 .c-total { color: var(--color-navy); }
.f5 tbody tr { background: rgba(255,255,255,.54); }
.f5 tbody tr + tr th,
.f5 tbody tr + tr td { border-top: 1px solid var(--color-hairline); }
.f5 .num { font-family: var(--font-serif); font-weight: 700; font-size: 27px; line-height: 1.05; }
.f5 .sub { display: block; font-family: var(--font-sans); font-weight: 400; font-size: 11px; color: var(--color-muted); margin-top: 1px; }
.f5 .yr { background: var(--color-navy); color: #fff; width: 84px; font-family: var(--font-sans); font-weight: 800; font-size: 18px; line-height: 1.05; }
.f5 .yr small { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .08em; opacity: .85; margin-top: 2px; }
.f5 .total { background: rgba(23,36,75,.05); }

.f5-note { display: flex; align-items: flex-start; gap: 10px; margin-top: 10px; font-family: var(--font-sans); font-size: 11.5px; line-height: 1.35; color: var(--color-navy); background: rgba(255,255,255,.58); border: 1px solid var(--color-hairline); border-radius: 12px; padding: 9px 12px; box-shadow: var(--shadow-tight); }
.f5-note svg { flex: none; margin-top: 1px; }
.f5-note b { font-weight: 800; }

/* =============================================================
   SLIDE 9 — "Heritage's Impact Hierarchy" 3-tier framework
   ============================================================= */
:root { --t1: #1B6B3A; --t1bg: #E9F1EA; --t2: #1D44C0; --t2bg: #E7ECFA; --t3: #5B2D87; --t3bg: #EFEAF6; }
.slide9 { padding: 20px 44px 22px; display: flex; flex-direction: column; background: linear-gradient(180deg, var(--color-bg) 0%, #FBF1E3 100%); }
.hier-title { font-family: var(--font-serif); font-weight: 700; font-size: 39px; line-height: 1.05; color: var(--color-navy); margin: 0; }
.hier-sub { font-family: var(--font-sans); font-weight: 700; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; color: #7E89A3; margin: 5px 0 0; }
.hier-intro { font-family: var(--font-sans); font-size: 12.5px; line-height: 1.27; color: var(--color-navy); margin: 5px 0 0; max-width: 1120px; }

.tiers { flex: 1; min-height: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 9px; }
.tier {
  --tier: var(--color-navy); --tierbg: #eee;
  background: var(--surface-cream); border: 1px solid var(--color-hairline); border-top: 5px solid var(--tier);
  min-height: 0; border-radius: 14px; padding: 10px 13px 12px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-soft);
}
.tier--1 { --tier: var(--t1); --tierbg: var(--t1bg); }
.tier--2 { --tier: var(--t2); --tierbg: var(--t2bg); }
.tier--3 { --tier: var(--t3); --tierbg: var(--t3bg); }

.tier__head { display: flex; align-items: center; gap: 11px; }
.tier__icon { flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--tier); display: flex; align-items: center; justify-content: center; box-shadow: 0 7px 18px color-mix(in srgb, var(--tier) 25%, transparent); }
.tier__pill { display: inline-block; background: var(--tier); color: #fff; font-family: var(--font-sans); font-weight: 800; font-size: 10px; letter-spacing: .06em; padding: 3px 9px; border-radius: 6px; }
.tier__title { font-family: var(--font-serif); font-weight: 700; font-size: 20px; line-height: 1.04; color: var(--tier); margin: 3px 0 0; }
.tier__kicker,
.tier__desc { display: none; }

.tier__states {
  margin: 10px 0 8px;
  flex: 1;
  min-height: 0;
  display: grid;
  grid-auto-rows: minmax(74px, 1fr);
  gap: 7px;
}
.tstate {
  min-height: 0;
  display: grid;
  grid-template-columns: 39px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border: 1px solid var(--color-hairline);
  border-radius: 10px;
  background: rgba(255,255,255,.74);
  box-shadow: inset 4px 0 0 var(--tier), var(--shadow-tight);
}
.tstate:first-child { border-top: 1px solid var(--color-hairline); }
.tstate__map {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--tier) 18%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tier);
}
.tstate__map svg { height: 25px; width: auto; max-width: 34px; display: block; }
.tstate__body { min-width: 0; display: grid; grid-template-columns: 35px minmax(0, 1fr); gap: 9px; align-items: center; }
.tstate__name { font-family: var(--font-sans); font-weight: 900; font-size: 17px; line-height: 1; color: var(--tier); margin: 0; letter-spacing: .02em; }
.tier--3 .tstate__body { grid-template-columns: 40px minmax(0, 1fr); gap: 8px; }
.tier--3 .tstate__body--split { grid-template-columns: 60px minmax(0, 1fr); }
.tier--3 .tstate__name { font-size: 15px; line-height: 1.05; }
.tier--3 .tstate__body--split .tstate__name { font-size: 12.3px; }
.tstate__metrics { min-width: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
.tstate__metric {
  min-width: 0;
  border: 1px solid color-mix(in srgb, var(--tier) 15%, transparent);
  border-radius: 7px;
  background: rgba(255,255,255,.78);
  padding: 8px 8px 9px;
  text-align: left;
}
.tstate__metric span {
  display: block;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 7.4px;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #7A8397;
}
.tstate__metric strong {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 14.2px;
  line-height: 1;
  color: var(--color-navy);
}
.tstate__metric--max span { color: #8A2E3B; }
.tstate__metrics--split {
  grid-template-columns: minmax(0, 1fr);
  gap: 3px;
}
.tstate__mini {
  min-width: 0;
  display: grid;
  grid-template-columns: 22px minmax(0, 1.2fr) minmax(0, .8fr);
  align-items: center;
  gap: 5px;
  padding: 3px 6px;
  border: 1px solid color-mix(in srgb, var(--tier) 14%, transparent);
  border-radius: 6px;
  background: rgba(255,255,255,.78);
  font-family: var(--font-sans);
}
.tstate__mini span,
.tstate__mini em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-style: normal;
  font-weight: 900;
  font-size: 8px;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--tier);
}
.tstate__mini em { color: #8A2E3B; font-size: 6.8px; }
.tstate__mini strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 900;
  font-size: 10.6px;
  line-height: 1;
  color: var(--color-navy);
}
.tstate__mini--head {
  padding-top: 0;
  padding-bottom: 0;
  border: 0;
  background: transparent;
}
.tstate__desc { display: none; }

.tier__foot { margin-top: 0; display: flex; align-items: center; gap: 9px; background: var(--tierbg); border: 1px solid color-mix(in srgb, var(--tier) 16%, transparent); border-radius: 11px; padding: 8px 10px; }
.tier__foot .ic { flex: none; color: var(--tier); }
.tier__foot p { font-family: var(--font-sans); font-weight: 600; font-size: 10.8px; line-height: 1.24; color: var(--color-navy); margin: 0; }

.slide9--states-only .hier-intro { font-size: 13.5px; max-width: 1160px; }
.slide9--states-only .tiers { gap: 20px; margin-top: 11px; }
.slide9--states-only .tier { padding: 13px 15px 14px; }
.slide9--states-only .tier__head { gap: 13px; }
.slide9--states-only .tier__icon { width: 46px; height: 46px; }
.slide9--states-only .tier__pill { font-size: 11px; padding: 4px 10px; }
.slide9--states-only .tier__title { font-size: 24px; line-height: 1.03; }
.slide9--states-only .tier__states {
  margin: 14px 0 10px;
  grid-auto-rows: minmax(52px, 1fr);
  gap: 8px;
}
.slide9--states-only .tstate {
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.78);
  box-shadow: inset 5px 0 0 var(--tier), var(--shadow-tight);
}
.slide9--states-only .tstate__map {
  width: 52px;
  height: 52px;
  border-width: 1.5px;
}
.slide9--states-only .tstate__map svg {
  height: 34px;
  max-width: 48px;
}
.slide9--states-only .tstate__body,
.slide9--states-only .tier--3 .tstate__body,
.slide9--states-only .tier--3 .tstate__body--split {
  display: block;
  min-width: 0;
}
.slide9--states-only .tstate__name,
.slide9--states-only .tier--3 .tstate__name,
.slide9--states-only .tier--3 .tstate__body--split .tstate__name {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--tier);
}
.slide9--states-only .tier--2 .tstate__name { font-size: 24px; }
.slide9--states-only .tier--3 .tstate__name { font-size: 21px; }
.slide9--states-only .tstate__name--group { font-size: 20px !important; line-height: 1.05 !important; }
.slide9--states-only .tstate__metrics,
.slide9--states-only .tstate__metrics--split { display: none; }
.slide9--states-only .tier__foot { padding: 10px 13px; gap: 11px; }
.slide9--states-only .tier__foot p { font-size: 12.6px; line-height: 1.22; }

.slide9--states-only > .tiers { display: none; }

.impact-quadrant {
  --t4: #E2520B;
  --t4bg: #FFF0E6;
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1.18fr) minmax(0, .82fr);
  gap: 0;
  margin-top: 13px;
  margin-bottom: 46px;
  overflow: hidden;
  border: 1px solid var(--color-hairline);
  border-radius: 16px;
  background: rgba(255,255,255,.42);
  box-shadow: var(--shadow-soft);
}

.quad-card {
  --quad: var(--color-navy);
  --quadbg: rgba(255,255,255,.82);
  position: relative;
  min-height: 0;
  padding: 17px 22px 18px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--quadbg) 74%, #fff 26%) 0%, rgba(255,255,255,.82) 100%);
}

.quad-card:nth-child(odd) { border-right: 1px solid var(--color-hairline); }
.quad-card:nth-child(-n+2) { border-bottom: 1px solid var(--color-hairline); }
.quad-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: var(--quad);
}

.quad-card--committed { --quad: var(--t1); --quadbg: var(--t1bg); }
.quad-card--ondeck { --quad: var(--t4); --quadbg: var(--t4bg); }
.quad-card--persistent { --quad: var(--t2); --quadbg: var(--t2bg); }
.quad-card--strategic { --quad: var(--t3); --quadbg: var(--t3bg); }

.quad-card__head {
  display: flex;
  align-items: baseline;
  gap: 13px;
}

.quad-card__head span {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 61px;
  height: 25px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--quad);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.quad-card__head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  line-height: .98;
  color: var(--quad);
}

.quad-card p {
  max-width: 520px;
  margin: 8px 0 0;
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.27;
  color: var(--color-navy);
}

.quad-profiles {
  flex: 1;
  min-height: 0;
  margin-top: 10px;
  display: grid;
  gap: 12px;
  align-items: stretch;
}

.quad-profiles--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quad-profiles--one {
  grid-template-columns: minmax(0, .72fr);
}

.quad-profile {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 12px 13px;
  border: 1px solid color-mix(in srgb, var(--quad) 18%, transparent);
  border-left: 5px solid var(--quad);
  border-radius: 13px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-tight);
}

.quad-profile__state {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--quad);
}

.quad-profile__state .quad-map {
  width: 38px;
  height: 38px;
}

.quad-profile__state .quad-map svg {
  height: 35px;
  max-width: 42px;
}

.quad-profile__state strong {
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  color: var(--quad);
}

.quad-profile__rows {
  min-height: 0;
  margin-top: 9px;
  display: grid;
  gap: 5px;
}

.quad-profile__rows div {
  min-width: 0;
  min-height: 27px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 5px 7px;
  border-radius: 8px;
  background: rgba(255,252,246,.86);
}

.quad-profile__rows span {
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 9.4px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--color-navy);
}

.quad-profile__rows b {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-weight: 900;
}

.quad-profile__rows em {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #E3E8F0;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 10.6px;
  line-height: 1;
  font-weight: 900;
  color: #41506A;
}

.quad-profile__rows em:first-child:not(:only-child),
.quad-profile__rows div:nth-child(3) em {
  background: #F6DFA4;
  color: #7A5100;
}

.quad-states {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quad-states :is(a, b) {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border: 1px solid color-mix(in srgb, var(--quad) 18%, transparent);
  border-left: 5px solid var(--quad);
  border-radius: 11px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-tight);
  color: var(--quad);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.02;
  text-decoration: none;
}

.quad-states a:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(23,36,75,.1);
}

.quad-map {
  flex: none;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--quad);
}

.quad-map svg {
  width: auto;
  height: 32px;
  max-width: 38px;
  display: block;
}

.quad-states--large :is(a, b) {
  min-height: 70px;
  font-size: 33px;
}

.quad-states--large .quad-map {
  width: 45px;
  height: 45px;
}

.quad-states--large .quad-map svg {
  height: 42px;
  max-width: 50px;
}

.quad-card--ondeck .quad-states--large {
  grid-template-columns: minmax(0, .54fr);
}

.quad-card--strategic .quad-states {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.quad-card--strategic .quad-states :is(a, b) {
  min-height: 42px;
  gap: 7px;
  padding: 7px 8px;
  font-size: 17px;
}

.quad-card--strategic .quad-map {
  width: 28px;
  height: 28px;
}

.quad-card--strategic .quad-map svg {
  height: 25px;
  max-width: 32px;
}

.quad-card--strategic .quad-states .quad-state--long {
  font-size: 13px;
  line-height: 1.02;
}

/* =============================================================
   SLIDE 10 — "Heritage 2026 Mandate" (Tier 1 donor mandate)
   ============================================================= */
:root { --maroon: #8A2E3B; }
.slide10 { padding: 32px 46px 36px; display: flex; flex-direction: column; gap: 15px; background: linear-gradient(180deg, var(--color-bg) 0%, #FBF1E3 100%); }

.mnd-top { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 28px; align-items: stretch; }
.mnd-eyebrow { font-family: var(--font-sans); font-weight: 700; font-size: 17px; letter-spacing: .08em; text-transform: uppercase; color: var(--color-orange); margin: 0; }
.mnd-title { font-family: var(--font-serif); font-weight: 700; font-size: 52px; line-height: 1; color: var(--color-navy); margin: 10px 0 0; }
.mnd-intro { font-family: var(--font-sans); font-size: 17px; line-height: 1.34; color: var(--color-navy); margin: 11px 0 0; max-width: 560px; }

.mnd-threshold { background: var(--surface-cream); border: 1px solid var(--color-hairline); border-radius: 16px; padding: 15px 22px; display: flex; align-items: center; gap: 22px; box-shadow: var(--shadow-soft); }
.thr-icon { flex: none; width: 74px; height: 74px; border-radius: 50%; background: var(--color-green); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(26,122,60,.18); }
.thr-body { flex: 1; text-align: center; }
.thr-label { font-family: var(--font-sans); font-weight: 800; font-size: 14.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--color-green); }
.thr-big { font-family: var(--font-serif); font-weight: 700; font-size: 48px; line-height: 1; color: var(--color-navy); margin: 4px 0; }
.thr-per { display: flex; align-items: center; justify-content: center; gap: 12px; font-family: var(--font-sans); font-weight: 800; font-size: 14.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--color-green); }
.thr-per::before, .thr-per::after { content: ""; height: 1.5px; width: 42px; background: rgba(26,122,60,.5); }
.thr-desc { font-family: var(--font-sans); font-size: 15px; line-height: 1.35; color: var(--color-navy); margin: 8px 0 0; }

.state-symbols { position: absolute; width: 0; height: 0; overflow: hidden; }
.program-grid { flex: 1; min-height: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.program-col {
  --entity: var(--color-navy);
  --entity-bg: #EDF0F5;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: var(--surface-cream);
  border: 1px solid var(--color-hairline);
  border-top: 5px solid var(--entity);
  border-radius: 16px;
  padding: 15px 16px 16px;
  box-shadow: var(--shadow-soft);
}
.program-col--thf { --entity: var(--color-green); --entity-bg: #E9F1EA; }
.program-col--hafa { --entity: var(--color-orange); --entity-bg: #FCEFE2; }
.program-head { display: flex; align-items: center; gap: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--color-hairline); }
.program-mark {
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--entity);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--entity) 24%, transparent);
}
.program-kicker { font-family: var(--font-sans); font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--entity); margin: 0 0 2px; }
.program-head h2 { font-family: var(--font-serif); font-size: 38px; line-height: .95; font-weight: 700; color: var(--entity); margin: 0; }
.program-sub { font-family: var(--font-sans); font-size: 13px; line-height: 1.22; color: var(--color-navy); margin: 4px 0 0; }
.program-cards { flex: 1; min-height: 0; display: grid; grid-template-rows: 1fr 1fr; gap: 12px; margin-top: 13px; }
.program-card {
  min-height: 0;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  background: var(--entity-bg);
  border: 1px solid rgba(23,36,75,.12);
  border-radius: 14px;
  padding: 13px 14px;
  box-shadow: var(--shadow-tight);
}
.program-state { display: flex; align-items: center; gap: 9px; min-width: 0; }
.state-badge {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--entity) 17%, transparent);
  color: var(--entity);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 5px 14px rgba(23,36,75,.08);
}
.state-badge svg { width: 29px; height: 29px; display: block; fill: currentColor; }
.program-state h3 { font-family: var(--font-sans); font-size: 25px; line-height: 1; font-weight: 800; letter-spacing: .02em; color: var(--color-navy); margin: 0; }
.program-metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.metric {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(23,36,75,.08);
  border-radius: 10px;
  padding: 9px 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(23,36,75,.04);
}
.metric span { display: block; font-family: var(--font-sans); font-weight: 800; font-size: 10.8px; line-height: 1.05; letter-spacing: .04em; text-transform: uppercase; color: var(--entity); }
.metric--max span { color: var(--maroon); }
.metric strong { display: block; font-family: var(--font-serif); font-weight: 700; font-size: 25px; line-height: 1; color: var(--color-navy); margin-top: 4px; white-space: nowrap; }

.mnd-states--legacy { display: none !important; }
.mnd-states { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.state-card { background: var(--color-card); border: 1px solid var(--color-hairline); border-radius: 16px; padding: 20px 26px; }
.state-card__head { display: flex; align-items: center; gap: 18px; margin-bottom: 6px; }
.state-card__circle { flex: none; width: 76px; height: 76px; border-radius: 50%; background: #F1E7D4; display: flex; align-items: center; justify-content: center; }
.state-card__circle svg { height: 46px; width: auto; max-width: 56px; fill: var(--color-navy); }
.state-card__name { font-family: var(--font-serif); font-weight: 700; font-size: 44px; color: var(--color-navy); }
.state-grid { display: grid; grid-template-columns: 1fr 1fr; }
.state-grid .cell { text-align: center; padding: 14px 8px; }
.state-grid .cell:nth-child(1), .state-grid .cell:nth-child(2) { border-bottom: 1px solid var(--color-hairline); }
.state-grid .cell:nth-child(1), .state-grid .cell:nth-child(3) { border-right: 1px solid var(--color-hairline); }
.cell-label { font-family: var(--font-sans); font-weight: 800; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }
.cell-label.goal { color: var(--color-green); }
.cell-label.max  { color: var(--maroon); }
.cell-value { font-family: var(--font-serif); font-weight: 700; font-size: 36px; line-height: 1; color: var(--color-navy); margin-top: 5px; }

.mnd-foot { display: flex; align-items: center; gap: 18px; background: #E7ECF7; border-radius: 14px; padding: 15px 24px; }
.mnd-foot .ic { flex: none; width: 54px; height: 54px; border-radius: 50%; background: var(--color-navy); display: flex; align-items: center; justify-content: center; }
.mnd-foot p { font-family: var(--font-sans); font-weight: 600; font-size: 18px; line-height: 1.3; color: var(--color-navy); margin: 0; }

/* =============================================================
   SLIDE 11 — "Hypothetical $3.5M Overall Engagement Plan"
   timeline + engagement blocks
   ============================================================= */
.slide11 { padding: 18px 46px 58px; display: flex; flex-direction: column; gap: 6px; background: linear-gradient(180deg, var(--color-bg) 0%, #FBF1E3 100%); }
.p0 { --c: var(--t1); --cbg: var(--t1bg); }
.p1 { --c: var(--t2); --cbg: var(--t2bg); }
.p2 { --c: var(--color-orange); --cbg: #FCEFE2; }
.p2b { --c: #D94C0C; --cbg: #FDF1E5; }
.p3 { --c: var(--t3); --cbg: var(--t3bg); }

.bud-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.bud-title { font-family: var(--font-serif); font-weight: 700; font-size: 39px; line-height: 1.1; color: var(--color-navy); margin: 0; }
.bud-sub { font-family: var(--font-sans); font-weight: 800; font-size: 18px; letter-spacing: .06em; text-transform: uppercase; color: #7E89A3; margin: 6px 0 0; }
.bud-state-focus {
  width: fit-content;
  margin-top: 9px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 13px 8px;
  background: color-mix(in srgb, var(--t1) 7%, #fff);
  border: 1px solid color-mix(in srgb, var(--t1) 24%, transparent);
  border-left: 5px solid var(--t1);
  border-radius: 12px;
  box-shadow: var(--shadow-tight);
}
.bud-state-focus span {
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--t1);
}
.bud-state-focus strong {
  font-family: var(--font-serif);
  font-size: 25px;
  line-height: .95;
  font-weight: 700;
  color: var(--color-navy);
}
.bud-state-focus em {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  color: var(--color-orange);
}
.bud-title .bud-state-focus {
  vertical-align: middle;
  margin: 0 0 0 12px;
  transform: translateY(-5px);
}
.bud-title .bud-state-focus span {
  font-size: 9.5px;
}
.bud-title .bud-state-focus strong {
  font-size: 21px;
}
.bud-title .bud-state-focus em {
  font-size: 15px;
}
.bud-summary { flex: none; display: flex; align-items: stretch; gap: 10px; }
.bud-totalcard { flex: none; min-width: 170px; background: var(--surface-cream); border: 1px solid var(--color-hairline); border-radius: 14px; padding: 8px 18px; text-align: center; box-shadow: var(--shadow-soft); }
.bud-totalcard .lbl { font-family: var(--font-sans); font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--color-muted); }
.bud-totalcard .amt { font-family: var(--font-serif); font-weight: 700; font-size: 32px; line-height: 1.12; color: var(--t1); margin-top: 2px; }
.bud-threshold {
  flex: none;
  width: 330px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--surface-cream);
  border: 1px solid var(--color-hairline);
  border-radius: 14px;
  padding: 7px 13px;
  box-shadow: var(--shadow-soft);
}
.threshold-icon {
  flex: none;
  width: 46px;
  height: 46px;
  color: var(--t1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.threshold-icon svg { width: 46px; height: 46px; display: block; }
.threshold-copy { flex: 1; min-width: 0; text-align: center; }
.threshold-kicker {
  font-family: var(--font-sans);
  font-size: 9.8px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--t1);
  white-space: nowrap;
}
.threshold-amt {
  margin-top: 3px;
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: .95;
  font-weight: 700;
  color: var(--color-navy);
}
.threshold-per {
  margin-top: 4px;
  display: grid;
  grid-template-columns: minmax(18px, 1fr) auto minmax(18px, 1fr);
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 9.8px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--t1);
}
.threshold-per span { height: 1px; background: color-mix(in srgb, var(--t1) 42%, transparent); }

/* process banners */
.bud-chevrons { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.chev { flex: 1; background: var(--c); color: #fff; min-height: 52px; position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 0 18px; text-align: center; border-radius: 10px; clip-path: none;
  box-shadow: 0 9px 20px color-mix(in srgb, var(--c) 22%, transparent); }
.chev:first-child,
.chev:last-child { clip-path: none; padding-right: 18px; }
.chev:not(:first-child) { margin-left: 0; }
.chev .p-num  { display: none; }
.chev .p-name { font-family: var(--font-sans); font-weight: 800; font-size: 16px; letter-spacing: .04em; text-transform: uppercase; }

/* timeline date markers */
.bud-timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; position: relative; padding-top: 4px; }
.bud-timeline::before { display: none; }
.bud-timeline .tl-col {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-left: 0;
  text-align: center;
}
.bud-timeline .tl-col + .tl-col { border-left: 0; }
.tl-dot { display: none; }
.bud-timeline .tl-date {
  display: block;
  width: min(100%, 252px);
  box-sizing: border-box;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 12.5px;
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--c);
  background: color-mix(in srgb, var(--c) 9%, #fff);
  border: 1px solid color-mix(in srgb, var(--c) 18%, transparent);
  border-radius: 999px;
  padding: 7px 12px;
}

/* phase detail cards */
.bud-cards { flex: 1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.bcard { min-width: 0; background: var(--cbg); border: 1px solid color-mix(in srgb, var(--c) 18%, transparent); border-top: 5px solid var(--c); border-radius: 14px; padding: 12px 18px 13px; display: flex; flex-direction: column; box-shadow: var(--shadow-soft); }
.bcard__amt { font-family: var(--font-serif); font-weight: 700; font-size: 35px; line-height: 1.1; color: var(--c); }
.bcard__rule { height: 2px; background: var(--c); opacity: .5; margin: 9px 0 11px; }
.bcard__head { font-family: var(--font-serif); font-weight: 700; font-size: 23px; line-height: 1.16; color: var(--c); margin: 0 0 8px; }
.bcard__desc { font-family: var(--font-sans); font-size: 14.6px; line-height: 1.42; color: var(--color-navy); margin: 0; }
.bcard__split { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--color-hairline); display: flex; gap: 10px; }
.bcard__split > div { flex: 1; }
.bcard__split .v { font-family: var(--font-sans); font-weight: 800; font-size: 20px; }
.bcard__split .k { font-family: var(--font-sans); font-size: 13.5px; color: var(--color-navy); margin-top: 2px; }
.vote-lift-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.setup-cost-card {
  grid-column: 1 / 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
  min-height: 52px;
  padding: 8px 18px;
  border: 1px solid color-mix(in srgb, var(--t1) 22%, transparent);
  border-radius: 14px;
  background: var(--t1bg);
  box-shadow: var(--shadow-tight);
}
.setup-cost-card strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  color: var(--t1);
}
.setup-cost-card div:nth-child(2) strong {
  color: var(--color-orange);
}
.setup-cost-card span {
  display: block;
  margin-top: 3px;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1;
  color: var(--color-navy);
}
.vote-lift-card {
  grid-column: 3 / 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
  padding: 7px 16px;
  border: 1px solid color-mix(in srgb, var(--color-orange) 22%, transparent);
  border-radius: 14px;
  background: linear-gradient(90deg, #FCEFE2 0%, color-mix(in srgb, var(--t3bg) 62%, #fff) 100%);
  box-shadow: var(--shadow-tight);
}
.vote-lift-card span {
  display: block;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--color-orange);
}
.vote-lift-card strong {
  display: block;
  margin-top: 2px;
  font-family: var(--font-serif);
  font-size: 23px;
  line-height: 1;
  color: var(--color-navy);
}
.vote-lift-card p {
  flex: 0 1 245px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 11.2px;
  line-height: 1.18;
  font-weight: 600;
  color: var(--color-navy);
}
.vote-lift-card--c3 {
  grid-column: 2 / 3;
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: 12px;
  align-items: center;
  background: var(--t2bg);
  border-color: color-mix(in srgb, var(--t2) 22%, transparent);
}
.vote-lift-card--c3 span { color: var(--t2); }
.vote-lift-card--c3 .mini-lift-stat {
  padding-right: 12px;
  border-right: 1px solid color-mix(in srgb, var(--t2) 24%, transparent);
}
.vote-lift-card--c3 .mini-lift-method span { color: var(--color-navy); opacity: .75; }
.vote-lift-card--c3 p {
  margin-top: 3px;
  font-size: 10px;
  line-height: 1.12;
}
.vote-lift-card--c3 strong { font-size: 22px; white-space: nowrap; }

/* total cost by entity bar */
.bud-entity { display: flex; align-items: center; gap: 26px; background: var(--surface-cream); border: 1px solid var(--color-hairline); border-radius: 14px; padding: 10px 24px; box-shadow: var(--shadow-soft); }
.bud-entity__title { flex: none; display: flex; align-items: center; gap: 14px; font-family: var(--font-sans); font-weight: 800; font-size: 15px; letter-spacing: .03em; text-transform: uppercase; line-height: 1.15; color: var(--color-navy); }
.bud-entity__items { flex: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bud-entity__items--three { grid-template-columns: repeat(3, 1fr); }
.ent { text-align: center; }
.ent .elbl { font-family: var(--font-sans); font-weight: 800; font-size: 13px; letter-spacing: .03em; color: var(--c); }
.ent .eamt { font-family: var(--font-serif); font-weight: 700; font-size: 24px; line-height: 1.15; color: var(--color-navy); margin: 2px 0 5px; }
.ent .epct { display: inline-block; background: var(--c); color: #fff; font-family: var(--font-sans); font-weight: 700; font-size: 12.5px; padding: 3px 14px; border-radius: 999px; }

.slide11--three-col .bud-chevrons,
.slide11--three-col .bud-timeline,
.slide11--three-col .bud-cards,
.slide11--three-col .vote-lift-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.slide11--three-col .bud-cards {
  flex: 0 0 auto;
  align-items: stretch;
}

.slide11--three-col .bcard {
  min-height: 228px;
  padding: 14px 22px 15px;
}

.slide11--three-col .bcard__amt {
  font-size: 40px;
}

.slide11--three-col .bcard__head {
  font-size: 28px;
}

.slide11--three-col .bcard__desc {
  font-size: 15.4px;
}

.slide11--three-col .vote-lift-card {
  grid-column: 3 / 4;
  gap: 14px;
}

.slide11--three-col .vote-lift-card.vote-lift-card--c3 {
  grid-column: 2 / 3;
}

.slide11--three-col .vote-lift-card:not(.vote-lift-card--c3) {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
}

.slide11--three-col .vote-lift-card p {
  flex: none;
  max-width: none;
  font-size: 10.6px;
}
