:root {
  --black: #050505;
  --black-soft: #0b0b0d;
  --white: #f2f1ec;
  --paper: #d9d9d4;
  --grey: #8b8b91;
  --line: rgba(242, 241, 236, 0.22);
  --line-dark: rgba(5, 5, 5, 0.22);
  --electric: #6f78ff;
  --electric-hot: #b6c3ff;
  --header-h: 3.6rem;
  --side: clamp(1rem, 3vw, 3.25rem);
  --max: 112rem;
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  cursor: default;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--electric-hot);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 500;
  padding: 0.8rem 1rem;
  background: var(--white);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  transform: translateY(-120%);
}

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

.live-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #030303;
  pointer-events: none;
}

.live-field canvas,
.field-vignette,
.field-scanlines,
.field-noise,
.field-tear {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#singularity-canvas {
  z-index: 1;
}

#particle-canvas {
  z-index: 2;
  opacity: 0.9;
}

.field-vignette {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), transparent 39%, transparent 72%, rgba(0, 0, 0, 0.3)),
    radial-gradient(circle at center, transparent 18%, rgba(0, 0, 0, 0.14) 62%, rgba(0, 0, 0, 0.82) 125%);
}

.field-scanlines {
  z-index: 4;
  opacity: 0.25;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(255, 255, 255, 0.045) 3px,
    rgba(255, 255, 255, 0.045) 4px
  );
  mix-blend-mode: overlay;
  animation: scan-drift 18s linear infinite;
}

.field-noise {
  inset: -35%;
  z-index: 5;
  width: 170%;
  height: 170%;
  opacity: 0.1;
  background-image:
    repeating-radial-gradient(circle at 19% 27%, rgba(255, 255, 255, 0.9) 0 0.55px, transparent 0.8px 4px),
    repeating-radial-gradient(circle at 67% 71%, rgba(111, 120, 255, 0.9) 0 0.4px, transparent 0.7px 5px);
  background-size: 8px 7px, 11px 13px;
  mix-blend-mode: screen;
  animation: noise-walk 0.24s steps(2, end) infinite;
}

.field-tear {
  inset: auto -8% auto;
  z-index: 6;
  width: 116%;
  height: 0.9rem;
  opacity: 0;
  background: repeating-linear-gradient(90deg, transparent 0 4vw, rgba(255, 255, 255, 0.8) 4vw 6vw, transparent 6vw 12vw);
  box-shadow: 0.75rem 0 0 rgba(111, 120, 255, 0.55), -0.55rem 0 0 rgba(255, 255, 255, 0.22);
  filter: blur(0.4px);
}

.field-tear-a {
  top: 26%;
}

.field-tear-b {
  top: 71%;
  height: 0.35rem;
}

body.is-interfering .field-tear-a {
  animation: tear-a 0.18s steps(2, end);
}

body.is-interfering .field-tear-b {
  animation: tear-b 0.22s steps(2, end);
}

.cursor-field {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  margin: -1.2rem 0 0 -1.2rem;
  border: 1px solid rgba(242, 241, 236, 0.55);
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(-10rem, -10rem, 0);
  transition: width 0.18s ease, height 0.18s ease, margin 0.18s ease, border-color 0.18s ease;
  mix-blend-mode: difference;
}

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

.cursor-field.is-link {
  width: 4.6rem;
  height: 4.6rem;
  margin: -2.3rem 0 0 -2.3rem;
  border-color: var(--electric-hot);
}

.masthead {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-h);
  padding: 0 var(--side);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(14px) saturate(120%);
}

.wordmark {
  display: inline-flex;
  width: fit-content;
  align-items: baseline;
  gap: 0.55rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.wordmark strong {
  font-size: 1.2rem;
  letter-spacing: -0.07em;
}

.wordmark span {
  color: var(--grey);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 3.1rem);
}

.site-nav a,
.masthead-contact,
.menu-toggle {
  font: 700 0.7rem/1 Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  color: #b6b6b8;
  transition: color 0.18s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--white);
}

.nav-booking {
  display: none;
}

