/* Syndio Research v2 — vertical scroll editorial system */

@font-face {
  font-family: 'Instrument Sans';
  src: url('../fonts/InstrumentSans.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Mono';
  src: url('../fonts/DMMono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Mono';
  src: url('../fonts/DMMono-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Mono';
  src: url('../fonts/DMMono-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ivar Display';
  src: url('../fonts/IvarDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ivar Display';
  src: url('../fonts/IvarDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

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

:root {
  --black: #000000;
  --off-black: #0E0E0E;
  --white: #FFFFFF;
  --cream: #FBFAF5;
  --volt: #EDF91F;
  --amber: #C8922A; /* data visualization only — ungoverned chart line */
  --border-subtle: rgba(251, 250, 245, 0.2);
  --border-light: rgba(0, 0, 0, 0.12);
  --fg: var(--cream);
  --fg-muted: var(--cream);
  --fg-strong: var(--white);
  --surface-border: var(--border-subtle);
  --ivar: 'Ivar Display', Georgia, serif;
  --sans: 'Instrument Sans', Arial, sans-serif;
  /* Geometric CTA arrow (square caps) — replaces unicode → */
  --cta-arrow-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2 8h11.5M9.25 3.75 13.5 8 9.25 12.25' stroke='%23000' stroke-width='1.55' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E");
  /* Geometric close X (square caps) — matches the CTA arrow's style */
  --cta-close-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 3l10 10M13 3 3 13' stroke='%23000' stroke-width='1.55' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E");
  --mono: 'DM Mono', monospace;
  --gutter: clamp(24px, 5vw, 80px);
  --content: min(640px, calc(100% - var(--gutter) * 2));
  --content-wide: min(960px, calc(100% - var(--gutter) * 2));
  --nav-z: 200;
  /* Chapter texture palette — burgundy / wine / magenta */
  --texture-base: #140008;
  --texture-shadow: #1F0012;
  --texture-mid: #5A1032;
  --texture-accent: #98204E;
  --texture-glow: #C42868;
  --texture-scrim: rgba(20, 0, 8, 0.42);
  --texture-scrim-deep: rgba(10, 0, 5, 0.68);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
}

body.v2 {
  font-family: var(--sans);
  background: var(--black);
  color: var(--cream);
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 1.65;
  padding-top: 0;
}

img { display: block; max-width: 100%; }

/* ── Persistent chrome ─────────────────────── */
.v2-chrome {
  position: fixed;
  z-index: var(--nav-z);
  pointer-events: none;
  background: transparent;
}
.v2-chrome > * { pointer-events: auto; }

.v2-header {
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 18px var(--gutter);
  pointer-events: none;
  background: transparent;
}
.v2-header > * { pointer-events: auto; }

.v2-logo {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.v2-logo img {
  height: 14px;
  width: auto;
}
.v2-logo-light { display: block; }
.v2-logo-dark { display: none; }
.v2-header.is-on-light .v2-logo-light { display: none; }
.v2-header.is-on-light .v2-logo-dark { display: block; }
.v2-header.is-on-light .v2-pdf-pill {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.18);
  background: #f7f7f5;
}
.v2-header.is-on-light .v2-pdf-pill:hover {
  color: rgba(0, 0, 0, 0.75);
  border-color: rgba(0, 0, 0, 0.3);
  background: #f0f0ee;
}

/* Vertical section rail — collapsed bars, labels on hover/focus */
.v2-rail {
  position: fixed;
  top: 50%;
  right: max(12px, calc(var(--gutter) * 0.28));
  transform: translateY(-50%);
  z-index: calc(var(--nav-z) + 2);
  pointer-events: none;
}

.v2-rail-panel {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  padding: 8px 6px;
  border-radius: 12px;
  background: transparent;
  transition:
    background 0.22s ease,
    padding 0.22s ease,
    box-shadow 0.22s ease,
    backdrop-filter 0.22s ease;
}

.v2-rail:hover .v2-rail-panel,
.v2-rail:focus-within .v2-rail-panel,
.v2-rail.is-open .v2-rail-panel {
  align-items: stretch;
  gap: 4px;
  padding: 16px 16px;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 12px 40px rgba(0, 0, 0, 0.35);
}

.v2-rail-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  min-height: 8px;
  text-decoration: none;
  color: rgba(251, 250, 245, 0.55);
  border-radius: 6px;
  transition: color 0.18s ease, background 0.18s ease;
}

.v2-rail:hover .v2-rail-item,
.v2-rail:focus-within .v2-rail-item,
.v2-rail.is-open .v2-rail-item {
  justify-content: flex-start;
  gap: 12px;
  min-height: 34px;
  padding: 6px 8px;
}

.v2-rail:hover .v2-rail-item.is-sub,
.v2-rail:focus-within .v2-rail-item.is-sub,
.v2-rail.is-open .v2-rail-item.is-sub {
  padding-left: 22px;
}

.v2-rail:hover .v2-rail-item:hover,
.v2-rail:focus-within .v2-rail-item:hover,
.v2-rail.is-open .v2-rail-item:hover {
  color: rgba(251, 250, 245, 0.92);
  background: rgba(255, 255, 255, 0.05);
}

.v2-rail-bar {
  display: block;
  flex: 0 0 auto;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(251, 250, 245, 0.28);
  transition:
    width 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.v2-rail-item.is-major .v2-rail-bar {
  width: 14px;
}

.v2-rail-item.is-sub .v2-rail-bar {
  width: 8px;
  opacity: 0.75;
}

.v2-rail-item.is-active .v2-rail-bar {
  background: var(--cream);
  box-shadow: 0 0 8px rgba(251, 250, 245, 0.4);
  opacity: 1;
}

.v2-rail-item.is-active.is-major .v2-rail-bar {
  width: 17px;
}

.v2-rail-item.is-active.is-sub .v2-rail-bar {
  width: 11px;
}

.v2-rail-label {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.01em;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, max-width 0.22s ease;
}

.v2-rail:hover .v2-rail-label,
.v2-rail:focus-within .v2-rail-label,
.v2-rail.is-open .v2-rail-label {
  max-width: 280px;
  opacity: 1;
  pointer-events: auto;
}

.v2-rail-item.is-active {
  color: var(--cream);
}

.v2-rail-item.is-sub .v2-rail-label {
  font-size: 13px;
  color: rgba(251, 250, 245, 0.48);
}

.v2-rail-item.is-sub.is-active .v2-rail-label,
.v2-rail:hover .v2-rail-item.is-sub.is-active .v2-rail-label,
.v2-rail:focus-within .v2-rail-item.is-sub.is-active .v2-rail-label,
.v2-rail.is-open .v2-rail-item.is-sub.is-active .v2-rail-label {
  color: var(--cream);
}

/* On light surfaces, muted bars stay readable without a panel */
.v2-rail.is-on-light:not(:hover):not(:focus-within):not(.is-open) .v2-rail-bar {
  background: rgba(0, 0, 0, 0.28);
}

.v2-rail.is-on-light:not(:hover):not(:focus-within):not(.is-open) .v2-rail-item.is-active .v2-rail-bar {
  background: rgba(0, 0, 0, 0.78);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.18);
}

.v2-top-actions {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.v2-audio-player {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(420px, 58vw);
  min-width: 36px;
}

.v2-audio-controls {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.v2-audio-skip {
  display: none;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: rgba(251, 250, 245, 0.82);
  cursor: pointer;
}
.v2-audio-skip svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  display: block;
}
.v2-audio-skip:hover {
  color: rgba(251, 250, 245, 1);
}
.v2-audio-player.is-engaged .v2-audio-skip {
  display: inline-flex;
}

/* Shared / legacy pill (executive brief keeps label inside the button) */
.v2-audio-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 36px;
  width: 36px;
  min-width: 36px;
  max-width: 36px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 250, 245, 0.88);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(251, 250, 245, 0.42);
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease,
    opacity 0.2s ease;
}
.v2-audio-pill:hover {
  color: rgba(251, 250, 245, 1);
  border-color: rgba(251, 250, 245, 0.7);
  background: rgba(0, 0, 0, 0.4);
}
.v2-audio-pill.inactive {
  opacity: 0.85;
}
.v2-audio-pill.inactive .v2-audio-label {
  display: none;
}
.v2-audio-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-audio-icon svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  display: block;
}
.v2-audio-icon-play {
  transform: translateX(-0.75px);
}
.v2-audio-icon-pause {
  display: none;
}
.v2-audio-pill.on .v2-audio-icon-play {
  display: none;
}
.v2-audio-pill.on .v2-audio-icon-pause {
  display: block;
}

.v2-audio-meta {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  min-width: 0;
  flex: 1;
  padding-right: 2px;
}
.v2-audio-player.is-engaged .v2-audio-meta {
  display: flex;
}
.v2-audio-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v2-audio-player .v2-audio-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251, 250, 245, 0.88);
  line-height: 1.2;
  max-width: 220px;
}
.v2-audio-scrub {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.v2-audio-progress {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  min-width: 72px;
  height: 12px;
  border-radius: 999px;
  background: transparent;
  outline: none;
  cursor: pointer;
  margin: 0;
  accent-color: var(--volt, #edf91f);
}
.v2-audio-progress::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 999px;
  background: rgba(251, 250, 245, 0.35);
}
.v2-audio-progress::-moz-range-track {
  height: 3px;
  border-radius: 999px;
  background: rgba(251, 250, 245, 0.35);
  border: none;
}
.v2-audio-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  margin-top: -3.5px;
  border-radius: 50%;
  background: var(--volt, #edf91f);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}
.v2-audio-progress::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--volt, #edf91f);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}
.v2-audio-time {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: rgba(251, 250, 245, 0.7);
  flex-shrink: 0;
  min-width: 2.6em;
  text-align: right;
}
.v2-audio-jump {
  align-self: flex-start;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--volt, #edf91f);
  cursor: pointer;
  text-align: left;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v2-audio-jump:hover {
  text-decoration: underline;
}
.v2-audio-jump[hidden] {
  display: none !important;
}

.v2-header.is-on-light .v2-audio-pill {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.18);
  background: #f7f7f5;
}
.v2-header.is-on-light .v2-audio-pill:hover {
  color: rgba(0, 0, 0, 0.75);
  border-color: rgba(0, 0, 0, 0.3);
  background: #f0f0ee;
}
.v2-header.is-on-light .v2-audio-skip {
  color: rgba(0, 0, 0, 0.55);
}
.v2-header.is-on-light .v2-audio-skip:hover {
  color: rgba(0, 0, 0, 0.85);
}
.v2-header.is-on-light .v2-audio-player .v2-audio-label {
  color: rgba(0, 0, 0, 0.72);
}
.v2-header.is-on-light .v2-audio-progress::-webkit-slider-runnable-track,
.v2-header.is-on-light .v2-audio-progress::-moz-range-track {
  background: rgba(0, 0, 0, 0.22);
}
.v2-header.is-on-light .v2-audio-time {
  color: rgba(0, 0, 0, 0.5);
}
.v2-header.is-on-light .v2-audio-jump {
  color: rgba(0, 0, 0, 0.72);
}

.v2-pdf-pill {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(251, 250, 245, 0.65);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(251, 250, 245, 0.28);
  border-radius: 6px;
  padding: 9px 16px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}
.v2-pdf-pill:hover {
  color: rgba(251, 250, 245, 0.9);
  border-color: rgba(251, 250, 245, 0.45);
  background: rgba(0, 0, 0, 0.4);
}

.v2-header-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3em;
  height: 36px;
  box-sizing: border-box;
  font-family: 'Instrument Sans', var(--sans), Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  color: var(--black);
  background: var(--volt);
  border: none;
  border-radius: 6px;
  padding: 0 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.v2-header-cta::after {
  content: '';
  display: inline-block;
  width: 0.95em;
  height: 0.95em;
  background-color: currentColor;
  -webkit-mask: var(--cta-arrow-mask) center / contain no-repeat;
  mask: var(--cta-arrow-mask) center / contain no-repeat;
}
.v2-header-cta:hover {
  opacity: 0.88;
}

/* ── CTAs ──────────────────────────────────── */
.v2-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  font-family: 'Instrument Sans', var(--sans), Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  color: var(--black);
  background: var(--volt);
  border: none;
  border-radius: 6px;
  padding: 18px 32px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.v2-cta::after {
  content: '';
  display: inline-block;
  width: 0.95em;
  height: 0.95em;
  background-color: currentColor;
  -webkit-mask: var(--cta-arrow-mask) center / contain no-repeat;
  mask: var(--cta-arrow-mask) center / contain no-repeat;
}
.v2-cta:hover {
  opacity: 0.88;
}

.v2-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Sans', var(--sans), Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--white);
  border-radius: 6px;
  padding: 18px 32px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.v2-cta-secondary:hover {
  opacity: 0.85;
}

/* Volt: hero label, scroll cue, critical stats, primary CTA only */
.v2-critical { color: var(--volt); }

/* ── Hero (introduction chapter intro) ─────── */
.v2-hero.v2-chapter-intro {
  background-color: var(--texture-base);
  scroll-margin-top: 0;
  padding-top: clamp(96px, 17vh, 132px);
  padding-bottom: clamp(148px, 22vh, 200px);
}

.v2-hero .v2-chapter-intro-inner {
  margin-top: clamp(-72px, -10vh, -40px);
}

.v2-hero-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--volt);
  margin: 0 0 clamp(20px, 3vh, 32px);
}

.v2-hero-subline {
  font-family: var(--sans);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: rgba(251, 250, 245, 0.82);
  max-width: min(36rem, 88vw);
  margin: clamp(24px, 4vh, 40px) 0 0;
  text-align: center;
}

/* Hero title — two locked lines; second line holds ungoverned + masked swap.
   Slot width is set in JS before fade-in (Hyundai-style fixed mask). */
.v2-hero .v2-chapter-intro-inner {
  width: min(100%, 1320px);
}

.v2-hero .v2-hero-title {
  max-width: min(1320px, 96vw);
}

.v2-hero-title-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.v2-hero-title-prefix,
.v2-hero-title-tail {
  display: block;
  white-space: nowrap;
}

.v2-hero-title-tail {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.28em;
  min-height: 1.45em;
  overflow: visible;
}

.v2-hero-title.is-swap-sizing .v2-hero-title-tail,
.v2-hero-title.is-swap-settling .v2-hero-title-tail {
  transition: width 0.78s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.v2-hero-title-static {
  flex: 0 0 auto;
  line-height: 1.45;
}

.v2-hero-swap {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  height: 1.45em;
  text-align: left;
}

.v2-hero-title.is-swap-sizing .v2-hero-swap,
.v2-hero-title.is-swap-settling .v2-hero-swap {
  transition: width 0.78s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.v2-hero-swap-viewport {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.v2-hero-swap-word {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  white-space: nowrap;
  line-height: 1.45;
  text-align: left;
  opacity: 0;
  transform: translate3d(0, 100%, 0);
  will-change: transform, opacity;
}

.v2-hero-swap-word:first-child {
  position: relative;
}

.v2-hero-swap-word.is-active,
.v2-hero-swap-word.is-enter {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  /* Duration is set inline per-step for the crescendo */
  transition-property: transform, opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.v2-hero-swap-word.is-exit {
  opacity: 0;
  transform: translate3d(0, -100%, 0);
  transition-property: transform, opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.v2-hero-swap-word.is-final {
  position: relative;
  transform: none;
  transition: none;
}

/* Once settled, drop the mask so final glyphs never clip */
.v2-hero-title.is-swap-settled .v2-hero-swap,
.v2-hero-title.is-swap-settled .v2-hero-swap-viewport {
  overflow: visible;
}

@media (max-width: 720px) {
  .v2-hero-title-prefix,
  .v2-hero-title-tail {
    white-space: normal;
  }

  .v2-hero-title-tail {
    flex-wrap: wrap;
    height: auto;
    row-gap: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-hero-title.is-swap-sizing .v2-hero-title-tail,
  .v2-hero-title.is-swap-settling .v2-hero-title-tail,
  .v2-hero-title.is-swap-sizing .v2-hero-swap,
  .v2-hero-title.is-swap-settling .v2-hero-swap,
  .v2-hero-swap-word {
    transition: none !important;
  }
}

.v2-hero .v2-scroll-indicator {
  position: absolute;
  bottom: clamp(32px, 5vh, 48px);
  left: 50%;
  z-index: 2;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--volt), transparent);
  animation: v2-scroll-pulse 2s ease-in-out infinite;
}

@keyframes v2-scroll-pulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) scaleY(0.7); }
  50% { opacity: 1; transform: translateX(-50%) scaleY(1); }
}

[data-hero-load]:not(.v2-scroll-indicator) {
  opacity: 0;
  transform: translateY(28px);
}

[data-hero-load].v2-scroll-indicator {
  opacity: 0;
  transform: translateX(-50%);
}

@media (prefers-reduced-motion: reduce) {
  [data-hero-load] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .v2-hero .v2-scroll-indicator { animation: none; opacity: 0.6; }
}

/* ── Sections base ─────────────────────────── */
.v2-section {
  position: relative;
  padding: clamp(56px, 9vh, 104px) var(--gutter) clamp(36px, 5vh, 64px);
  width: 100%;
}
.v2-section--black { background: var(--black); }
.v2-section--off-black { background: var(--off-black); }
.v2-section--white {
  background: var(--white);
  --fg: var(--black);
  --fg-muted: rgba(0, 0, 0, 0.72);
  --fg-strong: var(--black);
  --surface-border: var(--border-light);
}
.v2-section--cream {
  background: var(--cream);
  --fg: var(--black);
  --fg-muted: rgba(0, 0, 0, 0.72);
  --fg-strong: var(--black);
  --surface-border: var(--border-light);
}
.v2-split[data-surface="light"] {
  background: var(--white);
  --fg: var(--black);
  --fg-muted: rgba(0, 0, 0, 0.72);
  --fg-strong: var(--black);
  --surface-border: var(--border-light);
}

.v2-texture {
  background-color: var(--texture-base);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.v2-texture-a {
  background-image:
    linear-gradient(125deg, var(--texture-scrim) 0%, var(--texture-scrim-deep) 100%),
    url('../textures/chapter-texture.png');
}
.v2-texture-b {
  position: relative;
  isolation: isolate;
  background-color: var(--black);
  background-image: url('textures/dims-texture.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.v2-texture-b::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 0;
}
.v2-texture-b > * {
  position: relative;
  z-index: 1;
}
.v2-texture-fade::after {
  content: '';
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(to bottom, transparent, var(--texture-base));
  pointer-events: none;
}

/* ── Chapter stack — sticky intro, body scrolls over ── */
.v2-chapter-stack {
  position: relative;
  width: 100%;
}

.v2-chapter-intro {
  position: sticky;
  top: 0;
  min-height: 100svh;
  height: 100svh;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(96px, 12vh, 140px) var(--gutter);
  box-sizing: border-box;
  scroll-margin-top: 0;
  text-align: center;
  z-index: 1;
  background-color: var(--texture-base);
  background-image:
    linear-gradient(var(--texture-scrim), var(--texture-scrim-deep)),
    url('../textures/chapter-texture.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Light/dark content after sticky intros must paint above them for chrome theme + readability */
.v2-chapter-intro ~ .v2-section,
.v2-chapter-intro ~ .v2-callout,
.v2-chapter-intro ~ .v2-regulatory-grid,
.v2-chapter-intro ~ .v2-persona-grid,
.v2-chapter-intro ~ .v2-focus-figure,
.v2-chapter-intro ~ .v2-video-moment,
.v2-chapter-intro ~ .v2-full-bleed-dark,
.v2-chapter-intro ~ .v2-recoverable-stat,
.v2-chapter-intro ~ .v2-closing-stack {
  position: relative;
  z-index: 2;
}

.v2-chapter-intro.is-covered {
  pointer-events: none;
}

.v2-chapter-intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: min(100%, 1100px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  will-change: transform, opacity;
}

.v2-chapter-body {
  position: relative;
  z-index: 2;
  margin-top: -100svh;
  padding-top: 100svh;
}

.v2-chapter-body > * {
  position: relative;
  z-index: 1;
}

.v2-chapter-body > .v2-persona-grid {
  background: var(--black);
}

.v2-chapter-body > .v2-image-lead {
  background: var(--black);
  margin-bottom: 0;
}

/* Tighter vertical rhythm — avoid ~100px stacked gaps between modules */
.v2-chapter-body > .v2-section {
  padding: clamp(48px, 8vh, 88px) var(--gutter) clamp(28px, 4vh, 48px);
}

.v2-chapter-body > .v2-section + .v2-section,
.v2-chapter-body > .v2-beat-stage + .v2-section,
.v2-chapter-body > .v2-stat-interrupt + .v2-section,
.v2-chapter-body > .v2-callout + .v2-section,
.v2-chapter-body > .v2-image-lead + .v2-section,
.v2-chapter-body > .v2-chart-pin + .v2-section,
.v2-chapter-body > .v2-section + .v2-beat-stage,
.v2-chapter-body > .v2-section + .v2-stat-interrupt,
.v2-chapter-body > .v2-stat-interrupt + .v2-stat-interrupt,
.v2-chapter-body > .v2-stat-interrupt + .v2-beat-stage,
.v2-chapter-body > .v2-beat-stage + .v2-stat-interrupt {
  padding-top: clamp(24px, 4vh, 40px);
}

.v2-chapter-body > .v2-beat-stage:not(.v2-beat-stage--stat) {
  padding: clamp(28px, 4vh, 44px) var(--gutter) clamp(20px, 3vh, 32px);
  min-height: auto;
}

.v2-chapter-body > .v2-stat-interrupt {
  padding: clamp(32px, 5vh, 48px) var(--gutter);
  min-height: 58vh;
}

/* Precedent callouts — white stage behind green cards */
.v2-chapter-body > .v2-callout {
  position: relative;
  z-index: 3;
  padding: clamp(48px, 8vh, 88px) var(--gutter);
  margin: 0;
}

.v2-chapter-body > .v2-section + .v2-callout,
.v2-chapter-body > .v2-persona-grid + .v2-callout,
.v2-chapter-body > .v2-beat-stage + .v2-callout,
.v2-chapter-body > .v2-chart-pin + .v2-callout,
.v2-chapter-body > .v2-stat-interrupt + .v2-callout,
.v2-chapter-body > .v2-video-moment + .v2-callout {
  margin-top: 0;
}

/* Part II — chapter intro into burgundy lede (gradient wash, no texture photo) */
#part-2 + #part-2-lede {
  padding-top: clamp(96px, 16vh, 160px);
}

.v2-section--texture-wash,
#part-2-lede {
  --fg: var(--cream);
  --fg-muted: rgba(251, 250, 245, 0.82);
  --fg-strong: var(--white);
  background-color: var(--texture-base);
  background-image:
    radial-gradient(ellipse 90% 70% at 12% -10%, rgba(196, 40, 104, 0.45), transparent 55%),
    radial-gradient(ellipse 75% 55% at 100% 110%, rgba(152, 32, 78, 0.5), transparent 58%),
    linear-gradient(145deg, #2a0618 0%, var(--texture-base) 42%, #0c0006 100%);
  color: var(--cream);
  padding-bottom: clamp(120px, 20vh, 200px);
  min-height: clamp(560px, 78vh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#part-2-lede .v2-beat-title {
  font-size: clamp(34px, 4.8vw, 48px);
  line-height: 1.08;
  margin-bottom: clamp(28px, 4vh, 40px);
}

#part-2-lede .v2-prose p {
  color: rgba(251, 250, 245, 0.82);
}

/* Part II lede → next beat: tighten trailing pad */
#part-2-lede:has(+ #john-compounding-video),
#part-2-lede:has(+ #part-2-mechanisms) {
  padding-bottom: clamp(40px, 6vh, 64px);
}

#part-2-body > .v2-stat-interrupt,
#part-2-offer-visuals > .v2-stat-interrupt {
  min-height: 58vh;
  margin-top: 0;
  margin-bottom: 0;
}

#part-2-offer-visuals > #beat-p2-c.v2-exec-42k-pin {
  margin-top: 0;
  /* Clear fixed chrome; keep content inside one viewport */
  padding-top: clamp(72px, 11vh, 104px);
  padding-bottom: clamp(40px, 6vh, 64px);
}

#part-2-body {
  padding-bottom: 0;
}

#part-2-body > .v2-body-col--narrow {
  padding-bottom: clamp(72px, 12vh, 140px);
}

/* Full-bleed black bands inside white Part II (break out of section gutters) */
.v2-full-bleed-dark {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--black);
  box-sizing: border-box;
}

