:root {
  --teal: #00a78e;
  --teal-deep: #008f7c;
  --ink: #101820;
  --paper: #f7f8f5;
  --paper-soft: #eef2ee;
  --navy: #132433;
  --text: #132433;
  --subtle: #62717b;
  --white: #ffffff;
  --muted: rgba(19, 36, 51, 0.62);
  --line: rgba(19, 36, 51, 0.18);
  --shadow: rgba(0, 0, 0, 0.22);
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Sans JP", sans-serif;
}

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

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #0c1116;
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
}

button {
  font: inherit;
}

.deck-shell {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: #0c1116;
}

.deck-frame {
  position: relative;
  width: min(100vw, 177.78vh);
  height: min(100vh, 56.25vw);
  min-width: 320px;
  min-height: 180px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  container-type: inline-size;
}

.slide-stage,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  display: none;
  padding: 5.3cqw 6.4cqw;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 167, 142, 0.12) 0, rgba(0, 167, 142, 0.12) 0.72cqw, transparent 0.72cqw),
    radial-gradient(circle at 92% 18%, rgba(0, 167, 142, 0.08), transparent 24cqw),
    var(--paper);
}

.slide.active {
  display: block;
}

@keyframes blockRevealSweep {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  45% {
    transform: scaleX(1);
    transform-origin: left;
  }
  46% {
    transform: scaleX(1);
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

@keyframes revealTextIn {
  0%,
  44% {
    opacity: 0;
  }
  45%,
  100% {
    opacity: 1;
  }
}

.slide-cover {
  padding: 0;
  background: var(--teal);
}

.slide-cover::after {
  content: none;
}

.cover-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.content-slide {
  padding: 6.1cqw 6.8cqw 5.6cqw;
}

.slide-head {
  display: none;
}

.slide-head span {
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--font-serif);
  font-size: 1.8cqw;
  font-weight: 900;
}

.content-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 5.6cqw;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: left;
}

.content-grid.wide-right {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 5.1cqw;
  width: 100%;
}

.title-zone {
  min-width: 0;
}

.statement {
  margin: 0;
  color: var(--text);
  font-size: 4.05cqw;
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: 0;
  text-align: left;
}

.statement .line,
.one-liner span {
  display: block;
}

.statement strong {
  position: relative;
  display: inline-block;
  margin-top: 0.48cqw;
  padding: 0.03em 0.18em 0.11em;
  background: var(--teal);
  color: var(--white);
  font-weight: 500;
  line-height: 1;
  overflow: hidden;
}

.statement strong .line {
  opacity: 0;
}

.slide.active .statement strong .line {
  animation: revealTextIn 0.92s cubic-bezier(0.86, 0, 0.07, 1) forwards;
}

.slide.active .statement strong::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--text);
  transform: scaleX(0);
  pointer-events: none;
  animation: blockRevealSweep 0.92s cubic-bezier(0.86, 0, 0.07, 1) forwards;
}

.one-liner {
  width: 88%;
  margin: 2.1cqw 0 0;
  padding-left: 1.25cqw;
  border-left: 0.22cqw solid var(--teal);
  color: var(--subtle);
  font-size: 1.35cqw;
  font-weight: 300;
  line-height: 1.72;
  text-align: left;
}

.visual-zone {
  min-width: 0;
  margin: 0;
}

.agenda-slide {
  background:
    linear-gradient(90deg, rgba(0, 167, 142, 0.16) 0, rgba(0, 167, 142, 0.16) 0.72cqw, transparent 0.72cqw),
    radial-gradient(circle at 88% 15%, rgba(0, 167, 142, 0.1), transparent 24cqw),
    var(--paper);
}

.agenda-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  align-items: center;
  gap: 5.2cqw;
  width: 100%;
  height: 100%;
}

.toc-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72cqw;
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc-list li {
  display: grid;
  grid-template-columns: 3.35cqw minmax(0, 1fr);
  grid-template-areas:
    "num label"
    "num title"
    "num meta";
  align-items: center;
  min-height: 5.6cqw;
  padding: 1.05cqw 1.2cqw;
  border: 0.09cqw solid var(--line);
  background: var(--white);
  box-shadow: 0 0.75cqw 1.8cqw rgba(16, 24, 32, 0.07);
  transition: opacity 140ms ease;
}

