/* ========================================================================
   pitch-deck.css — page-unique styles for the RetirePlusPlus $30M Series B
   meeting deck.

   Phase-1 page CSS (owner: P2 pitch-deck). Consumes the §1 SEMANTIC tokens
   from vc-tokens.css and the shared components in vc-components.css /
   vc-b2b2c.css / vc-charts.css / vc-utilities.css. There are NO :root palette
   blocks and NO [data-theme] override blocks here — those live ONCE in
   vc-tokens.css (vc-aliases.css preserves any legacy --vc-*/--rpp-* names so
   nothing breaks). NO raw hex values.

   CSP (MASTER BUILD SPEC §4, FIX F11): this file owns ALL pitch-deck slide +
   chrome styling that pitch-deck-nav.js previously injected via a runtime
   <style> element (.pitch-slide, the slideIn keyframe, .pd-counter, .pd-nav,
   .pd-nav-btn, .pd-progress*). The JS now only toggles classes/text and sets
   the one sanctioned dynamic style (the progress-bar `--progress` width var,
   consumed below).
   ======================================================================== */

/* ------------------------------------------------------------------------
   Deck shell — full-viewport, one slide visible at a time (presentation
   mode, distinct from the scrolling document pages).
   ------------------------------------------------------------------------ */
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg-canvas);
  color: var(--text-primary);
  font-family: var(--font-ui);
  /* presentation: the active slide owns the scroll; body never scrolls */
  overflow: hidden;
}

/* ------------------------------------------------------------------------
   Slide base + active toggle + entrance (was injected by pitch-deck-nav.js).
   Each slide is a full-height flex column, vertically centred. Only the
   .is-active slide is displayed.
   ------------------------------------------------------------------------ */
.pitch-slide {
  display: none;
  min-height: 100vh;
  box-sizing: border-box;
  padding: calc(var(--header-height) + var(--space-10)) var(--gutter) var(--space-16);
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;            /* tall slides scroll internally */
  outline: none;               /* focus handled by the live-region announce */
}
.pitch-slide.is-active {
  display: flex;
  animation: pd-slide-in var(--dur-base) var(--ease-standard);
}
@keyframes pd-slide-in {
  from { opacity: 0; transform: translateX(1.25rem); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Constrain slide content to a readable presentation width, centred. */
.slide-content {
  width: 100%;
  max-width: var(--slide-max);
  margin: 0 auto;
}
.slide-content > .section-label { margin-bottom: var(--space-4); }

/* Slide headings — display face, presentation scale. */
.pitch-slide h1 {
  font-family: var(--font-display);
  font-size: var(--fs-6xl);
  font-weight: 700;
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  color: var(--text-primary);
  margin: 0 0 var(--space-5);
}
.pitch-slide h2 {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  color: var(--text-primary);
  margin: 0 0 var(--space-4);
}
.pitch-slide h3 {
  font-family: var(--font-data);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 var(--space-2);
}
.pitch-slide .slide-lead {
  font-size: var(--fs-xl);
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 48rem;
  margin: 0 0 var(--space-6);
}
.pitch-slide .slide-divider {
  width: 4rem;
  height: 0.1875rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--grad-accent-line);
  margin: 0 0 var(--space-6);
}

/* Two-column split used on several slides (problem two-sided, double-fit). */
.pd-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin: var(--space-6) 0;
}
@media (min-width: 48rem) {
  .pd-split { grid-template-columns: 1fr 1fr; }
}

/* A bordered "panel" card used for grouped content inside slides. */
.pd-panel {
  background: var(--bg-surface);
  border: 0.0625rem solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.pd-panel__eyebrow {
  font-family: var(--font-data);
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--accent-primary);
  margin: 0 0 var(--space-2);
}
.pd-panel--institution .pd-panel__eyebrow { color: var(--accent-partner); }
.pd-panel--member .pd-panel__eyebrow { color: var(--accent-secondary); }
.pd-panel h3 { margin-bottom: var(--space-3); }
.pd-panel p { color: var(--text-secondary); line-height: var(--lh-body); margin: 0 0 var(--space-3); }
.pd-panel p:last-child { margin-bottom: 0; }