/* Adjacent dark bands stack flush — no white seam between them */
.v2-full-bleed-dark + .v2-full-bleed-dark,
.v2-capital-spread + .v2-full-bleed-dark,
.v2-section.v2-governed-worth + .v2-full-bleed-dark {
  margin-top: 0;
}

/* Part I prose + asymmetry table share one white surface (no sticky-texture seam) */
#part-1-body {
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}

#part-1-body .v2-exec-summary-cols {
  margin-bottom: clamp(40px, 6vh, 64px);
}

#part-1-body #beat-p1-a.v2-asymmetry {
  padding-top: clamp(40px, 6vh, 64px);
  padding-bottom: clamp(72px, 10vh, 112px);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

#part-1-body:has(+ .v2-capital-spread) {
  padding-bottom: 0;
}

.v2-section.v2-governed-worth:has(+ .v2-recoverable-stat) {
  padding-bottom: clamp(80px, 12vh, 140px);
}

/* Beat remediations / other interrupts: beat .v2-stat-interrupt { width:100% } */
#part-2-mechanisms > .v2-stat-interrupt.v2-full-bleed-dark,
#part-2-mechanisms > .v2-cost-story-band.v2-full-bleed-dark,
#part-2-underpay-visuals.v2-full-bleed-dark {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  left: auto;
  right: auto;
}

#part-2-underpay-visuals {
  margin-top: clamp(48px, 8vh, 96px);
  margin-bottom: clamp(72px, 10vh, 120px);
  min-height: 100svh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: clamp(72px, 11vh, 120px) var(--gutter) clamp(48px, 7vh, 80px);
  border-top: 1px solid rgba(251, 250, 245, 0.12);
  box-sizing: border-box;
}

#part-2-body + #part-2-multiply-bridge {
  padding-top: clamp(56px, 8vh, 88px);
  padding-bottom: clamp(24px, 4vh, 40px);
}

#part-2-multiply-bridge + #part-2-underpay-visuals {
  margin-top: 0;
}

#part-2-multiply-bridge .v2-pull-quote,
#part-2-multiply-bridge .v2-pull-quote:last-child {
  margin-bottom: clamp(36px, 5.5vh, 64px);
}

#part-2-body:has(+ #part-2-multiply-bridge) #part-2-offer-visuals {
  margin-bottom: 0;
  padding-bottom: 0;
}

#part-2-underpay-visuals + #part-2-mech2-prose .v2-mechanism-title {
  margin-top: clamp(16px, 3vh, 32px);
}

/* Mechanism section titles — Ivar beat style + space + hairline */
.v2-mechanism-title {
  font-family: var(--ivar);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.12;
  max-width: none;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1em;
}

#part-2-mechanisms .v2-mechanism-title {
  margin-top: clamp(16px, 3vh, 32px);
  padding-top: clamp(40px, 6vh, 64px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* John video → Mechanism 1: zero seam (margin-collapse + padding overrides) */
#john-compounding-video {
  margin-bottom: 0;
}

.v2-chapter-body > .v2-video-moment {
  z-index: 2;
}

.v2-chapter-body > #part-2-mechanisms {
  z-index: 3;
  background: #fff;
}

#john-compounding-video + #part-2-mechanisms,
#john-compounding-video + #part-2-mechanisms.part-2-after-chart,
#john-compounding-video + #part-2-mechanisms.v2-section {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: clamp(72px, 12vh, 120px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  background: #fff;
  border-top: 1px solid #fff;
  /* Keep visible — overflow-x:clip forces overflow-y:auto and breaks GSAP pins */
  overflow: visible;
}

#john-compounding-video + #part-2-mechanisms #part-2-body {
  padding-top: clamp(40px, 6vh, 64px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

#john-compounding-video + #part-2-mechanisms #part-2-body .v2-body-col--narrow > #audio-mech1.v2-mechanism-title,
#part-2-lede + #part-2-mechanisms #part-2-body .v2-body-col--narrow > #audio-mech1.v2-mechanism-title {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

#part-2-lede + #part-2-mechanisms.part-2-after-chart {
  padding-top: clamp(40px, 6vh, 64px);
}

#part-2-mechanisms #part-2-body .v2-body-col--narrow > #audio-mech1.v2-mechanism-title {
  margin-top: clamp(16px, 3vh, 32px);
  padding-top: clamp(40px, 6vh, 64px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

#part-2-mechanisms.part-2-after-chart {
  padding-top: 0;
}

/* Offer reversal — two-column (PDF p.15) */
.v2-offer-reversal-inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  box-sizing: border-box;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  min-height: 0;
}

.v2-offer-reversal-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  width: 100%;
}

.v2-offer-reversal-copy {
  min-width: 0;
  max-width: 640px;
  color: var(--white);
}

.v2-offer-reversal-title {
  margin: 0 0 clamp(16px, 2.5vh, 24px);
  font-family: var(--ivar);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: none;
}

.v2-offer-reversal-copy .v2-reveal-cadence {
  color: rgba(251, 250, 245, 0.82);
}

.v2-offer-reversal-copy .v2-underpay-source {
  margin-top: clamp(18px, 2.5vh, 28px);
  margin-inline: 0;
  text-align: left;
  max-width: none;
}

.v2-offer-reversal-graphic {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.v2-offer-reversal-graphic .v2-reversal-chart-frame {
  width: 100%;
  max-width: none;
  margin: 0;
  display: block;
  position: relative;
  background: #000;
  aspect-ratio: 644 / 689;
}

.v2-offer-reversal-graphic .v2-reversal-chart-frame canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

#part-2-offer-visuals {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  overflow: visible;
  position: relative;
  z-index: 4;
}

#part-2-mechanisms > .v2-beat-stage--inline {
  padding-top: clamp(40px, 6vh, 64px);
}

.v2-section > .v2-beat-stage--inline:first-child {
  padding-top: 0;
}

.v2-section > .v2-beat-stage--inline {
  padding-left: 0;
  padding-right: 0;
  padding-top: clamp(8px, 2vh, 16px);
  padding-bottom: clamp(24px, 4vh, 40px);
}

.v2-section > .v2-beat-stage--inline:last-child {
  padding-bottom: 0;
}

.v2-chapter-intro-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 clamp(28px, 5vh, 48px);
}

.v2-chapter-intro-headlines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.v2-chapter-intro-line {
  font-family: var(--ivar);
  font-size: clamp(56px, 11vw, 120px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--white);
  text-align: center;
  width: 100%;
  max-width: min(1100px, 92vw);
  margin: 0;
}

.v2-chapter-intro.is-headlines-pending .v2-chapter-intro-line {
  opacity: 0;
  transform: translateY(18px);
}

.v2-chapter-intro.is-headlines-visible .v2-chapter-intro-line {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.v2-chapter-intro.is-headlines-visible .v2-chapter-intro-line:nth-child(2) {
  transition-delay: 0.12s;
}

#part-4 .v2-chapter-intro-inner {
  width: min(100%, 880px);
}

#part-4 .v2-chapter-intro-line {
  max-width: min(880px, 86vw);
}

#part-5 .v2-chapter-intro-inner {
  width: min(100%, 880px);
  max-width: 880px;
}

#part-5 .v2-chapter-intro-headlines,
#part-5 .v2-chapter-intro-line {
  max-width: min(880px, 86vw);
}

.v2-chapter-intro.is-headlines-visible .v2-chapter-intro-line:nth-child(3) {
  transition-delay: 0.24s;
}

.v2-chapter-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}

.v2-chapter-title {
  font-family: var(--ivar);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 48px;
  text-transform: lowercase;
}
.v2-chapter-title::first-letter { text-transform: uppercase; }

.v2-body-col {
  max-width: var(--content-wide);
  margin-inline: auto;
}
.v2-body-col--narrow {
  max-width: var(--content);
  margin-inline: auto;
}
.v2-body-col p,
.v2-prose p {
  margin-bottom: 1.25em;
  color: var(--fg-muted);
}
.v2-body-col strong,
.v2-prose strong { font-weight: 600; color: var(--fg-strong); }

.v2-subhead {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg-strong);
  margin: 2.5em 0 1em;
  line-height: 1.3;
}
.v2-subhead:first-child { margin-top: 0; }

.v2-outcome-hook {
  margin: 2.5em 0 1em;
}

.v2-outcome-hook-lead,
.v2-outcome-hook-ask {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg-strong);
  line-height: 1.35;
  margin: 0;
}

.v2-rule {
  width: 80px;
  height: 1px;
  background: var(--surface-border);
  margin: 64px auto;
  border: none;
}

/* ── Introduction ─────────────────────────── */
.v2-intro-statement {
  font-family: var(--ivar);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.15;
  text-align: center;
  color: var(--white);
  max-width: 16ch;
  margin: 0 auto 64px;
}
.v2-intro-statement .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.v2-intro-statement.is-visible .word {
  opacity: 1;
  transform: translateY(0);
}

/* ── Part I half-bleed layout ──────────────── */
.v2-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 80vh;
  padding: 0;
  width: 100%;
  background: var(--black);
}
.v2-split-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}
.v2-split-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v2-split-body {
  padding: clamp(48px, 8vh, 100px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Part I — viewport-height pin + scroll-reveal text column */
.v2-split-pin {
  width: 100%;
}

.v2-split--viewport {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  align-items: stretch;
  overflow: hidden;
}

.v2-split--viewport .v2-split-image {
  height: 100%;
  min-height: 0;
}

.v2-split--viewport .v2-split-body-scroll {
  overflow: hidden;
  height: 100%;
  min-height: 0;
  padding: clamp(40px, 7vh, 88px) var(--gutter);
  box-sizing: border-box;
}

.v2-split--viewport .v2-split-body {
  padding: 0;
  padding-bottom: clamp(72px, 12vh, 120px);
  justify-content: flex-start;
  will-change: transform;
}

/* Reduced-motion / mobile fallback — show full copy without clip */
.v2-split-pin.is-split-static .v2-split--viewport {
  height: auto;
  min-height: 100svh;
  max-height: none;
  overflow: visible;
}

.v2-split-pin.is-split-static .v2-split-body-scroll {
  overflow: visible;
  height: auto;
}

.v2-split-pin.is-split-static .v2-split-body {
  will-change: auto;
  transform: none;
}

.v2-split-body .v2-beat-stage--split {
  min-height: auto;
  align-items: flex-start;
  background: var(--cream);
  padding: 32px clamp(12px, 2vw, 18px);
  margin: clamp(10px, 2vh, 18px) 0 clamp(14px, 2.5vh, 22px);
  width: 100%;
  box-sizing: border-box;
}

.v2-split-body .v2-beat-stage--split .v2-beat-svg--p1-scale {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
}

#beat-p1-a text,
#beat-p1-a tspan {
  text-anchor: middle;
}

#beat-p1-a .v2-svg-label--p1 {
  font-size: 17px;
  letter-spacing: 0.04em;
}