.masthead-contact {
  justify-self: end;
  min-height: 2.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(242, 241, 236, 0.45);
  background: rgba(242, 241, 236, 0.04);
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.masthead-contact span {
  color: var(--electric-hot);
}

.masthead-contact:hover {
  border-color: var(--electric);
  background: var(--electric);
  color: var(--white);
}

.masthead-contact:hover span {
  color: var(--white);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
}

.production-deck {
  position: fixed;
  right: var(--side);
  bottom: 1rem;
  z-index: 190;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.28rem 1.25rem;
  min-width: 18.5rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(242, 241, 236, 0.22);
  background: rgba(5, 5, 5, 0.78);
  color: #b9b9bd;
  font: 700 0.61rem/1.15 "Courier New", monospace;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
}

.production-deck span:nth-child(even) {
  text-align: right;
}

.deck-live {
  color: var(--white);
}

.deck-live i {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.35rem;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 0.7rem var(--electric);
  animation: live-pulse 1.25s ease-in-out infinite;
}

main,
footer {
  position: relative;
  z-index: 10;
}

.chapter {
  position: relative;
  max-width: var(--max);
  min-height: 100svh;
  margin: 0 auto;
  overflow: clip;
}

.chapter-index {
  position: absolute;
  top: calc(var(--header-h) + 1.1rem);
  right: var(--side);
  left: var(--side);
  z-index: 5;
  display: flex;
  justify-content: space-between;
  color: rgba(242, 241, 236, 0.58);
  font: 700 0.64rem/1 "Courier New", monospace;
  letter-spacing: 0.11em;
}

.chapter-index-dark {
  color: rgba(5, 5, 5, 0.58);
}

.hero {
  display: grid;
  align-items: end;
  min-height: 100svh;
  padding: calc(var(--header-h) + 5rem) var(--side) clamp(5rem, 8vh, 7.5rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: var(--header-h) 0 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.48) 42%, rgba(5, 5, 5, 0.02) 68%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.72), transparent 42%);
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(100%, 88rem);
}

.eyebrow {
  margin: 0 0 1.15rem;
  color: #aaaab0;
  font: 700 0.69rem/1.3 "Courier New", monospace;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  content: "[";
  color: var(--electric-hot);
}

.eyebrow::after {
  content: "]";
  color: var(--electric-hot);
}

.display-title,
.section-display,
.contact-title,
.status-word,
.manifesto-line {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.display-title {
  width: min(100%, 77rem);
  font-size: clamp(4.6rem, 11.5vw, 13rem);
  line-height: 0.77;
}

.title-line {
  position: relative;
  display: block;
  width: fit-content;
}

.title-line:nth-child(2) {
  margin-left: clamp(0rem, 7vw, 8rem);
}

.title-line-outline {
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.73em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.07em;
  text-transform: none;
  -webkit-text-stroke: 1px var(--white);
}

.hero-foot {
  display: grid;
  grid-template-columns: minmax(18rem, 34rem) auto;
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
  max-width: 66rem;
  margin-top: 2.4rem;
}

.hero-foot > p {
  margin: 0;
  color: #c0c0c4;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.action {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  border: 1px solid var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.action-solid {
  background: var(--white);
  color: var(--black);
}

.action-solid:hover {
  border-color: var(--electric);
  background: var(--electric);
  color: var(--white);
}

.action-line:hover {
  border-color: var(--electric-hot);
  background: rgba(111, 120, 255, 0.14);
}

.field-instruction {
  position: absolute;
  right: 7vw;
  bottom: 26%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: rgba(242, 241, 236, 0.7);
  font: 0.62rem/1.5 "Courier New", monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field-instruction p {
  margin: 0;
}

.field-cross {
  position: relative;
  display: block;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(242, 241, 236, 0.36);
  border-radius: 50%;
  animation: field-orbit 8s linear infinite;
}

.field-cross::before,
.field-cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.field-cross::before {
  width: 3.5rem;
  height: 1px;
}

.field-cross::after {
  width: 1px;
  height: 3.5rem;
}

.hero-telemetry {
  position: absolute;
  right: var(--side);
  bottom: 1.4rem;
  left: var(--side);
  z-index: 4;
  display: flex;
  gap: 2rem;
  color: rgba(242, 241, 236, 0.42);
  font: 700 0.58rem/1 "Courier New", monospace;
  letter-spacing: 0.08em;
}

.manifesto {
  min-height: 122svh;
  padding: clamp(8rem, 15vh, 13rem) var(--side) 8rem;
  background: var(--paper);
  color: var(--black);
}

.manifesto-line {
  position: relative;
  z-index: 2;
  font-size: clamp(5rem, 15.5vw, 18rem);
  line-height: 0.77;
  white-space: nowrap;
}

.manifesto-line-right {
  text-align: right;
}

.manifesto-note {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 35rem);
  gap: 2rem;
  margin-top: clamp(5rem, 12vh, 9rem);
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
}

.manifesto-note span {
  font: 700 0.68rem/1 "Courier New", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manifesto-note p {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 2.2rem);
  line-height: 1.3;
}

.archive {
  max-width: none;
  padding-top: clamp(7rem, 13vh, 11rem);
  background: rgba(5, 5, 5, 0.72);
}

.archive-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem 3rem;
  width: min(calc(100% - 2 * var(--side)), var(--max));
  margin: 0 auto;
  padding-bottom: clamp(5rem, 10vh, 9rem);
}

