@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("assets/open-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("assets/open-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --purple: #6d1afe;
  --navy: #21325e;
  --navy-deep: #172545;
  --ink: #30323a;
  --muted: #636775;
  --paper: #fbfafc;
  --white: #ffffff;
  --sky: #75deff;
  --periwinkle: #8e94ff;
  --pink: #de49c6;
  --line: #d9deeb;
  --line-strong: #abb4ca;
  --soft: #f1f2f8;
  --focus: #005fcc;
  --header-height: 64px;
  --controls-height: 78px;
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --display: Futura, "Century Gothic", "Avenir Next", sans-serif;
  --body: "Open Sans", Arial, Helvetica, sans-serif;
}

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

html {
  height: 100%;
  background: var(--paper);
}

body {
  min-width: 320px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
dialog {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--navy);
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

a:hover {
  color: var(--purple);
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex="-1"]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  transform: translateY(-160%);
  border: 2px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 252, .98);
}

.topbar__brand {
  justify-self: start;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--navy);
  font-family: var(--display);
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
}

.topbar__brand img {
  width: 56px;
  height: 49px;
  object-fit: contain;
  object-position: left center;
}

.topbar__brand span {
  white-space: nowrap;
}

.topbar__chapter {
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.icon-button,
.dialog-close {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: .88rem;
  font-weight: 700;
}

.icon-button {
  justify-self: end;
}

.icon-button svg,
.dialog-close svg,
.nav-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.slide-stage {
  position: fixed;
  inset: var(--header-height) 0 var(--controls-height);
  overflow: hidden;
  background: var(--paper);
}

.slide {
  position: absolute;
  inset: 0;
  overflow: hidden auto;
  overscroll-behavior: contain;
  background: var(--paper);
}

.slide[hidden] {
  display: none;
}

.slide.is-entering .slide-inner {
  animation: slide-enter 220ms ease-out both;
}

@keyframes slide-enter {
  from { opacity: 0; transform: translateX(5px); }
  to { opacity: 1; transform: translateX(0); }
}

.slide-inner {
  width: calc(100% - 1rem);
  max-width: 1480px;
  min-height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.2rem, 2.6vh, 2.25rem);
  padding: clamp(1.5rem, 3.8vh, 3.5rem) var(--page-pad);
}

.slide-head {
  width: min(100%, 1140px);
}

.eyebrow {
  margin: 0 0 .65rem;
  color: var(--purple);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  line-height: 1.06;
}

h1 {
  font-size: clamp(2.8rem, 7.4vw, 7.1rem);
  letter-spacing: -.055em;
}

h2 {
  max-width: 1100px;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  letter-spacing: -.045em;
}

h3 {
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  letter-spacing: -.015em;
}

.lede {
  max-width: 880px;
  margin: .9rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.5;
}

.takeaway {
  max-width: 980px;
  margin: 0;
  padding-left: 1rem;
  border-left: 4px solid var(--purple);
  color: var(--navy);
  font-size: clamp(.98rem, 1.2vw, 1.12rem);
  font-weight: 700;
}

.micro-note {
  margin: .8rem 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
}

.slide--cover,
.slide--chapter,
.slide--contact {
  background: var(--purple);
  color: var(--white);
}

.slide--cover .slide-inner,
.slide--chapter .slide-inner,
.slide--contact .slide-inner {
  position: relative;
  overflow: hidden;
}

.slide--cover .slide-inner::before,
.slide--cover .slide-inner::after,
.slide--contact .slide-inner::before,
.slide--contact .slide-inner::after {
  content: "";
  position: absolute;
  z-index: 0;
  border: 2px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  pointer-events: none;
}

.slide--cover .slide-inner::before,
.slide--contact .slide-inner::before {
  width: min(38vw, 540px);
  aspect-ratio: 1;
  top: -22%;
  right: -6%;
}

.slide--cover .slide-inner::after,
.slide--contact .slide-inner::after {
  width: min(20vw, 280px);
  aspect-ratio: 1;
  bottom: -18%;
  left: 41%;
  background: var(--sky);
  border: 0;
}

.cover-grid {
  position: relative;
  z-index: 1;
  min-height: 68vh;
  display: grid;
  grid-template-columns: minmax(190px, .32fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 8rem);
}