#beat-p1-a .v2-svg-sub--p1 {
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: -0.01em;
  text-transform: none;
}

.v2-svg-sub--dark {
  fill: rgba(0, 0, 0, 0.78);
}

/* ── Governance asymmetry table (Part I) ───── */
.v2-asymmetry {
  max-width: min(1200px, calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  padding: clamp(56px, 9vh, 96px) 0;
  text-align: center;
}

.v2-asymmetry-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  margin: 0 0 14px;
}

.v2-asymmetry-lede {
  font-family: var(--ivar);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 400;
  line-height: 1.25;
  color: #000;
  max-width: 40ch;
  margin: 0 auto clamp(28px, 4vh, 40px);
}

.v2-asymmetry-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: none;
  border-radius: 0;
  background: transparent;
  text-align: left;
  padding: 4px 0;
}

.v2-asymmetry-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 10px 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.45;
}

.v2-asymmetry-table th,
.v2-asymmetry-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.v2-asymmetry-table thead th {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.72);
  background: rgba(0, 0, 0, 0.045);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px 8px 0 0;
  padding: 16px 16px 14px;
}

.v2-asymmetry-table thead th:nth-child(n+2) {
  white-space: nowrap;
}

.v2-asymmetry-table thead th:first-child {
  background: transparent;
  border-bottom-color: transparent;
}

.v2-asymmetry-table thead th:last-child,
.v2-asymmetry-table tbody td:last-child {
  background: rgba(237, 249, 31, 0.16);
}

.v2-asymmetry-table tbody th {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: #000;
  width: 22%;
  background: transparent;
  border-bottom-color: rgba(0, 0, 0, 0.06);
  padding-left: 4px;
  padding-right: 12px;
}

.v2-asymmetry-table tbody td {
  color: rgba(0, 0, 0, 0.82);
  width: 26%;
  background: rgba(251, 250, 245, 0.95);
}

.v2-asymmetry-table tbody td:last-child {
  color: #000;
  font-weight: 500;
}

.v2-asymmetry-table tbody tr:last-child th {
  border-bottom: none;
}

.v2-asymmetry-table tbody tr:last-child td {
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}

.v2-asymmetry-table thead th:nth-child(n+2),
.v2-asymmetry-table tbody td {
  transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.v2-asymmetry-table:has(tr > :nth-child(2):hover) thead th:nth-child(2),
.v2-asymmetry-table:has(tr > :nth-child(2):hover) tbody td:nth-child(2) {
  background: rgba(0, 0, 0, 0.07);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.v2-asymmetry-table:has(tr > :nth-child(3):hover) thead th:nth-child(3),
.v2-asymmetry-table:has(tr > :nth-child(3):hover) tbody td:nth-child(3) {
  background: rgba(0, 0, 0, 0.07);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.v2-asymmetry-table:has(tr > :nth-child(4):hover) thead th:nth-child(4),
.v2-asymmetry-table:has(tr > :nth-child(4):hover) tbody td:nth-child(4) {
  background: rgba(237, 249, 31, 0.32);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

@media (hover: none) {
  .v2-asymmetry-table thead th:nth-child(n+2),
  .v2-asymmetry-table tbody td {
    transition: none;
  }
}

.v2-asymmetry-note {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
  margin-top: 5px;
  line-height: 1.35;
}

.v2-asymmetry-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.v2-asymmetry-row--key th,
.v2-asymmetry-row--key td {
  border-bottom: none;
  padding-top: 18px;
  padding-bottom: 18px;
}

.v2-asymmetry-row--key td {
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
}

.v2-asymmetry-yes {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.68);
}

.v2-asymmetry-no {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8B2020;
  font-weight: 600;
}

.v2-asymmetry-takeaway {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  text-align: left;
  margin: clamp(40px, 5.5vh, 64px) auto 0;
  max-width: 56rem;
}

.v2-asymmetry-takeaway-title {
  font-family: var(--ivar);
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 400;
  line-height: 1.05;
  color: #000;
  margin: 0;
}

.v2-asymmetry-takeaway-body {
  padding-top: 0.35em;
}

.v2-asymmetry-takeaway-body .v2-asymmetry-takeaway-subhead {
  margin: 0 0 0.75em;
  font-family: var(--sans);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.35;
  color: #000;
}

.v2-asymmetry-takeaway-body p {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(16px, 1.7vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.78);
}

@media (max-width: 800px) {
  .v2-asymmetry-takeaway {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ── Callout cards (Precedent) ─────────────── */
.v2-callout {
  position: relative;
  z-index: 3;
  background: #fff;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(29px, 4.8vh, 53px) var(--gutter);
  box-sizing: border-box;
  border-radius: 0;
}

.v2-callout-inner {
  background: #EAF2E1;
  border-radius: 8px;
  padding: clamp(28px, 4vw, 40px);
  margin: 0 auto;
  width: 100%;
  max-width: var(--content-wide);
  box-sizing: border-box;
}
.v2-callout-tag,
.v2-callout-title,
.v2-callout-body {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.v2-callout-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 12px;
}
.v2-callout-title {
  font-family: var(--sans);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
}
.v2-callout-insight {
  margin: clamp(24px, 3.5vh, 32px) 0 0;
  padding: clamp(24px, 3.5vh, 32px) 0 0;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  background: none;
  border-radius: 0;
}
.v2-callout-insight-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin: 0 0 12px;
}
.v2-callout-insight-text {
  font-family: var(--sans);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.25;
  color: #000;
  margin: 0;
}
.v2-callout-body {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.78);
  margin-bottom: 1em;
}
.v2-callout-body:last-child { margin-bottom: 0; }
.v2-callout-body strong {
  color: #000;
}

.v2-callout + .v2-section {
  padding-top: clamp(34px, 5.4vh, 62px);
}

.v2-pull-quote {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  max-width: 100vw;
  min-height: clamp(260px, 34svh, 360px);
  margin: clamp(80px, 11vh, 120px) calc(50% - 50vw);
  padding: clamp(48px, 8vh, 88px) clamp(56px, 12vw, 200px);
  font-family: var(--ivar);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #F7F7F5;
  background: url('images/quote-background.png') center / cover no-repeat;
  border: none;
  border-radius: 0;
  overflow: hidden;
}

.v2-pull-quote:last-child {
  margin-bottom: clamp(80px, 11vh, 120px);
}

/* Terminal Part IV quote — flush into following black section */
.v2-efficiency-subsection:has(> .v2-pull-quote:last-child) {
  margin-bottom: 0;
  padding-bottom: 0;
}

.v2-efficiency-subsection > .v2-pull-quote:last-child {
  margin-bottom: 0;
}

.v2-section--white:has(> .v2-efficiency-subsection:last-child > .v2-pull-quote) {
  padding-bottom: 0;
}

.v2-section--white:has(> .v2-efficiency-subsection:last-child > .v2-pull-quote) + .v2-compounding-section {
  padding-top: clamp(80px, 11vh, 120px);
  border-top: none;
}

.v2-section:has(> .v2-pull-quote:last-child),
.v2-section:has(> *:last-child > .v2-pull-quote:last-child) {
  padding-bottom: 0;
}

.v2-pull-quote-inner {
  max-width: min(960px, 100%);
  margin-inline: auto;
}

/* Pay-for-performance quote — slightly tighter than default 960px */
.v2-pull-quote--performance .v2-pull-quote-inner {
  max-width: min(56rem, 100%);
}

.v2-pull-quote-attr::before {
  content: '— ';
}

.v2-pull-quote-attr {
  font-family: var(--mono);
  font-size: clamp(12px, 1.15vw, 14px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, 0.82);
  margin-top: clamp(16px, 2.5vh, 24px);
  font-style: normal;
}

/* Inline quote on white Part II prose (between $42k and offer-reversal) */
.v2-pull-quote--on-light {
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: clamp(40px, 6vh, 64px) 0 0;
  padding: 0;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.2;
  color: var(--black);
  background: none;
  overflow: visible;
}

.v2-pull-quote--on-light .v2-pull-quote-inner {
  max-width: none;
  margin-inline: 0;
}

.v2-pull-quote--on-light .v2-pull-quote-attr {
  color: rgba(0, 0, 0, 0.55);
}

/* Part II prose cadence — each block reveals on its own scroll beat */
.v2-reveal-cadence {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.v2-reveal-cadence.is-visible {
  opacity: 1;
}

.v2-reveal-karaoke .v2-karaoke-word {
  display: inline-block;
  opacity: 0.3;
}

.v2-reveal-karaoke .v2-pull-quote-attr {
  opacity: 0;
}

@media (max-width: 900px) {
  #part-2-underpay-visuals {
    min-height: 100svh;
    height: auto;
    align-items: center;
  }

  .v2-offer-reversal-row {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vh, 40px);
  }

  .v2-offer-reversal-title {
    max-width: none;
  }
}

/* After compounding chart — white, dark readable type */
.part-2-after-chart {
  --fg: var(--black);
  --fg-muted: rgba(0, 0, 0, 0.72);
  --fg-strong: var(--black);
  position: relative;
  padding-top: clamp(48px, 7vh, 72px);
  padding-bottom: clamp(72px, 12vh, 120px);
  background: #fff;
  color: var(--black);
}

#john-compounding-video + #part-2-mechanisms.part-2-after-chart {
  padding-top: 0;
}

.part-2-after-chart #part-2-mech3-prose {
  position: relative;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 0;
}

.part-2-after-chart .v2-subhead,
.part-2-after-chart .v2-beat-title,
.part-2-after-chart .v2-mechanism-title,
.part-2-after-chart .v2-outcome-hook-lead,
.part-2-after-chart .v2-outcome-hook-ask {
  color: #000;
}

.part-2-after-chart .v2-reveal-cadence,
.part-2-after-chart p {
  color: rgba(0, 0, 0, 0.78);
}

.part-2-after-chart strong {
  color: #000;
}

/* Keep compounding chart copy light on black (overrides section p rules) */
.part-2-after-chart .v2-compound-visual-eyebrow {
  color: var(--volt);
}

.part-2-after-chart .v2-compound-visual-title {
  color: var(--white);
}

.part-2-after-chart .v2-compound-visual-desc,
.part-2-after-chart .v2-compound-legend-item,
.part-2-after-chart .v2-compound-gap-badge-label {
  color: rgba(251, 250, 245, 0.72);
}

.part-2-after-chart .v2-compound-gap-value {
  color: #C44B4B;
}

.part-2-after-chart .v2-stat-interrupt .v2-stat-num {
  color: var(--white);
}

.part-2-after-chart .v2-stat-interrupt .v2-stat-label {
  color: var(--cream);
}

.part-2-after-chart #beat-p2-merit-cost .v2-cost-story-eyebrow,
.part-2-after-chart #beat-p2-merit-cost p.v2-cost-story-eyebrow {
  color: rgba(251, 250, 245, 0.55);
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 0.16em;
  margin-bottom: clamp(12px, 2vh, 20px);
}

.part-2-after-chart #beat-p2-merit-cost .v2-cost-story-num,
.part-2-after-chart #beat-p2-merit-cost p.v2-cost-story-num {
  color: var(--white);
}

.part-2-after-chart #beat-p2-merit-cost .v2-cost-story-label,
.part-2-after-chart #beat-p2-merit-cost p.v2-cost-story-label {
  color: var(--white);
}

.part-2-after-chart #beat-p2-merit-cost .v2-cost-story-sub,
.part-2-after-chart #beat-p2-merit-cost p.v2-cost-story-sub {
  color: rgba(251, 250, 245, 0.58);
}

/* Keep offer-reversal copy light on black (overrides section p rules) */
.part-2-after-chart #part-2-underpay-visuals .v2-offer-reversal-title {
  color: var(--white);
}

.part-2-after-chart #part-2-underpay-visuals .v2-offer-reversal-copy,
.part-2-after-chart #part-2-underpay-visuals .v2-offer-reversal-copy p,
.part-2-after-chart #part-2-underpay-visuals .v2-offer-reversal-copy .v2-reveal-cadence {
  color: rgba(251, 250, 245, 0.82);
}

.part-2-after-chart #part-2-underpay-visuals .v2-underpay-source {
  color: rgba(251, 250, 245, 0.5);
}

#part-2-mechanisms .v2-chart-pin--compact,
#part-2-body .v2-chart-pin--compact {
  padding-bottom: clamp(32px, 5vh, 56px);
}

#part-2-loop {
  background: var(--black);
}

/* ── Stat interrupts ───────────────────────── */
.v2-stat-interrupt {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(40px, 6vh, 56px) var(--gutter);
  background: var(--black);
  width: 100%;
  box-sizing: border-box;
}

.v2-stat-num {
  font-family: var(--mono);
  font-weight: 300;
  font-size: clamp(80px, 18vw, 160px);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}
.v2-stat-num.volt { color: var(--volt); }
.v2-stat-label {
  font-family: var(--mono);
  font-size: clamp(15px, 1.7vw, 18px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  max-width: 28rem;
  margin-top: 24px;
  line-height: 1.5;
}
.v2-stat-sub {
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(251, 250, 245, 0.65);
  margin-top: 12px;
  max-width: 20rem;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: normal;
}

/* Mechanism 2 — story-led cost callout */
.v2-cost-story-band {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--black);
  margin-top: clamp(40px, 6vh, 64px);
  margin-bottom: 0;
  padding: 0;
}

.v2-cost-story-band > .v2-cost-story {
  width: 100%;
  min-height: 56svh;
  margin: 0;
  padding: clamp(48px, 7vh, 80px) var(--gutter);
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v2-cost-story-eyebrow {
  font-family: var(--mono);
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 250, 245, 0.55);
  margin: 0 0 clamp(12px, 2vh, 20px);
  max-width: 36rem;
  line-height: 1.4;
}

.v2-cost-story-num {
  font-family: var(--mono);
  font-weight: 300;
  font-size: clamp(80px, 16vw, 160px);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0;
}

.v2-cost-story-label {
  font-family: 'Instrument Sans', var(--sans), Arial, sans-serif;
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--white);
  max-width: 36rem;
  margin: clamp(12px, 1.8vh, 20px) 0 0;
  line-height: 1.15;
}

.v2-cost-story-sub {
  font-family: var(--mono);
  font-size: clamp(14px, 1.5vw, 17px);
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(251, 250, 245, 0.58);
  max-width: 34rem;
  margin: clamp(18px, 2.5vh, 28px) 0 0;
  line-height: 1.5;
}

#part-2-mech2-prose + #beat-p2-merit-cost {
  margin-top: clamp(40px, 6vh, 64px);
}

/* Flush red quote band against the 1% black graphic — no white seam */
#beat-p2-merit-cost + #part-2-mech2-quote {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none;
}

#beat-p2-merit-cost + #part-2-mech2-quote .v2-pull-quote {
  margin-top: 0;
  margin-bottom: 0;
}

#part-2-mech2-quote + #part-2-mech3-prose .v2-mechanism-title {
  margin-top: clamp(48px, 7vh, 72px);
}

/* ── Compounding chart (hero visual) ───────── */
.v2-chart-pin {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(72px, 11vh, 108px) var(--gutter) clamp(88px, 12vh, 128px);
  background: var(--black);
  box-sizing: border-box;
}

.v2-chart-pin--compact {
  min-height: 0;
  padding: clamp(28px, 4vh, 48px) var(--gutter) clamp(32px, 5vh, 56px);
}

#part-2-mechanisms .v2-chart-pin--compact,
#part-2-body .v2-chart-pin--compact,
#part-2-offer-visuals .v2-chart-pin--compact {
  min-height: 0;
  padding-bottom: clamp(32px, 5vh, 56px);
}

/* Exec-brief $42K chart layout (research Part II) — base layout above; keep selectors for cascade */
#beat-p2-c.v2-exec-42k-pin {
  min-height: 100svh;
  height: 100svh;
  padding: clamp(72px, 10vh, 96px) var(--gutter) clamp(40px, 6vh, 64px);
  align-items: stretch;
  justify-content: flex-start;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 4;
}

#beat-p2-c .exec-42k-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: clamp(12px, 1.8vh, 20px);
  min-height: 0;
  height: 100%;
  flex: 1 1 auto;
  position: relative;
  padding-top: 0;
  overflow: hidden;
}

#beat-p2-c .exec-42k-eyebrow {
  margin: 0 0 clamp(16px, 2.2vh, 24px);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 250, 245, 0.45);
  flex: 0 0 auto;
}

#beat-p2-c .exec-42k-eyebrow span {
  margin: 0 0.35em;
}

#beat-p2-c .exec-42k-callout {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(14px, 1.8vw, 20px) clamp(16px, 2vw, 24px);
  border-radius: 14px;
  background: #FC4272;
  color: var(--black);
  width: max-content;
  min-width: 240px;
  max-width: min(320px, 100%);
  flex-shrink: 0;
  box-sizing: border-box;
  pointer-events: none;
  justify-self: end;
}