.toc-list li.is-muted {
  opacity: 0.3;
}

.toc-list li.is-active {
  opacity: 1;
}

.toc-list li.is-active:nth-child(even),
.toc-list li.is-active:nth-child(odd) {
  border-color: var(--teal);
}

.toc-list span {
  grid-area: num;
  display: grid;
  place-items: center;
  width: 2.35cqw;
  aspect-ratio: 1;
  background: var(--teal);
  color: var(--white);
  font-size: 0.95cqw;
  font-weight: 700;
  line-height: 1;
}

.toc-list b {
  grid-area: label;
  color: var(--teal-deep);
  font-size: 0.95cqw;
  font-weight: 700;
  line-height: 1;
}

.toc-list strong {
  grid-area: title;
  color: var(--text);
  font-size: 1.42cqw;
  font-weight: 500;
  line-height: 1.18;
}

.toc-list small {
  grid-area: meta;
  color: var(--subtle);
  font-size: 0.84cqw;
  font-weight: 300;
  line-height: 1.35;
}

.thesis-lockup {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9cqw;
  width: 100%;
  margin: 0;
}

.thesis-lockup div {
  display: grid;
  place-items: center;
  min-height: 9.1cqw;
  border: 0.09cqw solid var(--line);
  color: var(--text);
  background: var(--white);
  box-shadow: 0 1cqw 2.3cqw rgba(16, 24, 32, 0.08);
  font-size: 2.05cqw;
  font-weight: 400;
}

.thesis-lockup div:nth-child(2),
.thesis-lockup div:nth-child(3) {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.issue-stack {
  display: grid;
  gap: 0.85cqw;
  width: 100%;
  margin: 0;
}

.issue-stack div {
  display: grid;
  grid-template-columns: 4.6cqw 1fr;
  align-items: center;
  min-height: 5.1cqw;
  padding: 0 2cqw;
  border: 0.09cqw solid var(--line);
  background: var(--white);
  color: var(--text);
  box-shadow: 0 0.8cqw 2cqw rgba(16, 24, 32, 0.07);
  font-size: 1.62cqw;
  font-weight: 400;
}

.issue-stack div:nth-child(odd) {
  background: var(--teal);
  border-color: var(--teal);
}

.issue-stack span {
  font-family: var(--font-serif);
  color: var(--teal-deep);
  font-size: 1.32cqw;
}

.motion-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9cqw;
  width: 100%;
  margin: 0;
}

.motion-map > div:not(.motion-update-arrow),
.minimum-set div,
.data-board div,
.folder-table div,
.move-line div {
  border: 0.09cqw solid var(--line);
}

.motion-map > div:not(.motion-update-arrow) {
  position: relative;
  min-height: 10.8cqw;
  padding: 1.45cqw 1.2cqw;
  background: var(--white);
  box-shadow: 0 0.9cqw 2.2cqw rgba(16, 24, 32, 0.07);
  text-align: left;
}

.motion-map > div:not(.motion-update-arrow):nth-child(even),
.data-board div:nth-child(3),
.minimum-set div:nth-child(2) {
  background: var(--teal);
  border-color: var(--teal);
}

.issue-stack div:nth-child(odd),
.motion-map > div:not(.motion-update-arrow):nth-child(even),
.folder-table div:nth-child(2),
.folder-table div:nth-child(4),
.data-board div:nth-child(3),
.skill-split > div:nth-child(2),
.skill-grid > div:nth-child(2),
.skill-grid > div:nth-child(4),
.move-line div:nth-child(2),
.move-line div:nth-child(4),
.minimum-set div:nth-child(2) {
  color: var(--white);
}

.issue-stack div:nth-child(odd) span,
.motion-map > div:not(.motion-update-arrow):nth-child(even) b,
.motion-map > div:not(.motion-update-arrow):nth-child(even) small,
.folder-table div:nth-child(2) b,
.folder-table div:nth-child(2) span,
.folder-table div:nth-child(4) b,
.folder-table div:nth-child(4) span,
.data-board div:nth-child(3) b,
.data-board div:nth-child(3) span,
.skill-split > div:nth-child(2) b,
.skill-split > div:nth-child(2) span,
.skill-grid > div:nth-child(2) b,
.skill-grid > div:nth-child(2) span,
.skill-grid > div:nth-child(4) b,
.skill-grid > div:nth-child(4) span,
.move-line div:nth-child(2) b,
.move-line div:nth-child(2) span,
.move-line div:nth-child(4) b,
.move-line div:nth-child(4) span,
.minimum-set div:nth-child(2) b,
.minimum-set div:nth-child(2) span {
  color: var(--white);
}