.cover-logo-wrap {
  width: min(100%, 255px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.cover-logo-wrap img {
  width: 100%;
  height: auto;
}

.cover-copy {
  max-width: 950px;
}

.slide--cover .eyebrow,
.slide--cover h1,
.slide--cover .cover-subtitle,
.slide--cover .cover-meta {
  color: var(--white);
}

.slide--cover .eyebrow {
  opacity: .82;
}

.cover-subtitle {
  max-width: 760px;
  margin: 1.2rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.4;
}

.cover-meta {
  margin: 2.25rem 0 0;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 700;
  letter-spacing: .04em;
}

.contact-copy {
  max-width: 900px;
}

.slide--contact .eyebrow,
.slide--contact h2,
.slide--contact .contact-role,
.slide--contact .contact-email {
  color: var(--white);
}

.slide--contact .eyebrow {
  opacity: .82;
}

.slide--contact h2 {
  margin-top: .6rem;
  font-size: clamp(2.5rem, 5.8vw, 5.75rem);
  line-height: .95;
}

.contact-role {
  margin: 1.3rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 700;
}

.contact-email {
  display: inline-block;
  margin-top: .7rem;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 700;
}

.contact-email:hover {
  color: var(--sky);
}

.contact-comparison {
  max-width: 34rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .35);
}

.contact-comparison a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: .72rem 1.1rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--purple);
  font-weight: 800;
  text-decoration: none;
}

.contact-comparison a:hover {
  background: var(--sky);
  color: var(--navy);
}

.contact-comparison p {
  margin: .7rem 0 0;
  color: var(--white);
  font-size: .82rem;
}

body.cover-mode .topbar,
body.cover-mode .controls {
  border-color: rgba(255,255,255,.24);
  background: var(--purple);
  color: var(--white);
}

body.cover-mode .topbar__brand,
body.cover-mode .topbar__chapter,
body.cover-mode .icon-button,
body.cover-mode .nav-button,
body.cover-mode .progress-copy {
  color: var(--white);
}

body.cover-mode .topbar__brand {
  padding: 0;
  background: transparent;
  color: var(--white);
}

body.cover-mode .progress-track {
  background: rgba(255,255,255,.3);
}

body.cover-mode .progress-track span {
  background: var(--sky);
}

.slide--chapter .slide-inner::before,
.slide--chapter .slide-inner::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.slide--chapter .slide-inner::before {
  width: min(44vw, 650px);
  aspect-ratio: 1;
  top: -38%;
  right: -7%;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
}

.slide--chapter .slide-inner::after {
  width: 42%;
  height: 1px;
  right: 8%;
  bottom: 18%;
  background: rgba(255, 255, 255, .35);
  transform: rotate(-7deg);
  transform-origin: right center;
}

.chapter-inner {
  color: var(--white);
}

.chapter-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 64vh;
  display: grid;
  grid-template-columns: minmax(110px, .22fr) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 2rem clamp(2rem, 6vw, 7rem);
}

.chapter-ordinal {
  align-self: start;
  margin: 1.4rem 0 0;
  color: var(--sky);
  font-family: var(--display);
  font-size: clamp(4.5rem, 11vw, 11rem);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: .8;
  opacity: .95;
}

.chapter-copy {
  max-width: 1040px;
}

.slide--chapter .eyebrow,
.slide--chapter h2,
.slide--chapter p {
  color: var(--white);
}

.slide--chapter .eyebrow {
  opacity: .86;
}

.slide--chapter h2 {
  max-width: 1020px;
  font-size: clamp(2.2rem, 5.3vw, 5.5rem);
  line-height: 1.02;
}

.chapter-stat {
  display: block;
  margin-bottom: .18em;
  color: var(--sky);
  font-size: 1.42em;
  line-height: .8;
}

.chapter-base {
  margin: 1.25rem 0 0;
  font-size: clamp(.88rem, 1.2vw, 1.05rem);
  opacity: .86;
}

.chapter-definition {
  grid-column: 2;
  max-width: 760px;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .45);
  font-size: clamp(.92rem, 1.25vw, 1.08rem);
  line-height: 1.5;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: var(--line);
}

.evidence-metric {
  min-height: 150px;
  padding: clamp(1rem, 1.8vw, 1.5rem);
  background: var(--white);
}

.evidence-metric__value {
  margin: 0;
  color: var(--purple);
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.2vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .9;
}

.evidence-metric > p:last-child {
  margin: 1rem 0 0;
  color: var(--navy);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.4;
}