#beat-p2-c .exec-42k-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(16px, 2.5vw, 36px);
  align-items: start;
  margin-bottom: 0;
  flex: 0 0 auto;
  position: relative;
  min-height: 0;
  padding-right: 0;
}

#beat-p2-c .exec-42k-header-copy {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.1vh, 12px);
  min-width: 0;
}

#beat-p2-c .exec-42k-headline {
  margin: 0;
  max-width: 14em;
  font-family: var(--ivar);
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  text-wrap: balance;
  padding-right: 0;
}

#beat-p2-c .exec-42k-callout-value {
  font-family: var(--sans);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}

#beat-p2-c .exec-42k-callout-label {
  font-family: var(--mono);
  font-size: clamp(9px, 0.9vw, 11px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  max-width: 18em;
}

#beat-p2-c .exec-42k-chart-spacer {
  display: none;
}

#beat-p2-c .exec-42k-chart-wrap {
  position: relative;
  z-index: 0;
  flex: 0 1 auto;
  width: 100%;
  min-height: 0;
  margin-top: clamp(8px, 1.5vh, 16px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

#beat-p2-c .exec-42k-chart-frame {
  flex: 0 1 auto;
  /* Near original scale; centered when narrower than the inner column */
  width: min(100%, calc(min(50svh, 560px) * 792 / 287));
  max-width: 100%;
  max-height: 50svh;
  height: auto;
  min-height: 220px;
  display: block;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  background: #000;
  aspect-ratio: 792 / 287;
}

#beat-p2-c .exec-42k-chart-frame canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

#beat-p2-c .exec-42k-chart-legend {
  margin: 0;
  flex: 0 0 auto;
  align-self: flex-start;
  width: 100%;
}

#beat-p2-c .exec-42k-chart-legend-lead {
  margin: 0 0 6px;
  font-family: var(--sans);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
}

#beat-p2-c .exec-42k-chart-legend-series {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(13px, 1.3vw, 15px);
  line-height: 1.4;
  color: rgba(251, 250, 245, 0.72);
}

#beat-p2-c .exec-42k-legend-swatch {
  position: relative;
  width: 32px;
  height: 10px;
  flex-shrink: 0;
  background: transparent;
  border-radius: 0;
}

#beat-p2-c .exec-42k-legend-swatch::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 2px;
  margin: auto 0;
  border-radius: 1px;
  background: #FC4272;
}

#beat-p2-c .exec-42k-legend-swatch::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-radius: 50%;
  background: #FC4272;
  border: 1px solid #FBFAF5;
  box-sizing: border-box;
}

#beat-p2-c .exec-42k-legend-swatch--ungoverned {
  background: transparent;
}

#beat-p2-c .exec-42k-legend-swatch--ungoverned::before,
#beat-p2-c .exec-42k-legend-swatch--ungoverned::after {
  background: #FC4272;
}

@media (max-width: 768px) {
  #beat-p2-c .exec-42k-header {
    min-height: 0;
    padding-right: 0;
    grid-template-columns: 1fr;
    gap: clamp(16px, 2.5vh, 24px);
  }

  #beat-p2-c .exec-42k-headline {
    padding-right: 0;
    max-width: none;
    margin-bottom: 0;
    font-size: clamp(28px, 7vw, 40px);
  }

  #beat-p2-c .exec-42k-callout {
    position: relative;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 0;
    justify-self: start;
  }

  #beat-p2-c .exec-42k-chart-frame {
    width: 100%;
    min-height: 160px;
  }
}

.v2-chart-pin.is-pinned {
  width: 100vw !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  min-height: 0;
  height: auto;
  background: var(--black);
}

/* Keep pin contents clipped to the black frame; callout is in-flow now */
#part-2-offer-visuals .pin-spacer,
#beat-p2-c.v2-exec-42k-pin {
  overflow: hidden;
}

#beat-p2-c.v2-exec-42k-pin.is-pinned,
body > #beat-p2-c.v2-exec-42k-pin {
  min-height: 100svh;
  height: 100svh;
  width: 100vw !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  box-sizing: border-box;
}

.v2-chart-pin.is-pinned::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -40vh;
  height: 40vh;
  background: var(--black);
  pointer-events: none;
}

.v2-chart-pin--compact .v2-compound-visual {
  max-width: 880px;
  padding: clamp(20px, 3vw, 32px);
}

.v2-chart-pin--compact .v2-compound-visual-title {
  font-size: clamp(22px, 3vw, 32px);
}

.v2-chart-pin--compact .v2-chart-canvas {
  max-height: 380px;
}
.v2-chart-pin--compact .v2-compound-42k-canvas {
  height: clamp(280px, 40vh, 380px);
  max-height: none;
}

.v2-compound-visual {
  width: 100%;
  max-width: 1180px;
  border: 1px solid var(--border-subtle);
  background: var(--off-black);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: none;
}

.v2-compound-visual-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(20px, 4vw, 40px);
  align-items: start;
  margin-bottom: clamp(24px, 4vh, 36px);
}

.v2-compound-visual-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 12px;
}

.v2-compound-visual-title {
  font-family: var(--ivar);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 12px;
}

.v2-compound-visual-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(251, 250, 245, 0.78);
  max-width: 42rem;
}

.v2-compound-gap-badge {
  padding: 16px 20px;
  border: 1px solid rgba(196, 75, 75, 0.4);
  background: rgba(196, 75, 75, 0.08);
  text-align: right;
  min-width: 168px;
  flex-shrink: 0;
}

.v2-compound-gap-badge-label {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 250, 245, 0.55);
  margin-bottom: 6px;
  min-height: 1.2em;
}

.v2-compound-gap-value {
  font-family: var(--mono);
  font-size: clamp(24px, 3vw, 34px);
  color: #C44B4B;
  line-height: 1;
}

.v2-chart-pin .v2-chart-canvas {
  position: relative;
  height: clamp(300px, 42vh, 460px);
  margin-bottom: 20px;
}

.v2-compound-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}

.v2-compound-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251, 250, 245, 0.68);
}

.v2-compound-swatch {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  flex-shrink: 0;
}

.v2-compound-swatch--ungoverned { background: #FC4272; }
.v2-compound-swatch--governed { background: var(--volt); }
.v2-compound-swatch--savings { background: rgba(251, 250, 245, 0.55); }

/* Shared $42K compounding chart (also used on exec brief) —
   never stretch canvas height independently of width (distorts Chart.js type) */
.v2-compound-42k-canvas .exec-42k-chart-frame,
.exec-42k-chart-frame {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
}
.v2-compound-42k-canvas .exec-42k-chart-frame canvas,
.exec-42k-chart-frame canvas {
  display: block;
  width: 100% !important;
  height: auto !important;
}
.v2-compound-42k-canvas .exec-42k-chart-frame svg,
.exec-42k-chart-frame svg {
  display: block;
  width: 100%;
  height: 100%;
}
.exec-42k-incr {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  fill: #FBFAF5;
}
.exec-42k-year-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: rgba(251, 250, 245, 0.55);
}
.exec-42k-end-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Offer mispricing reversal timeline chart */
#beat-p2-underpay-reversal .v2-compound-visual.v2-reversal-visual {
  border: none;
  background: transparent;
  padding: 0;
  max-width: none;
}

#beat-p2-underpay-reversal.v2-chart-pin--compact {
  padding-top: 0;
  padding-bottom: clamp(24px, 4vh, 40px);
}

.v2-reversal-chart-frame {
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  margin-bottom: 12px;
}

.v2-offer-reversal-graphic .v2-reversal-chart-frame {
  max-width: none;
  margin-bottom: 0;
}

.v2-reversal-chart-frame svg {
  display: block;
  width: 100%;
  height: auto;
}

.v2-reversal-chart .v2-reversal-chart-amt {
  font-family: var(--sans);
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.v2-reversal-chart .v2-reversal-chart-amt--savings {
  fill: #FBFAF5;
}

.v2-reversal-chart .v2-reversal-chart-amt--cost {
  fill: #EDF91F;
}

.v2-reversal-chart .v2-reversal-chart-savings-amt {
  font-family: var(--sans);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.03em;
  fill: #FBFAF5;
}

.v2-reversal-chart .v2-reversal-chart-phase-label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: #FBFAF5;
}

.v2-reversal-chart .v2-reversal-chart-cost-amt {
  font-family: var(--sans);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.03em;
  fill: #EDF91F;
}

.v2-reversal-chart .v2-reversal-chart-cost-desc {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.25;
  fill: rgba(251, 250, 245, 0.82);
}

/* legacy bar layout (unused) */
.v2-reversal-bars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  min-height: clamp(220px, 32vh, 300px);
  margin-bottom: 24px;
  padding: 8px 0 4px;
}

.v2-reversal-bar-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.v2-reversal-bar-track {
  display: flex;
  align-items: flex-end;
  height: clamp(160px, 26vh, 240px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.v2-reversal-bar {
  width: 100%;
  max-width: 120px;
  margin-inline: auto;
  transform-origin: bottom center;
  transform: scaleY(var(--bar-scale, 0));
  will-change: transform;
}

.v2-reversal-bar--savings {
  height: 20%;
  background: rgba(251, 250, 245, 0.45);
}

.v2-reversal-bar--cost {
  height: 100%;
  background: #C44B4B;
}

.v2-reversal-bar-meta {
  text-align: center;
  min-height: 3.5rem;
}

.v2-reversal-bar-value {
  display: block;
  font-family: var(--mono);
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 6px;
}

.v2-reversal-bar-col--cost .v2-reversal-bar-value {
  color: #C44B4B;
}

.v2-reversal-bar-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251, 250, 245, 0.55);
  line-height: 1.4;
}

.part-2-after-chart .v2-reversal-bar-label {
  color: rgba(251, 250, 245, 0.55);
}

@media (max-width: 640px) {
  .v2-reversal-bars {
    gap: 20px;
  }

  .v2-reversal-bar {
    max-width: 72px;
  }
}

/* legacy chart layout (unused) */
.v2-chart-wrap {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 64px auto 0;
}
.v2-chart-note {
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream);
}
.v2-chart-note strong { color: var(--white); font-weight: 600; }
.v2-chart-canvas {
  position: relative;
  height: 360px;
}

/* ── ROI Calculator ────────────────────────── */
.v2-calc-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: clamp(112px, 16vh, 168px) var(--gutter) clamp(40px, 5vh, 64px);
  border-top: 3px solid var(--volt);
  box-sizing: border-box;
}

.v2-chapter-body > #roi-calculator.v2-calc-section {
  align-items: flex-start;
  justify-content: center;
  padding-top: clamp(128px, 20vh, 200px);
  padding-bottom: clamp(48px, 8vh, 96px);
}

.v2-calc-pin {
  width: 100%;
  box-sizing: border-box;
}

.v2-calc-pin.is-pinned {
  align-content: center;
}

.v2-calc-pin.is-pinned .v2-calc-hero-metric {
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.22);
}

.v2-calc-wrap {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.v2-calc-eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.52);
  text-align: center;
  margin: 0 0 clamp(10px, 1.6vh, 14px);
}

.v2-calc-title {
  font-family: var(--ivar);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--black);
  text-align: center;
  max-width: min(920px, 100%);
  margin: 0 auto clamp(14px, 2vh, 20px);
}

.v2-calc-hero-metric {
  background: var(--volt);
  border-radius: 4px;
  padding: clamp(18px, 2.6vh, 28px) clamp(16px, 3vw, 28px);
  margin: 0 auto clamp(28px, 4vh, 36px);
  max-width: 960px;
  text-align: center;
  box-shadow: 0 12px 48px rgba(237, 249, 31, 0.22);
}

.v2-calc-hero-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.52);
  margin: 0 0 8px;
}

.v2-calc-hero-val {
  font-family: var(--mono);
  font-size: clamp(26px, 5vh, 44px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--black);
  margin: 0 0 6px;
}

.v2-calc-scope {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.58);
  margin: 0;
}

.v2-calc-scope strong {
  color: rgba(0, 0, 0, 0.78);
  font-weight: 600;
}

.v2-calc-foot-notes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.v2-calc-hero-sub {
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.72);
  margin: 0;
  font-weight: 500;
}

.v2-calc {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  box-shadow: 0 8px 56px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}

.v2-calc-body {
  padding: clamp(18px, 2.4vh, 24px) clamp(20px, 2.5vw, 28px) clamp(14px, 1.8vh, 20px);
}

.v2-calc-inputs-wrap {
  position: relative;
  margin-bottom: clamp(14px, 1.8vh, 20px);
}

.v2-calc-tooltip-slot {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  height: 0;
  z-index: 4;
  pointer-events: none;
}

.v2-calc-tooltip {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%) translateY(6px);
  z-index: 2;
  width: max-content;
  max-width: min(300px, calc(100vw - 48px));
  margin: 0;
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--cream);
  text-align: center;
  background: var(--black);
  border: 1px solid rgba(251, 250, 245, 0.12);
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.v2-calc-tooltip::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  margin-left: -6px;
  border: 6px solid transparent;
  border-top-color: var(--black);
}

.v2-calc-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.v2-calc-tooltip.is-dismissed {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-4px);
}

.v2-calc-inputs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vh, 22px);
}

.v2-calc-field-label {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 10px;
}

.v2-calc-field-val {
  font-family: var(--sans);
  font-size: clamp(26px, 3vh, 34px);
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  margin-bottom: 12px;
}

.v2-calc-field-input {
  display: block;
  width: 100%;
  font-family: var(--sans);
  font-size: clamp(26px, 3vh, 34px);
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  margin-bottom: 12px;
  border: none;
  background: transparent;
  padding: 0;
  outline: none;
  border-radius: 2px;
}

.v2-calc-field-input:focus {
  outline: 2px solid rgba(0, 0, 0, 0.12);
  outline-offset: 4px;
}

.v2-calc-field-input::selection {
  background: rgba(237, 249, 31, 0.45);
}

.v2-calc-slider {
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 1px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.v2-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.v2-calc-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.v2-calc-section.is-calc-demo .v2-calc-slider::-webkit-slider-thumb {
  background: var(--volt);
  box-shadow: 0 0 0 3px rgba(237, 249, 31, 0.35);
}

.v2-calc-section.is-calc-demo .v2-calc-slider::-moz-range-thumb {
  background: var(--volt);
  box-shadow: 0 0 0 3px rgba(237, 249, 31, 0.35);
}

.v2-calc-input.is-calc-demo-active .v2-calc-field-val,
.v2-calc-input.is-calc-demo-active .v2-calc-field-input {
  color: var(--black);
  transition: color 0.2s ease;
}

.v2-calc-section.is-calc-demo .v2-calc-hero-val {
  transition: text-shadow 0.25s ease;
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.12);
}

.v2-calc-stats-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin: clamp(14px, 1.8vh, 18px) 0;
}

.v2-calc-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: clamp(12px, 1.5vh, 16px) clamp(14px, 1.6vw, 18px);
}

.v2-calc-stat + .v2-calc-stat {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.v2-calc-stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
}

.v2-calc-stat-val {
  font-family: var(--sans);
  font-size: clamp(16px, 1.8vh, 20px);
  font-weight: 600;
  color: var(--black);
  line-height: 1.1;
  text-align: right;
}

.v2-calc-derived-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}

.v2-calc-costs-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.v2-calc-breakdown-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.v2-calc-breakdown-card {
  padding: clamp(16px, 2vh, 22px) clamp(14px, 1.5vw, 18px);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
}

.v2-calc-breakdown-card:last-child {
  border-right: none;
}

.v2-calc-breakdown-title {
  font-family: var(--sans);
  font-size: clamp(15px, 1.6vh, 17px);
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--black);
}

.v2-calc-breakdown-desc {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.5);
  margin: 0 0 14px;
  min-height: calc(1.45em * 3);
}

.v2-calc-breakdown-val {
  font-family: var(--sans);
  font-size: clamp(13px, 1.45vh, 16px);
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--black);
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.v2-calc-breakdown-bar {
  height: 3px;
  background: rgba(0, 0, 0, 0.08);
  margin-bottom: 8px;
  overflow: hidden;
}

.v2-calc-breakdown-bar-fill {
  display: block;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  width: 0%;
  transition: width 0.25s ease;
}

.v2-calc-breakdown-pct {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(0, 0, 0, 0.45);
  margin: 0 0 10px;
  line-height: 1.3;
}

.v2-calc-breakdown-tier {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.42);
  background: rgba(0, 0, 0, 0.05);
  padding: 3px 6px;
}

.v2-calc-out-val--compact {
  font-size: clamp(14px, 1.7vh, 18px);
  line-height: 1.2;
}

.v2-calc-output-card {
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  padding: clamp(14px, 1.8vh, 18px) 14px;
}

.v2-calc-output-card--highlight,
.v2-calc-output-card--recover {
  background: var(--black);
  border-color: rgba(251, 250, 245, 0.12);
}

.v2-calc-out-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.58);
  margin-bottom: 8px;
}

.v2-calc-output-card--highlight .v2-calc-out-label,
.v2-calc-output-card--recover .v2-calc-out-label {
  color: rgba(251, 250, 245, 0.58);
}

.v2-calc-out-val {
  font-family: var(--mono);
  font-size: clamp(24px, 2.8vh, 32px);
  font-weight: 300;
  color: var(--black);
  line-height: 1;
}