.motion-map > div:not(.motion-update-arrow):not(:nth-child(4))::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.78cqw;
  width: 0.7cqw;
  height: 0.7cqw;
  border-top: 0.18cqw solid var(--teal);
  border-right: 0.18cqw solid var(--teal);
  transform: translateY(-50%) rotate(45deg);
}

.motion-update-arrow {
  position: absolute;
  left: 37.4%;
  right: 12.2%;
  bottom: -3.35cqw;
  height: 2.4cqw;
  border-right: 0.16cqw solid var(--teal);
  border-bottom: 0.16cqw solid var(--teal);
  border-left: 0.16cqw solid var(--teal);
  pointer-events: none;
}

.motion-update-arrow::before {
  content: "";
  position: absolute;
  left: -0.39cqw;
  top: -0.34cqw;
  width: 0.62cqw;
  height: 0.62cqw;
  border-top: 0.16cqw solid var(--teal);
  border-left: 0.16cqw solid var(--teal);
  transform: rotate(45deg);
}

.motion-update-arrow span {
  position: absolute;
  left: 50%;
  bottom: -0.72cqw;
  transform: translateX(-50%);
  padding: 0 0.55cqw;
  background: var(--paper);
  color: var(--teal-deep);
  font-size: 0.82cqw;
  font-weight: 700;
  white-space: nowrap;
}

.motion-map b,
.folder-table b,
.data-board b,
.skill-split b,
.skill-grid b,
.move-line b,
.minimum-set b {
  display: block;
  margin-bottom: 0.78cqw;
  color: var(--text);
  font-size: 1.86cqw;
  font-weight: 400;
  line-height: 1.05;
}

.motion-map small,
.folder-table span,
.data-board span,
.skill-split span,
.skill-grid span,
.move-line span,
.minimum-set span {
  display: block;
  color: var(--subtle);
  font-size: 1.15cqw;
  font-weight: 300;
  line-height: 1.5;
}

.folder-table {
  display: grid;
  gap: 0.82cqw;
  width: 100%;
  margin: 0;
}

.folder-table div {
  display: grid;
  grid-template-columns: 28% 1fr;
  align-items: center;
  min-height: 5.2cqw;
  padding: 0 1.75cqw;
  background: var(--white);
  box-shadow: 0 0.8cqw 2cqw rgba(16, 24, 32, 0.07);
  text-align: left;
}

.folder-table div:nth-child(2),
.folder-table div:nth-child(4) {
  background: var(--teal);
  border-color: var(--teal);
}

.data-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9cqw;
  width: 100%;
  margin: 0;
}

.data-board div {
  min-height: 9.3cqw;
  padding: 1.45cqw;
  background: var(--white);
  box-shadow: 0 0.8cqw 2cqw rgba(16, 24, 32, 0.07);
  text-align: left;
}

.data-board div:first-child {
  grid-row: span 2;
}

.skill-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1cqw;
  width: 100%;
  margin: 0;
}

.skill-split > div {
  min-height: 13.4cqw;
  padding: 1.7cqw;
  border: 0.09cqw solid var(--line);
  background: var(--white);
  box-shadow: 0 0.8cqw 2cqw rgba(16, 24, 32, 0.07);
  text-align: left;
}

.skill-split > div:nth-child(2) {
  background: var(--teal);
  border-color: var(--teal);
}

.skill-split span {
  margin-top: 0.7cqw;
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9cqw;
  width: 100%;
  margin: 0;
}

.skill-grid > div {
  min-height: 7.7cqw;
  padding: 1.35cqw 1.45cqw;
  border: 0.09cqw solid var(--line);
  background: var(--white);
  box-shadow: 0 0.8cqw 2cqw rgba(16, 24, 32, 0.07);
  text-align: left;
}