.archive-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-display {
  font-size: clamp(4.5rem, 10vw, 11rem);
  line-height: 0.82;
}

.section-display em {
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.77em;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  -webkit-text-stroke: 1px var(--white);
}

.archive-intro {
  align-self: end;
  max-width: 34rem;
  margin: 0 0 0.7rem;
  color: #bdbdc1;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.62;
}

.reel-track {
  position: relative;
  height: 360svh;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reel-stage {
  position: sticky;
  top: var(--header-h);
  height: calc(100svh - var(--header-h));
  overflow: hidden;
  background: rgba(5, 5, 5, 0.08);
}

.reel-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 55%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 48%);
}

.reel-hud {
  position: absolute;
  top: 1.25rem;
  right: var(--side);
  left: var(--side);
  z-index: 8;
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
  color: #bdbdc1;
  font: 700 0.62rem/1 "Courier New", monospace;
  letter-spacing: 0.1em;
}

.reel-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: end;
  padding: 5rem var(--side) clamp(4.8rem, 9vh, 7rem);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition: opacity 0.08s linear, visibility 0s linear 0.08s, transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reel-frame.is-active {
  z-index: 3;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
}

.reel-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
}

.reel-frame[data-mode="design"]::before {
  background: radial-gradient(circle at 72% 42%, rgba(111, 120, 255, 0.26), transparent 28%);
}

.reel-frame[data-mode="practice"]::before {
  background: linear-gradient(120deg, transparent 48%, rgba(242, 241, 236, 0.13) 48.2%, transparent 48.4%);
  background-size: 2.2rem 2.2rem;
}

.reel-frame[data-mode="skin"]::before {
  background: radial-gradient(ellipse at 72% 45%, rgba(242, 241, 236, 0.16), transparent 31%);
}

.frame-number {
  position: absolute;
  top: 50%;
  right: var(--side);
  color: rgba(242, 241, 236, 0.08);
  font-family: Impact, sans-serif;
  font-size: clamp(15rem, 39vw, 46rem);
  line-height: 0.7;
  transform: translateY(-48%);
}

.frame-copy {
  position: relative;
  z-index: 3;
  max-width: 61rem;
}

.frame-copy > p,
.frame-readout {
  color: var(--electric-hot);
  font: 700 0.66rem/1.2 "Courier New", monospace;
  letter-spacing: 0.12em;
}

.frame-copy > p {
  margin: 0 0 0.9rem;
}

.frame-copy h3 {
  margin: 0;
  font-family: Impact, sans-serif;
  font-size: clamp(6rem, 16vw, 19rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.78;
  text-transform: uppercase;
}

.frame-copy > span {
  display: block;
  max-width: 34rem;
  margin-top: 1.5rem;
  color: #c1c1c5;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
}

.frame-readout {
  position: absolute;
  right: var(--side);
  bottom: 2.4rem;
  z-index: 4;
  color: rgba(242, 241, 236, 0.55);
}

.reel-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  height: 3px;
  background: rgba(242, 241, 236, 0.15);
}

