@font-face {
  font-family: "Archivo Variable";
  src: url("assets/fonts/archivo-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("assets/fonts/jetbrains-mono-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("assets/fonts/jetbrains-mono-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --black: #050607;
  --carbon: #0b0e0f;
  --carbon-2: #111516;
  --white: #f5f6f2;
  --body: #b9c0bd;
  --mute: #777f7d;
  --faint: #3a4140;
  --line: rgb(245 246 242 / 0.14);
  --line-strong: rgb(245 246 242 / 0.28);
  --signal: #ff4b35;
  --signal-dim: rgb(255 75 53 / 0.15);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-main: "Archivo Variable", Arial, sans-serif;
  --font-data: "JetBrains Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #000;
  color: var(--white);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

::selection {
  background: var(--signal);
  color: var(--white);
}

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 200;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.presentation {
  position: fixed;
  inset: 0;
  background: #000;
  user-select: none;
  touch-action: pan-y;
}

.stage {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100vw, calc(100vh * 16 / 9));
  height: min(100vh, calc(100vw * 9 / 16));
  overflow: hidden;
  transform: translate(-50%, -50%);
  background: var(--black);
  container-type: size;
  isolation: isolate;
}

.stage-noise {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  background: none;
}

.slide {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  visibility: hidden;
  background: var(--black);
  opacity: 0;
  transform: scale(0.992);
  transition:
    opacity 480ms var(--ease),
    transform 680ms var(--ease),
    visibility 0s linear 680ms;
}

.slide.is-before {
  transform: scale(0.996);
}

.slide.is-active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  transition-delay: 0s;
}

.slide-pad {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  padding: 8.4cqh 6.1cqw 7.8cqh;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--white);
  font-variation-settings: "wdth" 116;
  text-wrap: balance;
}

h1 {
  font-size: 5.55cqw;
  font-weight: 690;
  letter-spacing: -0.052em;
  line-height: 0.93;
}

h2 {
  font-size: 4.1cqw;
  font-weight: 660;
  letter-spacing: -0.046em;
  line-height: 0.98;
}

h3 {
  font-size: 1.8cqw;
  font-weight: 620;
  letter-spacing: -0.028em;
  line-height: 1.05;
}

.title-kicker,
.title-footer,
.instrument-ledger span,
.triangle-explain span,
.triangle-node small,
.demo-proof,
.frame-label,
.sport-grid figcaption,
.origin-columns article > span,
.origin-result span,
.pipeline-steps article > span,
.proof-metrics span,
.business-path article > span,
.market-scale span,
.market-source,
.race-track article > span,
.race-proof span,
.abu-pillars span,
.abu-note,
.ask-number > span,
.ask-number p,
.ask-grid span,
.ask-outcome,
.slide-footer,
.deck-controls,
.problem-close,
.pipeline-close,
.business-close {
  font-family: var(--font-data);
  font-weight: 400;
  letter-spacing: 0.11em;
}

.lead,
.triangle-intro,
.demo-heading > p,
.sports-copy > p,
.origin-lede,
.pipeline-heading > p,
.proof-copy > p,
.business-heading > p,
.market-thesis > p,
.race-heading > p,
.abu-heading > p,
.ask-intro,
.close-lockup > p {
  color: var(--body);
  font-size: 1.25cqw;
  line-height: 1.42;
}

.live-dot {
  display: inline-block;
  width: 0.42cqw;
  height: 0.42cqw;
  margin-right: 0.55cqw;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0.25cqw var(--signal-dim);
  vertical-align: 0.04em;
}

/* Cover */

.slide-title {
  background: #020303;
}

.title-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: grayscale(1) contrast(1.16) brightness(0.75);
}

.video-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #030404;
}

.title-lockup {
  position: absolute;
  z-index: 3;
  left: 6.1cqw;
  top: 18.5cqh;
  width: 53cqw;
}

.brand-logo-large {
  display: block;
  width: 19.5cqw;
  margin-bottom: 1.8cqh;
}

.title-kicker {
  margin-bottom: 4.2cqh;
  color: var(--body);
  font-family: var(--font-main);
  font-size: 1.25cqw;
  letter-spacing: 0;
}

.title-lockup h1 {
  max-width: 11ch;
}

.title-summary {
  max-width: 53ch;
  margin-top: 3cqh;
  color: var(--body);
  font-size: 1.3cqw;
  line-height: 1.38;
}

.title-footer {
  position: absolute;
  z-index: 4;
  left: 6.1cqw;
  right: 6.1cqw;
  bottom: 4.7cqh;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4cqw;
  padding-top: 2cqh;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 0.65cqw;
}

.title-footer span:nth-child(2) {
  text-align: right;
}

.title-footer span:last-child {
  text-align: right;
}

/* Problem */

.slide-problem {
  background: var(--black);
}

.problem-layout {
  display: grid;
  grid-template-columns: 43% 1fr;
  gap: 7cqw;
  align-items: center;
}

.problem-thesis h2 {
  max-width: 9ch;
  font-size: 5.25cqw;
}

.problem-thesis p {
  max-width: 42ch;
  margin-top: 3.4cqh;
  color: var(--body);
  font-size: 1.35cqw;
  line-height: 1.45;
}

.instrument-ledger {
  border-top: 1px solid var(--line-strong);
}

.instrument-ledger div {
  display: grid;
  grid-template-columns: 9cqw 15cqw 1fr;
  align-items: baseline;
  min-height: 15.5cqh;
  padding: 3cqh 0;
  border-bottom: 1px solid var(--line);
}

.instrument-ledger div:last-child {
  border-bottom-color: var(--signal);
}

.instrument-ledger span {
  color: var(--mute);
  font-size: 0.68cqw;
}

.instrument-ledger strong {
  font-size: 1.65cqw;
  font-weight: 590;
}

.instrument-ledger div:last-child strong {
  color: var(--signal);
}

.instrument-ledger small {
  color: var(--body);
  font-size: 0.96cqw;
  line-height: 1.35;
}

.problem-close {
  position: absolute;
  left: 6.1cqw;
  bottom: 8.5cqh;
  color: var(--signal);
  font-size: 0.74cqw;
}

/* Triangle */