.v2-calc-output-card--highlight .v2-calc-out-val,
.v2-calc-output-card--recover .v2-calc-out-val {
  color: var(--volt);
}

.v2-calc-out-sub {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(0, 0, 0, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
  line-height: 1.4;
}

.v2-calc-output-card--highlight .v2-calc-out-sub,
.v2-calc-output-card--recover .v2-calc-out-sub {
  color: rgba(251, 250, 245, 0.58);
}

.v2-calc-foot {
  padding: clamp(12px, 1.6vh, 16px) clamp(20px, 2.5vw, 28px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(14px, 2vh, 18px);
}

.v2-calc-disclaimer {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.32);
  line-height: 1.6;
  margin: 0;
  width: 100%;
  max-width: none;
}

.v2-calc-wrap > .v2-calc-disclaimer {
  max-width: 960px;
  margin: clamp(14px, 2vh, 18px) auto 0;
  padding: 0 clamp(20px, 2.5vw, 28px);
  text-align: left;
}

.v2-calc-foot .v2-cta {
  align-self: center;
  font-size: 18px;
  padding: 20px 40px;
}

/* ── Part III persona + body ───────────────── */
.v2-persona-grid {
  --persona-flex-hover: 2.4;
  --persona-flex-narrow: 0.7;
  --persona-img-width: calc(
    100cqw * var(--persona-flex-hover) /
    (var(--persona-flex-hover) + var(--persona-flex-narrow) * 2)
  );
  container-type: inline-size;
  container-name: persona;
  display: flex;
  height: 80vh;
  min-height: 320px;
  position: relative;
  background: var(--black);
}

.v2-persona-grid--duo {
  --persona-img-width: calc(
    100cqw * var(--persona-flex-hover) /
    (var(--persona-flex-hover) + var(--persona-flex-narrow))
  );
}

.v2-persona-panel {
  position: relative;
  overflow: hidden;
  height: 100%;
  flex: 1 1 0;
  min-width: 0;
  box-shadow: none;
  transition:
    flex 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.v2-persona-grid--duo .v2-persona-panel--cfo img {
  left: 50%;
  object-position: 36% 33%;
  transform: translateX(-50%) scale(-1.12, 1.12);
}

.v2-persona-grid--duo .v2-persona-panel--chro img {
  left: 50%;
  object-position: 62% 33%;
}

.v2-persona-panel img {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: var(--persona-img-width);
  min-width: var(--persona-img-width);
  max-width: none;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: center 33%;
  pointer-events: none;
  user-select: none;
}

.v2-persona-panel--cfo img {
  left: 50%;
  /* Shift subject right via object-position (keeps img box covering the panel) */
  object-position: 36% 33%;
  transform: translateX(-50%) scale(-1.12, 1.12);
}

.v2-persona-panel--rewards img {
  left: 50%;
  object-position: 48% 33%;
  /* Slight zoom so cover never reveals edges at hover width */
  transform: translateX(-50%) scale(1.06);
}

.v2-persona-panel--chro img {
  left: 50%;
  /* Shift subject left + scale up */
  object-position: 62% 33%;
  transform: translateX(-50%) scale(1.18);
}

.v2-persona-panel::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72%;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 38%,
    rgba(0, 0, 0, 0.55) 68%,
    rgba(0, 0, 0, 0.78) 100%
  );
  pointer-events: none;
}

.v2-persona-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.18) 22%,
    rgba(0, 0, 0, 0.04) 45%,
    transparent 70%
  );
  transition: opacity 0.35s ease;
}

.v2-persona-label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 3;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 24px;
  pointer-events: none;
}

.v2-persona-detail {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  width: fit-content;
  max-width: calc(100% - 48px);
  max-height: 68%;
  padding: 0 24px 24px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  overflow-y: auto;
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-overflow-scrolling: touch;
}

.v2-persona-detail h3 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--volt);
  margin: 16px 0 10px;
}

.v2-persona-detail h3:first-child {
  margin-top: 0;
}

.v2-persona-detail ul {
  list-style: none;
  margin: 0 0 8px;
}

.v2-persona-detail li {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(251, 250, 245, 0.9);
  padding: 7px 0;
  border-bottom: 1px solid rgba(251, 250, 245, 0.12);
}

.v2-persona-detail li:last-child { border-bottom: none; }
.v2-persona-detail li.positive::before { content: '+ '; color: var(--volt); }

@media (hover: hover) {
  .v2-persona-grid:has(.v2-persona-panel:hover) .v2-persona-panel:not(:hover) {
    flex: 0.7 1 0;
    opacity: 0.5;
  }

  .v2-persona-panel:hover {
    flex: 2.4 1 0;
    opacity: 1;
  }

  .v2-persona-panel:hover::after {
    opacity: 0.98;
  }

  .v2-persona-panel:hover .v2-persona-detail,
  .v2-persona-panel:focus-within .v2-persona-detail {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.v2-persona-grid:has(.v2-persona-panel.is-touch-open) .v2-persona-panel:not(.is-touch-open) {
  flex: 0.7 1 0;
  opacity: 0.5;
}

.v2-persona-panel.is-touch-open {
  flex: 2.4 1 0;
  opacity: 1;
}

.v2-persona-panel.is-touch-open .v2-persona-detail {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.v2-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 64px auto 0;
}
.v2-metric-card {
  background: var(--off-black);
  border-top: 2px solid var(--border-subtle);
  padding: 32px 24px;
}
.v2-section--white .v2-metric-card,
.v2-section--cream .v2-metric-card {
  background: transparent;
  border: 1px solid var(--surface-border);
  border-top: 2px solid var(--black);
}
.v2-metric-card h4 {
  font-family: var(--ivar);
  font-size: 22px;
  color: var(--fg-strong, var(--white));
  margin-bottom: 12px;
  line-height: 1.2;
}
.v2-metric-num {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 12px;
}
.v2-bridge-metric .v2-metric-num {
  display: inline;
  margin-bottom: 0;
  margin-right: 0.35em;
}
.v2-metric-card p {
  font-size: 15px;
  color: var(--fg-muted, var(--cream));
  line-height: 1.55;
}

/* ── Part IV proof points ──────────────────── */
.v2-proof {
  max-width: 1100px;
  margin: 0 auto;
}
.v2-proof-section-title {
  font-family: var(--ivar);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg-strong);
  text-align: center;
  margin: clamp(48px, 8vh, 88px) auto clamp(24px, 4vh, 40px);
  max-width: 40ch;
}
.v2-proof-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--surface-border);
}
.v2-proof-item:last-child {
  border-bottom: none;
}
.v2-proof-num {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  padding-top: 8px;
}
.v2-proof-title {
  font-family: var(--ivar);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--fg-strong);
  line-height: 1.1;
  margin-bottom: 16px;
}
.v2-proof-body { font-size: 16px; color: var(--fg-muted); line-height: 1.6; }

/* ── Full-bleed testimonial video ────────────
   Outer stage is always 100vw × 100svh black (covers sticky chapter
   textures). Inner frame is a centered window that expands 76→100vw.
   Video is sized to the viewport and clipped by the frame, so it never
   letterboxes on top/bottom while expanding. */
.v2-video-moment {
  --video-moment-w: 100vw;
  position: relative;
  z-index: 2;
  width: 100vw;
  max-width: 100vw;
  height: 100svh;
  min-height: 100svh;
  margin: 0 calc(50% - 50vw);
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
  display: flex;
  justify-content: center;
  align-items: stretch;
  opacity: 1;
  transform: none;
}

.v2-video-moment-frame {
  position: relative;
  width: var(--video-moment-w);
  max-width: 100vw;
  height: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
  flex: 0 0 auto;
}

.v2-video-moment-video {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  max-width: none;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: center center;
  background: var(--black);
  display: block;
}

.v2-video-moment-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
  pointer-events: none;
}

.v2-video-moment-play {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: clamp(72px, 11vw, 108px);
  height: clamp(72px, 11vw, 108px);
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, transform 0.2s ease;
}

.v2-video-moment-play img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.v2-video-moment-play:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.v2-video-moment.is-unmuted:not(.is-paused) .v2-video-moment-play {
  opacity: 0;
  pointer-events: none;
}

.v2-video-moment-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 16px);
  padding: 20px clamp(20px, 4vw, 40px) clamp(24px, 4vh, 40px);
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.v2-video-moment.is-user-activated.is-playing .v2-video-moment-controls,
.v2-video-moment.is-user-activated.is-scrubbing .v2-video-moment-controls {
  opacity: 1;
  pointer-events: auto;
}

.v2-video-moment-toggle {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.v2-video-moment-icon {
  display: block;
  width: 20px;
  height: 20px;
}

.v2-video-moment-icon--play {
  display: none;
}

.v2-video-moment.is-paused .v2-video-moment-icon--pause {
  display: none;
}

.v2-video-moment.is-paused .v2-video-moment-icon--play {
  display: block;
}

.v2-video-moment-progress {
  flex: 1 1 auto;
  min-width: 0;
  padding: 10px 0;
  cursor: pointer;
  touch-action: none;
}

.v2-video-moment-progress-track {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
}

.v2-video-moment-progress-fill {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.v2-video-moment.is-scrubbing .v2-video-moment-progress-fill {
  transition: none;
}

@media (max-width: 768px) {
  .v2-video-moment,
  .v2-video-moment-frame {
    height: 100svh;
    min-height: 100svh;
  }

  .v2-video-moment-play {
    width: clamp(64px, 18vw, 88px);
    height: clamp(64px, 18vw, 88px);
  }
}

/* ── Chicago testimonial sound bites ───────── */
.v2-soundbite {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 20px;
  align-items: start;
  margin: 28px 0 0;
  padding: 20px 22px;
  border: 1px solid var(--surface-border);
  background: rgba(0, 0, 0, 0.03);
}

.v2-soundbite--dark {
  margin: 0;
  padding: clamp(24px, 4vw, 32px) var(--gutter);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  background: var(--off-black);
  border-color: var(--border-subtle);
}

.v2-soundbite--inline {
  margin-top: 20px;
  padding: 16px 18px;
  background: rgba(0, 0, 0, 0.025);
}

.v2-soundbite-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(237, 249, 31, 0.55);
  background: rgba(237, 249, 31, 0.08);
  color: var(--volt);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.v2-soundbite-play svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  margin-left: 1px;
}

.v2-soundbite-play:hover:not(:disabled) {
  background: rgba(237, 249, 31, 0.16);
  border-color: var(--volt);
}

.v2-soundbite-play.is-playing {
  background: var(--volt);
  color: var(--black);
  border-color: var(--volt);
}

.v2-soundbite-play.is-playing svg {
  margin-left: 0;
}

.v2-soundbite-play:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.v2-soundbite-quote {
  font-family: var(--ivar);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.35;
  color: var(--fg-strong, var(--white));
  margin: 0;
}

.v2-soundbite--dark .v2-soundbite-quote {
  color: var(--cream);
}

.v2-soundbite-cite {
  display: block;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.v2-soundbite-cite span {
  display: block;
  margin-top: 4px;
  font-weight: 400;
  opacity: 0.85;
}

.v2-soundbite-status {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251, 250, 245, 0.45);
}

.v2-soundbite.is-unavailable .v2-soundbite-status {
  color: rgba(0, 0, 0, 0.4);
}

.v2-soundbite--dark.is-unavailable .v2-soundbite-status {
  color: rgba(251, 250, 245, 0.45);
}

.v2-proof-thumb {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-top: 8px;
}

.v2-image-lead--part4 img {
  object-position: 55% 35%;
}

.v2-image-lead--part4 .v2-chapter-title {
  font-size: clamp(36px, 5vw, 56px);
}

.v2-image-lead {
  position: relative;
  min-height: 80vh;
  margin-bottom: 0;
  overflow: hidden;
}
.v2-image-lead img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v2-image-lead-copy {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 15vh, 160px) var(--gutter);
  max-width: 600px;
}
.v2-image-lead::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20, 0, 8, 0.82) 0%, rgba(10, 0, 5, 0.38) 55%, transparent 100%);
}

.v2-centered-quote {
  text-align: center;
  max-width: 960px;
  margin: clamp(40px, 6vh, 56px) auto;
  padding: 0 var(--gutter);
}
.v2-centered-quote .v2-rule { margin: 32px auto; }
.v2-centered-quote .v2-beat-title {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: none;
  color: var(--cream);
  text-align: center;
}
.v2-centered-quote-body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
}
.v2-centered-quote blockquote {
  font-family: var(--ivar);
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
  color: var(--cream);
}

/* ── Part V ────────────────────────────────── */
.v2-prose h4 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-strong);
  margin: 2.5em 0 1em;
}

#one-question-body {
  padding-bottom: clamp(96px, 14vh, 168px);
}

#one-question-body .v2-one-question-final {
  font-family: var(--ivar);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--fg-strong);
  margin: 1.5em 0 0;
}

.v2-provocation-quote {
  margin-top: 2.5em;
  font-size: clamp(24px, 3.2vw, 40px);
  border-left: none;
  padding-left: 0;
  text-align: center;
}

.v2-callout-inner {
  max-width: var(--content-wide);
}

.v2-waiting-moment {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px var(--gutter);
  background: var(--black);
}
.v2-waiting-moment p {
  font-family: var(--ivar);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.1;
  color: var(--volt);
}
.v2-waiting-moment .volt { color: var(--volt); }

/* ── Closing CTA ───────────────────────────── */
.v2-closing-stack {
  position: relative;
  isolation: isolate;
}

.v2-closing-stack .v2-closing {
  position: sticky;
  top: 0;
  min-height: 100svh;
  height: 100svh;
  z-index: 2;
  box-sizing: border-box;
}

.v2-closing-stack .v2-closing-hold {
  height: clamp(300px, 44vh, 520px);
  pointer-events: none;
}

.v2-closing-stack .v2-backmatter {
  position: relative;
  z-index: 3;
}

.v2-closing-stack .v2-footer {
  position: relative;
  z-index: 3;
}

.v2-closing .v2-reveal {
  opacity: 1;
  transform: none;
}

.v2-closing {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(96px, 12vh, 140px) var(--gutter);
}

.v2-closing.v2-closing--chapter-texture {
  background-color: var(--texture-base);
  background-image:
    linear-gradient(var(--texture-scrim), var(--texture-scrim-deep)),
    url('../textures/chapter-texture.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.v2-closing h2 {
  font-family: var(--ivar);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.02;
  max-width: min(100%, 18ch);
  margin-bottom: 32px;
}
.v2-closing p {
  font-size: 18px;
  color: var(--cream);
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.v2-closing-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ── Back matter (references, methodology, author) ── */
.v2-backmatter {
  background: var(--cream);
  --fg: var(--black);
  --fg-muted: rgba(0, 0, 0, 0.72);
  --fg-strong: var(--black);
  border-top: 1px solid var(--border-light);
}

.v2-backmatter-section {
  padding: clamp(56px, 8vh, 88px) var(--gutter);
  border-bottom: 1px solid var(--border-light);
}

.v2-backmatter-section--page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: clamp(40px, 6vh, 64px) clamp(40px, 5vw, 96px) clamp(32px, 4vh, 48px);
  box-sizing: border-box;
}

.v2-backmatter-section--page .v2-backmatter-inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
  margin: 0;
}

.v2-backmatter-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.v2-backmatter-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
  margin: 0 0 14px;
}

.v2-backmatter-rule {
  display: block;
  width: 100%;
  height: 0;
  margin: 0 0 clamp(36px, 5vh, 56px);
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.v2-backmatter-title {
  font-family: var(--ivar);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: clamp(32px, 5vh, 48px);
}

.v2-backmatter-title.v2-backmatter-title--sans {
  font-family: var(--sans);
  font-size: 18pt;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.v2-backmatter-subtitle {
  font-family: var(--ivar);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  margin-top: clamp(32px, 5vh, 48px);
  margin-bottom: clamp(16px, 2.5vh, 24px);
}

.v2-backmatter-refs {
  list-style: none;
  counter-reset: refs;
  max-width: 78%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.v2-backmatter-refs li {
  position: relative;
  counter-increment: refs;
  font-family: var(--sans);
  font-size: clamp(13px, 1.15vw, 15px);
  line-height: 1.55;
  color: var(--black);
  margin-bottom: clamp(12px, 1.6vh, 18px);
  padding-left: 1.75em;
}

.v2-backmatter-refs li::before {
  content: counter(refs) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-variant-numeric: tabular-nums;
}

.v2-backmatter-page-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin-top: auto;
  padding-top: clamp(40px, 6vh, 72px);
  border-top: 1px solid rgba(0, 0, 0, 0.14);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
}

.v2-footnote-ref {
  font-size: 0.7em;
  line-height: 0;
  vertical-align: super;
  margin-left: 2px;
  color: inherit;
  text-decoration: none;
  opacity: 0.7;
}

.v2-footnote-ref:hover {
  opacity: 1;
}

.v2-footnote-backref {
  margin-right: 6px;
  color: inherit;
  text-decoration: none;
  opacity: 0.7;
}

.v2-footnote-backref:hover {
  opacity: 1;
}

.v2-methodology-top {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  margin-bottom: clamp(120px, 28vh, 280px);
}

.v2-methodology-top .v2-backmatter-title {
  margin-bottom: 0;
}

.v2-methodology-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.v2-methodology-lead {
  max-width: none;
  margin: 0;
}

.v2-methodology-lead p {
  font-family: var(--sans);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0;
}

.v2-methodology-body {
  max-width: none;
}

.v2-methodology-body p {
  font-family: var(--sans);
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.55;
  color: var(--black);
  margin-bottom: 20px;
}

.v2-methodology-body p:last-child {
  margin-bottom: 0;
}

.v2-author-grid {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  justify-content: start;
}

.v2-author-photo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  display: block;
  background: rgba(0, 0, 0, 0.06);
}

.v2-author-name {
  font-family: var(--sans);
  font-size: 20pt;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 6px;
}

.v2-author-role {
  font-family: var(--sans);
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--black);
  margin-bottom: clamp(20px, 3vh, 28px);
}