/* Slide bullet list (semantic <ul>). */
.pd-list {
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}
.pd-list li {
  position: relative;
  padding-left: var(--space-6);
  color: var(--text-secondary);
  line-height: var(--lh-body);
}
.pd-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: var(--radius-xs);
  background: var(--accent-primary);
}
.pd-list li strong { color: var(--text-primary); }

/* Compact stat row (Why-now etc.) — tabular figures. */
.pd-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8) var(--space-12);
  justify-content: center;
  margin: var(--space-6) 0;
}
.pd-stat { text-align: center; min-width: 8rem; }
.pd-stat__value {
  font-family: var(--font-data);
  font-size: var(--fs-5xl);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
  color: var(--accent-primary);
}
.pd-stat__label {
  font-family: var(--font-data);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-top: var(--space-1);
}

/* "Illustrative — for discussion" note (from confidential.notice / _meta). */
.pd-illustrative {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  font-family: var(--font-data);
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-partner);
  background: color-mix(in srgb, var(--accent-partner) 14%, transparent);
}
.pd-illustrative::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent-partner);
  flex-shrink: 0;
}

/* Footnote / supporting-differentiator footer line under a slide. */
.pd-footnote {
  margin-top: var(--space-5);
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ------------------------------------------------------------------------
   Cover slide + Ask slide — brand-gradient full-bleed panels.
   ------------------------------------------------------------------------ */
.slide-cover,
.slide-ask {
  background: var(--grad-hero);
  color: var(--text-on-brand);
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
[data-theme="dark"] .slide-cover,
[data-theme="dark"] .slide-ask { background: var(--grad-hero-dark); }
.slide-cover::before,
.slide-ask::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-glow-ai);
  z-index: -1;
  pointer-events: none;
}
.slide-cover h1,
.slide-ask h1 { color: var(--text-on-brand); }
.slide-cover .slide-divider,
.slide-ask .slide-divider { margin-left: auto; margin-right: auto; }

.pd-cover__eyebrow {
  font-family: var(--font-data);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  color: var(--text-on-brand);
  margin: 0 0 var(--space-4);
}
.pd-cover__tagline {
  font-family: var(--font-ui);
  font-size: var(--fs-xl);
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-on-brand-dim);
  max-width: 42rem;
  margin: 0 auto var(--space-6);
}
.pd-cover__raise {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 0.0625rem solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(0.5rem);
  -webkit-backdrop-filter: blur(0.5rem);
  font-family: var(--font-data);
  font-size: var(--fs-lg);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text-on-brand);
}
.pd-cover__raise-sep {
  width: 0.0625rem;
  height: 1.25rem;
  background: rgba(255, 255, 255, 0.32);
}
.pd-cover__confidential {
  font-family: var(--font-data);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-on-brand-dim);
  margin-top: var(--space-12);
}

/* On-brand panels reuse glassy cards (used inside cover/ask). */
.pd-glass-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-6);
}
.pd-glass {
  background: rgba(255, 255, 255, 0.08);
  border: 0.0625rem solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
  min-width: 9rem;
  text-align: center;
}
.pd-glass__value {
  font-family: var(--font-data);
  font-size: var(--fs-2xl);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--text-on-brand);
  line-height: 1.1;
}
.pd-glass__label {
  font-family: var(--font-data);
  font-size: var(--fs-2xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-on-brand-dim);
  margin-top: var(--space-1);
}

/* Ask slide use-of-funds chips (bound from financials.useOfFunds). */
.pd-ask__funds {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin: var(--space-6) 0;
}
.pd-ask__fund {
  background: rgba(255, 255, 255, 0.08);
  border: 0.0625rem solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  min-width: 10rem;
  text-align: left;
}
.pd-ask__fund-pct {
  font-family: var(--font-data);
  font-size: var(--fs-2xl);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--text-on-brand);
}
.pd-ask__fund-label {
  font-family: var(--font-data);
  font-size: var(--fs-sm);
  color: var(--text-on-brand-dim);
  line-height: 1.4;
}
.pd-ask__contact {
  margin-top: var(--space-8);
  font-family: var(--font-data);
  font-size: var(--fs-lg);
  color: var(--text-on-brand-dim);
}
.pd-ask__contact a { color: var(--text-on-brand); text-decoration: none; }
.pd-ask__contact a:hover { text-decoration: underline; }