.evidence-guardrails {
  display: grid;
  grid-template-columns: minmax(180px, .28fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.evidence-guardrails .method-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.research-origin {
  display: grid;
  grid-template-columns: minmax(180px, .3fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 2.5rem);
  padding: clamp(1rem, 1.8vw, 1.5rem);
  border-left: 4px solid var(--purple);
  background: var(--white);
}

.slide--background .slide-inner {
  gap: clamp(1rem, 1.8vh, 1.6rem);
}

.research-origin h3,
.section-label {
  color: var(--navy);
  font-family: var(--body);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.research-origin p {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-size: .9rem;
  line-height: 1.55;
}

.section-label {
  margin: 0 0 .65rem;
}

.research-objectives {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.research-objective {
  min-height: 175px;
  padding: clamp(1rem, 1.8vw, 1.5rem);
  background: var(--white);
}

.research-objective__number {
  margin: 0 0 1.3rem;
  color: var(--purple);
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.research-objective h3 {
  color: var(--navy);
  font-family: var(--body);
  font-size: .94rem;
  line-height: 1.3;
}

.research-objective > p:last-child {
  margin: .65rem 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.5;
}

.sample-structure {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: .8rem 1rem;
  border-left: 4px solid var(--purple);
  background: var(--white);
}

.sample-structure__value {
  margin: 0;
  color: var(--purple);
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: .85;
}

.sample-structure > p:last-child {
  margin: 0;
  color: var(--navy);
  font-size: .82rem;
  line-height: 1.45;
}

.sample-structure strong,
.sample-structure span {
  display: block;
}

.sample-structure span {
  margin-top: .15rem;
  color: var(--muted);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.75rem, 1.4vw, 1.3rem);
}

.metric-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.1rem, 2vw, 1.7rem);
  border-top: 4px solid var(--purple);
  background: var(--white);
}

.metric-card:nth-child(2n) {
  border-top-color: var(--navy);
}

.metric-card__value {
  margin: 0;
  color: var(--purple);
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 5.25rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .9;
}

.metric-card:nth-child(2n) .metric-card__value {
  color: var(--navy);
}

.metric-card__label {
  margin: 1.1rem 0 0;
  color: var(--navy);
  font-size: .94rem;
  font-weight: 700;
  line-height: 1.35;
}

.metric-card__note {
  margin: .5rem 0 0;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.4;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2.25rem);
  align-items: start;
}

.visual-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visual-grid--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.visual-grid--wide-left {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
}

.panel {
  min-width: 0;
  margin: 0;
  padding: clamp(1rem, 1.7vw, 1.5rem);
  border-top: 1px solid var(--line-strong);
  background: var(--white);
  container-type: inline-size;
}

.panel--soft {
  background: var(--soft);
}

.panel__header {
  min-height: 2.8rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.panel__title {
  color: var(--navy);
  font-family: var(--body);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .015em;
  line-height: 1.35;
}

.panel__base {
  flex: 0 0 auto;
  padding: .25rem .45rem;
  background: var(--soft);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 800;
  white-space: nowrap;
}

.bar-chart {
  display: grid;
  gap: .62rem;
}

.bar-row {
  display: grid;
  grid-template-columns: clamp(9rem, 30%, 20rem) minmax(0, 1fr) 4.5rem;
  align-items: center;
  gap: .75rem;
  min-height: 1.55rem;
}

.bar-label {
  color: var(--ink);
  font-size: .76rem;
  font-weight: 650;
  line-height: 1.25;
}

.bar-track {
  position: relative;
  height: .82rem;
  border-left: 1px solid var(--line-strong);
}

.bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  min-width: 2px;
  background: var(--purple);
}

.bar-value {
  min-width: 3.8rem;
  color: var(--navy);
  font-size: .74rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  white-space: nowrap;
}

.bar-chart--compact {
  gap: .46rem;
}

.bar-chart--compact .bar-row {
  gap: .55rem;
}

.bar-chart--compact .bar-label,
.bar-chart--compact .bar-value {
  font-size: .7rem;
}

.bar-fill--neutral {
  background: var(--line-strong) !important;
}

.bar-fill--sky {
  background: var(--sky) !important;
  border: 1px solid var(--navy);
}

@container (max-width: 30rem) {
  .bar-row,
  .bar-chart--compact .bar-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .28rem .55rem;
  }

  .bar-label {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .bar-value {
    grid-column: 2;
    grid-row: 2;
    text-align: right;
  }

  .bar-track {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
  }
}

.big-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}

.big-split__item {
  min-height: 150px;
  padding: 1.1rem;
  background: var(--soft);
}

.big-split__value {
  margin: 0;
  color: var(--purple);
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: 1;
}

.big-split__label {
  margin: .7rem 0 0;
  color: var(--navy);
  font-size: .86rem;
  font-weight: 800;
}

.big-split__meta {
  margin: .35rem 0 0;
  color: var(--muted);
  font-size: .7rem;
}

.strip-figure {
  margin: 0;
}

.strip-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.strip-svg text {
  fill: var(--ink);
  font-family: var(--body);
  font-size: 11px;
}

.strip-svg .axis-label {
  fill: var(--muted);
  font-size: 10px;
}

.strip-svg .group-label {
  fill: var(--navy);
  font-size: 11px;
  font-weight: 700;
}

.strip-svg .axis-line,
.rank-svg .axis-line {
  stroke: var(--line-strong);
  stroke-width: 1;
}

.strip-svg .respondent-dot,
.rank-svg .respondent-dot {
  fill: var(--sky);
  stroke: var(--navy);
  stroke-width: 1;
}

