:root {
  color-scheme: dark;
  --ink: #0a0a09;
  --ink-soft: #121210;
  --bone: #d7cbb5;
  --paper: #b9a98f;
  --paper-light: #e0d4bd;
  --smoke: #8e897f;
  --line: rgba(216, 204, 181, 0.24);
  --red: #bd271f;
  --red-bright: #d53127;
  --blue-pencil: #5c7287;
  --display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --mono: "Courier New", Courier, monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 72px;
  --footer-h: 70px;
  --edge: clamp(24px, 4.8vw, 76px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

body {
  color: var(--bone);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button {
  color: inherit;
  font: inherit;
}

button:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 4px;
}

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

.deck {
  position: relative;
  width: 100vw;
  height: 100dvh;
  min-height: 560px;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}

.grain {
  position: absolute;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.deck__header,
.deck__footer {
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding-inline: var(--edge);
  pointer-events: none;
}

.deck__header {
  top: 0;
  height: var(--header-h);
  justify-content: space-between;
}

.deck__footer {
  bottom: 0;
  height: var(--footer-h);
  gap: clamp(20px, 3vw, 46px);
}

.deck__header button,
.deck__footer button,
.nav-arrow,
.overview {
  pointer-events: auto;
}

.wordmark {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--bone);
  font-family: var(--display);
  font-size: 19px;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.wordmark span,
.slide-count #currentNumber,
#currentNumber {
  color: var(--red-bright);
}

.utility-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.utility-button {
  display: inline-flex;
  height: 38px;
  align-items: center;
  gap: 9px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: rgba(224, 212, 189, 0.78);
  cursor: pointer;
  transition: color 180ms ease;
}

.utility-button:hover,
.utility-button[aria-pressed="true"] {
  color: var(--bone);
}

.utility-button__label {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.utility-button__icon,
.utility-button svg {
  width: 18px;
  height: 18px;
}

.utility-button svg,
.nav-arrow svg,
.overview__close svg,
.restart-button svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.utility-button__icon svg path {
  fill: currentColor;
  stroke: none;
}

.utility-button--icon {
  width: 38px;
  justify-content: center;
  padding: 0;
}

.grid-icon {
  display: grid;
  grid-template-columns: repeat(2, 4px);
  grid-template-rows: repeat(2, 4px);
  place-content: center;
  gap: 3px;
}

.grid-icon i {
  width: 4px;
  height: 4px;
  background: currentColor;
}

.stage {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  outline: none;
  touch-action: pan-y;
  --parallax-x: 0px;
  --parallax-y: 0px;
}

.slide {
  position: absolute;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
  background: var(--ink);
  animation: slide-in 720ms var(--ease) both;
}

.stage[data-direction="-1"] .slide {
  animation-name: slide-in-reverse;
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translate3d(3%, 0, 0) scale(1.015);
    clip-path: inset(0 0 0 8%);
  }
  to {
    opacity: 1;
    transform: none;
    clip-path: inset(0);
  }
}

@keyframes slide-in-reverse {
  from {
    opacity: 0;
    transform: translate3d(-3%, 0, 0) scale(1.015);
    clip-path: inset(0 8% 0 0);
  }
  to {
    opacity: 1;
    transform: none;
    clip-path: inset(0);
  }
}

.slide h1,
.slide h2,
.slide p,
.slide blockquote {
  margin: 0;
}

.slide h1,
.slide h2 {
  font-family: var(--display);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}

.location-line {
  color: rgba(224, 212, 189, 0.72);
  font-family: var(--mono);
  font-size: clamp(11px, 0.85vw, 15px);
  letter-spacing: 0.06em;
}

.body-copy {
  max-width: 46ch;
  color: rgba(224, 212, 189, 0.72);
  font-family: var(--mono);
  font-size: clamp(13px, 1.05vw, 18px);
  line-height: 1.6;
}

.grease-line {
  display: block;
  width: min(350px, 78%);
  height: 9px;
  margin-block: 14px 22px;
  transform: rotate(-1.8deg);
  background: var(--red);
  clip-path: polygon(0 28%, 93% 0, 100% 52%, 91% 78%, 0 100%);
}

.slide-note {
  position: absolute;
  bottom: calc(var(--footer-h) + 24px);
  left: var(--edge);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.slide-note--light {
  color: rgba(224, 212, 189, 0.64);
}

.nav-arrow {
  position: absolute;
  z-index: 105;
  top: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(224, 212, 189, 0.45);
  border-radius: 50%;
  background: rgba(10, 10, 9, 0.16);
  color: var(--red-bright);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(5px);
  transition: border-color 180ms ease, background 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.nav-arrow:hover {
  border-color: var(--bone);
  background: rgba(10, 10, 9, 0.64);
  transform: translateY(-50%) scale(1.05);
}

.nav-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.nav-arrow svg {
  width: 23px;
  height: 23px;
  stroke-width: 2.3;
}

.nav-arrow--previous {
  left: 18px;
}

.nav-arrow--next {
  right: 18px;
}

.slide-count {
  display: flex;
  align-items: baseline;
  gap: 7px;
  min-width: 56px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.slide-count__divider,
#totalNumber {
  color: rgba(224, 212, 189, 0.62);
}

.progress {
  display: flex;
  width: min(480px, 46vw);
  height: 22px;
  align-items: center;
  gap: 4px;
}

.progress button {
  position: relative;
  flex: 1;
  height: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.progress button::before,
.progress button span {
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 1px;
  content: "";
}

.progress button::before {
  background: rgba(224, 212, 189, 0.28);
}

.progress button span {
  right: 100%;
  background: var(--red);
  transition: right 440ms var(--ease), height 180ms ease, top 180ms ease;
}

.progress button.is-past span,
.progress button.is-current span {
  right: 0;
}

.progress button.is-current span {
  top: 4px;
  height: 5px;
}

.is-playing .progress button.is-current span {
  animation: autoplay-progress 8s linear both;
}

@keyframes autoplay-progress {
  from { right: 100%; }
  to { right: 0; }
}

.deck-hint {
  margin: 0 0 0 auto;
  color: rgba(224, 212, 189, 0.45);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
}

/* Cover */
.slide--cover {
  background-image: url("assets/major-hero.png");
  background-position: center;
  background-size: cover;
}

.slide--cover::before {
  position: absolute;
  inset: -2%;
  content: "";
  background: inherit;
  background-position: calc(50% + var(--parallax-x)) calc(50% + var(--parallax-y));
  background-size: cover;
  transform: scale(1.03);
  transition: background-position 120ms linear;
}

.cover-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: var(--edge);
  width: min(43vw, 650px);
  transform: translateY(-48%);
}

.cover-copy h1 {
  color: var(--bone);
  font-size: clamp(92px, 13.2vw, 226px);
  letter-spacing: -0.075em;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.42);
}

.cover-subtitle {
  color: var(--red-bright);
  font-family: var(--display);
  font-size: clamp(17px, 2vw, 31px);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cover-logline {
  color: rgba(224, 212, 189, 0.9);
  font-family: var(--mono);
  font-size: clamp(14px, 1.35vw, 21px);
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: var(--edge);
  bottom: calc(var(--footer-h) + 26px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(224, 212, 189, 0.55);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue span {
  display: block;
  width: 42px;
  height: 1px;
  background: var(--red);
}

/* Origin */
.slide--origin {
  background:
    linear-gradient(112deg, rgba(8, 8, 7, 0.16) 0 42%, rgba(8, 8, 7, 0.95) 52%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 420 420'%3E%3Cpath d='M0 40 C80 55 130 10 240 35 S360 90 420 50M30 0 C50 120 70 205 30 420M0 250 C110 200 210 260 420 215' fill='none' stroke='%236c604e' stroke-opacity='.17'/%3E%3C/svg%3E"),
    var(--ink);
}

.dossier-portrait {
  position: absolute;
  top: 12%;
  bottom: 12%;
  left: 7%;
  width: 34%;
  padding: 20px;
  transform: rotate(-1.5deg);
  background: #9e8d72;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.55);
  clip-path: polygon(2% 1%, 98% 0, 100% 94%, 93% 100%, 1% 98%, 0 8%);
}

.dossier-portrait::before,
.dossier-portrait::after {
  position: absolute;
  content: "";
  background: rgba(224, 212, 189, 0.2);
}

.dossier-portrait::before {
  inset: 8px;
  border: 1px solid rgba(37, 30, 21, 0.35);
  background: transparent;
}

.dossier-portrait::after {
  top: -7px;
  right: 12%;
  width: 86px;
  height: 28px;
  transform: rotate(4deg);
}

.dossier-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% center;
  filter: grayscale(1) contrast(1.15) brightness(0.8);
}

.paperclip {
  position: absolute;
  z-index: 2;
  top: -17px;
  left: 15%;
  width: 24px;
  height: 78px;
  border: 4px solid #6d5942;
  border-radius: 20px;
  box-shadow: inset 0 0 0 3px rgba(10, 10, 9, 0.16);
}

.origin-copy {
  position: absolute;
  top: 19%;
  right: 7.8%;
  width: 47%;
}

.origin-copy h2 {
  margin-top: 18px;
  font-size: clamp(55px, 6.4vw, 108px);
}

.origin-copy blockquote {
  position: relative;
  color: var(--paper-light);
  font-family: var(--mono);
  font-size: clamp(20px, 2.1vw, 34px);
  line-height: 1.25;
}

.origin-copy blockquote::before {
  position: absolute;
  top: -13px;
  left: -36px;
  color: var(--red);
  content: "“";
  font-family: Georgia, serif;
  font-size: 64px;
  font-weight: 700;
}

.trait-line {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(28px, 5vh, 72px);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: rgba(224, 212, 189, 0.78);
  font-family: var(--display);
  font-size: clamp(10px, 1vw, 15px);
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.trait-line span:first-child {
  color: var(--red-bright);
}

.trait-line i {
  width: 1px;
  height: 22px;
  background: var(--line);
}

/* Legend */
.slide--legend {
  background: #15140f;
}

.legend-map {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(10, 10, 9, 0.94) 0 26%, rgba(10, 10, 9, 0.35) 58%, rgba(10, 10, 9, 0.78)), url("assets/d-day-map.jpg");
  background-position: center;
  background-size: cover;
  filter: saturate(0.55) contrast(1.08);
}

.act-stamp {
  position: absolute;
  top: 14%;
  left: var(--edge);
  padding: 8px 14px 6px;
  border: 3px solid var(--red);
  color: var(--red);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.legend-copy {
  position: absolute;
  top: 29%;
  left: var(--edge);
  width: 37%;
}

.legend-copy h2 {
  margin-block: 18px 30px;
  font-size: clamp(58px, 7vw, 116px);
}

.mission-beats {
  position: absolute;
  top: 24%;
  right: 7%;
  display: grid;
  width: 34%;
  gap: 1px;
  border-top: 1px solid rgba(224, 212, 189, 0.3);
}

.mission-beats div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px 8px;
  border-bottom: 1px solid rgba(224, 212, 189, 0.3);
  background: rgba(10, 10, 9, 0.48);
  backdrop-filter: blur(4px);
}

.mission-beats strong {
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 28px;
}

.mission-beats span {
  color: var(--paper-light);
  font-family: var(--mono);
  font-size: clamp(12px, 1vw, 16px);
}

.field-note {
  position: absolute;
  right: 9%;
  bottom: 19%;
  padding: 12px 16px;
  transform: rotate(-2deg);
  background: var(--paper-light);
  color: #211d17;
  font-family: var(--mono);
  font-size: 13px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38);
}

/* Eye */
.slide--eye {
  background: #050505;
}

.eye-image {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(5, 5, 5, 0.1) 20%, rgba(5, 5, 5, 0.62) 65%, rgba(5, 5, 5, 0.98)), url("assets/one-eye.jpg");
  background-position: 20% center;
  background-size: cover;
  filter: contrast(1.14) saturate(0.7);
}

.eye-copy {
  position: absolute;
  z-index: 2;
  top: 30%;
  right: 6.5%;
  width: 54%;
  text-align: right;
}

.eye-copy h2 {
  margin-top: 24px;
  font-size: clamp(58px, 7.6vw, 126px);
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.78);
}

.attribution {
  margin-top: 22px !important;
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.medical-form {
  position: absolute;
  z-index: 2;
  top: 16%;
  left: 52%;
  width: min(280px, 22vw);
  padding: 15px 18px 20px;
  transform: rotate(3deg);
  background: var(--paper-light);
  color: #191611;
  font-family: var(--mono);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.medical-form p {
  padding-bottom: 7px;
  border-bottom: 2px solid #191611;
  font-weight: 700;
  text-transform: uppercase;
}

.medical-form span {
  display: block;
  margin-top: 10px;
  font-size: 10px;
}

.medical-form strong {
  display: block;
  margin-top: 6px;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(25px, 2.2vw, 40px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

/* Rebel */
.slide--rebel {
  padding: 15vh 9vw 14vh;
  background:
    linear-gradient(rgba(30, 32, 26, 0.94), rgba(21, 23, 18, 0.98)),
    radial-gradient(circle at 20% 15%, #3d4033, transparent 34%);
}

.slide--rebel::before {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  content: "";
  background-image: linear-gradient(rgba(230, 223, 205, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(230, 223, 205, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
}

.rebel-heading h2 {
  margin-top: 16px;
  font-size: clamp(64px, 8vw, 132px);
}

.rebel-axis {
  position: absolute;
  top: 25%;
  right: 8%;
  width: 43%;
  height: 140px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.axis-line {
  position: absolute;
  top: 69px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(224, 212, 189, 0.55);
}

.axis-line::after {
  position: absolute;
  right: 0;
  bottom: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid rgba(224, 212, 189, 0.55);
  content: "";
  transform: translateY(5px);
}

.axis-start,
.axis-end {
  position: absolute;
  top: 86px;
}

.axis-start { left: 0; }
.axis-end { right: 0; }

.axis-marker {
  position: absolute;
  top: 20px;
  left: 82%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 3px solid var(--red);
  border-radius: 50%;
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1em;
  transform: translateX(-50%) rotate(-7deg);
}

.archetypes {
  position: absolute;
  top: 54%;
  right: 8%;
  width: 43%;
}

.archetypes p {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(224, 212, 189, 0.28);
  color: rgba(224, 212, 189, 0.68);
  font-family: var(--mono);
  font-size: clamp(12px, 1vw, 16px);
}

.archetypes strong {
  display: block;
  margin-top: 18px;
  color: var(--red-bright);
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 54px);
  text-align: right;
  text-transform: uppercase;
}

.rebel-rule {
  position: absolute;
  bottom: 15%;
  left: 9vw;
  display: grid;
  width: 40%;
  gap: 12px;
  color: rgba(224, 212, 189, 0.76);
  font-family: var(--mono);
  font-size: clamp(13px, 1.1vw, 18px);
}

.rebel-rule span::before {
  margin-right: 14px;
  color: var(--red);
  content: "×";
  font-weight: 900;
}

/* Decision */
.slide--decision {
  background: #10100d;
}

.decision-map {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8, 8, 7, 0.5), rgba(8, 8, 7, 0.82)), url("assets/zwolle-map.jpg") center / cover;
  filter: grayscale(0.8) contrast(1.18);
  transform: scale(1.06);
}

.casualty-report {
  position: absolute;
  top: 16%;
  left: 50%;
  width: min(660px, 54vw);
  min-height: 57%;
  padding: clamp(28px, 3.4vw, 54px);
  transform: translateX(-50%) rotate(-0.7deg);
  background: var(--paper-light);
  color: #18150f;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.62);
  clip-path: polygon(2% 0, 98% 1%, 100% 91%, 95% 100%, 2% 98%, 0 7%);
}

.report-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 2px solid #221e17;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.casualty-report > p {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.55;
}

.casualty-report h2 {
  margin-top: 20px;
  color: #1a1712;
  font-family: var(--mono);
  font-size: clamp(18px, 1.6vw, 28px);
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: none;
}

.redaction {
  display: block;
  width: 58%;
  height: 14px;
  margin: 14px 0 18px;
  background: #17140f;
  transform: rotate(-1deg);
}

.casualty-report blockquote {
  position: relative;
  z-index: 2;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(34px, 4.6vw, 75px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.94;
  text-transform: uppercase;
  transform: rotate(-1.8deg);
}

.fingerprint {
  position: absolute;
  right: 9%;
  bottom: 8%;
  width: 72px;
  height: 92px;
  opacity: 0.15;
  border: 7px double var(--red);
  border-radius: 50%;
  transform: rotate(18deg);
}

.decision-theme {
  position: absolute;
  right: var(--edge);
  bottom: calc(var(--footer-h) + 24px);
  font-family: var(--mono);
  font-size: clamp(11px, 0.9vw, 14px);
}

/* Zwolle */
.slide--zwolle {
  background: #090908;
}

.zwolle-map {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 7, 0.44), rgba(8, 8, 7, 0.08)), url("assets/zwolle-map.jpg") center / cover;
  filter: grayscale(0.85) brightness(0.55) contrast(1.35);
  transform: scale(1.08);
}

.zwolle-map::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 49% 49%, rgba(216, 204, 181, 0.34), transparent 5%, transparent 28%, rgba(8, 8, 7, 0.35) 72%);
}

.route {
  position: absolute;
  z-index: 2;
  inset: 9% 8% 12% 20%;
  width: 72%;
  height: 76%;
  filter: drop-shadow(0 0 5px rgba(189, 39, 31, 0.32));
}

.route path {
  fill: none;
  stroke: var(--red-bright);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2600;
  stroke-dashoffset: 2600;
  animation: draw-route 3.2s 0.45s var(--ease) forwards;
}

.route circle {
  fill: var(--paper-light);
  opacity: 0;
  animation: map-pulse 1.5s 3.1s ease-out infinite;
}

@keyframes draw-route { to { stroke-dashoffset: 0; } }

@keyframes map-pulse {
  0% { opacity: 1; transform: scale(0.5); transform-origin: 490px 300px; }
  100% { opacity: 0; transform: scale(2.8); transform-origin: 490px 300px; }
}

.zwolle-paper {
  position: absolute;
  z-index: 3;
  top: 19%;
  left: 6%;
  width: min(450px, 33vw);
  padding: clamp(25px, 3vw, 48px);
  transform: rotate(-1.5deg);
  background: var(--paper-light);
  color: #17140f;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  clip-path: polygon(1% 0, 97% 2%, 100% 94%, 91% 100%, 2% 98%, 0 10%);
}

.zwolle-paper .location-line {
  color: rgba(24, 20, 15, 0.72);
}

.zwolle-paper h2 {
  margin-top: 24px;
  color: #14110e;
  font-family: var(--mono);
  font-size: clamp(29px, 3.2vw, 53px);
  letter-spacing: -0.04em;
  line-height: 1.04;
  text-transform: uppercase;
}

.tactics span {
  position: absolute;
  z-index: 4;
  top: var(--y);
  left: var(--x);
  color: var(--red-bright);
  font-family: var(--mono);
  font-size: clamp(13px, 1.4vw, 22px);
  font-weight: 700;
  text-transform: uppercase;
  transform: translateY(18px);
  opacity: 0;
  animation: reveal-note 480ms var(--ease) forwards;
}

.tactics span:nth-child(1) { animation-delay: 1.25s; }
.tactics span:nth-child(2) { animation-delay: 2.05s; }
.tactics span:nth-child(3) { animation-delay: 2.75s; }

.tactics span::after {
  display: block;
  width: 120%;
  height: 4px;
  margin-top: 4px;
  background: var(--red);
  content: "";
  transform: rotate(-2deg);
}

@keyframes reveal-note {
  to { opacity: 1; transform: none; }
}

.zwolle-outcome {
  position: absolute;
  z-index: 4;
  right: 25%;
  bottom: calc(var(--footer-h) + 20px);
  color: var(--paper-light);
  font-family: var(--mono);
  font-size: clamp(15px, 1.6vw, 26px);
}

/* Dawn */
.slide--dawn {
  background: var(--paper-light);
  color: #17140f;
}

.dawn-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 48%;
  background: url("assets/zwolle-freedom.jpg") 19% center / cover;
  filter: grayscale(0.75) contrast(1.06);
}

.dawn-image::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset -50px 0 80px rgba(224, 212, 189, 0.86);
}

.dawn-copy {
  position: absolute;
  top: 20%;
  right: 7%;
  width: 47%;
}

.dawn-copy .location-line {
  color: rgba(23, 20, 15, 0.65);
}

.dawn-copy h2 {
  margin-block: 22px 34px;
  font-size: clamp(52px, 6.1vw, 100px);
}

.dawn-copy h2 em {
  color: var(--red);
  font-style: normal;
}

.dawn-copy > p:not(.location-line) {
  max-width: 52ch;
  color: rgba(23, 20, 15, 0.72);
  font-family: var(--mono);
  font-size: clamp(13px, 1.08vw, 18px);
  line-height: 1.65;
}

.legacy-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(28px, 6vh, 72px);
  padding-top: 18px;
  border-top: 1px solid rgba(23, 20, 15, 0.25);
  font-family: var(--display);
  font-size: clamp(10px, 0.85vw, 14px);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legacy-line i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

/* Medals */
.slide--medals {
  background:
    linear-gradient(90deg, rgba(11, 11, 10, 0.97) 0 46%, rgba(11, 11, 10, 0.65)),
    url("assets/zwolle-freedom.jpg") center / cover;
}

.medal-copy {
  position: absolute;
  top: 22%;
  left: 7%;
  width: 38%;
}

.medal-copy h2 {
  margin-block: 20px 30px;
  font-size: clamp(58px, 7vw, 118px);
}

.medal-copy > p:last-child {
  max-width: 46ch;
  color: rgba(224, 212, 189, 0.7);
  font-family: var(--mono);
  font-size: clamp(12px, 1vw, 17px);
  line-height: 1.65;
}

.medal-document {
  position: absolute;
  top: 17%;
  right: 10%;
  width: min(450px, 32vw);
  height: 48%;
  padding: clamp(28px, 3vw, 50px);
  transform: rotate(2deg);
  background: var(--paper-light);
  color: #191611;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.5);
}

.medal-document p {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(25, 22, 17, 0.4);
  font-family: var(--mono);
  font-size: clamp(16px, 1.4vw, 24px);
  line-height: 1.45;
  text-align: center;
}

.medal-document strong {
  position: absolute;
  top: 47%;
  left: 9%;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(56px, 6.4vw, 100px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.medal-document > span {
  position: absolute;
  right: 7%;
  bottom: 8%;
  font-family: var(--mono);
  font-size: 12px;
  transform: rotate(-2deg);
}

.medal-seal {
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.medal-quote {
  position: absolute;
  right: 9%;
  bottom: 16%;
  width: 35%;
  color: var(--bone);
  font-family: var(--mono);
  font-size: clamp(15px, 1.45vw, 24px);
  line-height: 1.5;
  text-align: right;
}

/* Korea */
.slide--korea {
  background: #15130f;
}

.korea-chart {
  position: absolute;
  inset: 0 48% 0 0;
  background: linear-gradient(90deg, rgba(15, 14, 11, 0.12), rgba(15, 14, 11, 0.85)), url("assets/korea.jpg") center / cover;
  filter: saturate(0.65) contrast(1.03);
}

.korea-copy {
  position: absolute;
  top: 21%;
  right: 7%;
  width: 46%;
}

.korea-copy h2 {
  margin-block: 20px 32px;
  font-size: clamp(58px, 7vw, 116px);
}

.korea-copy h2 em {
  color: var(--red-bright);
  font-style: normal;
}

.korea-copy > p:not(.location-line) {
  max-width: 47ch;
  color: rgba(224, 212, 189, 0.7);
  font-family: var(--mono);
  font-size: clamp(13px, 1.05vw, 18px);
  line-height: 1.65;
}

.korea-copy strong {
  display: block;
  margin-top: clamp(26px, 6vh, 64px);
  padding-left: 22px;
  border-left: 5px solid var(--red);
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 32px);
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

/* Why */
.slide--why {
  padding: 15vh 7vw 12vh;
  background: var(--paper-light);
  color: #17140f;
}

.slide--why .location-line {
  color: rgba(23, 20, 15, 0.62);
}

.slide--why h2 {
  margin-top: 18px;
  font-size: clamp(58px, 7vw, 116px);
}

.why-list {
  position: absolute;
  top: 15%;
  right: 6.5%;
  width: 52%;
  border-top: 1px solid rgba(23, 20, 15, 0.3);
}

.why-list div {
  display: grid;
  grid-template-columns: 42px 1fr 0.72fr;
  gap: 18px;
  align-items: center;
  padding: clamp(12px, 1.8vh, 20px) 0;
  border-bottom: 1px solid rgba(23, 20, 15, 0.3);
}

.why-list b {
  color: var(--red);
  font-family: var(--display);
  font-size: 17px;
}

.why-list strong {
  font-family: var(--display);
  font-size: clamp(15px, 1.3vw, 22px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.why-list span {
  color: rgba(23, 20, 15, 0.64);
  font-family: var(--mono);
  font-size: clamp(10px, 0.8vw, 13px);
}

.tone-line {
  position: absolute;
  left: 7vw;
  bottom: 14%;
  width: 36%;
  color: rgba(23, 20, 15, 0.65);
  font-family: var(--mono);
  font-size: clamp(11px, 0.9vw, 14px);
  line-height: 1.7;
}

.tone-line span {
  color: var(--red);
  font-weight: 700;
}

/* Close */
.slide--close {
  background: linear-gradient(90deg, rgba(7, 7, 6, 0.96) 0 49%, rgba(7, 7, 6, 0.42)), url("assets/major-hero.png") center / cover;
}

.close-copy {
  position: absolute;
  top: 29%;
  left: 7%;
  width: 56%;
}

.close-copy h2 {
  font-size: clamp(62px, 7.5vw, 124px);
}

.close-copy h2 em {
  color: var(--red-bright);
  font-style: normal;
}

.close-copy > p {
  margin-top: 28px;
  color: rgba(224, 212, 189, 0.75);
  font-family: var(--mono);
  font-size: clamp(13px, 1.2vw, 19px);
}

.greenlight-stamp {
  display: inline-block;
  margin-top: 42px;
  padding: 12px 18px 9px;
  border: 4px solid var(--red);
  color: var(--red-bright);
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 31px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.dog-tag {
  position: absolute;
  top: 23%;
  right: 8%;
  display: grid;
  width: 185px;
  height: 98px;
  place-items: center;
  border: 2px solid rgba(224, 212, 189, 0.35);
  border-radius: 45%;
  background: #252621;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55), inset 0 0 0 5px #171815;
  color: rgba(224, 212, 189, 0.78);
  font-family: var(--display);
  font-size: 35px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: rotate(8deg);
}

.dog-tag::after {
  position: absolute;
  top: -210px;
  width: 2px;
  height: 220px;
  background: repeating-linear-gradient(to bottom, #4a4b43 0 3px, transparent 3px 7px);
  content: "";
}

.restart-button {
  position: absolute;
  right: 8%;
  bottom: 17%;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper-light);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.restart-button svg {
  width: 22px;
  height: 22px;
  color: var(--red-bright);
}

/* Overview */
.overview {
  position: absolute;
  z-index: 200;
  inset: 0;
  visibility: hidden;
  padding: 32px var(--edge) 38px;
  overflow-y: auto;
  background: rgba(9, 9, 8, 0.98);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 360ms var(--ease), transform 360ms var(--ease), visibility 360ms;
}

.overview.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.overview__topline {
  position: sticky;
  z-index: 2;
  top: -32px;
  display: flex;
  height: 78px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  background: rgba(9, 9, 8, 0.98);
}

.overview__topline p {
  margin: 0;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.overview__close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--paper-light);
  cursor: pointer;
}

.overview__close svg {
  width: 20px;
  height: 20px;
}

.overview__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 28px);
}

.overview-card {
  position: relative;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(224, 212, 189, 0.16);
  background: #11110f;
  color: var(--bone);
  text-align: left;
  cursor: pointer;
  transition: transform 240ms var(--ease), border-color 240ms ease, background 240ms ease;
}

.overview-card:hover,
.overview-card.is-current {
  border-color: rgba(213, 49, 39, 0.78);
  background: #171713;
  transform: translateY(-4px);
}

.overview-card__number {
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.overview-card__visual {
  position: absolute;
  top: 25px;
  right: 20px;
  display: flex;
  width: 66px;
  height: 52px;
  align-items: flex-end;
  justify-content: space-between;
  opacity: 0.22;
}

.overview-card__visual i {
  width: 18px;
  background: var(--bone);
}

.overview-card__visual i:nth-child(1) { height: 65%; }
.overview-card__visual i:nth-child(2) { height: 100%; }
.overview-card__visual i:nth-child(3) { height: 45%; background: var(--red); }

.overview-card__label {
  margin-top: auto;
  color: rgba(224, 212, 189, 0.48);
  font-family: var(--mono);
  font-size: 10px;
}

.overview-card strong {
  margin-top: 8px;
  font-family: var(--display);
  font-size: clamp(18px, 1.5vw, 26px);
  letter-spacing: -0.015em;
  line-height: 0.98;
  text-transform: uppercase;
}

.overview-card--cover {
  background: linear-gradient(135deg, #171713 40%, #3c3329);
}

.overview-card--dawn,
.overview-card--why {
  background: var(--paper-light);
  color: #17140f;
}

.overview-card--dawn .overview-card__label,
.overview-card--why .overview-card__label {
  color: rgba(23, 20, 15, 0.55);
}

/* Responsive */
@media (max-width: 1100px) {
  :root {
    --edge: 42px;
  }

  .nav-arrow {
    width: 46px;
    height: 46px;
  }

  .nav-arrow--previous { left: 10px; }
  .nav-arrow--next { right: 10px; }

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

@media (max-width: 760px) {
  :root {
    --edge: 22px;
    --header-h: 60px;
    --footer-h: 68px;
  }

  .deck {
    min-height: 520px;
  }

  .utility-button__label,
  .deck-hint,
  .scroll-cue,
  .slide-note {
    display: none;
  }

  .deck__footer {
    gap: 14px;
  }

  .progress {
    width: auto;
    flex: 1;
  }

  .nav-arrow {
    top: auto;
    bottom: 76px;
    width: 40px;
    height: 40px;
    border-color: rgba(224, 212, 189, 0.28);
  }

  .nav-arrow--previous { left: 16px; }
  .nav-arrow--next { right: 16px; }

  .slide--cover {
    background-position: 60% center;
  }

  .slide--cover::before {
    background-position: 62% center;
  }

  .slide--cover::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(7, 7, 6, 0.12) 25%, rgba(7, 7, 6, 0.96) 72%);
  }

  .cover-copy {
    top: auto;
    bottom: 19%;
    left: var(--edge);
    width: calc(100% - 44px);
    transform: none;
  }

  .cover-copy h1 {
    font-size: clamp(82px, 26vw, 132px);
  }

  .cover-subtitle {
    font-size: 15px;
  }

  .cover-logline br {
    display: initial;
  }

  .dossier-portrait {
    top: 8%;
    bottom: auto;
    left: 9%;
    width: 58%;
    height: 39%;
    padding: 11px;
  }

  .origin-copy {
    top: 49%;
    right: auto;
    left: var(--edge);
    width: calc(100% - 44px);
  }

  .origin-copy h2 {
    margin-top: 10px;
    font-size: clamp(45px, 12vw, 68px);
  }

  .origin-copy .grease-line {
    width: 64%;
    height: 6px;
    margin-block: 9px 12px;
  }

  .origin-copy blockquote {
    padding-left: 26px;
    font-size: 17px;
  }

  .origin-copy blockquote br { display: initial; }
  .origin-copy blockquote::before { left: -4px; }

  .trait-line {
    margin-top: 18px;
    font-size: 8px;
  }

  .legend-copy {
    top: 19%;
    left: var(--edge);
    width: 74%;
  }

  .legend-copy h2,
  .eye-copy h2,
  .medal-copy h2,
  .korea-copy h2 {
    font-size: clamp(48px, 12vw, 70px);
  }

  .act-stamp { top: 10%; }

  .mission-beats {
    top: auto;
    right: var(--edge);
    bottom: 14%;
    width: calc(100% - 44px);
  }

  .mission-beats div {
    grid-template-columns: 38px 1fr;
    padding: 12px 8px;
  }

  .mission-beats strong { font-size: 20px; }
  .field-note { display: none; }

  .medical-form {
    top: 11%;
    right: var(--edge);
    left: auto;
    width: 48%;
  }

  .eye-image {
    background-position: 30% center;
  }

  .eye-copy {
    top: auto;
    right: var(--edge);
    bottom: 17%;
    width: calc(100% - 44px);
  }

  .slide--rebel {
    padding: 14vh var(--edge) 13vh;
  }

  .rebel-heading h2 {
    font-size: clamp(54px, 14vw, 76px);
  }

  .rebel-axis {
    top: 39%;
    right: var(--edge);
    left: var(--edge);
    width: auto;
  }

  .archetypes {
    top: 58%;
    right: var(--edge);
    left: var(--edge);
    width: auto;
  }

  .rebel-rule { display: none; }

  .casualty-report {
    top: 14%;
    width: 78vw;
    min-height: 56%;
  }

  .report-topline { font-size: 9px; }

  .casualty-report blockquote {
    font-size: clamp(34px, 9vw, 54px);
  }

  .decision-theme {
    right: var(--edge);
    left: var(--edge);
    bottom: 13%;
    text-align: center;
  }

  .zwolle-paper {
    top: 13%;
    left: var(--edge);
    width: 70vw;
  }

  .route {
    inset: 27% 0 12% 18%;
    width: 94%;
    height: 62%;
  }

  .tactics span {
    font-size: 11px;
  }

  .zwolle-outcome {
    right: var(--edge);
    bottom: 13%;
  }

  .dawn-image {
    width: 100%;
    height: 43%;
  }

  .dawn-image::after {
    box-shadow: inset 0 -45px 60px var(--paper-light);
  }

  .dawn-copy {
    top: 46%;
    right: var(--edge);
    left: var(--edge);
    width: auto;
  }

  .dawn-copy h2 {
    margin-block: 12px 18px;
    font-size: clamp(42px, 10.8vw, 62px);
  }

  .legacy-line {
    margin-top: 20px;
    font-size: 7px;
  }

  .medal-copy {
    top: 13%;
    left: var(--edge);
    width: 80%;
  }

  .medal-copy > p:last-child {
    display: none;
  }

  .medal-document {
    top: 45%;
    right: 11%;
    width: 66vw;
    height: 34%;
  }

  .medal-document strong {
    font-size: 15vw;
  }

  .medal-quote { display: none; }

  .korea-chart {
    inset: 0 0 48% 0;
    background-position: center 48%;
  }

  .korea-copy {
    top: 49%;
    right: var(--edge);
    left: var(--edge);
    width: auto;
  }

  .korea-copy h2 {
    margin-block: 9px 16px;
  }

  .korea-copy strong {
    margin-top: 20px;
    font-size: 16px;
  }

  .slide--why {
    padding: 11vh var(--edge) 11vh;
  }

  .slide--why h2 {
    margin-top: 10px;
    font-size: clamp(49px, 13vw, 70px);
  }

  .why-list {
    top: 34%;
    right: var(--edge);
    left: var(--edge);
    width: auto;
  }

  .why-list div {
    grid-template-columns: 28px 1fr;
    gap: 10px;
    padding: 10px 0;
  }

  .why-list span { display: none; }
  .why-list strong { font-size: 13px; }
  .tone-line { display: none; }

  .close-copy {
    top: 30%;
    left: var(--edge);
    width: calc(100% - 44px);
  }

  .close-copy h2 {
    font-size: clamp(48px, 12.5vw, 70px);
  }

  .greenlight-stamp {
    margin-top: 28px;
    border-width: 3px;
    font-size: 16px;
  }

  .dog-tag { display: none; }
  .restart-button { right: var(--edge); bottom: 14%; }

  .overview {
    padding: 20px 18px 30px;
  }

  .overview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .overview-card {
    min-height: 160px;
    padding: 16px;
  }

  .overview-card__visual {
    width: 46px;
    height: 36px;
  }

  .overview-card__visual i { width: 12px; }
}

@media (max-height: 650px) and (min-width: 761px) {
  :root {
    --header-h: 56px;
    --footer-h: 56px;
  }

  .origin-copy { top: 15%; }
  .dossier-portrait { top: 10%; bottom: 11%; }
  .trait-line { margin-top: 20px; }
  .mission-beats div { padding-block: 14px; }
  .slide--rebel { padding-top: 12vh; }
  .why-list div { padding-block: 10px; }
}

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