.v2-author-bio p:not(.v2-author-name):not(.v2-author-role) {
  font-family: var(--sans);
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.55;
  color: var(--black);
  margin-bottom: 18px;
}

.v2-author-bio p:not(.v2-author-name):not(.v2-author-role):last-child {
  margin-bottom: 0;
}

.v2-about-syndio-section {
  background: #0a0a0a;
  color: #fff;
  border-bottom: none;
  padding: 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.v2-about-syndio-inner {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(56px, 8vh, 88px) clamp(40px, 5vw, 96px) clamp(72px, 10vh, 112px);
  box-sizing: border-box;
}

.v2-about-syndio-body {
  max-width: min(640px, 56vw);
  flex: 0 1 auto;
  margin: 0;
}

.v2-about-syndio-body p {
  font-family: var(--sans);
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: clamp(20px, 3vh, 28px);
}

.v2-about-syndio-body p:last-child {
  margin-bottom: 0;
}

.v2-about-syndio-cta {
  margin-top: clamp(8px, 1.5vh, 16px);
}

.v2-about-syndio-cta a {
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.v2-about-syndio-cta a:hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.v2-about-syndio-foot {
  position: absolute;
  left: clamp(40px, 5vw, 96px);
  right: clamp(40px, 5vw, 96px);
  bottom: clamp(36px, 5vh, 56px);
  display: block;
  width: auto;
  margin-top: 0;
  padding-top: 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.v2-value-pair {
  padding: clamp(56px, 10vh, 96px) var(--gutter);
}

.v2-value-pair-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  justify-items: center;
}

.v2-value-pair-item {
  width: 100%;
  max-width: 32ch;
  text-align: center;
}

.v2-value-pair-num {
  font-family: var(--mono);
  font-weight: 300;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--volt);
  margin: 0 0 16px;
}

.v2-value-pair-label {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto;
  max-width: 28ch;
}

@media (max-width: 720px) {
  .v2-value-pair-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.v2-credits {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px var(--gutter) 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px;
}

.v2-credits-line {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.28);
  line-height: 1.4;
}

.v2-credits-role {
  color: rgba(0, 0, 0, 0.18);
  margin-right: 0.55em;
}

.v2-backmatter-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0.5;
  padding: 28px var(--gutter) 80px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Footer (legacy) ───────────────────────── */
.v2-footer {
  background: var(--cream);
  --fg: var(--black);
  --fg-muted: rgba(0, 0, 0, 0.72);
  --fg-strong: var(--black);
  padding: 64px var(--gutter) 80px;
  border-top: 1px solid var(--border-light);
}
.v2-footer-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.v2-footer-refs {
  list-style: none;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.v2-footer-refs li {
  font-size: 12px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.v2-footer-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0.5;
  margin-top: 48px;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Scroll animations ─────────────────────── */
.v2-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.v2-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.v2-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.v2-reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.v2-reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.v2-reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}
.v2-reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.v2-reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: none; }
.v2-reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: none; }
.v2-reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: none; }
.v2-reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: none; }
.v2-reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .v2-reveal, .v2-reveal-left, .v2-reveal-scale,
  .v2-reveal-stagger > *, .v2-intro-statement .word,
  .v2-reveal-cadence,
  .v2-reveal-karaoke .v2-karaoke-word,
  .v2-reveal-karaoke .v2-pull-quote-attr,
  .v2-chapter-intro.is-headlines-pending .v2-chapter-intro-line {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    visibility: visible !important;
  }
  .v2-reveal-karaoke .v2-karaoke-word {
    opacity: 1 !important;
  }
  .v2-scroll-indicator { animation: none; }
  .v2-calc-tooltip {
    transition: none;
  }
}

@media (max-height: 820px) {
  .v2-chapter-body > #roi-calculator.v2-calc-section {
    padding-top: clamp(96px, 14vh, 128px);
    padding-bottom: clamp(32px, 5vh, 56px);
  }
  .v2-calc-title {
    font-size: clamp(24px, 3.2vw, 34px);
    margin-bottom: 12px;
  }
  .v2-calc-hero-val {
    font-size: clamp(28px, 5.5vh, 44px);
  }
  .v2-calc-hero-metric {
    padding: 14px 16px;
    margin-bottom: 22px;
  }
  .v2-calc-body {
    padding: 14px 18px 12px;
  }
  .v2-calc-foot {
    padding: 10px 18px;
  }
  .v2-calc-disclaimer {
    font-size: 11px;
    line-height: 1.5;
  }
}

/* ── Mobile ────────────────────────────────── */
@media (max-width: 900px) {
  .v2-chapter-intro {
    height: 100svh;
    min-height: 100svh;
  }
  .v2-chapter-intro-line {
    font-size: clamp(40px, 10vw, 88px);
    max-width: 100%;
  }
  #part-4 .v2-chapter-intro-line,
  #part-5 .v2-chapter-intro-line {
    max-width: min(880px, 86vw);
  }
  .v2-split { grid-template-columns: 1fr; }
  .v2-split-image { min-height: 50vh; order: -1; }
  .v2-split--viewport {
    height: auto;
    min-height: 0;
    max-height: none;
  }
  .v2-split--viewport .v2-split-body-scroll {
    overflow: visible;
    height: auto;
    padding: clamp(48px, 8vh, 100px) var(--gutter);
  }
  .v2-split--viewport .v2-split-body {
    will-change: auto;
  }
  .v2-chart-wrap { grid-template-columns: 1fr; }
  .v2-compound-visual-head { grid-template-columns: 1fr; }
  .v2-compound-gap-badge { text-align: left; width: fit-content; }
  .v2-calc-inputs-row { grid-template-columns: 1fr; }
  .v2-calc-stats-row { grid-template-columns: 1fr; }
  .v2-calc-stat + .v2-calc-stat { border-left: none; border-top: 1px solid rgba(0, 0, 0, 0.1); }
  .v2-calc-derived-row { grid-template-columns: 1fr 1fr; }
  .v2-calc-costs-row { grid-template-columns: 1fr 1fr; }
  .v2-calc-breakdown-row { grid-template-columns: 1fr 1fr; }
  .v2-calc-breakdown-card { border-right: none; border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
  .v2-calc-breakdown-card:nth-child(2n) { border-right: none; }
  .v2-calc-breakdown-card:last-child { border-bottom: none; }
  .v2-calc-foot { flex-direction: column; align-items: stretch; }
  .v2-calc-tooltip {
    max-width: min(260px, 92vw);
    font-size: 15px;
  }
  .v2-methodology-top,
  .v2-methodology-grid,
  .v2-author-grid {
    grid-template-columns: 1fr;
  }
  .v2-backmatter-section--page {
    min-height: 0;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  .v2-author-photo {
    max-width: 280px;
    width: min(100%, 280px);
  }
  .v2-about-syndio-body {
    max-width: none;
  }
  .v2-persona-grid {
    flex-wrap: wrap;
    height: auto;
    min-height: 0;
    --persona-img-width: 100cqw;
  }
  .v2-persona-panel {
    flex: 1 1 100%;
    min-height: 42vh;
    height: 42vh;
  }
  .v2-persona-panel.is-touch-open {
    flex: 1 1 100%;
    min-height: 52vh;
    height: auto;
  }
  .v2-metrics-row { grid-template-columns: 1fr; }
  .v2-proof-item { grid-template-columns: 1fr; }
  .v2-proof-thumb { width: 100%; height: 180px; }
  .v2-reg-grid { grid-template-columns: 1fr; }
  .v2-header {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto;
    padding: 14px var(--gutter);
    gap: 10px;
  }
  .v2-logo { grid-column: 1; grid-row: 1; justify-self: start; }
  .v2-rail {
    display: none;
  }
  .v2-top-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .v2-audio-pill {
    width: 32px;
    max-width: 32px;
    height: 32px;
    min-width: 32px;
  }
  .v2-audio-icon {
    width: 14px;
    height: 14px;
  }
  .v2-pdf-pill { padding: 8px 12px; font-size: 9px; }
  .v2-header-cta {
    height: 32px;
    font-size: 10px;
    padding: 0 10px;
  }
}

/* ── Scroll progress (G1) ──────────────────── */
.v2-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: calc(var(--nav-z) + 1);
  pointer-events: none;
  background: transparent;
}
.v2-scroll-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--volt);
  transform-origin: left center;
}

/* ── Beat stages & SVG graphics ────────────── */
.v2-beat-graphic {
  flex: 1 1 200px;
  opacity: 0;
  transform: translateY(12px);
}
.v2-beat-graphic.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.v2-beat-svg {
  width: 100%;
  height: auto;
  display: block;
}
.v2-beat-svg--wide { max-width: 720px; margin: 0 auto; }
.v2-beat-svg--intelligence {
  width: 100%;
  max-width: min(1100px, 100%);
  height: clamp(360px, 58vh, 640px);
  margin: 0 auto;
  overflow: visible;
}
.v2-intelligence-visual {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: clamp(16px, 3vh, 32px) auto clamp(8px, 2vh, 16px);
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
#audio-compounding,
.v2-compounding-section {
  overflow-x: clip;
  padding-top: clamp(96px, 14vh, 168px);
  padding-bottom: clamp(48px, 8vh, 80px);
  border-top: 1px solid rgba(251, 250, 245, 0.12);
}

#audio-compounding > .v2-body-col--narrow > .v2-beat-title {
  margin-top: 0;
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

#beat-p4-e {
  display: block;
  overflow: visible;
  padding-top: clamp(24px, 4vh, 40px);
}

#beat-p4-e .v2-intelligence-visual {
  width: 100%;
  margin-top: clamp(8px, 2vh, 20px);
}

.v2-beat-svg--loop { margin-top: 8px; }
.v2-beat-svg--ring { max-width: 160px; }
.v2-svg-label {
  font-family: var(--mono);
  font-size: 11px;
  fill: var(--cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.v2-svg-label--dark { fill: rgba(0, 0, 0, 0.55); }
.v2-beat-svg--intelligence .v2-svg-label {
  font-size: 26px;
  letter-spacing: 0.14em;
}
.v2-svg-mono {
  font-family: var(--mono);
  font-size: 12px;
  fill: var(--cream);
}
.v2-svg-mono--dark { fill: rgba(0, 0, 0, 0.75); }
.v2-svg-muted { fill: rgba(251, 250, 245, 0.45); }
.v2-svg-box {
  fill: none;
  stroke: rgba(251, 250, 245, 0.35);
  stroke-width: 1.5;
}
.v2-svg-box--gov { stroke: var(--volt); fill: rgba(237, 249, 31, 0.06); }
.v2-svg-box--gap { stroke: rgba(251, 250, 245, 0.2); stroke-dasharray: 6 4; }
.v2-svg-box--ai { stroke: var(--amber); fill: rgba(200, 146, 42, 0.08); }
.v2-svg-connector { stroke: var(--volt); stroke-width: 1.5; fill: none; }
.v2-svg-connector--dark { stroke: rgba(0, 0, 0, 0.25); }
.v2-svg-check { fill: none; stroke: var(--volt); stroke-width: 1.5; }
.v2-svg-check-mark { stroke: var(--volt); stroke-width: 1.5; fill: none; }
.v2-svg-dash { stroke: rgba(251, 250, 245, 0.25); stroke-width: 1.5; stroke-dasharray: 5 4; fill: none; }

.v2-svg-loop-rail {
  fill: rgba(251, 250, 245, 0.02);
  stroke: rgba(251, 250, 245, 0.1);
  stroke-width: 1;
}
.v2-svg-loop-rail--gov {
  fill: rgba(237, 249, 31, 0.035);
  stroke: rgba(237, 249, 31, 0.18);
}
.v2-svg-loop-rail--gap {
  fill: rgba(251, 250, 245, 0.015);
  stroke: rgba(251, 250, 245, 0.12);
}
.v2-svg-loop-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: rgba(251, 250, 245, 0.45);
}
.v2-svg-loop-badge {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  fill: var(--volt);
}
.v2-svg-loop-badge--broken {
  fill: rgba(251, 250, 245, 0.42);
}
.v2-beat-loop-forward,
.v2-beat-loop-return {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}
.v2-beat-loop-return {
  opacity: 0.7;
}
.v2-beat-loop-gap-left,
.v2-beat-loop-gap-right {
  stroke-dasharray: 104;
  stroke-dashoffset: 104;
}
.v2-svg-gap-ring {
  fill: rgba(251, 250, 245, 0.04);
  stroke: rgba(251, 250, 245, 0.22);
  stroke-width: 1;
}
.v2-svg-gap-x {
  fill: none;
  stroke: rgba(251, 250, 245, 0.5);
  stroke-width: 1.5;
  stroke-linecap: round;
}
.v2-svg-ring-bg {
  fill: none;
  stroke: rgba(251, 250, 245, 0.12);
  stroke-width: 10;
}
.v2-svg-ring-fill {
  fill: none;
  stroke: var(--volt);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 490;
  stroke-dashoffset: 490;
  transform: rotate(-90deg);
  transform-origin: 100px 100px;
}

.v2-svg-intelligence-core {
  opacity: 1;
}

.v2-svg-intelligence-ring-wrap {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.v2-svg-intelligence-ring {
  vector-effect: non-scaling-stroke;
}

.v2-svg-stat {
  font-family: var(--mono);
  font-size: 22px;
  fill: var(--volt);
  font-weight: 300;
}
.v2-svg-stat-sub {
  font-family: var(--mono);
  font-size: 9px;
  fill: rgba(251, 250, 245, 0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v2-beat-stage {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 5vh, 48px) var(--gutter);
  width: 100%;
  box-sizing: border-box;
}
.v2-beat-stage--dark { background: var(--black); }
.v2-beat-stage--light { background: var(--white); color: var(--black); }
.v2-beat-stage--inline {
  min-height: auto;
  padding: clamp(24px, 4vh, 40px) var(--gutter) clamp(16px, 2vh, 28px);
}
.v2-beat-stage--stat {
  position: relative;
  overflow: hidden;
}
.v2-beat-stage-inner {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  text-align: center;
}
.v2-beat-stage-inner--narrow { max-width: var(--content); }
.v2-beat-stage-inner--wide { max-width: min(960px, 100%); }
.v2-beat-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 12px;
}
.v2-beat-eyebrow--dark { color: rgba(0, 0, 0, 0.45); }
.v2-beat-title {
  font-family: var(--ivar);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}
.v2-beat-title--dark { color: var(--black); }
.v2-beat-title--light { color: var(--white); }

.v2-prose > .v2-beat-title,
.v2-split-body > .v2-beat-title,
.v2-body-col > .v2-beat-title,
.v2-body-col--narrow > .v2-beat-title {
  margin-left: 0;
  margin-right: 0;
  margin-top: clamp(48px, 7vh, 72px);
  max-width: none;
  text-align: left;
}

.v2-beat-stage--light .v2-beat-eyebrow {
  color: rgba(0, 0, 0, 0.45);
}
.v2-beat-stage--light .v2-beat-title {
  color: var(--black);
}

.v2-svg-bar { fill: rgba(0, 0, 0, 0.06); }
.v2-svg-bar-fill { opacity: 0.9; }
.v2-svg-bar-fill--volt { fill: var(--volt); }
.v2-svg-bar-fill--amber { fill: var(--amber); }
.v2-svg-envelope {
  fill: rgba(0, 0, 0, 0.04);
  stroke: rgba(0, 0, 0, 0.2);
  stroke-width: 1.5;
}
.v2-svg-dot {
  fill: var(--amber);
  stroke: var(--white);
  stroke-width: 2;
}

.v2-beat-stat-dots {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
  pointer-events: none;
}
.v2-beat-stat-dots .v2-beat-svg--dots {
  max-width: 360px;
}
.v2-beat-offer-dot {
  fill: var(--amber);
}
.v2-beat-offer-dot--over { fill: var(--amber); }

.v2-beat-stage--focus {
  padding-top: clamp(48px, 8vh, 88px);
  padding-bottom: clamp(12px, 2vh, 24px);
}

#beat-p3-headline {
  padding-top: clamp(48px, 8vh, 88px);
}

#beat-p3-headline .v2-beat-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(34px, 4.8vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: none;
  text-align: left;
}

#beat-p3-a.v2-beat-stage--focus {
  padding-top: clamp(20px, 3vh, 32px);
}

/* CFO/CHRO focus visual + caption as one connected unit */
.v2-focus-figure {
  margin: clamp(28px, 4vh, 48px) 0 clamp(40px, 6vh, 64px);
  padding: clamp(32px, 5vh, 56px) var(--gutter) clamp(36px, 5vh, 52px);
  background: #F7F7F5;
  box-sizing: border-box;
}

.v2-focus-figure > #beat-p3-a.v2-beat-stage--focus,
.v2-focus-figure > #beat-p3-a.v2-beat-stage--inline,
.v2-focus-figure > #beat-p3-a.v2-beat-stage--light {
  margin: 0;
  padding: 0;
  background: transparent;
  width: 100%;
  max-width: none;
}