.strip-svg .mean-dot,
.rank-svg .median-dot {
  fill: var(--purple);
  stroke: var(--white);
  stroke-width: 1.5;
}

.strip-svg .mean-label,
.rank-svg .median-label {
  fill: var(--navy);
  font-weight: 800;
}

.strip-svg .reference-line {
  stroke: var(--line);
  stroke-dasharray: 3 4;
}

.forecast-list {
  display: grid;
  gap: .7rem;
}

.forecast-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .45rem 1rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--line);
}

.forecast-row:last-child {
  border-bottom: 0;
}

.forecast-label {
  grid-column: 1 / -1;
  grid-row: 1;
  margin: 0;
  color: var(--ink);
  font-size: .78rem;
  line-height: 1.35;
}

.forecast-track {
  grid-column: 1;
  grid-row: 2;
  height: 1rem;
  border-left: 1px solid var(--navy);
}

.forecast-fill {
  height: 100%;
  background: var(--purple);
}

.forecast-row:last-child .forecast-fill {
  background: repeating-linear-gradient(135deg, var(--line-strong) 0 4px, transparent 4px 8px);
  border: 1px solid var(--navy);
}

.forecast-value {
  grid-column: 2;
  grid-row: 2;
  min-width: 4.2rem;
  color: var(--navy);
  font-size: .8rem;
  font-weight: 800;
  white-space: nowrap;
}

.rank-figure {
  margin: 0;
}

.rank-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.rank-svg text {
  fill: var(--ink);
  font-family: var(--body);
  font-size: 10.5px;
}

.rank-svg .rank-label {
  fill: var(--navy);
  font-weight: 700;
}

.rank-svg .rank-axis-number {
  fill: var(--muted);
}

.rank-label--mobile {
  display: none;
}

.rank-svg .iqr-line {
  stroke: var(--purple);
  stroke-linecap: round;
  stroke-width: 5;
}

.market-statline {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.7rem;
  padding: .8rem 1rem;
  border-left: 4px solid var(--purple);
  background: var(--white);
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
}

.market-statline strong {
  margin-right: .25rem;
  color: var(--purple);
  font-family: var(--display);
  font-size: 1.4rem;
}

.markets-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(250px, .45fr);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: stretch;
}

.map-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: .85rem;
}

.europe-map {
  width: 100%;
  max-height: min(48vh, 520px);
}

.map-surface {
  fill: #f7f7fa;
}

.map-country {
  stroke: var(--navy);
  stroke-width: .75;
  vector-effect: non-scaling-stroke;
}

.map-marker {
  stroke: var(--navy);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.map-bin-1 { fill: #e9f9ff; background: #e9f9ff; }
.map-bin-2 { fill: #c8f1ff; background: #c8f1ff; }
.map-bin-3 { fill: var(--sky); background: var(--sky); }
.map-bin-4 { fill: var(--periwinkle); background: var(--periwinkle); }
.map-bin-5 { fill: var(--purple); background: var(--purple); }

.map-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem 1rem;
  margin-top: .55rem;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 700;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
}

.map-legend i {
  width: .72rem;
  height: .72rem;
  border: 1px solid var(--navy);
}

.map-panel figcaption {
  margin-top: .55rem;
  color: var(--muted);
  font-size: .66rem;
  line-height: 1.4;
}

.market-leaders ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.market-leaders li {
  min-height: 44px;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: .65rem;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: .8rem;
}

.market-leaders li span:first-child {
  color: var(--muted);
  font-size: .66rem;
  font-weight: 800;
}

.market-leaders li span:last-child {
  color: var(--purple);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.region-card {
  padding: clamp(1.3rem, 2.4vw, 2.2rem);
  border-top: 4px solid var(--purple);
  background: var(--white);
}

.region-card__value {
  margin: 0 0 .6rem;
  color: var(--purple);
  font-family: var(--display);
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  font-weight: 700;
  letter-spacing: -.07em;
  line-height: .82;
}

.region-card h3 {
  color: var(--navy);
  font-family: var(--body);
  font-size: 1rem;
}

.region-card > div > p:last-child {
  margin: .35rem 0 0;
  color: var(--muted);
  font-size: .74rem;
}

.region-scale {
  height: 1rem;
  margin-top: 2rem;
  border-left: 1px solid var(--navy);
  background: var(--soft);
}

.region-scale span {
  display: block;
  height: 100%;
  background: var(--purple);
}

.region-scale__ends {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: .4rem 0 0;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 700;
}

.data-details {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

.data-details summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--navy);
  cursor: pointer;
  font-size: .76rem;
  font-weight: 800;
}

.data-table-title {
  margin: .9rem 0 .55rem;
  color: var(--navy);
  font-family: var(--body);
  font-size: .78rem;
  font-weight: 800;
}

.data-context {
  display: grid;
  gap: .45rem;
  margin: 0 0 .8rem;
  padding: .9rem 1rem;
  border-left: 3px solid var(--purple);
  background: var(--soft);
}

.data-context p,
.survey-question {
  margin: 0;
  color: var(--ink);
  font-size: .74rem;
  line-height: 1.5;
}

.survey-question span {
  display: block;
  margin-bottom: .2rem;
  color: var(--purple);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.matrix-questions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin: 0 0 1rem;
  padding: .85rem;
  background: var(--soft);
}

.scale-help {
  max-width: 900px;
  margin: -.6rem 0 0;
  color: var(--navy);
  font-size: .85rem;
  font-weight: 700;
}

.term-details {
  border-top: 1px solid var(--line);
}

.visible-definitions {
  margin: -.4rem 0 .9rem;
}

.visible-definitions h3 {
  margin: 0 0 .55rem;
  color: var(--navy);
  font-size: .76rem;
  font-weight: 800;
}

.visible-definitions .term-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .45rem;
}

.visible-definitions .term-list div {
  padding: .6rem;
  background: var(--soft);
}

.term-details summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--navy);
  cursor: pointer;
  font-size: .76rem;
  font-weight: 800;
}