.skill-grid > div:nth-child(2),
.skill-grid > div:nth-child(4) {
  background: var(--teal);
  border-color: var(--teal);
}

.skill-grid span {
  margin-top: 0.52cqw;
}

.move-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.74cqw;
  width: 100%;
  margin: 0;
}

.move-line div {
  position: relative;
  min-height: 9.8cqw;
  padding: 1.25cqw 0.92cqw;
  background: var(--white);
  box-shadow: 0 0.8cqw 2cqw rgba(16, 24, 32, 0.07);
  text-align: left;
}

.move-line div:nth-child(2),
.move-line div:nth-child(4) {
  background: var(--teal);
  border-color: var(--teal);
}

.move-line div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.56cqw;
  top: 48%;
  width: 0.55cqw;
  height: 0.55cqw;
  border-top: 0.16cqw solid var(--teal);
  border-right: 0.16cqw solid var(--teal);
  transform: rotate(45deg);
}

.minimum-set {
  display: grid;
  gap: 0.86cqw;
  width: 100%;
  margin: 0;
}

.minimum-set div {
  display: grid;
  grid-template-columns: minmax(0, 34%) minmax(0, 1fr);
  gap: 1.4cqw;
  align-items: center;
  min-height: 5.5cqw;
  padding: 0 1.9cqw;
  background: var(--white);
  box-shadow: 0 0.8cqw 2cqw rgba(16, 24, 32, 0.07);
  text-align: left;
}

.deck-frame.is-cover .agenda {
  display: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  min-height: 1.8em;
  padding: 0.18em 0.7em;
  border: 0.18cqw solid var(--line);
  color: var(--white);
  font-size: 2.1cqw;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.06em;
}

.eyebrow {
  color: var(--muted);
  font-size: 1.25cqw;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  margin: 6.4% 0 0;
  font-size: 9cqw;
  font-weight: 200;
  line-height: 0.92;
  letter-spacing: 0;
}

.black-band {
  display: inline-block;
  margin-top: 2.5%;
  padding: 0.04em 0.13em 0.14em;
  background: var(--ink);
  color: var(--white);
  font-size: 6.7cqw;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.subtitle {
  margin-top: 3.4%;
  color: var(--white);
  font-size: 3.6cqw;
  font-weight: 300;
  line-height: 1.38;
  letter-spacing: 0.02em;
}

.date-line {
  position: absolute;
  left: 6.2%;
  bottom: 5%;
  font-family: var(--font-serif);
  font-size: 4.5cqw;
  font-weight: 700;
  line-height: 1;
}

.vertical-name {
  position: absolute;
  right: 3.5%;
  bottom: 7%;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.84);
  font-size: 2.2cqw;
  font-weight: 300;
  letter-spacing: 0.22em;
}

.section-title {
  max-width: 78%;
  margin: 0;
  font-size: 6.1cqw;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-title strong {
  display: inline-block;
  margin-top: 0.12em;
  padding: 0.04em 0.12em 0.12em;
  background: var(--ink);
  font-weight: 400;
}

.lead {
  max-width: 66%;
  margin-top: 3.3%;
  font-size: 3.2cqw;
  font-weight: 300;
  line-height: 1.35;
}

.grid-2 {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5%;
  margin-top: 4%;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4%;
  margin-top: 4%;
}

.panel {
  border: 0.18cqw solid rgba(255, 255, 255, 0.82);
  padding: 5%;
  background: rgba(255, 255, 255, 0.035);
}

.panel.dark {
  border-color: var(--ink);
  background: var(--ink);
}

.panel-title {
  margin: 0 0 0.8em;
  font-size: 2.8cqw;
  line-height: 1.08;
}

.panel-text {
  margin: 0;
  font-size: 2cqw;
  line-height: 1.55;
}

.big-list {
  margin: 4.5% 0 0;
  padding: 0;
  list-style: none;
  max-width: 74%;
}

.big-list li {
  display: grid;
  grid-template-columns: 3.1em 1fr;
  align-items: start;
  gap: 0.6em;
  margin: 0 0 1.1em;
  font-size: 3cqw;
  line-height: 1.25;
}

.num {
  display: inline-grid;
  place-items: center;
  width: 2.2em;
  height: 2.2em;
  border: 0.18cqw dotted var(--white);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-weight: 700;
}

.map {
  position: relative;
  height: 61%;
  margin-top: 4.2%;
}

.map-node {
  position: absolute;
  width: 23%;
  min-height: 32%;
  padding: 2.2%;
  border: 0.18cqw solid var(--white);
  background: rgba(0, 0, 0, 0.06);
}

.map-node:nth-child(1) { left: 0; top: 0; }
.map-node:nth-child(2) { left: 25.7%; top: 18%; background: var(--ink); }
.map-node:nth-child(3) { left: 51.4%; top: 0; }
.map-node:nth-child(4) { right: 0; top: 18%; background: var(--ink); }

.map-node h3 {
  margin: 0 0 0.65em;
  font-size: 2.4cqw;
}

.map-node p {
  margin: 0;
  font-size: 1.65cqw;
  line-height: 1.5;
}

.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5%;
  margin-top: 5%;
}