.triangle-layout {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 3cqw;
  align-items: center;
}

.triangle-copy h2 {
  max-width: 15ch;
}

.triangle-intro {
  max-width: 46ch;
  margin-top: 2.5cqh;
}

.triangle-explain {
  max-width: 45cqw;
  margin-top: 4cqh;
  border-top: 1px solid var(--line-strong);
}

.triangle-explain article {
  display: grid;
  grid-template-columns: 8.5cqw 1fr;
  gap: 1.2cqw;
  padding: 2.15cqh 0;
  border-bottom: 1px solid var(--line);
}

.triangle-explain span {
  color: var(--signal);
  font-size: 0.67cqw;
}

.triangle-explain p {
  color: var(--body);
  font-size: 0.93cqw;
  line-height: 1.38;
}

.triangle-system {
  width: min(41cqw, 66.3cqh);
  aspect-ratio: 600 / 570;
  justify-self: end;
}

.triangle-geometry {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.triangle-outline {
  fill: rgb(255 75 53 / 0.025);
  stroke: var(--signal);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.triangle-vertex {
  fill: var(--signal);
}

.triangle-label text {
  fill: var(--white);
  font-family: "Archivo", sans-serif;
  font-size: 29px;
  font-weight: 650;
  letter-spacing: -0.5px;
}

.triangle-label .triangle-label-detail {
  fill: var(--mute);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2.5px;
}

.triangle-core text {
  fill: var(--body);
  font-family: "Archivo", sans-serif;
  font-size: 17px;
  font-weight: 430;
}

.triangle-core .triangle-core-accent {
  fill: var(--signal);
  font-size: 27px;
  font-weight: 690;
}

/* Demo */

.demo-layout {
  display: grid;
  grid-template-columns: 36% 1fr;
  gap: 4.8cqw;
  align-items: center;
}

.demo-heading h2 {
  max-width: 10.5ch;
  font-size: 4.45cqw;
}

.demo-heading > p {
  max-width: 42ch;
  margin-top: 3cqh;
}

.demo-heading > p strong {
  color: var(--white);
  font-weight: 620;
}

.demo-proof {
  display: grid;
  gap: 1.4cqh;
  margin-top: 4.2cqh;
  color: var(--mute);
  font-size: 0.66cqw;
}

.demo-proof span:first-child {
  color: var(--signal);
}

.mux-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--carbon);
  box-shadow: 0 1.4cqw 4cqw rgb(0 0 0 / 0.42);
}

.mux-frame mux-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  --media-object-fit: cover;
  background: #000;
}

.frame-label {
  position: absolute;
  z-index: 4;
  right: 1.1cqw;
  top: 1.4cqh;
  padding: 0.75cqh 0.75cqw;
  background: rgb(5 6 7 / 0.78);
  color: var(--white);
  font-size: 0.58cqw;
  pointer-events: none;
}

/* Sports */

.slide-sports {
  background: #030404;
}

.sports-copy {
  position: absolute;
  z-index: 5;
  left: 6.1cqw;
  top: 8.5cqh;
  width: 51cqw;
}

.sports-copy h2 {
  max-width: 14ch;
  font-size: 4.25cqw;
}

.sports-copy > p {
  max-width: 56ch;
  margin-top: 2.5cqh;
}

.sport-grid {
  position: absolute;
  left: 6.1cqw;
  right: 6.1cqw;
  bottom: 7.5cqh;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 31cqh;
  gap: 0.7cqw;
}

.sport-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-top: 1px solid var(--line-strong);
  background: var(--carbon);
}

.sport-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.68);
  transform: scale(1.02);
}

.sport-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(5 6 7 / 0.82);
}

.sport-grid figcaption {
  position: absolute;
  z-index: 2;
  left: 1.1cqw;
  bottom: 1.8cqh;
  color: var(--white);
  font-size: 0.66cqw;
}

/* Origin */

.origin-layout h2 {
  max-width: 13ch;
}

.origin-lede {
  position: absolute;
  left: 52cqw;
  right: 6.1cqw;
  top: 11cqh;
}

.origin-columns {
  position: absolute;
  left: 6.1cqw;
  right: 6.1cqw;
  top: 39cqh;
  display: grid;
  grid-template-columns: 1fr 5cqw 1fr;
  align-items: center;
}

.origin-columns article {
  min-height: 31cqh;
  padding: 3.2cqh 2cqw 2.6cqh;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.origin-columns article:first-child {
  border-top-color: var(--signal);
}

.origin-columns article > span {
  color: var(--signal);
  font-size: 0.63cqw;
}

.origin-columns h3 {
  margin-top: 2cqh;
  font-size: 2.1cqw;
}

.origin-columns h4 {
  margin-top: 0.8cqh;
  color: var(--body);
  font-size: 1cqw;
  font-weight: 520;
}

.origin-columns article p {
  max-width: 49ch;
  margin-top: 2cqh;
  color: var(--body);
  font-size: 0.98cqw;
  line-height: 1.42;
}

.origin-join {
  color: var(--signal);
  font-size: 3.2cqw;
  text-align: center;
}

.origin-result {
  position: absolute;
  left: 6.1cqw;
  right: 6.1cqw;
  bottom: 7.5cqh;
  display: grid;
  grid-template-columns: 16cqw 1fr;
  align-items: center;
}

.origin-result span {
  color: var(--signal);
  font-size: 0.63cqw;
}

.origin-result strong {
  font-size: 1.12cqw;
  font-weight: 540;
}

/* Pipeline */

.pipeline-heading {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 8cqw;
  align-items: end;
}

.pipeline-heading h2 {
  max-width: 11ch;
}

.pipeline-heading > p {
  max-width: 48ch;
  padding-bottom: 0.4cqh;
}

.pipeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 6.5cqh;
  border-top: 1px solid var(--line-strong);
}

.pipeline-steps article {
  min-height: 37cqh;
  padding: 3cqh 1.5cqw 2.5cqh;
  border-right: 1px solid var(--line);
}

.pipeline-steps article:first-child {
  padding-left: 0;
}

.pipeline-steps article:last-child {
  padding-right: 0;
  border-right: 0;
}

.pipeline-steps article > span {
  color: var(--signal);
  font-size: 0.64cqw;
}