.term-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: .7rem;
  margin: 0;
}

.term-list div {
  padding: .75rem;
  background: var(--white);
}

.term-list dt {
  color: var(--purple);
  font-size: .72rem;
  font-weight: 800;
}

.term-list dd {
  margin: .25rem 0 0;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.45;
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.scroll-hint {
  display: none;
  margin: 0 0 .55rem;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
}

table {
  width: 100%;
  border-collapse: collapse;
  color: var(--ink);
  font-size: .72rem;
  font-variant-numeric: tabular-nums;
}

th,
td {
  padding: .5rem .55rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--navy);
  font-weight: 800;
}

td[align="right"],
th[align="right"] {
  text-align: right;
}

.heat-table th:not(:first-child),
.heat-table td:not(:first-child) {
  text-align: center;
}

.heat-table {
  min-width: 620px;
}

.heat-table th:first-child {
  min-width: 165px;
}

.heat-cell {
  min-width: 74px;
  color: var(--navy);
  font-weight: 800;
}

.heat-0 { background: var(--white); }
.heat-1 { background: #e9f9ff; }
.heat-2 { background: #c8f1ff; }
.heat-3 { background: #9fe8ff; }
.heat-4 { background: var(--sky); }

.qualitative-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.qualitative-card {
  min-height: 220px;
  padding: 1.25rem;
  border-top: 5px solid var(--purple);
  background: var(--white);
}

.qualitative-card:nth-child(2) {
  border-top-color: var(--navy);
}

.qualitative-card:nth-child(3) {
  border-top-color: var(--sky);
}

.qualitative-card__number {
  margin: 0 0 1rem;
  color: var(--purple);
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.qualitative-card h3 {
  margin: 0 0 .65rem;
  color: var(--navy);
  font-size: 1rem;
}

.qualitative-card > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}

.creative-overview-grid {
  align-items: stretch;
}

.creative-use-panel {
  margin: 0;
}

.creative-use-total {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
  padding: .9rem 1rem;
  background: var(--soft);
}

.creative-use-total strong {
  color: var(--purple);
  font-family: var(--display);
  font-size: 2.8rem;
  line-height: 1;
}

.creative-use-total span {
  color: var(--navy);
  font-size: .78rem;
  font-weight: 750;
  line-height: 1.35;
}

.creative-overlap__heading {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  margin-bottom: .55rem;
  color: var(--navy);
  font-size: .72rem;
  font-weight: 750;
}

.creative-overlap__heading span:last-child {
  text-align: right;
}

.creative-overlap__heading strong {
  display: block;
  color: var(--purple);
  font-size: 1.15rem;
}

.creative-overlap__segments {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  min-height: 90px;
}

.creative-overlap__segments div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: .7rem .4rem;
  background: #dff7ff;
  color: var(--navy);
  text-align: center;
}

.creative-overlap__segments div:nth-child(2) {
  background: var(--purple);
  color: var(--white);
}

.creative-overlap__segments div:nth-child(3) {
  background: var(--sky);
}

.creative-overlap__segments strong {
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1;
}

.creative-overlap__segments span {
  margin-top: .3rem;
  font-size: .66rem;
  font-weight: 750;
}

.creative-overlap > p {
  margin: .65rem 0 0;
  color: var(--muted);
  font-size: .7rem;
}

.creative-story-card {
  display: grid;
  grid-template-columns: minmax(240px, .82fr) minmax(0, 1.18fr);
  gap: 1.25rem 2rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: var(--purple);
  color: var(--white);
}

.creative-story-stat p {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 7.2rem);
  font-weight: 700;
  letter-spacing: -.07em;
  line-height: .9;
}

.creative-story-stat h3 {
  max-width: 18rem;
  margin: .8rem 0 0;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.35;
}

.creative-story-breakdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  align-self: center;
}