.flow-step {
  position: relative;
  min-height: 13.2cqw;
  padding: 11% 8%;
  border: 0.18cqw solid var(--white);
}

.flow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -12%;
  top: 42%;
  font-size: 3cqw;
}

.flow-step h3 {
  margin: 0 0 0.7em;
  font-size: 2.2cqw;
}

.flow-step p {
  margin: 0;
  font-size: 1.45cqw;
  line-height: 1.45;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4%;
  margin-top: 4.5%;
}

.check-item {
  min-height: 18.75cqw;
  padding: 8%;
  border: 0.18cqw dotted var(--white);
}

.check-item strong {
  display: block;
  margin-bottom: 0.65em;
  font-size: 3.2cqw;
  line-height: 1.1;
}

.check-item span {
  display: block;
  font-size: 1.9cqw;
  line-height: 1.5;
}

.stamp {
  position: absolute;
  right: 12%;
  bottom: 8%;
  display: grid;
  place-items: center;
  width: 13cqw;
  aspect-ratio: 1;
  border: 0.24cqw dotted var(--white);
  border-radius: 50%;
  color: var(--white);
  font-size: 2.5cqw;
  line-height: 1.3;
  text-align: center;
}

.agenda {
  position: absolute;
  top: auto;
  left: 6.8%;
  bottom: 3.5%;
  z-index: 5;
  display: flex;
  gap: 0.62cqw;
  max-width: 62%;
}

.agenda button {
  width: 1.7cqw;
  height: 0.25cqw;
  border: 0;
  background: rgba(19, 36, 51, 0.18);
  cursor: pointer;
}

.agenda button.active {
  background: var(--teal);
}