.reel-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--electric);
  box-shadow: 0 0 1rem var(--electric);
}

.archive-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 2 * var(--side)), var(--max));
  margin: 0 auto;
  padding: 2.3rem 0 5rem;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.3rem, 2.3vw, 2.6rem);
}

.archive-link span {
  color: var(--electric-hot);
}

.method {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(9rem, 16vh, 14rem) var(--side);
  background: var(--black);
}

.method-heading {
  position: sticky;
  top: calc(var(--header-h) + 4rem);
  align-self: start;
}

.method .section-display {
  font-size: clamp(5.5rem, 10vw, 11rem);
}

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

.method-list li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  padding: 2.2rem 0 2.4rem;
  border-top: 1px solid var(--line);
}

.method-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.method-list > li > span {
  color: var(--electric-hot);
  font: 700 0.72rem/1 "Courier New", monospace;
}

.method-list h3 {
  margin: -0.25rem 0 0.7rem;
  font-size: clamp(1.7rem, 3.2vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.method-list p {
  max-width: 36rem;
  margin: 0;
  color: #aaaab0;
  font-size: 1rem;
  line-height: 1.55;
}

.status {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(22rem, 0.78fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  max-width: none;
  min-height: 118svh;
  padding: 9rem var(--side);
  background: var(--paper);
  color: var(--black);
}

.status-word {
  font-size: clamp(8rem, 20vw, 24rem);
  line-height: 0.7;
}

.status-copy {
  max-width: 37rem;
}

.status .eyebrow {
  color: #55555b;
}

.status-copy h2 {
  margin: 0 0 2rem;
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.status-copy > p:not(.eyebrow) {
  margin: 0 0 1.3rem;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.62;
}

.faq {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 8vw, 10rem);
  padding: clamp(9rem, 16vh, 14rem) var(--side);
  background: rgba(5, 5, 5, 0.82);
}

.faq-heading {
  align-self: start;
}

.faq .section-display {
  font-size: clamp(5rem, 9.5vw, 10.5rem);
}

.faq-list {
  align-self: center;
}

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

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 5.6rem;
  padding: 1.2rem 0;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--electric-hot);
  font-size: 1.7rem;
  font-weight: 300;
  transition: transform 0.18s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 44rem;
  margin: -0.4rem 3rem 1.8rem 0;
  color: #aaaab0;
  line-height: 1.6;
}

.inline-booking {
  display: inline-block;
  margin-left: 0.35rem;
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--electric-hot);
  text-underline-offset: 0.22em;
}

.contact {
  display: grid;
  align-content: end;
  max-width: none;
  min-height: 104svh;
  padding: calc(var(--header-h) + 5rem) var(--side) 5.5rem;
  background: rgba(5, 5, 5, 0.38);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.16) 68%);
}

.contact-title {
  font-size: clamp(7rem, 19vw, 24rem);
  line-height: 0.7;
}