.creative-story-breakdown article {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(18, 38, 74, .17);
}

.creative-story-breakdown strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 1;
}

.creative-story-breakdown span {
  color: var(--white);
  font-size: .72rem;
  font-weight: 750;
  line-height: 1.35;
}

.creative-story-thesis {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .55);
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -.02em;
}

.callout-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.callout {
  min-height: 170px;
  padding: 1.3rem;
  border-top: 4px solid var(--navy);
  background: var(--white);
}

.callout:nth-child(2n) {
  border-top-color: var(--purple);
}

.callout__number {
  margin: 0 0 .75rem;
  color: var(--purple);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
}

.callout p {
  margin: .55rem 0 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.5;
}

.conclusion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}

.conclusion-panel {
  position: relative;
  min-width: 0;
  min-height: 290px;
  overflow: hidden;
  padding: clamp(1.2rem, 2.2vw, 2rem);
  border-top: 2px solid var(--purple);
  background: var(--white);
}

.conclusion-panel__number {
  position: absolute;
  top: -.35rem;
  right: .5rem;
  margin: 0;
  color: #8b909b;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
}

.conclusion-panel__stat {
  position: relative;
  margin: 0 0 .45rem;
  color: var(--purple);
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
}

.conclusion-panel__stat-label {
  position: relative;
  max-width: 19rem;
  min-height: 2.8em;
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 750;
  line-height: 1.35;
}

.conclusion-panel h3 {
  position: relative;
  max-width: 24rem;
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.18;
}

.conclusion-panel__text {
  position: relative;
  margin: .85rem 0 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}

.theme-list,
.source-list,
.method-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.theme-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem 1.25rem;
}

.theme-list li {
  padding: 1rem 1rem 1rem 1.2rem;
  border-left: 4px solid var(--purple);
  background: var(--white);
  color: var(--navy);
  font-size: .88rem;
  font-weight: 750;
}

.theme-list li:nth-child(even) {
  border-left-color: var(--navy);
}

.guidance-layout,
.regulation-visuals {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: stretch;
}

.ai-act-layout {
  display: grid;
  grid-template-columns: minmax(245px, .72fr) minmax(275px, .84fr) minmax(420px, 1.44fr);
  gap: clamp(.85rem, 1.5vw, 1.4rem);
  align-items: stretch;
}

.ai-act-layout > .panel {
  height: 100%;
}

.guidance-layout > .panel,
.regulation-visuals > .panel {
  height: 100%;
}

.theme-section {
  min-width: 0;
}

.theme-section > h3 {
  margin: 0 0 .75rem;
  color: var(--navy);
  font-family: var(--body);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .015em;
}

.theme-list--compact {
  gap: .65rem;
}

.theme-list--compact li {
  padding: .78rem .85rem .78rem 1rem;
  font-size: .8rem;
  line-height: 1.42;
}

.theme-list--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.theme-list--six {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.readiness-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: .35rem 0 .85rem;
  border-bottom: 1px solid var(--line);
}

.readiness-summary span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
}

.readiness-summary strong {
  color: var(--purple);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.04em;
  line-height: .9;
}

.readiness-bands {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
  margin-top: .85rem;
}

.readiness-band {
  min-width: 0;
  padding: .7rem;
  background: var(--soft);
}

.readiness-band strong,
.readiness-band span {
  display: block;
}

.readiness-band strong {
  color: var(--navy);
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
}

.readiness-band span {
  margin-top: .2rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
}

.slide--guidanceAction .slide-inner,
.slide--aiAct .slide-inner {
  gap: clamp(.9rem, 2vh, 1.5rem);
}

.slide--guidanceAction h2,
.slide--aiAct h2 {
  font-size: clamp(2rem, 3.7vw, 3.65rem);
}

.method-list {
  display: grid;
  gap: .65rem;
}

.method-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ink);
  font-size: .84rem;
}

.method-list li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: .45rem;
  height: .45rem;
  background: var(--purple);
  border-radius: 50%;
}

.source-list {
  display: grid;
  gap: .8rem;
}

.source-list li {
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--line);
  font-size: .8rem;
}

.source-list a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 750;
}

.source-list span {
  display: block;
  margin-top: .25rem;
  color: var(--muted);
  font-size: .72rem;
}

.closing-card {
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: var(--navy);
  color: var(--white);
}

.closing-card h3,
.closing-card p {
  color: var(--white);
}

.closing-card p {
  max-width: 720px;
  margin: .8rem 0 0;
  opacity: .88;
}

