@font-face {
  font-family: "Cronic Sans";
  src: local("Helvetica Neue"), local("Arial");
  font-display: swap;
}

:root {
  --black: #050505;
  --white: #f4f3ef;
  --muted: rgba(244, 243, 239, 0.58);
  --line: rgba(244, 243, 239, 0.24);
  --accent: #72dcff;
  --accent-hot: #d2f8ff;
  --accent-soft: rgba(114, 220, 255, 0.18);
  --accent-glow: rgba(65, 189, 255, 0.52);
  --page-pad: clamp(1rem, 2.6vw, 2.75rem);
  --header-height: 6.25rem;
  --scene-progress: 0;
}

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

html {
  background: var(--black);
  color-scheme: dark;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(114, 220, 255, 0.52) #050505;
}

html.js:not(.interface-visible) {
  scrollbar-color: transparent transparent;
}

html.js:not(.interface-visible)::-webkit-scrollbar-thumb {
  background: transparent;
  box-shadow: none;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--black);
  color: var(--white);
  font-family: "Cronic Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

html.js:not(.has-entered),
.js body:not(.has-entered) {
  overflow: hidden;
}

html.intro-playing,
body.intro-playing {
  overflow: hidden;
}

html.intro-playing .site-header {
  pointer-events: none;
}

::selection {
  background: var(--accent);
  color: #050505;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

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

button:focus-visible,
a:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 5px;
}

.loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  padding: var(--page-pad);
  background: #000;
  transition: opacity 0.7s cubic-bezier(0.65, 0, 0.35, 1),
    visibility 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.loader.is-complete {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__cinematic {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #000;
  pointer-events: none;
}

.loader__cinematic-video {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
  object-position: center;
  background: #000;
  filter: brightness(0.62) contrast(1.14) saturate(0.72);
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1s ease, transform 7.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.loader.is-ready .loader__cinematic-video {
  opacity: 0.82;
  transform: scale(1);
}

.loader__cinematic::before,
.loader__cinematic::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  content: "";
}

.loader__cinematic::before {
  background:
    radial-gradient(ellipse at 69% 38%, rgba(112, 210, 255, 0.14) 0%, rgba(72, 165, 211, 0.055) 25%, transparent 52%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.12) 44%, rgba(0, 0, 0, 0.62) 100%);
}

.loader__cinematic::after {
  background:
    radial-gradient(ellipse at 58% 47%, transparent 18%, rgba(0, 0, 0, 0.2) 53%, rgba(0, 0, 0, 0.86) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, transparent 40%, transparent 72%, rgba(0, 0, 0, 0.38) 100%),
    repeating-linear-gradient(0deg, rgba(205, 239, 255, 0.018) 0 1px, transparent 1px 4px);
}

.loader__topline,
.loader__track,
.loader__entry {
  position: relative;
  z-index: 2;
}

.loader__topline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: clamp(2.6rem, 8vw, 8.5rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.loader__brand {
  display: block;
  width: clamp(9rem, 22vw, 22rem);
  max-width: calc(100% - 4rem);
  height: auto;
}

.loader__topline span:last-child {
  color: var(--muted);
  font-size: 0.28em;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.loader__track {
  width: 100%;
  height: 1px;
  background: rgba(114, 220, 255, 0.16);
  box-shadow: 0 0 0.8rem rgba(65, 189, 255, 0.12);
}

.loader__track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
  box-shadow:
    0 0 0.45rem var(--accent-glow),
    0 0 1.25rem rgba(65, 189, 255, 0.24);
  transition: width 0.1s linear;
}

.loader p {
  margin: 0;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.loader__entry {
  display: grid;
  gap: 1rem;
}

.loader__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.8rem);
  transition:
    opacity 0.45s 0.15s,
    transform 0.6s 0.12s cubic-bezier(0.16, 1, 0.3, 1);
}