.pipeline-steps strong {
  display: block;
  min-height: 6.5cqh;
  margin-top: 2cqh;
  font-size: 1.35cqw;
  line-height: 1.12;
}

.pipeline-steps p {
  margin-top: 1.5cqh;
  color: var(--body);
  font-size: 0.93cqw;
  line-height: 1.42;
}

.pipeline-close {
  margin-top: 3cqh;
  padding-top: 2.2cqh;
  border-top: 1px solid var(--signal);
  color: var(--white);
  font-size: 0.71cqw;
}

/* Proof */

.proof-layout {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 4.8cqw;
  align-items: center;
}

.proof-copy h2 {
  max-width: 9ch;
}

.proof-copy > p {
  max-width: 43ch;
  margin-top: 2.7cqh;
}

.proof-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 4cqh;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.proof-metrics div {
  min-height: 11.8cqh;
  padding: 2cqh 0;
}

.proof-metrics div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.proof-metrics div:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.proof-metrics div:nth-child(even) {
  padding-left: 1.5cqw;
}

.proof-metrics strong {
  display: block;
  color: var(--white);
  font-size: 1.7cqw;
  line-height: 1;
}

.proof-metrics span {
  display: block;
  margin-top: 1.1cqh;
  color: var(--mute);
  font-size: 0.56cqw;
}

.proof-copy .proof-close {
  margin-top: 2.7cqh;
  color: var(--white);
  font-size: 1cqw;
}

.recap-frame {
  align-self: center;
}

/* Business */

.business-heading {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 7cqw;
  align-items: end;
}

.business-heading h2 {
  max-width: 13ch;
}

.business-heading > p {
  max-width: 48ch;
  padding-bottom: 0.3cqh;
}

.business-path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.3cqw;
  margin-top: 6cqh;
}

.business-path article {
  min-height: 30cqh;
  padding-top: 2.5cqh;
  border-top: 1px solid var(--line-strong);
}

.business-path article:first-child {
  border-top-color: var(--signal);
}

.business-path article > span {
  color: var(--signal);
  font-size: 0.64cqw;
}

.business-path h3 {
  max-width: 13ch;
  min-height: 8cqh;
  margin-top: 1.8cqh;
}

.business-path p {
  color: var(--body);
  font-size: 1cqw;
  line-height: 1.42;
}

.business-close {
  margin-top: 3cqh;
  padding: 2cqh 1.2cqw;
  border: 1px solid var(--line);
  color: var(--white);
  font-size: 0.71cqw;
}

/* Market */

.market-layout {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 7cqw;
  align-items: center;
}

.market-thesis h2 {
  max-width: 12ch;
}

.market-thesis > p {
  max-width: 44ch;
  margin-top: 3cqh;
}

.market-scale {
  border-top: 1px solid var(--line-strong);
}

.market-scale article {
  position: relative;
  display: grid;
  grid-template-columns: 9.5cqw 14cqw 1fr;
  align-items: center;
  min-height: 12.5cqh;
  padding: 1.8cqh 0 2.2cqh;
  border-bottom: 1px solid var(--line);
}

.market-scale article strong {
  font-size: 1.75cqw;
  line-height: 1;
}

.market-scale article span {
  color: var(--white);
  font-size: 0.62cqw;
}

.market-scale article p {
  color: var(--body);
  font-size: 0.86cqw;
  line-height: 1.35;
}

.market-scale article i {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: var(--bar);
  height: 1px;
  background: var(--signal);
}

.market-scale .market-total {
  min-height: 16cqh;
  grid-template-columns: 14cqw 1fr;
  grid-template-rows: auto auto;
  background: none;
}

.market-total strong {
  grid-row: 1 / 3;
  color: var(--signal);
  font-size: 3.2cqw !important;
}

.market-total span {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}

.market-total p {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin-top: 0.7cqh;
}

.market-source {
  position: absolute;
  left: 6.1cqw;
  width: 40cqw;
  bottom: 4.6cqh;
  color: var(--mute);
  font-size: 0.5cqw;
  line-height: 1.4;
}

/* Race */

.race-layout {
  display: grid;
  grid-template-columns: 39% 1fr;
  gap: 4.2cqw;
}

.race-heading {
  padding-top: 2cqh;
}

.race-heading h2 {
  max-width: 11ch;
}

.race-heading > p {
  max-width: 40ch;
  margin-top: 3cqh;
}

.race-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-self: start;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.race-track article {
  min-height: 25cqh;
  padding: 3.2cqh 2.4cqw;
}

.race-track article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.race-track article:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.race-track article > span {
  color: var(--signal);
  font-size: 0.56cqw;
}

.race-track strong {
  display: block;
  margin-top: 2cqh;
  font-size: 1.35cqw;
}

.race-track p {
  max-width: 30ch;
  margin-top: 1.2cqh;
  color: var(--body);
  font-size: 0.88cqw;
  line-height: 1.35;
}

.race-proof {
  position: absolute;
  left: 6.1cqw;
  right: 6.1cqw;
  bottom: 11.5cqh;
  display: grid;
  grid-template-columns: 15cqw 1fr;
  align-items: center;
  padding-top: 2.2cqh;
  border-top: 1px solid var(--signal);
}

.race-proof span {
  color: var(--signal);
  font-size: 0.63cqw;
}

.race-proof strong {
  font-size: 1cqw;
  font-weight: 520;
}

/* Abu Dhabi */

.slide-abu {
  background: var(--black);
}

.abu-heading {
  display: grid;
  grid-template-columns: 49% 1fr;
  gap: 7cqw;
  align-items: end;
}

.abu-heading h2 {
  max-width: 13ch;
}

.abu-heading > p {
  max-width: 48ch;
  padding-bottom: 0.4cqh;
}

.abu-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 6.5cqh;
  border-top: 1px solid var(--line-strong);
}

.abu-pillars article {
  display: grid;
  grid-template-columns: 12cqw 1fr;
  gap: 2cqw;
  min-height: 20cqh;
  padding: 3cqh 2.5cqw 2.5cqh 0;
  border-bottom: 1px solid var(--line);
}

.abu-pillars article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.abu-pillars article:nth-child(even) {
  padding-left: 2.5cqw;
  padding-right: 0;
}