/* Cap-table teaser on the Ask slide: light dilution legend on the gradient. */
.pd-ask .dilution-bar { border-color: rgba(255, 255, 255, 0.22); }
.pd-ask .dilution-row__label,
.pd-ask .dilution-legend li { color: var(--text-on-brand-dim); }

/* Legend swatch colours — mirror the .dilution-seg--* segment backgrounds so
   the legend (which carries the meaning) matches the bar. Applied by JS via
   className only (CSP: no inline background). */
.pd-swatch--founders { background: var(--accent-primary); }
.pd-swatch--seriesb  { background: var(--accent-secondary); }
.pd-swatch--seriesa  { background: var(--accent-tertiary); }
.pd-swatch--seed     { background: var(--accent-partner); }
.pd-swatch--esop     { background: var(--status-info); }
.pd-swatch--advisors { background: var(--text-muted); }
.pd-swatch--other    { background: var(--border-strong); }

/* ------------------------------------------------------------------------
   Platform / product architecture chips (no emoji — token-tinted tiles).
   ------------------------------------------------------------------------ */
.pd-arch {
  background: var(--bg-surface);
  border: 0.0625rem solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin: var(--space-5) 0;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.pd-arch__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}
@media (min-width: 48rem) {
  .pd-arch__row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.pd-arch__chip {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  justify-content: center;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  font-family: var(--font-data);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-surface-2);
  border: 0.0625rem solid var(--border-subtle);
}
.pd-arch__chip .pd-arch__icon { color: var(--accent-primary); flex-shrink: 0; }
.pd-arch__chip svg { width: 1.125rem; height: 1.125rem; fill: currentColor; }
.pd-arch__arrow {
  display: flex;
  justify-content: center;
  margin: var(--space-3) 0;
  color: var(--text-muted);
}
.pd-arch__arrow svg { width: 1.25rem; height: 1.25rem; fill: currentColor; }
.pd-arch__engine {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0 auto;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-pill);
  background: var(--grad-ai);
  color: var(--text-on-brand);
  font-family: var(--font-data);
  font-weight: 700;
  font-size: var(--fs-base);
}
.pd-arch__engine svg { width: 1.25rem; height: 1.25rem; fill: currentColor; }
.pd-arch__surfaces {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-top: var(--space-4);
}
.pd-arch__surface {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 0.0625rem solid var(--border-subtle);
  font-family: var(--font-data);
  font-size: var(--fs-xs);
  color: var(--text-secondary);
}

/* ------------------------------------------------------------------------
   "Why CAC collapses" — D2C vs B2B2C contrast pair.
   ------------------------------------------------------------------------ */
.pd-cac {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin: var(--space-5) 0;
}
@media (min-width: 40rem) {
  .pd-cac { grid-template-columns: 1fr auto 1fr; align-items: center; }
}
.pd-cac__card {
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  border: 0.0625rem solid var(--border-subtle);
}
.pd-cac__card--d2c { background: var(--bg-surface-2); }
.pd-cac__card--b2b2c {
  background: color-mix(in srgb, var(--accent-secondary) 12%, var(--bg-surface));
  border-color: color-mix(in srgb, var(--accent-secondary) 40%, transparent);
}
.pd-cac__label {
  font-family: var(--font-data);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.pd-cac__card--b2b2c .pd-cac__label { color: var(--accent-secondary); }
.pd-cac__value {
  font-family: var(--font-data);
  font-size: var(--fs-4xl);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--text-primary);
  margin: var(--space-1) 0;
}
.pd-cac__sub { font-size: var(--fs-sm); color: var(--text-secondary); }
.pd-cac__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--accent-secondary);
}
.pd-cac__arrow svg { width: 2rem; height: 1rem; fill: currentColor; }
@media (max-width: 40rem) {
  .pd-cac__arrow { transform: rotate(90deg); }
}

/* ------------------------------------------------------------------------
   Strategic double-fit benefit grid + moat layers + partner tiers.
   ------------------------------------------------------------------------ */
.pd-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: var(--space-4);
  margin: var(--space-5) 0;
}
.pd-benefit {
  background: var(--bg-surface);
  border: 0.0625rem solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}