.controls {
  position: fixed;
  z-index: 20;
  inset: auto 0 0;
  height: var(--controls-height);
  display: grid;
  grid-template-columns: minmax(110px, 1fr) minmax(220px, 460px) minmax(110px, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 0 var(--page-pad) env(safe-area-inset-bottom);
  border-top: 1px solid var(--line);
  background: rgba(251, 250, 252, .98);
}

.nav-button {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: .45rem;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 800;
}

.nav-button--next {
  justify-self: end;
  justify-content: flex-end;
}

.nav-button:disabled {
  cursor: default;
  opacity: .32;
}

.progress-wrap {
  min-width: 0;
}

.progress-copy {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 .5rem;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
}

#slide-short-title {
  max-width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.progress-track {
  position: relative;
  height: 3px;
  overflow: hidden;
  background: var(--line);
}

.progress-track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--purple);
  transition: width 180ms ease-out;
}

.contents-dialog {
  width: min(780px, calc(100vw - 2rem));
  max-height: min(760px, calc(100dvh - 2rem));
  margin: auto;
  padding: 0;
  border: 0;
  background: var(--paper);
  color: var(--ink);
}

.contents-dialog::backdrop {
  background: rgba(23, 37, 69, .72);
}

.contents-dialog__header {
  position: sticky;
  z-index: 1;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1.2rem, 4vw, 2.5rem) 1.2rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.contents-dialog h2 {
  font-size: 2rem;
}

#contents-list {
  padding: 1rem clamp(1.2rem, 4vw, 2.5rem) 2rem;
}

.contents-cover {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
}

.contents-group + .contents-group {
  margin-top: 1.35rem;
}

.contents-group h3 {
  margin: 0 0 .45rem;
  color: var(--muted);
  font-family: var(--body);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contents-group ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contents-link {
  width: 100%;
  min-height: 44px;
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  align-items: center;
  gap: .7rem;
  padding: .55rem .2rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
}

.contents-link span:first-child {
  color: var(--muted);
  font-size: .7rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.contents-link span:last-child {
  font-size: .82rem;
  font-weight: 700;
}

.contents-link[aria-current="page"] {
  color: var(--purple);
}

.contents-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 10px;
  background: var(--purple);
  color: var(--white);
}

.contents-comparison p,
.contents-comparison span {
  display: block;
  margin: 0;
}

.contents-comparison span {
  margin-top: .2rem;
  font-size: .72rem;
  opacity: .88;
}

.contents-comparison a {
  color: var(--white);
  font-size: .78rem;
  font-weight: 800;
}

@media (max-width: 560px) {
  .contents-comparison {
    grid-template-columns: 1fr;
  }
}

.noscript-message {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-content: center;
  padding: 2rem;
  background: var(--paper);
  text-align: center;
}

@media (max-width: 1000px) {
  .evidence-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .visual-grid--three,
  .visual-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .conclusion-grid {
    grid-template-columns: 1fr;
  }

  .conclusion-panel {
    min-height: 0;
  }

  .markets-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(220px, .7fr);
  }

  .ai-act-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-section--regulation {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1000px) and (orientation: landscape) {
  .europe-map {
    max-height: min(70vh, 290px);
  }

  .market-leaders .panel__header {
    min-height: 0;
    margin-bottom: .35rem;
  }

  .market-leaders li {
    min-height: 40px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 58px;
    --controls-height: calc(72px + env(safe-area-inset-bottom));
    --page-pad: clamp(1rem, 5vw, 1.55rem);
  }

  .topbar {
    grid-template-columns: 1fr auto;
    gap: .5rem;
  }

  .topbar__chapter {
    display: none;
  }

  .icon-button span,
  .nav-button__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
  }

  .slide-inner {
    justify-content: flex-start;
    gap: 1.3rem;
    padding-top: 1.4rem;
    padding-bottom: 2.2rem;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.6rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 3rem);
  }

  .lede {
    font-size: 1rem;
  }

  .cover-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 2rem;
    padding: 1rem 0 3rem;
  }

  .cover-logo-wrap {
    width: 112px;
  }

  .slide--cover .cover-logo-wrap,
  .slide--contact .cover-logo-wrap {
    display: none;
  }

  .cover-subtitle {
    font-size: 1rem;
  }

  .cover-meta {
    margin-top: 1.4rem;
  }

  .topbar__brand img {
    width: 50px;
    height: 44px;
  }

  .chapter-frame {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-content: center;
    gap: 1.5rem;
    padding: 1rem 0 3rem;
  }

  .chapter-ordinal {
    margin: 0;
    font-size: 4.8rem;
  }

  .chapter-definition {
    grid-column: 1;
  }

  .evidence-grid,
  .evidence-guardrails,
  .evidence-guardrails .method-list,
  .research-origin,
  .research-objectives,
  .markets-layout,
  .region-grid,
  .matrix-questions {
    grid-template-columns: 1fr;
  }

  .qualitative-grid {
    grid-template-columns: 1fr;
  }

  .qualitative-card {
    min-height: 0;
  }

  .creative-story-card {
    grid-template-columns: 1fr;
  }

  .heat-table {
    min-width: 0;
    table-layout: fixed;
  }

  .heat-table th:first-child {
    width: 37%;
    min-width: 0;
  }

  .heat-table th:not(:first-child),
  .heat-table td:not(:first-child) {
    width: 21%;
  }

  .heat-table th,
  .heat-table td {
    padding: .45rem .25rem;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    vertical-align: middle;
  }

  .heat-table thead th {
    padding-inline: .125rem;
    font-size: .625rem;
    line-height: 1.2;
  }

  .evidence-metric {
    min-height: 120px;
  }

  .europe-map {
    min-height: clamp(290px, 78vw, 430px);
    max-height: none;
  }

  .visible-definitions .term-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visible-definitions .term-list div:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .research-origin {
    grid-template-columns: 1fr;
  }

  .research-objective {
    min-height: 0;
  }

  .metric-grid,
  .visual-grid,
  .visual-grid--three,
  .visual-grid--four,
  .visual-grid--wide-left,
  .guidance-layout,
  .regulation-visuals,
  .ai-act-layout,
  .callout-grid,
  .conclusion-grid,
  .theme-list {
    grid-template-columns: 1fr;
  }

  .theme-section--regulation {
    grid-column: auto;
  }

  .theme-list--compact li {
    font-size: .84rem;
  }

  .creative-story-breakdown {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .creative-story-breakdown article {
    min-height: 125px;
    padding: .7rem;
  }

  .creative-story-breakdown strong {
    font-size: 2rem;
  }

  .creative-story-breakdown span {
    font-size: .62rem;
  }

  .metric-card {
    min-height: 145px;
  }

  .panel__header {
    min-height: 0;
    flex-direction: column;
    gap: .45rem;
    margin-bottom: .8rem;
  }

  .scroll-hint {
    display: block;
  }

  .bar-row,
  .bar-chart--compact .bar-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .28rem .55rem;
  }

  .bar-label {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .bar-value {
    grid-column: 2;
    grid-row: 2;
    text-align: right;
  }

  .bar-track {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
  }

  .bar-label,
  .bar-value,
  .bar-chart--compact .bar-label,
  .bar-chart--compact .bar-value {
    font-size: .68rem;
  }

  .forecast-row {
    grid-template-columns: 1fr auto;
    gap: .45rem .8rem;
  }

  .forecast-track {
    grid-column: 1;
    grid-row: 2;
  }

  .forecast-value {
    grid-column: 2;
    grid-row: 2;
  }

  .controls {
    grid-template-columns: 48px 1fr 48px;
    padding-inline: 1rem;
  }

  .nav-button,
  .nav-button--next {
    justify-content: center;
  }

  .progress-copy {
    margin-bottom: .42rem;
  }

  #slide-short-title {
    max-width: 65%;
  }
}