.v2-focus-figure .v2-beat-focus-svg {
  margin: 0 auto;
}

.v2-focus-caption {
  width: min(100%, 42rem);
  margin: clamp(8px, 1.5vh, 16px) auto 0;
  padding: 0;
  text-align: left;
}

.v2-focus-caption-title {
  margin: 0 0 clamp(10px, 1.4vh, 14px);
  font-family: var(--mono);
  font-size: clamp(12px, 1.2vw, 13px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.3;
}

.v2-focus-caption-body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(15px, 1.45vw, 17px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.72);
}

.v2-beat-focus-svg {
  width: min(100%, 640px);
  height: auto;
  max-height: min(48vh, 400px);
  display: block;
  margin: clamp(8px, 2vh, 20px) auto 0;
}

.v2-beat-focus-half {
  transform-origin: center center;
  will-change: filter, opacity;
}

#beat-p3-focus-cfo {
  opacity: 1;
  filter: blur(0);
}

#beat-p3-focus-chro {
  opacity: 0.5;
  filter: blur(5.5px);
}

.v2-beat-focus-ring {
  fill: rgba(0, 0, 0, 0.03);
  stroke: var(--black);
  stroke-width: 1.5;
}

.v2-beat-focus-seam {
  stroke: var(--black);
  stroke-width: 1;
  opacity: 0.22;
}

.v2-beat-focus-label {
  fill: var(--black);
  font-size: 18px;
  letter-spacing: 0.14em;
}

.v2-blind-spot-thesis {
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.55;
  margin-top: clamp(8px, 2vh, 20px);
}

.v2-svg-venn {
  stroke-width: 1.75;
  opacity: 0;
}
.v2-svg-venn--cfo {
  stroke: var(--volt);
  fill: rgba(237, 249, 31, 0.08);
}
.v2-svg-venn--chro {
  stroke: var(--volt);
  fill: rgba(237, 249, 31, 0.08);
}
.v2-svg-venn-overlap {
  fill: var(--volt);
  opacity: 0;
}
.v2-svg-venn-label {
  fill: var(--black);
  font-size: 13px;
  letter-spacing: 0.08em;
  opacity: 0;
}

.v2-beat-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
  margin-top: 8px;
}
.v2-beat-compare-col {
  padding: 24px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
}
.v2-beat-compare-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.v2-beat-compare-col ul {
  list-style: none;
  font-size: 15px;
  line-height: 1.6;
}
.v2-beat-compare-col li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.v2-beat-compare-col--ungoverned h4 { color: var(--amber); }
.v2-beat-compare-col--governed h4 { color: var(--black); }
.v2-beat-compare-col--governed { background: rgba(237, 249, 31, 0.12); border-color: rgba(237, 249, 31, 0.4); }

.v2-svg-layer {
  fill: rgba(237, 249, 31, 0.15);
  stroke: var(--volt);
  stroke-width: 1;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center bottom;
}

.v2-svg-map-dot {
  fill: rgba(0, 0, 0, 0.08);
  stroke: rgba(0, 0, 0, 0.2);
  stroke-width: 1;
}
.v2-svg-map-state {
  fill: rgba(0, 0, 0, 0.06);
  stroke: rgba(0, 0, 0, 0.15);
  stroke-width: 1;
}

.v2-chart-pin { width: 100%; }

.v2-chart-pin.is-pinned .v2-compound-visual {
  box-shadow: none;
}
.v2-proof-pin {
  position: relative;
  width: 100%;
}

.v2-proof-pin .v2-proof-item:not(.is-visible) {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.v2-proof-pin .v2-proof-item.is-visible {
  opacity: 1;
  transform: none;
}

.v2-beat-prose {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(251, 250, 245, 0.72);
}

.v2-beat-prose--loop {
  max-width: 42rem;
  margin-bottom: 32px;
  color: rgba(251, 250, 245, 0.82);
}

.v2-efficiency-subsection {
  margin-top: clamp(56px, 9vh, 96px);
  padding-top: clamp(40px, 6vh, 64px);
  padding-bottom: clamp(64px, 10vh, 120px);
  border-top: 1px solid var(--surface-border);
}

.v2-efficiency-subsection .v2-subhead {
  margin-top: 0;
  margin-bottom: 0.85em;
}

.v2-efficiency-subsection .v2-body-col--narrow p {
  font-size: 16px;
  line-height: 1.7;
}

.v2-metrics-row .v2-metric-card {
  opacity: 0.4;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.v2-metrics-row .v2-metric-card.is-active {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  .v2-beat-compare { grid-template-columns: 1fr; }
  .v2-beat-stage { min-height: auto; padding: 48px var(--gutter); }
}

@media (prefers-reduced-motion: reduce) {
  .v2-scroll-progress-bar,
  .v2-beat-graphic,
  .v2-svg-ring-fill,
  .v2-proof-pin .v2-proof-item,
  .v2-metrics-row .v2-metric-card {
    transition: none !important;
    animation: none !important;
  }
  .v2-svg-venn--cfo,
  .v2-svg-venn--chro,
  .v2-svg-venn-overlap,
  .v2-svg-venn-label {
    opacity: 1 !important;
  }
  .v2-svg-intelligence-ring-wrap {
    opacity: 1 !important;
  }
  .v2-beat-focus-half {
    filter: none !important;
    opacity: 1 !important;
  }
}

/* ── Briefing request modal (shared) ── */
.briefing-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vh, 32px) var(--gutter);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.briefing-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.briefing-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.briefing-modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  height: 85vh;
  max-height: 85vh;
  overflow: auto;
  background: #f7f7f5;
  color: #000;
  padding: clamp(28px, 4vh, 40px) clamp(28px, 4vw, 44px) clamp(24px, 3.5vh, 36px);
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}
.briefing-modal-panel--auto {
  height: auto;
  max-height: 85vh;
}
.briefing-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #000;
  cursor: pointer;
}
.briefing-modal-close::before {
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  background-color: currentColor;
  -webkit-mask: var(--cta-close-mask) center / contain no-repeat;
  mask: var(--cta-close-mask) center / contain no-repeat;
}
.briefing-modal-close:hover {
  background: rgba(0, 0, 0, 0.06);
}
.briefing-modal-title {
  font-family: var(--ivar);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(28px, 4vh, 40px);
  max-width: 12em;
}
.briefing-modal-title:has(+ .briefing-modal-lede) {
  margin-bottom: clamp(12px, 1.6vh, 16px);
}
.briefing-modal-lede {
  margin: 0 0 clamp(24px, 3.5vh, 36px);
  max-width: 28em;
  font-family: var(--sans);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.72);
}
.briefing-modal-fields {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vh, 24px);
}
.briefing-modal-extra {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vh, 24px);
}
.briefing-modal-extra[hidden],
.briefing-modal-consent[hidden] {
  display: none !important;
}
.briefing-modal-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.briefing-modal-field label {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #000;
}
.briefing-modal-field input {
  width: 100%;
  border: 0;
  border-bottom: 1.5px solid #000;
  background: transparent;
  border-radius: 0;
  padding: 6px 0 10px;
  font-family: var(--sans);
  font-size: 16px;
  color: #000;
  outline: none;
  box-shadow: none;
}
.briefing-modal-field input:focus {
  border-bottom-color: #000;
}
.briefing-modal-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: clamp(22px, 3vh, 32px) 0 0;
}
.briefing-modal-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #000;
  border: 1.5px solid #000;
}
.briefing-modal-consent label {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.45;
  color: #000;
}
.briefing-modal-consent a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.briefing-modal-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  margin-top: clamp(22px, 3vh, 32px);
  padding: 18px 32px;
  border: 0;
  border-radius: 6px;
  background: #000;
  color: #fff;
  font-family: 'Instrument Sans', var(--sans), Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: normal;
  cursor: pointer;
}
.briefing-modal-submit::after {
  content: '';
  display: inline-block;
  width: 0.95em;
  height: 0.95em;
  background-color: currentColor;
  -webkit-mask: var(--cta-arrow-mask) center / contain no-repeat;
  mask: var(--cta-arrow-mask) center / contain no-repeat;
}
.briefing-modal-submit:hover {
  background: #1a1a1a;
}
.briefing-modal-submit:disabled {
  opacity: 0.55;
  cursor: wait;
}
.briefing-modal-panel.is-submitted .briefing-modal-form {
  display: none;
}
.briefing-modal-success {
  display: none;
  margin: 0;
  font-family: var(--ivar);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #000;
  max-width: 14em;
}
.briefing-modal-panel.is-submitted .briefing-modal-success {
  display: block;
}
/* Lock via JS event prevention only — do not change body position/overflow
   (that fights ScrollTrigger pins and jumps the page). */
html.is-briefing-modal-open,
body.is-briefing-modal-open {
  overscroll-behavior: none;
}
@media (max-width: 640px) {
  .briefing-modal-panel {
    width: 100%;
    height: min(90vh, 100%);
    max-height: 90vh;
  }
}

/* HubSpot legacy form embeds (any modal using .briefing-modal-panel) — these
   render inline in the page (no iframe), and ship with zero base CSS of
   their own, so these rules are overriding raw browser defaults, not
   fighting a HubSpot stylesheet. */
.briefing-modal-panel fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.briefing-modal-panel .hs-form-field {
  margin-bottom: clamp(18px, 2.5vh, 24px);
}
.briefing-modal-panel .hs-form-field[style*="display: none"] {
  margin-bottom: 0;
}
.briefing-modal-panel .hs-form-field > label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #000;
}
.briefing-modal-panel .hs-form-required {
  color: inherit;
}
.briefing-modal-panel .hs-input {
  width: 100%;
  box-sizing: border-box;
  border: 0;
  border-bottom: 1.5px solid #000;
  border-radius: 0;
  background: transparent;
  padding: 6px 0 10px;
  font-family: var(--sans);
  font-size: 16px;
  color: #000;
  outline: none;
  box-shadow: none;
}
.briefing-modal-panel .hs-input:focus {
  border-bottom-color: #000;
}
.briefing-modal-panel .hs-input.invalid.error {
  border-bottom-color: #E51520;
}
.briefing-modal-panel .inputs-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.briefing-modal-panel .hs-form-booleancheckbox-display {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.briefing-modal-panel .hs-form-booleancheckbox-display input[type="checkbox"] {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #000;
  border: 1.5px solid #000;
}
.briefing-modal-panel .hs-form-booleancheckbox-display span {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.45;
  color: #000;
}
.briefing-modal-panel .hs-form-booleancheckbox-display a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.briefing-modal-panel .hs-error-msgs {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}
.briefing-modal-panel .hs-error-msg {
  font-family: var(--sans);
  font-size: 12px;
  color: #E51520;
}
.briefing-modal-panel .hs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  margin-top: clamp(22px, 3vh, 32px);
  padding: 18px 32px;
  border: 0;
  border-radius: 6px;
  background: #000;
  color: #fff;
  font-family: 'Instrument Sans', var(--sans), Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: normal;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.briefing-modal-panel .hs-button:hover {
  background: #1a1a1a;
}

/* ── PDF-aligned: executive summary ── */
.v2-exec-summary {
  padding-top: clamp(56px, 9vh, 88px);
}

.v2-exec-summary-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.v2-exec-summary-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 16px;
}

.v2-exec-summary-rule {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin: 0 0 clamp(28px, 4vh, 40px);
}

.v2-exec-summary-title {
  font-family: var(--ivar);
  font-size: clamp(42px, 5.8vw, 68px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--black);
  max-width: 20ch;
  margin: 0 0 clamp(36px, 5vh, 52px);
}

#part-1-body .v2-exec-summary-inner {
  max-width: 1360px;
}

#part-1-body .v2-exec-summary-title {
  max-width: 32ch;
}

.v2-exec-summary-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: clamp(48px, 7vh, 72px);
}

.v2-exec-summary-col p {
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1.65;
}

@media (max-width: 800px) {
  .v2-exec-summary-cols {
    grid-template-columns: 1fr;
  }
}

.v2-exec-dataviz.is-pending .v2-exec-dataviz-num-overlay {
  opacity: 0;
}

.v2-exec-dataviz.is-pending .v2-exec-dataviz-marker {
  opacity: 0;
}

.v2-exec-dataviz {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  background: var(--black);
  border-radius: 12px;
  padding: clamp(36px, 5vw, 52px) clamp(36px, 4.5vw, 56px);
  color: var(--cream);
  box-sizing: border-box;
}

.v2-exec-dataviz-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vh, 24px);
  min-width: 0;
  padding-top: clamp(76px, 10.5vw, 104px);
}

.v2-exec-dataviz-copy {
  position: absolute;
  top: 0;
  left: 0;
  max-width: min(340px, 62%);
  padding-bottom: clamp(16px, 2.5vh, 24px);
  font-family: var(--sans);
  font-size: clamp(14px, 1.45vw, 16px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  box-sizing: border-box;
}

.v2-exec-dataviz-panel--right .v2-exec-dataviz-copy {
  left: auto;
  right: 0;
  text-align: right;
}

.v2-exec-dataviz-copy strong {
  color: #fff;
  font-weight: 600;
}

.v2-exec-dataviz-bar-wrap {
  position: relative;
  margin-top: auto;
  padding-top: clamp(48px, 6.5vw, 72px);
}

.v2-exec-dataviz-num-overlay {
  position: absolute;
  top: 0;
  font-family: var(--mono);
  font-size: clamp(44px, 6.75vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--volt);
  pointer-events: none;
  white-space: nowrap;
}

.v2-exec-dataviz-num-overlay--range {
  left: 60%;
  transform: translateX(-50%);
}

.v2-exec-dataviz-num-overlay--single {
  left: 30%;
  transform: translateX(-50%);
}

.v2-exec-dataviz-bar {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 520 / 96;
}

.v2-exec-dataviz-bar-track {
  fill: #242424;
}

.v2-exec-dataviz-bar-outline {
  fill: none;
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 1.5;
}

.v2-exec-dataviz-bar-fill--solid {
  fill: var(--volt);
}

.v2-exec-dataviz-bar-fill--range {
  fill: rgba(237, 249, 31, 0.36);
}

.v2-exec-dataviz-marker {
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 1;
}

.v2-exec-dataviz-foot {
  font-family: var(--mono);
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F7F7F5;
  margin: 0;
  text-align: center;
}

@media (max-width: 800px) {
  .v2-exec-dataviz {
    grid-template-columns: 1fr;
  }

  .v2-exec-dataviz-panel {
    padding-top: 0;
  }

  .v2-exec-dataviz-copy {
    position: static;
    max-width: none;
  }

  .v2-exec-dataviz-panel--right .v2-exec-dataviz-copy {
    text-align: left;
  }
}

/* ── PDF-aligned: Part I accountability gap graphic ── */
.v2-section:has(.v2-accountability-gap) {
  padding-bottom: 0;
  padding-top: clamp(34px, 5.4vh, 62px);
  --part1-split-pad: clamp(10px, 1.5vh, 17px);
  --part1-visual-h: calc(85svh - (var(--part1-split-pad) * 2));
  --part1-visual-col: min(42vw, calc(var(--part1-visual-h) * 348 / 487));
  --accountability-copy-max: 520px;
  --accountability-visual-scale: 1.12;
  --accountability-visual-h: calc(var(--part1-visual-h) * var(--accountability-visual-scale));
  --accountability-visual-col: min(46vw, calc(var(--accountability-visual-h) * 548 / 876));
}

.v2-section:has(.v2-accountability-gap) .v2-body-col--narrow > .v2-beat-title {
  margin-top: 0;
}

.v2-accountability-gap {
  width: 100%;
  margin-top: clamp(24px, 3.6vh, 34px);
}

.v2-accountability-gap-inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 1280px;
  margin-inline: auto;
  padding: var(--part1-split-pad) var(--gutter);
  box-sizing: border-box;
}

.v2-accountability-gap-row {
  display: grid;
  grid-template-columns: minmax(0, var(--accountability-copy-max)) var(--accountability-visual-col);
  align-items: center;
  justify-content: start;
  gap: clamp(32px, 4vw, 56px);
  width: 100%;
}

.v2-accountability-gap-copy {
  flex: 0 1 var(--accountability-copy-max);
  min-width: 0;
  max-width: var(--accountability-copy-max);
  padding: 0;
  overflow: hidden;
}

.v2-accountability-gap-title {
  font-family: var(--ivar);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0 0 clamp(16px, 2.5vh, 24px);
}

.v2-accountability-gap-prose {
  font-size: clamp(14px, 1.45vw, 16px);
  line-height: 1.5;
}

.v2-accountability-gap-prose p {
  margin-bottom: 0.9em;
  color: var(--fg-muted);
}

.v2-accountability-gap-prose p:last-child {
  margin-bottom: 0;
}

.v2-accountability-gap-prose strong {
  font-weight: 600;
  color: var(--fg-strong);
}

.v2-accountability-gap-graphic {
  margin: 0;
  justify-self: center;
  align-self: center;
  height: var(--accountability-visual-h);
  max-height: min(var(--accountability-visual-h), 876px);
  aspect-ratio: 548 / 876;
  width: auto;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
}