.pd-benefit h3 {
  font-size: var(--fs-base);
  margin-bottom: var(--space-1);
}
.pd-benefit p { font-size: var(--fs-sm); color: var(--text-secondary); margin: 0; line-height: 1.5; }
.pd-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  color: var(--text-on-brand);
  background: var(--accent-primary);
}
.pd-benefit__icon svg { width: 1.25rem; height: 1.25rem; fill: currentColor; }
.pd-benefit:nth-child(6n+2) .pd-benefit__icon { background: var(--accent-secondary); }
.pd-benefit:nth-child(6n+3) .pd-benefit__icon { background: var(--accent-tertiary); }
.pd-benefit:nth-child(6n+4) .pd-benefit__icon { background: var(--accent-partner); }
.pd-benefit:nth-child(6n+5) .pd-benefit__icon { background: var(--status-info); }
.pd-benefit:nth-child(6n+6) .pd-benefit__icon { background: var(--accent-secondary); }

/* Moat layers — numbered stack. */
.pd-moat {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-5) 0;
  counter-reset: moat;
}
.pd-moat__item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4) var(--space-5);
  background: var(--bg-surface);
  border: 0.0625rem solid var(--border-subtle);
  border-radius: var(--radius-md);
}
.pd-moat__item::before {
  counter-increment: moat;
  content: counter(moat);
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-data);
  font-size: var(--fs-sm);
  font-weight: 800;
  color: var(--text-on-brand);
  background: var(--accent-primary);
}
.pd-moat__item h3 { font-size: var(--fs-base); margin-bottom: 0.125rem; }
.pd-moat__item p { font-size: var(--fs-sm); color: var(--text-secondary); margin: 0; line-height: 1.5; }

/* Flywheel copy chip. */
.pd-flywheel {
  margin-top: var(--space-5);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--accent-tertiary) 10%, var(--bg-surface));
  border: 0.0625rem solid color-mix(in srgb, var(--accent-tertiary) 30%, transparent);
  font-family: var(--font-data);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
}

/* Partner tiers (segments) — tier badge + segment copy. */
.pd-tiers { display: grid; gap: var(--space-3); margin: var(--space-5) 0; }
.pd-tier {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-4) var(--space-5);
  background: var(--bg-surface);
  border: 0.0625rem solid var(--border-subtle);
  border-radius: var(--radius-md);
}
.pd-tier__badge {
  align-self: start;
  white-space: nowrap;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  font-family: var(--font-data);
  font-size: var(--fs-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-on-brand);
  background: var(--accent-partner);
}
.pd-tier__seg { font-family: var(--font-data); font-weight: 700; color: var(--text-primary); }
.pd-tier__why { font-size: var(--fs-sm); color: var(--text-secondary); margin-top: 0.125rem; }

/* Pilot funnel (pilot -> rollout motion) — horizontal step chips. */
.pd-funnel {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-5) 0;
  list-style: none;
  padding: 0;
  counter-reset: funnel;
}
.pd-funnel li {
  flex: 1 1 9rem;
  position: relative;
  padding: var(--space-4);
  background: var(--bg-surface);
  border: 0.0625rem solid var(--border-subtle);
  border-radius: var(--radius-md);
}
.pd-funnel li::before {
  counter-increment: funnel;
  content: counter(funnel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: var(--space-2);
  border-radius: 50%;
  font-family: var(--font-data);
  font-size: var(--fs-xs);
  font-weight: 800;
  color: var(--text-on-brand);
  background: var(--accent-primary);
}
.pd-funnel__stage { font-family: var(--font-data); font-weight: 700; font-size: var(--fs-sm); color: var(--text-primary); }
.pd-funnel__detail { font-size: var(--fs-xs); color: var(--text-secondary); margin-top: var(--space-1); line-height: 1.4; }

/* Launch-ready proof checklist. */
.pd-proof { display: grid; gap: var(--space-3); margin: var(--space-5) 0; list-style: none; padding: 0; }
.pd-proof li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding: var(--space-3) var(--space-4);
  background: var(--bg-surface);
  border: 0.0625rem solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  line-height: 1.5;
}
.pd-proof li .pd-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  color: var(--text-on-brand);
  background: var(--accent-secondary);
}
.pd-proof li .pd-check svg { width: 0.875rem; height: 0.875rem; fill: currentColor; }