.loader.is-ready .loader__actions {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.loader__enter,
.loader__muted {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.loader__enter {
  display: flex;
  min-width: min(31rem, 72vw);
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-size: clamp(1.05rem, 2.1vw, 2.3rem);
  letter-spacing: -0.035em;
  text-align: left;
  transition: color 0.3s, padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.loader__enter i {
  font-style: normal;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.loader__enter:hover,
.loader__enter:focus-visible {
  padding-right: 0.35rem;
  color: #78dcff;
}

.loader__enter:hover i,
.loader__enter:focus-visible i {
  transform: translate3d(0.16rem, -0.16rem, 0);
}

.loader__enter:disabled,
.loader__muted:disabled {
  cursor: wait;
  opacity: 0.5;
}

.loader__muted {
  padding: 0.75rem 0;
  color: var(--muted);
  font-size: 0.57rem;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.loader__muted:hover,
.loader__muted:focus-visible {
  color: var(--white);
}

[data-scroll-audio],
[data-music-audio],
[data-menu-hover-audio],
[data-ui-click-audio],
[data-galaxy-warp-audio],
[data-mountain-audio] { display: none; }

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  mix-blend-mode: difference;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.42s;
}

html.js:not(.interface-visible) .site-header {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -1rem, 0);
}

.wordmark {
  display: block;
  width: clamp(6.4rem, 8vw, 8.4rem);
  line-height: 0;
}

.wordmark img {
  display: block;
  width: 100%;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.75rem);
}

.loader__muted[hidden] { display: none; }

html.cinematic-scrolling {
  scroll-behavior: auto;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.language-switcher button {
  padding: 0.5rem 0.12rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  transition: color 0.3s, text-shadow 0.3s;
}

.language-switcher button:hover,
.language-switcher button:focus-visible,
.language-switcher button[aria-pressed="true"] {
  color: var(--accent-hot);
  outline: none;
  text-shadow: 0 0 0.8rem var(--accent-glow);
}

.audio-toggle,
.motion-toggle,
.menu-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.audio-toggle {
  display: flex;
  align-items: center;
  gap: 0.46rem;
  padding: 0.5rem 0;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  outline: none;
}

.audio-toggle__signal {
  display: flex;
  width: 0.82rem;
  height: 0.72rem;
  align-items: flex-end;
  justify-content: space-between;
}

.audio-toggle__signal i {
  display: block;
  width: 1px;
  height: 32%;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 0 0.35rem transparent;
  transition: height 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.audio-toggle__signal i:nth-child(2) { height: 72%; }
.audio-toggle__signal i:nth-child(3) { height: 48%; }

.audio-toggle__label {
  color: rgba(255, 255, 255, 0.55);
}

.audio-toggle__state {
  min-width: 2.3rem;
  color: rgba(255, 255, 255, 0.82);
  text-align: left;
}

.audio-toggle:hover,
.audio-toggle:focus-visible,
.audio-toggle[aria-expanded="true"],
.audio-toggle.is-playing {
  color: var(--accent-hot);
  text-shadow:
    0 0 0.35rem var(--accent-glow),
    0 0 1.1rem rgba(65, 189, 255, 0.26);
}

.audio-toggle:hover .audio-toggle__signal i,
.audio-toggle:focus-visible .audio-toggle__signal i,
.audio-toggle[aria-expanded="true"] .audio-toggle__signal i,
.audio-toggle.is-playing .audio-toggle__signal i {
  background: var(--accent-hot);
  box-shadow:
    0 0 0.32rem var(--accent-glow),
    0 0 0.8rem rgba(65, 189, 255, 0.3);
}

.audio-toggle.is-playing .audio-toggle__signal i {
  animation: audio-signal 0.78s ease-in-out infinite alternate;
}

.audio-toggle.is-playing .audio-toggle__signal i:nth-child(2) { animation-delay: -0.42s; }
.audio-toggle.is-playing .audio-toggle__signal i:nth-child(3) { animation-delay: -0.19s; }

.motion-toggle {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
}

.motion-toggle:disabled {
  cursor: default;
  opacity: 0.48;
}

.motion-toggle__label {
  color: rgba(255, 255, 255, 0.55);
}

.menu-toggle {
  position: relative;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(114, 220, 255, 0.24);
  border-radius: 0.15rem;
  background: rgba(5, 18, 24, 0.18);
  box-shadow: inset 0 0 1.2rem rgba(65, 189, 255, 0.04);
  transition: border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.menu-toggle span {
  position: absolute;
  right: 0.55rem;
  display: block;
  width: 1.9rem;
  height: 1px;
  background: currentColor;
  transition: top 0.45s cubic-bezier(0.65, 0, 0.35, 1),
    transform 0.45s cubic-bezier(0.65, 0, 0.35, 1),
    background-color 0.3s,
    box-shadow 0.3s;
}

.menu-toggle span:first-child { top: 1.05rem; }
.menu-toggle span:last-child { top: 1.78rem; width: 1.35rem; }

.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle[aria-expanded="true"] {
  border-color: rgba(114, 220, 255, 0.78);
  background: rgba(54, 167, 221, 0.08);
  box-shadow:
    inset 0 0 1.4rem rgba(114, 220, 255, 0.09),
    0 0 0.65rem rgba(65, 189, 255, 0.42),
    0 0 2.2rem rgba(65, 189, 255, 0.2);
}

.menu-toggle:hover span,
.menu-toggle:focus-visible span,
.menu-toggle[aria-expanded="true"] span {
  background: var(--accent-hot);
  box-shadow:
    0 0 0.4rem var(--accent-glow),
    0 0 1.1rem rgba(65, 189, 255, 0.3);
}

.motion-toggle:hover,
.motion-toggle:focus-visible {
  color: var(--accent-hot);
  text-shadow: 0 0 0.8rem var(--accent-glow);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 1.45rem;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 1.45rem;
  width: 1.9rem;
  transform: rotate(-45deg);
}

.audio-console {
  position: fixed;
  z-index: 95;
  top: calc(var(--header-height) - 0.65rem);
  right: calc(var(--page-pad) + 3.85rem);
  width: min(21.5rem, calc(100vw - var(--page-pad) * 2));
  max-height: calc(100svh - var(--header-height) - 1rem);
  padding: 0.95rem;
  overflow: auto;
  border: 1px solid rgba(114, 220, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(19, 28, 33, 0.98), rgba(4, 8, 11, 0.98) 58%),
    #050505;
  box-shadow:
    inset 0 0 2rem rgba(65, 189, 255, 0.035),
    0 0 0.8rem rgba(65, 189, 255, 0.18),
    0 1.4rem 4rem rgba(0, 0, 0, 0.64);
  clip-path: polygon(0 0, calc(100% - 1.15rem) 0, 100% 1.15rem, 100% 100%, 1.15rem 100%, 0 calc(100% - 1.15rem));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.7rem) scale(0.985);
  transform-origin: top right;
  transition:
    opacity 0.28s,
    visibility 0.28s,
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.audio-console::before,
.audio-console::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.audio-console::before {
  top: 0;
  right: 1.15rem;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-hot));
  box-shadow:
    0 0 0.55rem var(--accent-glow),
    0 0 1.8rem rgba(65, 189, 255, 0.24);
}

.audio-console::after {
  right: 0.55rem;
  bottom: 0.55rem;
  width: 0.28rem;
  height: 0.28rem;
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  box-shadow: 0 0 0.45rem var(--accent-glow);
}

.audio-console.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.audio-console__header,
.audio-console__transport,
.audio-console__output,
.audio-console__playlist button,
.audio-console__footer {
  display: flex;
  align-items: center;
}

.audio-console__header {
  justify-content: space-between;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(114, 220, 255, 0.16);
}

.audio-console__header p,
.audio-console__playlist p,
.audio-console__footer {
  margin: 0;
  font-size: 0.5rem;
  letter-spacing: 0.18em;
}

.audio-console__header p {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}

.audio-console__header small {
  color: var(--accent);
  font-size: 0.44rem;
  font-weight: 400;
}

.audio-console__header button {
  width: 1.8rem;
  height: 1.8rem;
  padding: 0;
  border: 1px solid rgba(114, 220, 255, 0.22);
  background: rgba(114, 220, 255, 0.02);
  color: rgba(244, 243, 239, 0.72);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.audio-console__header button:hover,
.audio-console__header button:focus-visible {
  border-color: rgba(114, 220, 255, 0.68);
  color: var(--accent-hot);
  box-shadow: 0 0 0.8rem rgba(65, 189, 255, 0.28);
}

.audio-console__readout {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 0 0.75rem;
}

.audio-console__readout span {
  color: var(--muted);
  font-size: 0.45rem;
  letter-spacing: 0.16em;
}

.audio-console__readout strong {
  overflow: hidden;
  color: var(--accent-hot);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-overflow: ellipsis;
  text-shadow:
    0 0 0.4rem rgba(114, 220, 255, 0.34),
    0 0 1.2rem rgba(65, 189, 255, 0.18);
  white-space: nowrap;
}

.audio-console__scope {
  display: grid;
  height: 3.2rem;
  grid-template-columns: repeat(16, 1fr);
  align-items: end;
  gap: 0.2rem;
  padding: 0.45rem 0.55rem;
  border-top: 1px solid rgba(114, 220, 255, 0.12);
  border-bottom: 1px solid rgba(114, 220, 255, 0.12);
  background:
    linear-gradient(rgba(114, 220, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 0.65rem,
    rgba(3, 10, 14, 0.54);
}

.audio-console__scope span {
  height: 8%;
  min-height: 1px;
  background: linear-gradient(180deg, var(--accent-hot), var(--accent));
  box-shadow: 0 0 0.38rem rgba(65, 189, 255, 0.42);
  opacity: 0.42;
  transform-origin: bottom;
}

.audio-console.is-playing .audio-console__scope span {
  height: var(--level);
  opacity: 0.88;
  animation: audio-scope 0.82s var(--delay) ease-in-out infinite alternate;
}

.audio-console__transport {
  gap: 0.8rem;
  padding: 0.8rem 0;
}

.audio-console__play {
  display: grid;
  width: 3.05rem;
  height: 3.05rem;
  flex: 0 0 auto;
  place-items: center;
  padding: 0.28rem;
  border: 1px solid rgba(114, 220, 255, 0.42);
  background: rgba(54, 167, 221, 0.035);
  color: var(--accent-hot);
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 0.55rem) 0, 100% 0.55rem, 100% 100%, 0.55rem 100%, 0 calc(100% - 0.55rem));
  transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.audio-console__play:hover,
.audio-console__play:focus-visible {
  border-color: var(--accent-hot);
  background: rgba(54, 167, 221, 0.09);
  box-shadow:
    inset 0 0 1rem rgba(114, 220, 255, 0.08),
    0 0 1rem rgba(65, 189, 255, 0.26);
}

.audio-console__play > span {
  font-size: 1.15rem;
  line-height: 0.7;
}

.audio-console__play small {
  color: var(--muted);
  font-size: 0.36rem;
  letter-spacing: 0.1em;
}

.audio-console__timeline {
  display: grid;
  flex: 1;
  gap: 0.35rem;
}

.audio-console__timeline > div {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.46rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.audio-console input[type="range"] {
  width: 100%;
  height: 1rem;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.audio-console input[type="range"]::-webkit-slider-runnable-track {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(210, 248, 255, 0.9) 0 var(--range-progress, 0%),
    rgba(114, 220, 255, 0.16) var(--range-progress, 0%) 100%
  );
}

.audio-console input[type="range"]::-webkit-slider-thumb {
  width: 0.46rem;
  height: 0.46rem;
  margin-top: -0.21rem;
  border: 0;
  border-radius: 50%;
  appearance: none;
  background: var(--accent-hot);
  box-shadow:
    0 0 0.35rem var(--accent-glow),
    0 0 0.8rem rgba(65, 189, 255, 0.32);
}

.audio-console input[type="range"]::-moz-range-track {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(210, 248, 255, 0.9) 0 var(--range-progress, 0%),
    rgba(114, 220, 255, 0.16) var(--range-progress, 0%) 100%
  );
}

.audio-console input[type="range"]::-moz-range-thumb {
  width: 0.46rem;
  height: 0.46rem;
  border: 0;
  border-radius: 50%;
  background: var(--accent-hot);
  box-shadow: 0 0 0.45rem var(--accent-glow);
}

.audio-console__output {
  gap: 0.65rem;
  padding: 0.15rem 0 0.8rem;
}

.audio-console__output button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(244, 243, 239, 0.78);
  cursor: pointer;
  font-size: 0.45rem;
  letter-spacing: 0.13em;
}

.audio-console__output button:hover,
.audio-console__output button:focus-visible,
.audio-console__output button[aria-pressed="true"] {
  color: var(--accent-hot);
  text-shadow: 0 0 0.6rem var(--accent-glow);
}

.audio-console__output > span {
  color: var(--muted);
  font-size: 0.42rem;
  letter-spacing: 0.12em;
}

.audio-console__output input { flex: 1; }

.audio-console__playlist {
  border-top: 1px solid rgba(114, 220, 255, 0.14);
}

.audio-console__playlist p {
  padding: 0.65rem 0 0.4rem;
  color: var(--muted);
}

.audio-console__playlist button {
  width: 100%;
  justify-content: flex-start;
  gap: 0.65rem;
  padding: 0.52rem 0;
  border: 0;
  border-top: 1px solid rgba(244, 243, 239, 0.08);
  background: transparent;
  color: rgba(244, 243, 239, 0.56);
  cursor: pointer;
  font-size: 0.5rem;
  letter-spacing: 0.09em;
  text-align: left;
  transition: color 0.3s, text-shadow 0.3s, transform 0.3s;
}

.audio-console__playlist button:hover,
.audio-console__playlist button:focus-visible,
.audio-console__playlist button.is-selected {
  color: var(--accent-hot);
  text-shadow: 0 0 0.55rem rgba(65, 189, 255, 0.4);
  transform: translateX(0.1rem);
}

.audio-console__playlist button span {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.audio-console__playlist button strong {
  flex: 1;
  overflow: hidden;
  font-size: inherit;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audio-console__playlist button time {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.audio-console__footer {
  justify-content: space-between;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(114, 220, 255, 0.14);
  color: rgba(114, 220, 255, 0.58);
  font-size: 0.4rem;
}

@keyframes audio-signal {
  from { height: 24%; }
  to { height: 100%; }
}

@keyframes audio-scope {
  0% { transform: scaleY(0.28); }
  34% { transform: scaleY(0.92); }
  51% { transform: scaleY(0.46); }
  100% { transform: scaleY(1); }
}

.menu {
  position: fixed;
  z-index: 80;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.8s;
}

.menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.menu.is-travelling {
  opacity: 0;
  transition: opacity 0.12s linear, visibility 0s linear 0.12s;
}

.menu__backdrop {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 100% 0);
  background:
    linear-gradient(90deg, rgba(2, 4, 5, 0.74) 0%, rgba(2, 4, 5, 0.42) 48%, rgba(2, 4, 5, 0.64) 100%),
    radial-gradient(circle at 76% 24%, rgba(99, 190, 230, 0.29), transparent 32%),
    radial-gradient(circle at 58% 68%, rgba(65, 189, 255, 0.09), transparent 34%),
    url("assets/posters/deep-space.jpg") center / cover no-repeat,
    #030405;
  transition: clip-path 0.75s cubic-bezier(0.77, 0, 0.18, 1);
}

.menu__backdrop::after {
  position: absolute;
  inset: -8%;
  background:
    radial-gradient(circle at 50% 50%, transparent 28%, rgba(0, 0, 0, 0.62) 92%),
    repeating-linear-gradient(0deg, rgba(205, 239, 255, 0.03) 0 1px, transparent 1px 4px);
  content: "";
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s 0.24s, transform 1.4s 0.14s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu.is-open .menu__backdrop {
  clip-path: inset(0 0 0 0);
}

.menu.is-open .menu__backdrop::after {
  opacity: 1;
  transform: scale(1);
}

.menu__content {
  position: relative;
  display: grid;
  min-height: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 28vw);
  grid-template-rows: auto 1fr auto;
  gap: 2rem;
  padding: calc(var(--header-height) + 2rem) var(--page-pad) var(--page-pad);
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.45s 0.28s, transform 0.6s 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu.is-open .menu__content {
  opacity: 1;
  transform: none;
}

.menu__eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.menu nav {
  align-self: center;
}

.menu__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1rem, 4vw, 5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu__utility { grid-column:1/-1; display:flex; justify-content:space-between; align-items:center; }
.menu__utility>a { color:var(--white); font-size:.56rem; letter-spacing:.18em; }
.menu__utility>a span { color:var(--accent); }

.menu__links li {
  padding-block: 0.025em;
  opacity: 0;
  transform: translateY(2.2rem);
  transform-origin: 16% 100%;
  transition:
    opacity 0.35s,
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu__links li + li { margin-top: 0.08rem; }

.menu__links li:nth-child(1) { transition-delay: 0.2s; }
.menu__links li:nth-child(2) { transition-delay: 0.25s; }
.menu__links li:nth-child(3) { transition-delay: 0.3s; }
.menu__links li:nth-child(4) { transition-delay: 0.35s; }
.menu__links li:nth-child(5) { transition-delay: 0.4s; }
.menu__links li:nth-child(6) { transition-delay: 0.45s; }

.menu.is-open .menu__links li {
  opacity: 1;
  transform: translateY(0);
}

.menu__links a {
  position: relative;
  display: inline-grid;
  grid-template-columns: 2.4rem auto;
  align-items: flex-start;
  padding: 0.045em 0.24em 0.075em 0.08em;
  color: rgba(244, 243, 239, 0.92);
  cursor: pointer;
  font-size: clamp(1.9rem, 3.25vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.98;
  outline: none;
  transform-origin: left center;
  transition: color 0.3s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu__number {
  position: relative;
  flex: 0 0 auto;
  width: 2.4rem;
  padding-top: 0.38em;
  color: var(--muted);
  font-size: 0.1em;
  letter-spacing: 0.08em;
  transform: translateX(0);
  transition: color 0.3s, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu__word {
  position: relative;
  display: inline-block;
  transform: translateX(0);
  white-space: nowrap;
  transition:
    color 0.3s,
    text-shadow 0.3s,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu__word::before,
.menu__word::after {
  position: absolute;
  inset: 0;
  color: inherit;
  content: attr(data-label);
  pointer-events: none;
  text-shadow:
    0 0 0.12em rgba(220, 249, 255, 0.72),
    0 0 0.42em rgba(114, 220, 255, 0.74),
    0 0 0.9em rgba(65, 189, 255, 0.42);
  transition:
    opacity 0.3s,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu__word::before {
  clip-path: inset(24% 0 66% 0);
  opacity: 0;
  transform: translate(0.008em, -0.008em);
}

.menu__word::after {
  clip-path: inset(68% 0 22% 0);
  opacity: 0;
  transform: translate(-0.008em, 0.008em);
}

.menu__links a:hover,
.menu__links a:focus-visible {
  color: var(--accent-hot);
  transform: translateX(0.12rem);
}

.menu__links a:hover .menu__number,
.menu__links a:focus-visible .menu__number {
  color: var(--accent);
  text-shadow:
    0 0 0.45rem var(--accent-glow),
    0 0 1.2rem rgba(65, 189, 255, 0.32);
  transform: translateX(-0.12rem);
}

.menu__links a:hover .menu__word,
.menu__links a:focus-visible .menu__word {
  animation: menu-plasma-core 1.55s steps(1, end) infinite;
  text-shadow:
    0 0 0.08em rgba(226, 250, 255, 0.82),
    -0.018em 0.012em 0.24em rgba(114, 220, 255, 0.76),
    0.03em -0.018em 0.58em rgba(65, 189, 255, 0.52),
    -0.02em 0.035em 1.1em rgba(54, 167, 221, 0.34);
  transform: translateX(0.03rem);
}

.menu__links a:hover .menu__word::before,
.menu__links a:focus-visible .menu__word::before {
  animation: menu-plasma-shard-top 1.1s steps(1, end) infinite;
  opacity: 0.46;
}

.menu__links a:hover .menu__word::after,
.menu__links a:focus-visible .menu__word::after {
  animation: menu-plasma-shard-bottom 1.37s steps(1, end) -0.28s infinite;
  opacity: 0.38;
}

@keyframes menu-plasma-core {
  0%, 100% {
    text-shadow:
      0 0 0.08em rgba(226, 250, 255, 0.82),
      -0.018em 0.012em 0.24em rgba(114, 220, 255, 0.76),
      0.03em -0.018em 0.58em rgba(65, 189, 255, 0.52),
      -0.02em 0.035em 1.1em rgba(54, 167, 221, 0.34);
  }
  11% {
    text-shadow:
      0.012em -0.006em 0.09em rgba(226, 250, 255, 0.94),
      0.025em 0.014em 0.28em rgba(114, 220, 255, 0.62),
      -0.035em 0.02em 0.72em rgba(65, 189, 255, 0.58),
      0.025em -0.04em 1.25em rgba(54, 167, 221, 0.29);
  }
  14%, 58% {
    text-shadow:
      -0.008em 0 0.07em rgba(226, 250, 255, 0.74),
      -0.03em -0.012em 0.2em rgba(114, 220, 255, 0.84),
      0.018em 0.03em 0.52em rgba(65, 189, 255, 0.44),
      -0.035em -0.018em 0.98em rgba(54, 167, 221, 0.37);
  }
  62% {
    text-shadow:
      0.006em 0.004em 0.1em rgba(226, 250, 255, 0.9),
      0.032em -0.018em 0.3em rgba(114, 220, 255, 0.7),
      -0.025em 0.014em 0.68em rgba(65, 189, 255, 0.57),
      0.018em 0.04em 1.18em rgba(54, 167, 221, 0.32);
  }
}

@keyframes menu-plasma-shard-top {
  0%, 100% { clip-path: inset(18% 0 70% 0); transform: translate(0.012em, -0.012em) skewX(-2deg); }
  17% { clip-path: inset(37% 0 53% 0); transform: translate(-0.022em, 0.006em) skewX(3deg); }
  21% { clip-path: inset(8% 0 82% 0); transform: translate(0.034em, -0.018em) skewX(-4deg); }
  56% { clip-path: inset(48% 0 43% 0); transform: translate(0.016em, 0.012em) skewX(2deg); }
  61% { clip-path: inset(27% 0 62% 0); transform: translate(-0.028em, -0.008em) skewX(-3deg); }
}

@keyframes menu-plasma-shard-bottom {
  0%, 100% { clip-path: inset(70% 0 18% 0); transform: translate(-0.014em, 0.014em) skewX(2deg); }
  24% { clip-path: inset(58% 0 31% 0); transform: translate(0.026em, -0.004em) skewX(-2deg); }
  29% { clip-path: inset(82% 0 8% 0); transform: translate(-0.032em, 0.02em) skewX(4deg); }
  68% { clip-path: inset(64% 0 25% 0); transform: translate(0.018em, 0.008em) skewX(-3deg); }
  72% { clip-path: inset(76% 0 14% 0); transform: translate(-0.024em, -0.01em) skewX(2deg); }
}

.menu.is-selecting .menu__links li:not(.is-selected) {
  opacity: 0.14;
  transform: translateX(-0.5rem);
  transition-delay: 0s;
}

.menu.is-selecting .menu__links {
  pointer-events: none;
}

.menu__links a.is-activating {
  color: var(--accent-hot);
  transform: translateX(0.18rem) scale(1.01);
}

.menu__links a.is-activating .menu__number {
  color: var(--accent-hot);
  transform: translateX(-0.2rem);
}

.menu__links a.is-activating .menu__word {
  animation: menu-plasma-core 0.52s steps(1, end) infinite;
  text-shadow:
    0 0 0.09em rgba(226, 250, 255, 0.96),
    0.025em -0.014em 0.3em rgba(114, 220, 255, 0.88),
    -0.035em 0.018em 0.76em rgba(65, 189, 255, 0.68),
    0.02em 0.04em 1.3em rgba(54, 167, 221, 0.42);
  transform: translateX(0.06rem);
}

.menu__links a.is-activating .menu__word::before {
  animation: menu-plasma-shard-top 0.36s steps(1, end) infinite;
  opacity: 0.78;
}

.menu__links a.is-activating .menu__word::after {
  animation: menu-plasma-shard-bottom 0.41s steps(1, end) infinite;
  opacity: 0.66;
}

.menu__meta {
  display: grid;
  align-self: end;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  padding-bottom: 0.4rem;
}

.menu__meta p,
.menu__discipline-links,
.menu__secondary-links {
  margin: 0.65rem 0 0;
  color: rgba(244, 243, 239, 0.82);
  font-size: 0.77rem;
  line-height: 1.55;
}

.menu__discipline-links,
.menu__secondary-links {
  padding: 0;
  list-style: none;
}

.menu__discipline-links li + li,
.menu__secondary-links li + li { margin-top: 0.18rem; }

.menu__meta-heading {
  display: inline-block;
  color: rgba(244, 243, 239, 0.88);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s, text-shadow 0.3s, transform 0.35s;
}

.menu__meta-heading i {
  color: var(--accent);
  font-style: normal;
}

.menu__discipline-links a,
.menu__secondary-links a {
  display: inline-block;
  color: inherit;
  outline: none;
  transition:
    color 0.3s,
    text-shadow 0.3s,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu__discipline-links a:hover,
.menu__discipline-links a:focus-visible,
.menu__discipline-links a.is-activating,
.menu__secondary-links a:hover,
.menu__secondary-links a:focus-visible,
.menu__secondary-links a.is-activating,
.menu__meta-heading:hover,
.menu__meta-heading:focus-visible,
.menu__meta-heading.is-activating {
  animation: menu-plasma-core 1.55s steps(1, end) infinite;
  color: var(--accent-hot);
  text-shadow:
    0 0 0.08em rgba(226, 250, 255, 0.82),
    -0.018em 0.012em 0.24em rgba(114, 220, 255, 0.76),
    0.03em -0.018em 0.58em rgba(65, 189, 255, 0.52),
    -0.02em 0.035em 1.1em rgba(54, 167, 221, 0.34);
  transform: translateX(0.12rem);
}

.menu.is-selecting .menu__discipline-links li:not(.is-selected),
.menu.is-selecting .menu__secondary-links li:not(.is-selected) {
  opacity: 0.24;
}

.meta-label,
.eyebrow {
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.progress-rail {
  position: fixed;
  z-index: 45;
  top: 50%;
  right: var(--page-pad);
  display: flex;
  height: min(34vh, 17rem);
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: rgba(190, 239, 255, 0.76);
  font-size: 0.52rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
  text-shadow:
    0 0 0.45rem var(--accent-glow),
    0 0 1.2rem rgba(65, 189, 255, 0.24);
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.42s;
}

html.js:not(.interface-visible) .progress-rail {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(1rem, -50%, 0);
}

.progress-rail > div {
  position: relative;
  width: 2px;
  flex: 1;
  background: rgba(114, 220, 255, 0.2);
  box-shadow:
    0 0 0.45rem rgba(65, 189, 255, 0.28),
    0 0 1.2rem rgba(65, 189, 255, 0.12);
}

.progress-rail > div span {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--accent-hot), var(--accent) 46%, #4cbcff);
  box-shadow:
    0 0 0.5rem var(--accent-glow),
    0 0 1.5rem rgba(65, 189, 255, 0.42),
    0 0 3rem rgba(65, 189, 255, 0.2);
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
}

.cursor {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: width 0.25s, height 0.25s, background 0.25s, opacity 0.25s;
  mix-blend-mode: difference;
}

html.js:not(.interface-visible) .cursor.is-visible {
  opacity: 0;
  visibility: hidden;
}

.cursor span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.18rem;
  height: 0.18rem;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.cursor.is-visible { opacity: 1; }
.cursor.is-hovering {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.18);
}

.hero {
  position: relative;
  height: 285svh;
  background: #030303;
}

.has-intro-complete .hero {
  height: 165svh;
}

.hero__sticky,
.scene__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.hero__video,
.scene__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: clamp(0, calc(var(--hero-progress, 0) * 28), 1);
  will-change: opacity;
}

.hero__meta {
  position: absolute;
  right: var(--page-pad);
  bottom: var(--page-pad);
  left: var(--page-pad);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.54rem;
  letter-spacing: 0.16em;
  line-height: 1.6;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.42s;
}

html.js:not(.interface-visible) .hero__meta {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 1rem, 0);
}

.hero__meta p { margin: 0; }

.hero__counter {
  padding-right: 1.8rem;
  font-variant-numeric: tabular-nums;
}

.scroll-cue {
  position: absolute;
  bottom: 1.35rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  transform: translateX(-50%);
  visibility: visible;
  transition:
    opacity 0.3s,
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.42s;
}

html.js:not(.interface-visible) .scroll-cue {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-50%, 1rem, 0);
}

.scroll-cue i {
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  font-size: 1rem;
  font-style: normal;
  transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s,
    transform 0.3s;
}

.scroll-cue:hover i,
.scroll-cue:focus-visible i {
  border-color: var(--accent);
  background: rgba(114, 220, 255, 0.1);
  box-shadow:
    inset 0 0 1rem rgba(114, 220, 255, 0.08),
    0 0 0.65rem var(--accent-glow),
    0 0 2rem rgba(65, 189, 255, 0.3);
  color: var(--accent-hot);
  transform: translateY(0.25rem);
}

.scene {
  position: relative;
  min-height: 245svh;
  background: #050505;
  --scene-progress: 0;
}

.section-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.scene.scene--mission {
  min-height: 1000svh;
}

.story__anchor {
  position: absolute;
  top: var(--anchor-position);
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.story__video {
  object-position: center center;
}

.story__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), transparent 48%, rgba(0, 0, 0, 0.42)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 34%, rgba(0, 0, 0, 0.52));
  pointer-events: none;
}

.story__beat {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: min(74rem, calc(100vw - var(--page-pad) * 2));
  opacity: var(--beat-opacity, 0);
  pointer-events: none;
  transform: translate3d(0, calc(-50% + (0.5 - var(--beat-progress, 0.5)) * 5vh), 0);
  will-change: opacity, transform;
}

.story__beat--left {
  left: var(--page-pad);
}

.story__beat--right {
  right: calc(var(--page-pad) + 5vw);
  text-align: right;
}

.story__beat.is-current {
  pointer-events: auto;
}

.story__number {
  position: absolute;
  z-index: -1;
  top: -0.42em;
  color: rgba(255, 255, 255, 0.12);
  font-size: clamp(8rem, 21vw, 23rem);
  font-weight: 500;
  letter-spacing: -0.11em;
  line-height: 0.72;
  user-select: none;
}

.story__beat--left .story__number {
  left: -0.04em;
}

.story__beat--right .story__number {
  right: -0.02em;
}

.display--story {
  max-width: 74rem;
  font-size: clamp(3.5rem, 7.7vw, 8.8rem);
}

.story__beat--right .display--story,
.story__beat--right .story__body {
  margin-left: auto;
}

.story__body {
  max-width: 34rem;
  margin: 1.75rem 0 0;
  color: rgba(244, 243, 239, 0.82);
  font-size: clamp(1rem, 1.25vw, 1.28rem);
  line-height: 1.5;
  text-wrap: pretty;
}

.story__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.story__link {
  display: inline-flex;
  min-width: 15.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.65rem;
  padding: 0.82rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.54);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  transition: color 0.3s, border-color 0.3s, text-shadow 0.3s;
}

.story__link i {
  color: var(--accent-hot);
  font-size: 0.9rem;
  font-style: normal;
}

.story__link:hover,
.story__link:focus-visible {
  border-color: var(--accent-hot);
  color: var(--accent-hot);
  text-shadow: 0 0 0.75rem var(--accent-glow);
}

.story__link--secondary {
  min-width: 13.5rem;
  color: rgba(244, 243, 239, 0.68);
}

.story__coords {
  position: absolute;
  z-index: 3;
  right: calc(var(--page-pad) + 2rem);
  bottom: var(--page-pad);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-align: right;
}

.scene__video {
  position: absolute;
  inset: 0;
  background: #060606;
  opacity: clamp(0, calc(var(--scene-progress) * 22), 1);
  will-change: opacity;
}

.scene__video--manifesto {
  opacity: clamp(0, calc(var(--scene-progress) * 10), 1);
}

.manifesto {
  min-height: 275svh;
}

.manifesto__content {
  position: absolute;
  top: 50%;
  left: var(--page-pad);
  width: min(82rem, calc(100vw - var(--page-pad) * 2));
  opacity: clamp(0, calc((0.85 - var(--scene-progress)) * 6.67), 1);
  transform: translateY(calc(-45% + (var(--scene-progress) - 0.5) * -8vh));
  will-change: opacity, transform;
}

.eyebrow {
  margin: 0 0 1.6rem;
}

.display {
  margin: 0;
  font-size: clamp(3.5rem, 8.4vw, 9.4rem);
  font-weight: 420;
  letter-spacing: -0.075em;
  line-height: 0.84;
  text-wrap: balance;
}

.display em {
  color: rgba(244, 243, 239, 0.52);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88em;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.display--manifesto {
  font-size: clamp(4rem, 9vw, 10rem);
}

.manifesto__body,
.chapter__body {
  max-width: 28rem;
  margin: 2rem 0 0;
  color: rgba(244, 243, 239, 0.72);
  font-size: clamp(0.95rem, 1.25vw, 1.25rem);
  line-height: 1.45;
}

.manifesto__body {
  margin-left: min(43vw, 37rem);
}

.chapter__number {
  position: absolute;
  top: 12%;
  left: var(--page-pad);
  color: rgba(255, 255, 255, 0.22);
  font-size: clamp(8rem, 22vw, 24rem);
  font-weight: 500;
  letter-spacing: -0.1em;
  line-height: 0.7;
  transform: translate3d(calc(var(--scene-progress) * -3vw), 0, 0);
  user-select: none;
}

.chapter__number--right {
  right: 4vw;
  left: auto;
  transform: translate3d(calc(var(--scene-progress) * 3vw), 0, 0);
}

.chapter__copy {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: min(64rem, calc(100vw - var(--page-pad) * 2));
  transform: translateY(calc(-44% + (var(--scene-progress) - 0.5) * -7vh));
}

.chapter__copy--left { left: var(--page-pad); }

.chapter__copy--right {
  right: calc(var(--page-pad) + 6vw);
  width: min(60rem, 76vw);
  text-align: right;
}

.chapter__copy--right .chapter__body {
  margin-right: 0;
  margin-left: auto;
}

.chapter__copy--narrow {
  width: min(72rem, 80vw);
}

.chapter__copy--bottom {
  top: auto;
  right: var(--page-pad);
  bottom: 9.5rem;
  left: var(--page-pad);
  width: auto;
  transform: translateY(calc((var(--scene-progress) - 0.5) * -5vh));
}

.chapter__copy--bottom .display {
  font-size: clamp(3.3rem, 7vw, 8rem);
}

.scene__coords {
  position: absolute;
  right: calc(var(--page-pad) + 2rem);
  bottom: var(--page-pad);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-align: right;
}

.about {
  min-height: 260svh;
}

.scene.scene--static {
  min-height: 100svh;
}

.scene.scene--static .scene__sticky {
  position: relative;
  height: auto;
  min-height: inherit;
}

.scene.scene--static.about {
  min-height: max(100svh, 52rem);
}

.scene--static .about__portrait,
.scene--static .about__content,
.scene--static .finale__content {
  transform: none;
}

.about__sticky {
  background: #050505;
}

.about__portrait-shell {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(48vw, 58rem);
  overflow: hidden;
  border-left: 1px solid rgba(95, 162, 255, 0.18);
  background: #0a0a0a;
  box-shadow: -3rem 0 7rem rgba(0, 34, 104, 0.14);
}

.about__portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(calc(1.035 - var(--scene-progress) * 0.035));
  transform-origin: center 32%;
  will-change: transform;
}

.about__content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: var(--page-pad);
  width: min(43vw, 44rem);
  transform: translateY(calc(-48% + (var(--scene-progress) - 0.5) * -5vh));
}

.display--about {
  font-size: clamp(3.2rem, 5.8vw, 7rem);
  line-height: 0.88;
}

.about__role {
  margin: 2.1rem 0 0;
  color: rgba(244, 243, 239, 0.9);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  line-height: 1.6;
}

.about__body {
  max-width: 38rem;
  margin: 1.35rem 0 0;
  color: rgba(244, 243, 239, 0.72);
  font-size: clamp(0.92rem, 1.05vw, 1.08rem);
  line-height: 1.58;
}

.about__proof {
  margin: 1.65rem 0 0;
  color: rgba(114, 220, 255, 0.78);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-shadow: 0 0 1rem rgba(65, 189, 255, 0.26);
}

.finale {
  min-height: 250svh;
}

.finale__backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: url("assets/posters/contact-showreel.jpg") center / cover no-repeat #050505;
}

.finale__backdrop video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.finale__backdrop::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.38) 58%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.64));
  content: "";
  pointer-events: none;
}

.finale__content {
  position: absolute;
  z-index: 3;
  top: 47%;
  left: var(--page-pad);
  transform: translateY(calc(-50% + (var(--scene-progress) - 0.5) * -6vh));
}

.display--finale {
  font-size: clamp(4rem, 8.7vw, 9.8rem);
}

.project-link {
  display: inline-flex;
  min-width: min(100%, 22rem);
  align-items: center;
  justify-content: space-between;
  margin-top: 2.4rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  transition: color 0.3s, border-color 0.3s, box-shadow 0.3s, text-shadow 0.3s;
}

.project-link i {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 0.9rem;
  font-style: normal;
  transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s,
    transform 0.3s;
}

.project-link:hover,
.project-link:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 1rem 2rem -1.45rem var(--accent-glow);
  color: var(--accent-hot);
  text-shadow: 0 0 0.8rem rgba(65, 189, 255, 0.42);
}