.abu-pillars span {
  color: var(--signal);
  font-size: 0.62cqw;
}

.abu-pillars p {
  color: var(--body);
  font-size: 0.94cqw;
  line-height: 1.42;
}

.abu-note {
  margin-top: 2.6cqh;
  color: var(--mute);
  font-size: 0.54cqw;
}

/* Ask */

.ask-layout {
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 4.2cqw;
  align-items: center;
}

.ask-number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 66cqh;
  padding-right: 3.5cqw;
  border-right: 1px solid var(--line-strong);
}

.ask-number > span {
  color: var(--mute);
  font-size: 0.66cqw;
}

.ask-number strong {
  display: block;
  margin-top: 2cqh;
  color: var(--white);
  font-size: 7.8cqw;
  font-weight: 620;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.ask-number p {
  margin-top: 3.4cqh;
  color: var(--mute);
  font-size: 0.66cqw;
  line-height: 1.7;
}

.ask-copy h2 {
  max-width: 13ch;
  font-size: 3.7cqw;
}

.ask-intro {
  max-width: 62ch;
  margin-top: 2cqh;
  font-size: 1cqw;
}

.ask-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2.2cqw;
  margin-top: 3cqh;
  border-top: 1px solid var(--line);
}

.ask-grid p {
  display: grid;
  grid-template-columns: 5.6cqw 5.6cqw 1fr;
  align-items: center;
  min-height: 7.2cqh;
  border-bottom: 1px solid var(--line);
  color: var(--body);
  font-size: 0.77cqw;
}

.ask-grid span {
  color: var(--signal);
  font-size: 0.55cqw;
}

.ask-grid strong {
  color: var(--white);
  font-size: 0.92cqw;
  font-weight: 620;
}

.ask-outcome {
  margin-top: 2.4cqh;
  color: var(--white);
  font-size: 0.52cqw;
  line-height: 1.5;
}

/* Close */

.slide-close {
  background: var(--black);
}

.slide-close::after {
  content: "";
  position: absolute;
  right: 4cqw;
  top: 13cqh;
  width: 38cqw;
  height: 57cqh;
  opacity: 0.25;
  background: none;
  mask-image: none;
}

.close-lockup {
  position: absolute;
  z-index: 4;
  left: 6.1cqw;
  top: 50%;
  width: 76cqw;
  transform: translateY(-56%);
}

.close-lockup h2 {
  max-width: 17ch;
  font-size: 5.05cqw;
}

.close-lockup > p {
  margin-top: 3cqh;
  color: var(--white);
  font-size: 1.35cqw;
}

.close-lockup img {
  display: block;
  width: 14cqw;
  margin-top: 5cqh;
}

.slide-footer {
  position: absolute;
  z-index: 4;
  left: 6.1cqw;
  right: 6.1cqw;
  bottom: 5.2cqh;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 4cqw;
  color: var(--mute);
  font-size: 0.58cqw;
}

.slide-footer span:nth-child(2) {
  padding-right: 0;
  text-align: right;
}

.slide-footer span:last-child {
  color: var(--signal);
  text-align: right;
}

/* Chrome and controls */

.deck-chrome {
  position: fixed;
  z-index: 30;
  top: max(0.75rem, env(safe-area-inset-top));
  left: max(1rem, env(safe-area-inset-left));
  right: max(1rem, env(safe-area-inset-right));
  display: flex;
  align-items: center;
  pointer-events: none;
}

.deck-chrome img {
  width: 5.5rem;
  opacity: 0.72;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 50%;
  background: rgb(0 0 0 / 0.36);
  color: var(--white);
  cursor: pointer;
  pointer-events: auto;
  backdrop-filter: blur(10px);
}

.icon-button svg,
.deck-controls svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.deck-controls {
  position: fixed;
  z-index: 30;
  left: 50%;
  bottom: max(0.85rem, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transform: translateX(-50%);
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 2rem;
  background: rgb(0 0 0 / 0.54);
  backdrop-filter: blur(12px);
}

.deck-controls button {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.deck-controls button:hover,
.icon-button:hover {
  background: rgb(255 255 255 / 0.1);
}

.deck-controls p {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 5.2rem;
  color: var(--mute);
  font-size: 0.63rem;
  text-align: center;
}

.deck-controls p span:first-child {
  color: var(--white);
}

.deck-controls p i {
  width: 1.4rem;
  height: 1px;
  background: var(--faint);
}

.progress-track {
  position: fixed;
  z-index: 40;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgb(255 255 255 / 0.08);
}

.progress-track div {
  height: 100%;
  background: var(--signal);
  transition: width 500ms var(--ease);
}

.nav-zone {
  position: fixed;
  z-index: 20;
  top: 10%;
  bottom: 10%;
  width: 8%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-zone::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.65rem;
  height: 0.65rem;
  border-top: 1px solid rgb(255 255 255 / 0.42);
  border-right: 1px solid rgb(255 255 255 / 0.42);
  opacity: 0;
  transition: opacity 160ms ease;
}

.nav-zone:hover::after {
  opacity: 1;
}

.nav-zone-prev {
  left: 0;
}

.nav-zone-next {
  right: 0;
}

.nav-zone-prev::after {
  left: 1.4rem;
  transform: rotate(-135deg);
}

.nav-zone-next::after {
  right: 1.4rem;
  transform: rotate(45deg);
}

/* Motion Instrument art direction */

.stage-noise,
.video-shade {
  display: none;
}

h1,
h2 {
  letter-spacing: -0.034em;
}

h3 {
  letter-spacing: -0.018em;
}

.slide-pad {
  padding: 7.5cqh 6.1cqw 7.4cqh;
}

/* Cover */

.slide-title {
  background: var(--black);
}

.title-media {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  border: 0;
  background: #000;
}

.title-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(5 6 7 / 0.3);
  pointer-events: none;
}

.title-video {
  opacity: 0.56;
  filter: grayscale(1) contrast(1.18) brightness(0.66);
  object-position: center;
}

.title-lockup {
  top: 16.4cqh;
  width: 82cqw;
}

.brand-logo-large {
  width: 16.4cqw;
  margin-bottom: 2.5cqh;
}

.title-kicker {
  margin-bottom: 3.4cqh;
  color: var(--signal);
  font-family: var(--font-data);
  font-size: 0.62cqw;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.title-lockup h1 {
  display: flex;
  flex-direction: column;
  max-width: none;
  font-size: 4.55cqw;
  line-height: 0.98;
}

.title-lockup h1 span:last-child {
  color: var(--body);
}

.title-summary {
  max-width: 49ch;
  margin-top: 3.2cqh;
  font-size: 1.08cqw;
}

body:has(#slide-1.is-active) .deck-chrome img {
  opacity: 0;
}

/* Problem: an instrument ledger, not a decorated background. */

.slide-problem {
  background: var(--black);
}

.problem-layout {
  grid-template-columns: 38% 1fr;
  gap: 8.2cqw;
}

.problem-thesis h2 {
  max-width: 9.5ch;
  font-size: 4.55cqw;
  line-height: 0.96;
}

.problem-thesis p {
  max-width: 38ch;
  margin-top: 3.2cqh;
  font-size: 1.15cqw;
}

.instrument-ledger {
  position: relative;
  border-top-color: var(--line);
}

.instrument-ledger div {
  grid-template-columns: 8.5cqw 14cqw 1fr;
  min-height: 14.5cqh;
}

.instrument-ledger div:last-child {
  position: relative;
  border-bottom-color: var(--line);
}

.instrument-ledger div:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--signal);
  transform-origin: left center;
}