/* ------------------------------------------------------------------------
   Scenario model headline cards (the three derived figures above the chart).
   Reuses .metric-grid / .metric-card from vc-components; nothing extra needed
   except a tighter top margin in the slide context.
   ------------------------------------------------------------------------ */
.pd-scenario .metric-grid { margin-top: var(--space-4); }
.pd-scenario .scenario-swap { margin-top: var(--space-2); }

/* ------------------------------------------------------------------------
   SLIDE CHROME (was injected by pitch-deck-nav.js — now here, CSP-clean).
   Counter (bottom-right), prev/next/fullscreen (bottom-centre), progress bar
   (bottom edge). Authored in the markup; JS only toggles text/classes and the
   single `--progress` width var.
   ------------------------------------------------------------------------ */
.pd-counter {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  font-family: var(--font-data);
  font-size: var(--fs-sm);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--text-secondary);
  background: color-mix(in srgb, var(--bg-surface) 92%, transparent);
  border: 0.0625rem solid var(--border-subtle);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-md);
  backdrop-filter: blur(0.25rem);
  -webkit-backdrop-filter: blur(0.25rem);
}

.pd-nav {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  gap: var(--space-2);
}
.pd-nav-btn {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.0625rem solid var(--border-subtle);
  background: color-mix(in srgb, var(--bg-surface) 92%, transparent);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  font-size: var(--fs-lg);
  cursor: pointer;
  backdrop-filter: blur(0.25rem);
  -webkit-backdrop-filter: blur(0.25rem);
  transition: background var(--dur-fast) var(--ease-standard),
              color var(--dur-fast) var(--ease-standard),
              border-color var(--dur-fast) var(--ease-standard);
}
.pd-nav-btn:hover {
  background: var(--accent-primary);
  color: var(--text-on-brand);
  border-color: var(--accent-primary);
}
.pd-nav-btn:focus-visible {
  outline: 0.125rem solid transparent;
  box-shadow: var(--focus-ring);
}
.pd-nav-btn svg { width: 1.25rem; height: 1.25rem; fill: currentColor; }

.pd-progress {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.1875rem;
  z-index: 200;
  background: var(--border-subtle);
}
.pd-progress-bar {
  height: 100%;
  width: var(--progress, 0%);     /* set by pitch-deck-nav.js (sanctioned) */
  background: var(--grad-accent-line);
  transition: width var(--dur-base) var(--ease-standard);
}

/* ------------------------------------------------------------------------
   Responsive — presentation scale steps down on small screens.
   ------------------------------------------------------------------------ */
@media (max-width: 48rem) {
  .pitch-slide { padding: calc(var(--header-height) + var(--space-6)) var(--gutter) var(--space-12); }
  .pitch-slide h1 { font-size: var(--fs-5xl); }
  .pitch-slide h2 { font-size: var(--fs-3xl); }
  .pd-stat__value { font-size: var(--fs-4xl); }
}
@media (max-width: 30rem) {
  .pitch-slide h1 { font-size: var(--fs-4xl); }
  .pd-stat-row { gap: var(--space-5); }
}

/* ------------------------------------------------------------------------
   Reduced motion — drop the slide entrance + progress transition.
   (Global blanket in vc-utilities also applies; this is component-level.)
   ------------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .pitch-slide.is-active { animation: none; }
  .pd-progress-bar { transition: none; }
  .pd-nav-btn { transition: none; }
}

/* ------------------------------------------------------------------------
   Print — every slide on its own page, all chrome hidden. The deck shell's
   one-slide-visible model is overridden so ALL slides print in order.
   (vc-print.css already sets .pitch-slide page-break-after; we make every
   slide visible for print and hide the deck chrome.)
   ------------------------------------------------------------------------ */
@media print {
  html, body { height: auto; overflow: visible; background: #fff; }
  .pitch-slide {
    display: flex !important;
    min-height: auto;
    padding: 1.5rem;
    page-break-after: always;
    page-break-inside: avoid;
    overflow: visible;
  }
  .pitch-slide.is-active { animation: none; }
  .slide-cover, .slide-ask {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .pd-counter, .pd-nav, .pd-progress { display: none !important; }
}