@media (max-width: 900px) {
  .deck-frame {
    width: 100vw;
    height: 100vh;
  }

  .slide {
    padding: 14cqw 6.5cqw 28cqw;
    overflow-y: auto;
  }

  .content-slide {
    padding: 14cqw 6.5cqw 22cqw;
  }

  .slide-head {
    width: 92%;
    margin-bottom: 6cqw;
  }

  .slide-head span {
    font-size: 5.4cqw;
  }

  .content-grid,
  .content-grid.wide-right,
  .agenda-layout {
    display: block;
    height: auto;
  }

  .statement {
    font-size: 13cqw;
  }

  .one-liner {
    width: 94%;
    margin-top: 5.5cqw;
    font-size: 5.2cqw;
  }

  .visual-zone {
    margin-top: 8cqw;
  }

  .thesis-lockup,
  .data-board,
  .skill-split,
  .skill-grid {
    grid-template-columns: 1fr;
  }

  .thesis-lockup div,
  .data-board div,
  .skill-split > div,
  .skill-grid > div {
    min-height: auto;
    padding: 6cqw;
  }

  .thesis-lockup div {
    font-size: 8cqw;
  }

  .issue-stack div {
    grid-template-columns: 13cqw 1fr;
    min-height: 15cqw;
    padding: 0 5cqw;
    font-size: 6.2cqw;
  }

  .issue-stack span {
    font-size: 4.2cqw;
  }

  .toc-list,
  .motion-map,
  .move-line,
  .minimum-set,
  .folder-table,
  .data-board,
  .skill-split,
  .skill-grid,
  .issue-stack,
  .thesis-lockup {
    grid-template-columns: 1fr;
    width: 86cqw;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
  }

  .toc-list {
    gap: 2.8cqw;
  }

  .toc-list li {
    grid-template-columns: 12cqw minmax(0, 1fr);
    min-height: auto;
    padding: 4.2cqw;
  }

  .toc-list span {
    width: 8.6cqw;
    font-size: 3.4cqw;
  }

  .toc-list b {
    font-size: 3.8cqw;
  }

  .toc-list strong {
    font-size: 5.1cqw;
  }

  .toc-list small {
    font-size: 3.7cqw;
  }

  .motion-map > div:not(.motion-update-arrow),
  .move-line div,
  .minimum-set div,
  .folder-table div {
    min-height: auto;
    padding: 5.5cqw;
  }

  .minimum-set div {
    display: block;
  }

  .motion-map > div:not(.motion-update-arrow):not(:nth-child(4))::after,
  .move-line div:not(:last-child)::after {
    content: none;
  }

  .motion-update-arrow {
    display: none;
  }

  .motion-map b,
  .folder-table b,
  .data-board b,
  .skill-split b,
  .skill-grid b,
  .move-line b,
  .minimum-set b {
    font-size: 7.4cqw;
  }

  .motion-map small,
  .folder-table span,
  .data-board span,
  .skill-split span,
  .skill-grid span,
  .move-line span,
  .minimum-set span {
    font-size: 5.1cqw;
  }

  .agenda {
    display: none;
  }

  .kicker {
    font-size: 4.35cqw;
  }

  .hero-title {
    margin-top: 18%;
    font-size: 14.8cqw;
  }

  .black-band {
    font-size: 10.75cqw;
    line-height: 1.14;
  }

  .subtitle {
    font-size: 6.65cqw;
  }

  .date-line {
    position: static;
    margin-top: 14%;
    font-size: 8.7cqw;
  }

  .vertical-name {
    right: 5%;
    bottom: 13%;
    font-size: 6.15cqw;
  }

  .section-title {
    max-width: 94%;
    font-size: 11.8cqw;
  }

  .lead,
  .big-list {
    max-width: 94%;
  }

  .lead {
    font-size: 6.15cqw;
  }

  .grid-2,
  .grid-3,
  .checklist {
    grid-template-columns: 1fr;
    height: auto;
    gap: 3.6cqw;
  }

  .panel,
  .check-item {
    min-height: auto;
    padding: 5.65cqw;
  }

  .panel-title {
    font-size: 8cqw;
  }

  .panel-text {
    font-size: 5.6cqw;
  }

  .big-list li {
    grid-template-columns: 2.6em 1fr;
    font-size: 5.65cqw;
  }

  .map {
    height: auto;
  }

  .map-node {
    position: static;
    width: 100%;
    min-height: auto;
    margin-bottom: 3.6cqw;
    padding: 5.65cqw;
  }

  .flow {
    grid-template-columns: 1fr;
    gap: 3.6cqw;
  }

  .flow-step {
    min-height: auto;
    padding: 5.65cqw;
  }

  .flow-step h3,
  .check-item strong {
    font-size: 7.4cqw;
  }

  .flow-step p,
  .check-item span {
    font-size: 5.2cqw;
  }

  .flow-step:not(:last-child)::after {
    content: "↓";
    right: 50%;
    top: auto;
    bottom: -8.7cqw;
    transform: translateX(50%);
    z-index: 2;
  }

  .stamp {
    position: static;
    margin-top: 7.2cqw;
    width: 35.4cqw;
  }

}

@media (prefers-reduced-motion: reduce) {
  .statement strong .line {
    opacity: 1;
  }

  .slide.active .statement strong .line,
  .slide.active .statement strong::after {
    animation: none;
  }

  .slide.active .statement strong::after {
    content: none;
  }
}

@media print {
  html,
  body {
    overflow: visible;
    background: var(--white);
  }

  .deck-shell,
  .deck-frame,
  .slide-stage {
    position: static;
    width: 100%;
    height: auto;
    box-shadow: none;
  }

  .slide {
    position: relative;
    display: block !important;
    width: 100vw;
    height: 56.25vw;
    page-break-after: always;
  }

  .agenda {
    display: none !important;
  }

  .statement strong .line {
    opacity: 1 !important;
  }

  .slide.active .statement strong::after {
    content: none !important;
  }
}