.problem-close {
  left: auto;
  right: 6.1cqw;
  bottom: 7.5cqh;
}

/* Triangle: the text sits at the polygon centroid. */

.triangle-layout {
  grid-template-columns: 43% 1fr;
  gap: 4.3cqw;
}

.triangle-copy h2 {
  max-width: 13ch;
  font-size: 3.75cqw;
  line-height: 0.98;
}

.triangle-intro {
  max-width: 40ch;
  margin-top: 2.5cqh;
  font-size: 1.06cqw;
}

.triangle-explain {
  max-width: 39cqw;
  margin-top: 3.3cqh;
}

.triangle-explain article {
  grid-template-columns: 8.1cqw 1fr;
  padding: 1.65cqh 0;
}

.triangle-explain p {
  font-size: 0.81cqw;
}

.triangle-system {
  width: min(44cqw, 72cqh);
  transform: translateY(0.8cqh);
}

.triangle-outline {
  fill: none;
  stroke-width: 2.4;
  stroke-linejoin: round;
}

.triangle-signal {
  fill: var(--white);
  filter: drop-shadow(0 0 7px var(--signal));
}

.triangle-label text {
  font-family: var(--font-main);
  font-size: 27px;
}

.triangle-label .triangle-label-detail {
  font-family: var(--font-data);
  font-size: 12px;
}

.triangle-core text {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 2px;
}

.triangle-core .triangle-core-accent {
  font-family: var(--font-main);
  font-size: 24px;
  letter-spacing: -0.5px;
}

/* Demo */

.demo-layout {
  grid-template-columns: 37% 1fr;
  gap: 4.5cqw;
}

.demo-heading h2 {
  max-width: 12.5ch;
  font-size: 3.65cqw;
  line-height: 0.99;
}

.demo-heading > p {
  max-width: 38ch;
  font-size: 1.04cqw;
}

.mux-frame {
  align-self: center;
  border: 0;
  box-shadow: none;
}

.mux-frame::after {
  display: none;
}

.frame-label {
  color: var(--signal);
}

/* Multisport composition uses different widths because each sport has a role. */

.sports-copy {
  top: 8.7cqh;
  width: 74cqw;
}

.sports-copy h2 {
  max-width: 21ch;
  font-size: 3.45cqw;
  line-height: 1;
}

.sports-copy > p {
  max-width: 63ch;
  font-size: 1.05cqw;
}

.sport-grid {
  grid-template-columns: 1.35fr 0.82fr 1.12fr 0.71fr;
  height: 38cqh;
  gap: 0.55cqw;
}

.sport-grid figure {
  border: 0;
  outline: 0;
}

.sport-grid video {
  display: block;
  filter: grayscale(1) contrast(1.13) brightness(0.78);
}

.sport-grid figure::after {
  inset: auto 0 0;
  height: 6.4cqh;
  background: rgb(5 6 7 / 0.86);
}

.sport-grid figcaption {
  bottom: 2cqh;
  color: var(--signal);
}

/* Origin */

.origin-layout h2 {
  max-width: 17ch;
  font-size: 3.65cqw;
}

.origin-lede {
  left: 55cqw;
  top: 10.3cqh;
  font-size: 1.08cqw;
}

.origin-columns {
  top: 34cqh;
  grid-template-columns: 1fr 6.5cqw 1fr;
}

.origin-columns article {
  min-height: 35cqh;
  padding: 3cqh 2cqw 2.3cqh;
  border-bottom: 0;
}

.origin-columns article:first-child {
  border-top-color: var(--signal);
}

.origin-columns article:last-child {
  border-top-color: var(--white);
}

.origin-columns h3 {
  font-size: 2.25cqw;
}

.origin-result {
  bottom: 10.8cqh;
  padding-top: 2cqh;
  border-top: 1px solid var(--line);
}

/* Pipeline: one transfer line, four accumulating stages. */

.pipeline-heading {
  grid-template-columns: 48% 1fr;
  gap: 7cqw;
}

.pipeline-heading h2 {
  max-width: 16ch;
  font-size: 3.55cqw;
}

.pipeline-heading > p {
  font-size: 1.06cqw;
}

.pipeline-steps {
  position: relative;
  gap: 2.8cqw;
  margin-top: 12cqh;
  border-top: 0;
}

.pipeline-steps::before,
.pipeline-steps::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
}

.pipeline-steps::before {
  background: var(--line-strong);
}

.pipeline-steps::after {
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left center;
}

.pipeline-steps article,
.pipeline-steps article:first-child,
.pipeline-steps article:last-child {
  position: relative;
  min-height: 28cqh;
  padding: 3.2cqh 0 0;
  border: 0;
}