.contact-bottom {
  display: grid;
  grid-template-columns: minmax(16rem, 30rem) 1fr auto;
  gap: 1.2rem 3rem;
  align-items: end;
  margin-top: 3.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contact-bottom > p:first-child {
  margin: 0;
  color: #b9b9bd;
  line-height: 1.5;
}

.contact-booking {
  justify-self: end;
  font-size: clamp(1.8rem, 4vw, 4.5rem);
  letter-spacing: -0.05em;
}

.contact-booking span,
.contact-instagram span {
  color: var(--electric-hot);
}

.contact-secondary {
  display: grid;
  justify-items: end;
  gap: 0.55rem;
}

.contact-instagram {
  color: #c8c8cd;
  font: 800 0.72rem/1 Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.copy-handle {
  min-height: 2.8rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.5);
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.copy-status {
  min-height: 1em;
  margin: 0;
  color: var(--electric-hot);
  font: 700 0.64rem/1 "Courier New", monospace;
  text-align: right;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem var(--side) 5.5rem;
  border-top: 1px solid var(--line);
  background: var(--black);
  color: #85858a;
  font: 700 0.63rem/1.3 "Courier New", monospace;
  letter-spacing: 0.08em;
}

footer p {
  margin: 0;
}

footer strong {
  color: var(--white);
}

.js .reveal {
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 0.72s ease, transform 0.88s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .manifesto-line.reveal:nth-of-type(odd) {
  transform: translateX(-12vw);
}

.js .manifesto-line.reveal:nth-of-type(even) {
  transform: translateX(12vw);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.js .title-line:nth-child(2) {
  transition-delay: 0.06s;
}

.js .title-line:nth-child(3) {
  transition-delay: 0.12s;
}

.no-js .reel-track {
  height: auto;
}

.no-js .reel-stage {
  position: relative;
  top: auto;
  display: grid;
  height: auto;
  overflow: visible;
}

.no-js .reel-stage::before,
.no-js .reel-hud,
.no-js .reel-progress,
.no-js .production-deck,
.no-js .field-instruction {
  display: none;
}

.no-js .reel-frame {
  position: relative;
  inset: auto;
  min-height: 78svh;
  border-top: 1px solid var(--line);
  opacity: 1;
  visibility: visible;
  transform: none;
}

.no-webgl .live-field {
  background:
    radial-gradient(circle at 72% 47%, #000 0 11%, rgba(111, 120, 255, 0.72) 11.4%, rgba(240, 240, 235, 0.26) 12.2%, transparent 18%),
    radial-gradient(ellipse at 72% 47%, rgba(111, 120, 255, 0.17), transparent 38%),
    #030303;
}

@keyframes scan-drift {
  to { transform: translateY(8px); }
}

@keyframes noise-walk {
  0% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(-2%, 1%, 0); }
  50% { transform: translate3d(1%, -2%, 0); }
  75% { transform: translate3d(2%, 2%, 0); }
  100% { transform: translate3d(-1%, 1%, 0); }
}

@keyframes tear-a {
  0% { opacity: 0; transform: translateX(-4%); }
  25% { opacity: 0.9; transform: translateX(7%); }
  55% { opacity: 0.22; transform: translateX(-9%); }
  100% { opacity: 0; transform: translateX(3%); }
}

@keyframes tear-b {
  0% { opacity: 0; transform: translateX(8%); }
  35% { opacity: 0.6; transform: translateX(-7%); }
  72% { opacity: 0.18; transform: translateX(11%); }
  100% { opacity: 0; transform: translateX(0); }
}

@keyframes live-pulse {
  50% { opacity: 0.35; box-shadow: 0 0 0.25rem var(--electric); }
}

@keyframes field-orbit {
  to { transform: rotate(360deg); }
}

@media (pointer: fine) {
  .cursor-field {
    display: block;
  }

  body,
  a,
  button,
  summary {
    cursor: none;
  }
}

@media (max-width: 980px) {
  .masthead {
    grid-template-columns: 1fr auto;
  }

  .masthead-contact {
    display: none;
  }

  .site-nav .nav-booking {
    display: inline;
    color: var(--electric-hot);
  }

  .site-nav {
    justify-self: end;
  }

  .hero-foot,
  .archive-heading,
  .method,
  .status,
  .faq {
    grid-template-columns: 1fr;
  }

  .field-instruction {
    right: var(--side);
    bottom: 19%;
  }

  .archive-intro {
    margin-top: 1rem;
  }

  .method-heading {
    position: relative;
    top: auto;
  }

  .status {
    gap: 5rem;
  }

  .status-word {
    font-size: clamp(8rem, 26vw, 17rem);
  }

  .contact-bottom {
    grid-template-columns: 1fr auto;
  }

  .contact-bottom > p:first-child {
    grid-column: 1 / -1;
  }

  .contact-booking {
    justify-self: start;
  }

  .contact-secondary {
    justify-self: end;
  }
}

@media (max-width: 700px) {
  :root {
    --header-h: 3.35rem;
    --side: 1rem;
  }

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

  .menu-toggle {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0;
  }

  .menu-toggle i,
  .menu-toggle i::after {
    display: block;
    width: 1.3rem;
    height: 1px;
    background: currentColor;
    transition: transform 0.2s ease;
  }

  .menu-toggle i {
    position: relative;
  }

  .menu-toggle i::after {
    content: "";
    position: absolute;
    top: 0.32rem;
  }

  .menu-toggle[aria-expanded="true"] i {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::after {
    top: 0;
    transform: rotate(90deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 3;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 0;
    padding: 5rem var(--side);
    background: rgba(5, 5, 5, 0.98);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-1rem);
    transition: opacity 0.2s ease, visibility 0s linear 0.2s, transform 0.2s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav a {
    width: 100%;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
    font-family: Impact, sans-serif;
    font-size: clamp(3.6rem, 17vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.9;
  }

  .site-nav a:last-child {
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-booking {
    display: block;
    color: var(--electric-hot);
  }

  .production-deck {
    right: 0.75rem;
    bottom: 0.7rem;
    min-width: 12.6rem;
    grid-template-columns: 1fr auto;
  }

  .deck-frame {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-h) + 7rem);
    padding-bottom: 7.5rem;
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.13) 68%);
  }

  .display-title {
    font-size: clamp(4.3rem, 22vw, 8.2rem);
  }

  .title-line:nth-child(2) {
    margin-left: 0;
  }

  .hero-foot {
    gap: 1.8rem;
    margin-top: 1.8rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .field-instruction {
    top: calc(var(--header-h) + 3.4rem);
    right: var(--side);
    bottom: auto;
  }

  .field-instruction p {
    display: none;
  }

  .hero-telemetry {
    gap: 0.7rem;
    overflow: hidden;
  }

  .hero-telemetry span:nth-child(n + 2) {
    display: none;
  }

  .manifesto {
    min-height: auto;
    padding-top: 9rem;
  }

  .manifesto-line {
    font-size: clamp(4.3rem, 22vw, 8.5rem);
    white-space: normal;
  }

  .manifesto-note {
    grid-template-columns: 1fr;
  }

  .section-display {
    font-size: clamp(4.2rem, 20vw, 8rem);
  }

  .reel-track {
    height: auto;
    border-bottom: 0;
  }

  .reel-stage {
    position: relative;
    top: auto;
    display: grid;
    height: auto;
    overflow: visible;
    background: transparent;
  }

  .reel-stage::before,
  .reel-hud,
  .reel-progress {
    display: none;
  }

  .reel-frame {
    position: relative;
    inset: auto;
    min-height: 78svh;
    padding: 7rem var(--side) 4rem;
    border-top: 1px solid var(--line);
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .reel-frame:last-of-type {
    border-bottom: 1px solid var(--line);
  }

  .frame-number {
    font-size: 62vw;
  }

  .frame-copy h3 {
    font-size: clamp(5.3rem, 25vw, 9rem);
  }

  .frame-readout {
    right: var(--side);
    bottom: 1.2rem;
  }

  .method,
  .faq {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .method-list li {
    grid-template-columns: 2.7rem 1fr;
  }

  .status {
    min-height: auto;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .status-word {
    font-size: clamp(7rem, 33vw, 12rem);
  }

  .contact {
    min-height: 100svh;
    padding-bottom: 8rem;
  }

  .contact-title {
    font-size: clamp(6rem, 28vw, 11rem);
  }

  .contact-bottom {
    grid-template-columns: 1fr;
  }

  .contact-booking,
  .contact-secondary,
  .copy-status {
    grid-column: 1;
    justify-self: start;
    text-align: left;
  }

  .contact-secondary {
    justify-items: start;
  }

  .copy-handle {
    justify-self: start;
  }

  footer {
    display: grid;
    padding-bottom: 6rem;
  }
}

@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;
  }

  .js .reveal,
  .js .manifesto-line.reveal:nth-of-type(odd),
  .js .manifesto-line.reveal:nth-of-type(even) {
    opacity: 1;
    transform: none;
  }

  .field-noise,
  .field-scanlines,
  #particle-canvas,
  .cursor-field,
  .field-instruction {
    display: none;
  }

  .reel-track {
    height: auto;
  }

  .reel-stage {
    position: relative;
    top: auto;
    display: grid;
    height: auto;
    overflow: visible;
  }

  .reel-stage::before,
  .reel-hud,
  .reel-progress {
    display: none;
  }

  .reel-frame {
    position: relative;
    inset: auto;
    min-height: 78svh;
    border-top: 1px solid var(--line);
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}