@media (max-width: 480px) {
  .rank-svg text {
    font-size: 26px;
  }

  .rank-label--desktop {
    display: none;
  }

  .rank-label--mobile {
    display: block;
  }

  .rank-axis-number {
    display: none;
  }

  .rank-svg .iqr-line {
    stroke-width: 10;
  }

  .rank-svg .median-dot {
    r: 9px;
    stroke-width: 3;
  }

  .strip-svg .axis-label--minor {
    display: none;
  }

  .strip-svg .axis-label {
    font-size: 20px;
  }

  .strip-svg .group-label,
  .strip-svg .mean-label {
    font-size: 20px;
  }
}

@media (max-width: 360px) {
  .strip-svg .axis-label,
  .strip-svg .group-label,
  .strip-svg .mean-label {
    font-size: 24px;
  }
}

@media (max-height: 720px) and (min-width: 761px) {
  .slide-inner {
    justify-content: flex-start;
    padding-top: 1.4rem;
    padding-bottom: 2rem;
  }

  h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
  }

  .metric-card {
    min-height: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  @page {
    size: 16in 9in;
    margin: 0;
  }

  html,
  body {
    height: auto;
    overflow: visible;
    background: var(--white);
  }

  .skip-link,
  .topbar,
  .controls,
  .contents-dialog,
  .data-details {
    display: none !important;
  }

  .slide-stage {
    position: static;
    overflow: visible;
  }

  .slide,
  .slide[hidden] {
    position: relative;
    display: block !important;
    min-height: 9in;
    overflow: hidden;
    break-after: page;
  }

  .slide-inner {
    width: 16in;
    min-height: 9in;
    padding: .65in .75in;
  }
}