.pipeline-steps article::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.42cqw;
  width: 0.72cqw;
  height: 0.72cqw;
  border: 1px solid var(--signal);
  border-radius: 50%;
  background: var(--signal);
}

.pipeline-steps strong {
  min-height: 5.3cqh;
  font-size: 1.3cqw;
}

.pipeline-steps p {
  max-width: 31ch;
  font-size: 0.86cqw;
}

.pipeline-close {
  position: absolute;
  left: 6.1cqw;
  right: 6.1cqw;
  bottom: 9.5cqh;
  margin-top: 0;
  padding-top: 2cqh;
  border-top-color: var(--line);
}

/* Proof */

.proof-layout {
  grid-template-columns: 36% 1fr;
  gap: 5.5cqw;
}

.proof-copy h2 {
  max-width: 11ch;
  font-size: 3.65cqw;
}

.proof-copy > p {
  font-size: 1.02cqw;
}

.proof-metrics {
  display: flex;
  flex-direction: column;
  border-bottom: 0;
}

.proof-metrics div,
.proof-metrics div:nth-child(even) {
  display: grid;
  grid-template-columns: 13.4cqw 1fr;
  align-items: start;
  gap: 1.2cqw;
  min-height: 0;
  padding: 1.55cqh 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.proof-metrics div:nth-child(odd) {
  border-right: 0;
}

.proof-metrics strong {
  color: var(--signal);
  font-size: 0.78cqw;
  line-height: 1.25;
}

.proof-metrics span {
  margin-top: 0;
  color: var(--body);
  font-family: var(--font-main);
  font-size: 0.68cqw;
  letter-spacing: 0;
  line-height: 1.35;
}

/* Commercial spectrum */

.business-heading {
  grid-template-columns: 1fr;
  gap: 1.8cqh;
}

.business-heading h2 {
  display: block;
  max-width: none;
  font-size: 3.05cqw;
  white-space: nowrap;
}

.business-heading h2 span {
  display: inline;
}

.business-heading > p {
  max-width: 66ch;
  padding-bottom: 0;
}

.business-path {
  position: relative;
  grid-template-columns: 1.2fr 1fr 0.85fr;
  gap: 4.2cqw;
  margin-top: 7.5cqh;
}

.business-path::before,
.business-path::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
}

.business-path::before {
  background: var(--line-strong);
}

.business-path::after {
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
}

.business-path article {
  min-height: 24cqh;
  padding-top: 3.2cqh;
  border-top: 0;
}

.business-path h3 {
  min-height: 6cqh;
}

.business-close {
  position: absolute;
  left: 6.1cqw;
  right: 6.1cqw;
  bottom: 9.5cqh;
  margin-top: 0;
  padding: 1.8cqh 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

/* Market: figures are context, not fake proportional bars. */

.market-layout {
  grid-template-columns: 39% 1fr;
  gap: 8cqw;
}

.market-thesis h2 {
  max-width: 11ch;
  font-size: 4.2cqw;
}

.market-thesis h2 span,
.market-total strong {
  color: var(--signal);
}

.market-thesis > p {
  font-size: 1.08cqw;
}

.market-scale {
  border-top-color: var(--line);
}

.market-scale article {
  grid-template-columns: 10cqw 13cqw 1fr;
  min-height: 10.6cqh;
  padding: 1.5cqh 0;
}

.market-scale .market-total {
  min-height: 23cqh;
  grid-template-columns: 18cqw 1fr;
  background: none;
}

.market-total strong {
  font-size: 4.3cqw !important;
}

.market-total::before {
  content: "GLOBAL SCALE";
  position: absolute;
  top: 1.9cqh;
  left: 0;
  color: var(--signal);
  font-family: var(--font-data);
  font-size: 0.52cqw;
  letter-spacing: 0.12em;
}

.market-scale article i {
  display: none;
}

.market-source {
  bottom: 8.2cqh;
  width: 44cqw;
}

/* Race: a twelve month axis, not four cards. */

.race-layout {
  display: block;
}

.race-heading {
  display: grid;
  grid-template-columns: 46% 1fr;
  gap: 7cqw;
  padding-top: 0;
}

.race-heading h2 {
  max-width: 17ch;
  font-size: 3.35cqw;
}

.race-heading > p {
  max-width: 54ch;
  margin-top: 0;
  align-self: end;
  font-size: 1.03cqw;
}

.race-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.7cqw;
  margin-top: 10.5cqh;
  border: 0;
}

.race-track::before,
.race-track::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
}

.race-track::before {
  background: var(--line-strong);
}

.race-track::after {
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
}

.race-track article {
  position: relative;
  min-height: 25cqh;
  padding: 4cqh 0 0;
  border: 0 !important;
}

.race-track article::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.42cqw;
  width: 0.72cqw;
  height: 0.72cqw;
  border: 1px solid var(--signal);
  border-radius: 50%;
  background: var(--signal);
}

.race-track strong {
  max-width: 16ch;
  font-size: 1.12cqw;
  line-height: 1.08;
}

.race-proof {
  bottom: 12.5cqh;
  border-top-color: var(--line);
}

/* Abu Dhabi: sovereign capability, no ambient glow. */

.slide-abu {
  background: var(--black);
}

.abu-heading {
  grid-template-columns: 56% 1fr;
  gap: 5cqw;
}

.abu-heading h2 {
  max-width: none;
  font-size: 4.35cqw;
  white-space: nowrap;
}

.abu-heading h2 span {
  color: var(--signal);
}

.abu-heading > p {
  max-width: 52ch;
  color: var(--white);
  font-size: 1.16cqw;
  line-height: 1.38;
}

.abu-pillars {
  position: relative;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.6cqw;
  margin-top: 10cqh;
  border-top: 0;
}

.abu-pillars::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: var(--signal);
}

.abu-pillars article,
.abu-pillars article:nth-child(even) {
  display: block;
  min-height: 25cqh;
  padding: 3.4cqh 0 0;
  border: 0;
}

.abu-pillars article:nth-child(odd) {
  border-right: 0;
}

.abu-pillars p {
  margin-top: 2.1cqh;
  font-size: 0.86cqw;
}

.abu-note {
  margin-top: 3cqh;
}

/* Selected MOTAC system imagery */