.v2-accountability-gap-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 860px) {
  .v2-accountability-gap-inner {
    min-height: 0;
    max-height: none;
    padding: 0 var(--gutter) clamp(40px, 8vh, 64px);
  }

  .v2-accountability-gap-row {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .v2-accountability-gap-copy {
    flex: none;
    max-width: none;
    overflow: visible;
  }

  .v2-accountability-gap-graphic {
    justify-self: center;
    height: auto;
    width: min(320px, 82vw);
    max-height: none;
    aspect-ratio: 548 / 876;
  }

  .v2-accountability-gap-img {
    width: 100%;
    height: auto;
  }
}

/* ── PDF-aligned: Part I better frameworks spread ── */
.v2-better-frameworks {
  width: 100%;
  margin-top: clamp(40px, 6vh, 72px);
  margin-bottom: 0;
  padding: clamp(48px, 7vh, 80px) 0 clamp(56px, 8vh, 96px);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}

.v2-better-frameworks-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(36px, 5vh, 56px);
  max-width: 1480px;
  margin-inline: auto;
  padding: 0 var(--gutter);
  box-sizing: border-box;
}

.v2-better-frameworks-intro {
  width: min(100%, var(--measure, 42rem));
  max-width: var(--content, 42rem);
  margin-inline: auto;
  padding: 0;
}

.v2-better-frameworks-headline {
  font-family: var(--ivar);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0 0 clamp(14px, 2vh, 20px);
}

.v2-better-frameworks-lede {
  font-family: var(--sans);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.72);
  margin: 0;
}

.v2-better-frameworks-trio {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(240px, 320px) minmax(280px, 1.2fr);
  align-items: center;
  gap: clamp(28px, 3.2vw, 40px);
  width: 100%;
}

.v2-better-frameworks-statement {
  font-family: var(--ivar);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0;
}

.v2-better-frameworks-statement--left {
  text-align: right;
  max-width: 9.25em;
  justify-self: end;
}

.v2-better-frameworks-statement--right {
  text-align: left;
  max-width: 9.25em;
  justify-self: start;
}

.v2-better-frameworks-photo {
  margin: 0;
  width: 100%;
  max-width: 320px;
  justify-self: center;
  aspect-ratio: 348 / 487;
  border-radius: clamp(14px, 1.8vw, 20px);
  overflow: hidden;
}

.v2-better-frameworks-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 860px) {
  .v2-better-frameworks {
    padding: clamp(36px, 6vh, 56px) 0 clamp(40px, 8vh, 64px);
  }

  .v2-better-frameworks-inner {
    gap: clamp(28px, 4vh, 40px);
  }

  .v2-better-frameworks-trio {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: clamp(24px, 3.5vh, 36px);
  }

  .v2-better-frameworks-statement--left,
  .v2-better-frameworks-statement--right {
    text-align: left;
    max-width: none;
    justify-self: stretch;
  }

  .v2-better-frameworks-photo {
    order: 0;
    justify-self: center;
    width: min(260px, 64vw);
    max-width: none;
  }

  .v2-better-frameworks-statement--left {
    order: -1;
  }

  .v2-better-frameworks-statement--right {
    order: 1;
  }
}

/* legacy exec-proof (retired) */
.v2-exec-proof { display: none; }

/* ── PDF-aligned: Part I $1.2B capital spread ── */
.v2-capital-spread {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  background: var(--black);
  padding: 0;
  overflow: hidden;
}

.v2-capital-spread-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 20px);
  width: 100%;
  height: 100%;
  min-height: 100svh;
  max-width: none;
  margin: 0;
  padding: clamp(72px, 10vh, 104px) var(--gutter) clamp(96px, 14vh, 140px);
  box-sizing: border-box;
}

.v2-capital-spread-copy {
  position: relative;
  z-index: 2;
  flex: 0 0 min(260px, 28vw);
  max-width: min(260px, 28vw);
  margin-top: clamp(32px, 8vh, 88px);
  font-family: var(--sans);
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #fff;
  padding: 0;
}

.v2-capital-spread-copy strong {
  color: var(--volt);
  font-weight: 600;
}

.v2-capital-spread-visual {
  flex: 0 0 auto;
  width: min(92vh, 58vw);
  height: min(92vh, 58vw);
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.v2-capital-spread-visual.is-pending .v2-capital-spread-stat,
.v2-capital-spread-visual.is-pending .v2-capital-spread-stat-label,
.v2-capital-spread-visual.is-pending .v2-capital-spread-callout-wrap {
  opacity: 0;
}

.v2-capital-spread-ring {
  fill: none;
  stroke: var(--volt);
  stroke-width: 2;
  transform-origin: 300px 300px;
  transform-box: fill-box;
}

.v2-capital-spread-svg {
  display: block;
  width: 112%;
  height: 112%;
  max-width: none;
  overflow: visible;
}

.v2-capital-spread-dot {
  fill: rgba(255, 255, 255, 0.24);
}

.v2-capital-spread-stat {
  font-family: var(--mono);
  font-size: 88px;
  font-weight: 400;
  fill: var(--volt);
  letter-spacing: -0.04em;
}

.v2-capital-spread-stat-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  fill: var(--volt);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.v2-capital-spread-callout-dot {
  fill: var(--volt);
}

.v2-capital-spread-callout-box {
  fill: #000;
}

.v2-capital-spread-callout {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  fill: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .v2-capital-spread {
    height: auto;
    min-height: 100svh;
  }

  .v2-capital-spread-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100svh;
    gap: clamp(20px, 4vh, 32px);
    padding: clamp(80px, 11vh, 104px) var(--gutter) clamp(72px, 12vh, 104px);
    box-sizing: border-box;
  }

  .v2-capital-spread-copy {
    flex: none;
    max-width: none;
    margin-top: 0;
    align-self: start;
    margin-bottom: 0;
  }

  .v2-capital-spread-visual {
    width: min(88vw, 88vw);
    height: min(88vw, 88vw);
    margin-right: 0;
  }

  .v2-capital-spread-stat {
    font-size: 64px;
  }
}

/* ── PDF-aligned: Part II mechanism TOC ── */
.v2-mechanism-toc {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: clamp(40px, 6vh, 56px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.v2-mechanism-toc-item {
  display: grid;
  grid-template-columns: minmax(7rem, 9rem) 1fr;
  gap: clamp(16px, 3vw, 32px);
  align-items: baseline;
  padding: clamp(18px, 3vh, 24px) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.v2-mechanism-toc-item:hover,
.v2-mechanism-toc-item:focus-visible {
  background: rgba(0, 0, 0, 0.02);
  outline: none;
}

.v2-mechanism-toc-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.v2-mechanism-toc-title {
  font-family: var(--ivar);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

@media (max-width: 600px) {
  .v2-mechanism-toc-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* ── PDF-aligned: governed decision worth section ── */
.v2-section.v2-governed-worth {
  position: relative;
  isolation: isolate;
  background-color: var(--texture-base);
  padding: clamp(104px, 15vh, 160px) var(--gutter);
}

.v2-callout + .v2-section.v2-governed-worth {
  padding-top: clamp(104px, 15vh, 160px);
}

.v2-governed-worth > * {
  position: relative;
  z-index: 1;
}

.v2-governed-worth-grid {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  column-gap: clamp(48px, 7vw, 112px);
  row-gap: clamp(32px, 4.5vh, 52px);
  align-items: start;
}

.v2-governed-worth-title {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--ivar);
  font-size: clamp(44px, 5.8vw, 72px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0;
  max-width: 100%;
  text-align: left;
}

.v2-governed-worth-copy {
  grid-column: 1;
  grid-row: 2;
}

.v2-governed-worth-aside {
  grid-column: 2;
  grid-row: 2;
  padding-top: 0;
  max-width: none;
}

#audio-feedback-loop {
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-top: clamp(32px, 5vh, 56px);
  max-width: 14ch;
}

.v2-governance-visibility {
  margin: clamp(40px, 6vh, 64px) auto;
  max-width: var(--content);
}

.v2-governance-visibility-media {
  position: relative;
  overflow: hidden;
  border-radius: clamp(12px, 1.5vw, 16px);
  aspect-ratio: 663 / 618;
  background: #1a1a1a;
}

.v2-governance-visibility-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.v2-governance-visibility-media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.42) 32%,
    rgba(0, 0, 0, 0.08) 58%,
    transparent 78%
  );
  pointer-events: none;
}

.v2-governance-visibility-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: clamp(20px, 4.2vw, 36px) clamp(18px, 3.6vw, 32px) clamp(18px, 3.4vw, 28px);
  color: #fff;
  font-family: 'Instrument Sans', var(--sans), Arial, sans-serif;
}

.v2-prose .v2-governance-visibility-copy p {
  color: #fff;
}

.v2-governance-visibility-title {
  margin: 0;
  font-family: 'Instrument Sans', var(--sans), Arial, sans-serif;
  font-size: 18pt;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.v2-governance-visibility-rule {
  height: 1px;
  margin: clamp(12px, 1.8vw, 16px) 0 clamp(14px, 2vw, 18px);
  background: rgba(255, 255, 255, 0.55);
}

.v2-governance-visibility-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2.5vw, 28px);
}

.v2-governance-visibility-role {
  margin: 0 0 0.35em;
  font-family: 'Instrument Sans', var(--sans), Arial, sans-serif;
  font-size: 14pt;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-prose .v2-governance-visibility-desc {
  margin: 0;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Instrument Sans', var(--sans), Arial, sans-serif;
  font-size: 12pt;
  font-weight: 400;
  line-height: 1.35;
}

@media (max-width: 520px) {
  .v2-governance-visibility-cols {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .v2-governance-visibility-desc {
    max-width: none;
  }
}

/* Part V — regulatory decision grid + lead headline */
.v2-regulatory-grid {
  position: relative;
  z-index: 2;
  width: 100vw;
  max-width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: clamp(48px, 8vh, 96px) var(--gutter) clamp(32px, 5vh, 48px);
  box-sizing: border-box;
  background: var(--white);
}

.v2-regulatory-grid + .v2-section {
  padding-top: clamp(32px, 5vh, 48px);
}

.v2-regulatory-grid-inner {
  width: min(1024px, 100%);
  margin-inline: auto;
}

.v2-regulatory-grid-eyebrow {
  margin: 0 0 clamp(18px, 2.5vh, 24px);
  font-family: var(--sans);
  font-size: 16pt;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.2;
  text-align: center;
  color: var(--black);
}

.v2-regulatory-grid-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 32px);
  margin-bottom: 10px;
}

.v2-regulatory-grid-col-label {
  margin: 0;
  font-family: var(--mono);
  font-size: 12pt;
  font-weight: 300;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-align: center;
  color: #0A0A0A;
}

.v2-regulatory-grid-board {
  display: grid;
  gap: clamp(16px, 2.5vw, 20px);
}

.v2-regulatory-grid-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 32px);
}

.v2-regulatory-grid-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: clamp(72px, 12vw, 88px);
  padding: 18px 20px;
  border: 1.25px solid transparent;
  border-radius: 12px;
  background: var(--white);
  text-align: center;
}

.v2-regulatory-grid-cell--governed {
  border: 1px solid #B5C13F;
  background: rgba(237, 249, 31, 0.5);
}

.v2-regulatory-grid-cell--ungoverned {
  border: 1px solid #FC4272;
  background: rgba(252, 66, 114, 0.2);
}

.v2-regulatory-grid-main {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
}

.v2-regulatory-grid-main--risk {
  color: #C44B4B;
}

.v2-regulatory-grid-sub {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(12px, 1.35vw, 15px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.55);
}

.v2-regulatory-grid-sub--risk {
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: 0.08em;
  color: #C44B4B;
}

.v2-part5-lead-title {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: none;
  margin-top: 0;
  margin-bottom: clamp(20px, 3vh, 32px);
}

/* Part V — cost of waiting two-column spread */
.v2-cost-waiting-section {
  padding-bottom: clamp(96px, 14vh, 168px);
}

.v2-cost-waiting-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  box-sizing: border-box;
}

.v2-cost-waiting-row {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 88px);
}

.v2-cost-waiting-copy {
  min-width: 0;
  max-width: 420px;
}

.v2-cost-waiting-copy .v2-part5-lead-title {
  max-width: 12em;
}

.v2-cost-waiting-emphasis {
  margin-top: 1.25em;
  margin-bottom: 0;
}

.v2-cost-waiting-emphasis strong {
  font-weight: 600;
  color: var(--fg-strong);
}

.v2-cost-waiting-photo {
  margin: 0;
  min-width: 0;
  align-self: center;
}

.v2-cost-waiting-photo img {
  display: block;
  width: 100%;
  max-width: min(580px, 100%);
  margin-left: auto;
  margin-right: 0;
  height: auto;
}

@media (max-width: 900px) {
  .v2-cost-waiting-row {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vh, 40px);
  }

  .v2-cost-waiting-copy {
    max-width: none;
  }

  .v2-cost-waiting-copy .v2-part5-lead-title {
    max-width: none;
  }

  .v2-cost-waiting-photo img {
    max-width: min(480px, 100%);
    margin-inline: auto;
  }
}

.v2-governed-worth-copy p {
  color: rgba(251, 250, 245, 0.82);
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.65;
  max-width: 50rem;
}

.v2-governed-worth-num {
  display: flex;
  flex-direction: column;
  gap: 0.02em;
  font-family: var(--mono);
  font-weight: 300;
  font-size: clamp(44px, 7vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
  margin: 0 0 clamp(20px, 3vh, 28px);
}

.v2-governed-worth-num-line {
  display: block;
}

.v2-governed-worth-num-label {
  font-family: var(--mono);
  font-size: clamp(10px, 1vw, 11px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 250, 245, 0.72);
  line-height: 1.5;
  margin: 0 0 clamp(40px, 6vh, 64px);
  max-width: min(100%, 48ch);
}

.v2-governed-worth-sources-label {
  font-family: var(--sans);
  font-size: clamp(14px, 1.2vw, 16px);
  letter-spacing: normal;
  text-transform: none;
  color: rgba(251, 250, 245, 0.72);
  margin: 0 0 0.85em;
}

.v2-governed-worth-list {
  margin: 0 0 clamp(8px, 1.5vh, 16px);
  padding-left: 1.15em;
  color: rgba(251, 250, 245, 0.72);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.55;
  max-width: 50rem;
}

.v2-governed-worth-list li {
  margin-bottom: 0.65em;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .v2-governed-worth-grid {
    grid-template-columns: 1fr;
    row-gap: clamp(32px, 5vh, 48px);
  }

  .v2-governed-worth-title,
  .v2-governed-worth-copy,
  .v2-governed-worth-aside {
    grid-column: 1;
    grid-row: auto;
  }

  .v2-governed-worth-num {
    font-size: clamp(36px, 10vw, 52px);
  }
}

.v2-value-pair-formula {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 12px 0 0;
}

.v2-underpay-source {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: rgba(251, 250, 245, 0.5);
  margin: 20px 0 0;
  max-width: 52ch;
}

/* ── Recoverable value stat (full viewport) ── */
.v2-recoverable-stat {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
  padding: clamp(48px, 6vh, 72px) var(--gutter) clamp(28px, 4vh, 40px);
  box-sizing: border-box;
}

.v2-recoverable-stat-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.v2-recoverable-stat-dots-svg {
  display: block;
  width: 100%;
  height: auto;
}

.v2-recoverable-stat-dot {
  fill: rgba(251, 250, 245, 0.18);
}

.v2-recoverable-stat-dot--highlight {
  fill: var(--volt);
}

.v2-recoverable-stat-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 68rem);
  margin: auto;
  padding: 0;
  text-align: center;
}

.v2-recoverable-stat-num {
  font-family: var(--mono);
  font-weight: 300;
  font-size: clamp(56px, 11.5vw, 128px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 clamp(20px, 3vh, 32px);
  white-space: nowrap;
}

.v2-recoverable-stat-label {
  font-family: var(--mono);
  font-size: clamp(15px, 1.7vw, 18px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 250, 245, 0.86);
  line-height: 1.55;
  margin: 0 auto;
  max-width: 68ch;
}

.v2-recoverable-stat-formula {
  position: relative;
  z-index: 2;
  width: min(100%, 68rem);
  font-family: var(--sans);
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: normal;
  text-transform: none;
  color: rgba(251, 250, 245, 0.48);
  line-height: 1.55;
  margin: clamp(32px, 6vh, 56px) auto 0;
  max-width: 78ch;
  text-align: left;
}

/* ── Jump banner → ROI calculator ─────────── */
.v2-see-number-banner {
  position: relative;
  z-index: 2;
  min-height: clamp(240px, 34vh, 340px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  padding: clamp(56px, 10vh, 96px) var(--gutter);
  box-sizing: border-box;
  background-color: #f4f4f4;
  background-image: url('../textures/see-number-banner.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.v2-see-number-banner-inner {
  width: min(100%, 68rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(24px, 3.5vh, 36px);
}

.v2-see-number-banner-q {
  margin: 0;
  font-family: var(--ivar);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--black);
  max-width: none;
  white-space: nowrap;
}

.v2-see-number-banner-cta {
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .v2-see-number-banner {
    min-height: clamp(200px, 30vh, 280px);
    padding: clamp(48px, 8vh, 72px) var(--gutter);
  }

  .v2-see-number-banner-q {
    white-space: normal;
    font-size: clamp(24px, 7vw, 32px);
  }
}

#roi-calculator {
  scroll-margin-top: 72px;
}

#roi-calc-focus {
  /* Banner jump target — sits below section chrome so Maria clears */
  scroll-margin-top: 88px;
}