.project-link:hover i,
.project-link:focus-visible i {
  border-color: var(--accent);
  background: rgba(114, 220, 255, 0.14);
  box-shadow:
    inset 0 0 0.8rem rgba(114, 220, 255, 0.08),
    0 0 0.55rem var(--accent-glow),
    0 0 1.6rem rgba(65, 189, 255, 0.3);
  color: var(--accent-hot);
  transform: rotate(45deg);
}

.site-footer {
  position: absolute;
  z-index: 4;
  right: var(--page-pad);
  bottom: var(--page-pad);
  left: var(--page-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 1rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
}

.site-footer p { margin: 0; }
.site-footer p:nth-child(2) { text-align: center; }
.site-footer a { justify-self: end; }

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.display.reveal { transition-delay: 0.08s; }
.chapter__body.reveal,
.manifesto__body.reveal,
.about__role.reveal,
.about__body.reveal,
.about__proof.reveal,
.project-link.reveal { transition-delay: 0.18s; }

@media (pointer: coarse), (max-width: 840px) {
  .cursor { display: none; }
}

@media (max-width: 820px) {
  :root {
    --header-height: 5rem;
  }

  .loader {
    justify-content: center;
  }

  .menu-toggle {
    width: 2.75rem;
    height: 2.75rem;
  }

  .menu-toggle span {
    right: 0.5rem;
    width: 1.75rem;
  }

  .menu-toggle span:first-child { top: 0.96rem; }
  .menu-toggle span:last-child { top: 1.64rem; width: 1.25rem; }
  .menu-toggle[aria-expanded="true"] span:first-child,
  .menu-toggle[aria-expanded="true"] span:last-child {
    top: 1.32rem;
    width: 1.75rem;
  }

  .audio-console {
    top: calc(var(--header-height) - 0.25rem);
    right: var(--page-pad);
  }

  .progress-rail { display: none; }

  .loader__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.35rem;
  }

  .loader__enter { width: 100%; min-width: 0; }
  .loader__muted { align-self: flex-start; }

  .menu__content {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding-top: calc(var(--header-height) + 2.5rem);
  }

  .menu nav { margin: auto 0; }

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

  .menu__links a {
    font-size: clamp(1.9rem, 8.7vw, 3.8rem);
    line-height: 0.95;
  }

  .menu__meta { width: 100%; }

  .hero__video {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .hero,
  .hero__sticky { background: #000; }

  .scene__video--manifesto {
    object-fit: cover;
    object-position: center;
  }

  .story__shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.88) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent 68%);
  }

  .story__beat,
  .story__beat--left,
  .story__beat--right {
    top: auto;
    right: var(--page-pad);
    bottom: 9vh;
    left: var(--page-pad);
    width: auto;
    text-align: left;
    transform: translate3d(0, calc((0.5 - var(--beat-progress, 0.5)) * 3vh), 0);
  }

  .story__beat--right .display--story,
  .story__beat--right .story__body {
    margin-left: 0;
  }

  .story__number,
  .story__beat--left .story__number,
  .story__beat--right .story__number {
    top: -0.72em;
    right: auto;
    left: -0.04em;
    font-size: 34vw;
  }

  .display--story {
    font-size: clamp(3rem, 12.5vw, 5.9rem);
    line-height: 0.88;
  }

  .story__body {
    max-width: 25rem;
    margin-top: 1.2rem;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .story__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .story__link,
  .story__link--secondary {
    min-width: min(100%, 17rem);
    margin-top: 1.1rem;
  }

  .story__coords { display: none; }
  .hero__counter { display: none; }
  .hero__meta p:first-child { font-size: 0.48rem; }

  .scroll-cue { bottom: 1.1rem; }

  .manifesto__content {
    top: 52%;
    width: calc(100vw - var(--page-pad) * 2);
  }

  .display,
  .display--manifesto,
  .display--finale {
    font-size: clamp(3.25rem, 15vw, 6.7rem);
    line-height: 0.88;
  }

  .manifesto__body {
    max-width: 20rem;
    margin: 2rem 0 0;
  }

  .chapter__number,
  .chapter__number--right {
    top: 11%;
    right: auto;
    left: var(--page-pad);
    font-size: 38vw;
  }

  .chapter__copy,
  .chapter__copy--left,
  .chapter__copy--right,
  .chapter__copy--narrow {
    top: auto;
    right: var(--page-pad);
    bottom: 10vh;
    left: var(--page-pad);
    width: auto;
    text-align: left;
    transform: translateY(calc((var(--scene-progress) - 0.5) * -4vh));
  }

  .chapter__copy--right .chapter__body {
    margin-right: auto;
    margin-left: 0;
  }

  .chapter__copy--bottom { bottom: 8.5rem; }

  .chapter__copy--bottom .display {
    font-size: clamp(3rem, 12.5vw, 5.8rem);
  }

  .chapter__body { max-width: 19rem; }

  .scene__coords { display: none; }

  .about__portrait-shell {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 42svh;
    border-bottom: 1px solid rgba(95, 162, 255, 0.16);
    border-left: 0;
    box-shadow: 0 2.5rem 6rem rgba(0, 34, 104, 0.12);
  }

  .about__portrait {
    object-position: center 25%;
  }

  .scene.scene--static.about {
    min-height: max(100svh, 58rem);
  }

  .about__content {
    top: auto;
    right: var(--page-pad);
    bottom: 4.25rem;
    left: var(--page-pad);
    width: auto;
    transform: translateY(calc((var(--scene-progress) - 0.5) * -3vh));
  }

  .display--about {
    font-size: clamp(2.75rem, 12vw, 5rem);
  }

  .about__role {
    margin-top: 1.35rem;
  }

  .about__body {
    max-width: 34rem;
    margin-top: 1rem;
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .about__proof {
    margin-top: 1.1rem;
  }

  .finale__content {
    top: 44%;
    right: var(--page-pad);
  }

  .project-link { min-width: min(100%, 19rem); }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer p:nth-child(2) { display: none; }
}

@media (max-width: 480px) {
  .wordmark { width: 6.1rem; }
  .header-actions { gap: 0.85rem; }
  .audio-toggle__label,
  .motion-toggle__label { display: none; }
  .audio-toggle__state { min-width: 1.8rem; }
  .language-switcher { font-size: 0.54rem; }
  .audio-console {
    right: var(--page-pad);
    left: var(--page-pad);
    width: auto;
  }
  .menu__meta { font-size: 0.7rem; }
  .scene { min-height: 225svh; }
  .manifesto { min-height: 245svh; }
  .scene__video--manifesto { object-fit: cover; }
  .about { min-height: 245svh; }
  .about__portrait-shell { height: 38svh; }
  .about__content { bottom: 3.5rem; }
  .about__body { font-size: 0.82rem; }
  .finale { min-height: 230svh; }
  .eyebrow { margin-bottom: 1.1rem; }
  .chapter__body,
  .manifesto__body { font-size: 0.92rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero,
  .has-intro-complete .hero,
  .scene,
  .scene.scene--mission,
  .manifesto,
  .about,
  .finale { min-height: 100svh; height: 100svh; }

  .hero__video,
  .scene__video,
  .chapter__number,
  .manifesto__content,
  .chapter__copy,
  .about__portrait,
  .about__content,
  .finale__content { transform: none !important; }

  .scene.scene--mission.story {
    height: auto !important;
    min-height: auto !important;
  }

  .story .scene__sticky {
    position: relative;
    display: grid;
    height: auto;
    min-height: 100svh;
    gap: 1px;
    padding: 100svh var(--page-pad) 6rem;
    background: #050505;
  }

  .story__video,
  .story__shade {
    height: 100svh;
  }

  .story__beat,
  .story__beat--left,
  .story__beat--right {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    padding: clamp(4rem, 10vw, 8rem) 0;
    border-top: 1px solid rgba(244, 243, 239, 0.16);
    opacity: 1 !important;
    pointer-events: auto;
    text-align: left;
  }

  .story__beat--right .display--story,
  .story__beat--right .story__body {
    margin-left: 0;
  }

  .story__number {
    top: 0.08em;
    right: auto;
    left: 0;
  }

  html.mobile-webkit-scrub .scene.scene--mission.story {
    height: auto !important;
    min-height: 1000svh !important;
  }

  html.mobile-webkit-scrub .story .scene__sticky {
    position: sticky;
    top: 0;
    display: block;
    height: 100svh;
    min-height: 100svh;
    padding: 0;
    overflow: hidden;
  }

  html.mobile-webkit-scrub .story__video,
  html.mobile-webkit-scrub .story__shade {
    height: 100%;
  }

  html.mobile-webkit-scrub .story__beat,
  html.mobile-webkit-scrub .story__beat--left,
  html.mobile-webkit-scrub .story__beat--right {
    position: absolute;
    top: auto;
    right: var(--page-pad);
    bottom: 9vh;
    left: var(--page-pad);
    width: auto;
    padding: 0;
    border-top: 0;
    opacity: var(--beat-opacity, 0) !important;
    pointer-events: none;
    text-align: left;
    transform: translate3d(0, calc((0.5 - var(--beat-progress, 0.5)) * 3vh), 0);
  }

  html.mobile-webkit-scrub .story__beat.is-current {
    pointer-events: auto;
  }

  html.mobile-webkit-scrub .story__number,
  html.mobile-webkit-scrub .story__beat--left .story__number,
  html.mobile-webkit-scrub .story__beat--right .story__number {
    top: -0.72em;
    right: auto;
    left: -0.04em;
  }

}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-content: center;
  gap: 1.25rem;
  background: #050505;
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}

.page-transition img { display: block; width: min(38vw, 13rem); height: auto; }
.page-transition span { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; }
.page-transition.is-active { opacity: 1; visibility: visible; transition-delay: 0s; }