.demo-system-art,
.training-system-art,
.abu-map-art {
  position: absolute;
  z-index: 2;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
  pointer-events: none;
}

.demo-system-art {
  --art-opacity: 0.5;
  left: -2.5cqw;
  bottom: -7cqh;
  width: 48cqw;
  height: 66cqh;
  object-fit: cover;
  object-position: 54% 45%;
  opacity: var(--art-opacity);
  -webkit-mask-image: radial-gradient(ellipse 76% 82% at 48% 53%, #000 0 46%, rgb(0 0 0 / 0.9) 58%, rgb(0 0 0 / 0.48) 76%, transparent 100%);
  mask-image: radial-gradient(ellipse 76% 82% at 48% 53%, #000 0 46%, rgb(0 0 0 / 0.9) 58%, rgb(0 0 0 / 0.48) 76%, transparent 100%);
}

.demo-heading,
.demo-layout .mux-frame {
  position: relative;
  z-index: 4;
}

.training-system-art {
  --art-opacity: 0.78;
  right: -0.5cqw;
  top: 21cqh;
  width: 56cqw;
  height: 64cqh;
  object-fit: cover;
  object-position: left center;
  opacity: var(--art-opacity);
}

.pipeline-steps {
  z-index: 4;
  width: 50.5cqw;
  grid-template-columns: 1fr 1fr;
  column-gap: 2.7cqw;
  row-gap: 1.8cqh;
  margin-top: 6.5cqh;
}

.pipeline-steps::before,
.pipeline-steps::after {
  right: auto;
  width: 50.5cqw;
}

.pipeline-steps article,
.pipeline-steps article:first-child,
.pipeline-steps article:last-child {
  min-height: 16.5cqh;
  padding-top: 2.6cqh;
}

.pipeline-steps article:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.pipeline-steps strong {
  min-height: 3.6cqh;
  margin-top: 1.1cqh;
  font-size: 1.02cqw;
}

.pipeline-steps p {
  max-width: 33ch;
  margin-top: 0.8cqh;
  font-size: 0.69cqw;
  line-height: 1.32;
}

.pipeline-close {
  right: 43cqw;
  bottom: 6.8cqh;
  font-size: 0.61cqw;
  line-height: 1.45;
}

.race-track {
  margin-top: 8.5cqh;
}

.race-proof {
  grid-template-columns: 14cqw 1fr 21cqw;
  gap: 1.6cqw;
  bottom: 6.5cqh;
  padding-top: 1.1cqh;
}

.race-proof img {
  display: block;
  width: 21cqw;
  height: 10.5cqh;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  mix-blend-mode: screen;
}

.abu-map-art {
  --art-opacity: 0.86;
  right: -3cqw;
  top: auto;
  bottom: -3cqh;
  width: 56cqw;
  height: 64cqh;
  object-fit: cover;
  object-position: 72% center;
  opacity: var(--art-opacity);
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgb(0 0 0 / 0.06) 13%, rgb(0 0 0 / 0.28) 28%, rgb(0 0 0 / 0.68) 46%, #000 65%),
    linear-gradient(to bottom, transparent 0%, rgb(0 0 0 / 0.08) 12%, rgb(0 0 0 / 0.36) 27%, rgb(0 0 0 / 0.78) 45%, #000 62%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, rgb(0 0 0 / 0.06) 13%, rgb(0 0 0 / 0.28) 28%, rgb(0 0 0 / 0.68) 46%, #000 65%),
    linear-gradient(to bottom, transparent 0%, rgb(0 0 0 / 0.08) 12%, rgb(0 0 0 / 0.36) 27%, rgb(0 0 0 / 0.78) 45%, #000 62%);
  mask-composite: intersect;
}

.abu-heading {
  display: block;
  width: 45cqw;
}

.abu-heading h2 {
  white-space: normal;
}

.abu-heading > p {
  max-width: 43ch;
  margin-top: 2.3cqh;
  color: var(--body);
  font-size: 1.02cqw;
}

.abu-pillars {
  width: 49cqw;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.4cqw;
  margin-top: 6cqh;
}

.abu-pillars article,
.abu-pillars article:nth-child(even) {
  min-height: 14.5cqh;
  padding: 2.3cqh 0 1.6cqh;
  border-top: 1px solid var(--line);
}

.abu-pillars article:nth-child(-n + 2) {
  border-top: 0;
}

.abu-pillars p {
  max-width: 33ch;
  margin-top: 1.1cqh;
  font-size: 0.68cqw;
  line-height: 1.34;
}

.abu-note {
  position: absolute;
  left: 6.1cqw;
  bottom: 5.9cqh;
  width: 47cqw;
  margin-top: 0;
}

/* Round allocation: widths carry meaning. */

.ask-layout {
  grid-template-columns: 31% 1fr;
  gap: 4.5cqw;
}

.ask-number {
  height: 68cqh;
}

.ask-number strong {
  font-size: 7.2cqw;
  letter-spacing: -0.045em;
}

.ask-copy h2 {
  max-width: 16ch;
  font-size: 3.25cqw;
}

.ask-grid {
  margin-top: 2.2cqh;
}

.ask-grid p {
  grid-template-columns: 5.3cqw 5.2cqw 1fr;
  min-height: 6.2cqh;
}

.ask-allocation {
  display: flex;
  width: 100%;
  height: 3.2cqh;
  margin-top: 2.3cqh;
  gap: 1px;
  background: var(--black);
}

.ask-allocation i {
  position: relative;
  flex: 0 0 var(--share);
  background: rgb(245 246 242 / 0.22);
}

.ask-allocation i:nth-child(1),
.ask-allocation i:nth-child(2) {
  background: var(--signal);
}

.ask-allocation i::after {
  content: attr(data-label);
  position: absolute;
  left: 0.45cqw;
  top: 50%;
  color: var(--white);
  font-family: var(--font-data);
  font-size: 0.43cqw;
  font-style: normal;
  letter-spacing: 0.08em;
  transform: translateY(-50%);
}

.ask-outcome {
  margin-top: 1.8cqh;
}

/* Close: live human motion is the only visual artifact. */

.slide-close {
  background: var(--black);
}

.slide-close::after {
  display: none;
}

.close-figure {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  width: 49cqw;
  height: 100cqh;
  border-left: 1px solid var(--line);
  opacity: 0.92;
}

.close-calibration {
  position: absolute;
  z-index: 4;
  right: 2.2cqw;
  top: 7.2cqh;
  display: grid;
  grid-template-columns: auto 7cqw auto;
  gap: 0.8cqw;
  align-items: center;
  color: var(--mute);
  font-family: var(--font-data);
  font-size: 0.48cqw;
  letter-spacing: 0.12em;
}

.close-calibration i {
  height: 1px;
  background: var(--signal);
}

.close-lockup {
  top: 48%;
  width: 60cqw;
  transform: translateY(-52%);
}

.close-lockup h2 {
  max-width: 15ch;
  font-size: 4.5cqw;
  line-height: 0.98;
}

.close-lockup > p {
  max-width: 34ch;
  font-size: 1.12cqw;
}

.close-lockup img {
  width: 12cqw;
  margin-top: 4.5cqh;
}

/* Motion is semantic: transfer, progress and human movement. */

@keyframes title-line-in {
  from { clip-path: inset(-0.12em 100% -0.16em -0.06em); transform: translateY(0.3em); }
  to { clip-path: inset(-0.12em -0.06em -0.16em -0.06em); transform: translateY(0); }
}

@keyframes line-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes point-enter {
  from { opacity: 0; transform: translateY(1.8cqh); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes system-art-enter {
  from { opacity: 0; transform: translateX(1.8cqw); }
  to { opacity: var(--art-opacity); transform: translateX(0); }
}

@media (prefers-reduced-motion: no-preference) {
  .slide-title.is-active .title-lockup h1 span {
    animation: title-line-in 780ms var(--ease) both;
  }

  .slide-title.is-active .title-lockup h1 span:last-child {
    animation-delay: 130ms;
  }

  .slide-problem.is-active .instrument-ledger div:last-child::after,
  .slide-pipeline.is-active .pipeline-steps::after,
  .slide-business.is-active .business-path::after,
  .slide-race.is-active .race-track::after {
    animation: line-grow 1.45s var(--ease) both 260ms;
  }

  .slide-triangle.is-active .triangle-label,
  .slide-triangle.is-active .triangle-core,
  .slide-pipeline.is-active .pipeline-steps article,
  .slide-race.is-active .race-track article,
  .slide-abu.is-active .abu-pillars article {
    animation: point-enter 650ms var(--ease) both;
  }

  .slide-triangle.is-active .triangle-label-data,
  .slide-pipeline.is-active .pipeline-steps article:nth-child(2),
  .slide-race.is-active .race-track article:nth-child(2),
  .slide-abu.is-active .abu-pillars article:nth-child(2) { animation-delay: 130ms; }
  .slide-triangle.is-active .triangle-label-interaction,
  .slide-pipeline.is-active .pipeline-steps article:nth-child(3),
  .slide-race.is-active .race-track article:nth-child(3),
  .slide-abu.is-active .abu-pillars article:nth-child(3) { animation-delay: 230ms; }
  .slide-triangle.is-active .triangle-core,
  .slide-pipeline.is-active .pipeline-steps article:nth-child(4),
  .slide-race.is-active .race-track article:nth-child(4),
  .slide-abu.is-active .abu-pillars article:nth-child(4) { animation-delay: 330ms; }

  .slide-demo.is-active .demo-system-art,
  .slide-pipeline.is-active .training-system-art,
  .slide-abu.is-active .abu-map-art {
    animation: system-art-enter 820ms var(--ease) both 120ms;
  }
}

/* Orientation gate */

.orientation-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: max(2rem, env(safe-area-inset-top)) 2rem max(2rem, env(safe-area-inset-bottom));
  background: var(--black);
  text-align: center;
}

.orientation-gate img {
  width: 8rem;
  margin-top: 2.5rem;
}

.orientation-gate h2 {
  margin-top: 2.5rem;
  font-size: clamp(2rem, 10vw, 3.2rem);
}

.orientation-gate p {
  max-width: 28ch;
  margin-top: 1rem;
  color: var(--body);
  font-size: 1rem;
}

.orientation-gate button {
  margin-top: 2rem;
  padding: 0.9rem 1.4rem;
  border: 0;
  border-radius: 2px;
  background: var(--white);
  color: var(--black);
  font-weight: 620;
}

.phone-turn {
  position: relative;
  width: 5rem;
  height: 5rem;
}

.phone-turn span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.15rem;
  height: 3.8rem;
  border: 2px solid var(--signal);
  border-radius: 0.45rem;
  transform: translate(-50%, -50%);
  animation: phone-rotate 2.4s var(--ease) infinite;
}

.phone-turn::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px dashed rgb(255 255 255 / 0.22);
  border-radius: 50%;
}

@keyframes phone-rotate {
  0%, 18% { transform: translate(-50%, -50%) rotate(0deg); }
  62%, 100% { transform: translate(-50%, -50%) rotate(90deg); }
}

noscript {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
}

@media (max-width: 900px) and (orientation: portrait) {
  .orientation-gate {
    display: flex;
  }
}

@media (max-width: 1000px) and (max-height: 640px) and (orientation: landscape) {
  .stage {
    width: 100vw;
    height: 100vh;
  }

  .deck-chrome {
    top: max(0.35rem, env(safe-area-inset-top));
  }

  .deck-controls {
    bottom: max(0.32rem, env(safe-area-inset-bottom));
    transform: translateX(-50%) scale(0.82);
  }

  .slide-triangle .slide-pad {
    padding-top: 6cqh;
    padding-bottom: 5cqh;
  }

  .triangle-intro {
    margin-top: 1.4cqh;
  }

  .triangle-explain {
    margin-top: 2cqh;
  }

  .triangle-explain article {
    padding: 1.2cqh 0;
  }

  .origin-result {
    bottom: 19cqh;
  }

  .pipeline-close,
  .business-close {
    bottom: 13.5cqh;
  }

  .market-source {
    bottom: 12.5cqh;
  }
}

@media (pointer: coarse) {
  .nav-zone {
    width: 12%;
  }

  .nav-zone::after {
    display: none;
  }
}

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