:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #090b09;
  --ink: #f4f1e9;
  --muted: rgba(244, 241, 233, 0.66);
  --soft: rgba(244, 241, 233, 0.12);
  --line: rgba(244, 241, 233, 0.14);
  --green: #8fa87a;
  --green-dark: #233223;
  --green-deep: #111a13;
  --sage: #b8c6a0;
  --cue: #d89a35;
  --play: #4ad760;
  --purple: #6f5a8b;
  --violet: #31213c;
  --pitch: "Pitch Black", "Druk Wide", Impact, "Arial Black", sans-serif;
  --melt: cubic-bezier(0.22, 0.9, 0.18, 1);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --page-x: 1rem;
  --section-y: 5rem;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(111, 90, 139, 0.15), transparent 26rem),
    radial-gradient(circle at 4% 45%, rgba(143, 168, 122, 0.13), transparent 28rem),
    linear-gradient(115deg, transparent 0 44%, rgba(49, 33, 60, 0.16) 44% 46%, transparent 47%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

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

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

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

button {
  user-select: none;
  -webkit-touch-callout: none;
}

.hero,
.hero-kicker-image,
.cdj-panel,
.deck-button,
.deck-knob,
.deck-label,
.deck-readout,
.wave-meta,
.wave-lane,
.video-unmute,
.booking-avatar-easter {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

.grain,
.scan,
.cursor-light {
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.grain {
  z-index: 50;
  opacity: 0.14;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 4px);
  mix-blend-mode: soft-light;
}

.scan {
  z-index: 51;
  opacity: 0.08;
  background: repeating-linear-gradient(180deg, transparent 0 8px, rgba(255, 255, 255, 0.12) 9px);
  transform: translateY(var(--scan-y, 0));
}

.cursor-light {
  left: var(--mouse-x, 50vw);
  top: var(--mouse-y, 50vh);
  z-index: 0;
  width: 28rem;
  height: 18rem;
  inset: auto;
  translate: -50% -50%;
  border-radius: 50%;
  background: linear-gradient(115deg, rgba(143, 168, 122, 0.1), rgba(111, 90, 139, 0.09), transparent);
  filter: blur(2.6rem);
  opacity: 0.74;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem var(--page-x);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.35), transparent);
  backdrop-filter: blur(14px);
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  width: fit-content;
}

.brand img {
  width: clamp(5.2rem, 20vw, 7.4rem);
  height: auto;
  filter: drop-shadow(0.12rem 0 rgba(143, 168, 122, 0.5)) drop-shadow(-0.12rem 0 rgba(111, 90, 139, 0.55));
}

.nav-links {
  display: none;
}

.sound-state {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.45rem;
  border: 1px solid rgba(143, 168, 122, 0.28);
  border-radius: 999px;
  padding: 0 0.78rem;
  background: rgba(12, 15, 12, 0.76);
  color: rgba(244, 241, 233, 0.7);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0;
}

.sound-bars {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: end;
  gap: 0.16rem;
  height: 1rem;
}

.sound-bars i {
  display: block;
  width: 0.16rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--green);
  transform-origin: bottom;
}

.sound-bars i:nth-child(2) {
  height: 0.86rem;
  background: var(--purple);
}

.sound-bars i:nth-child(3) {
  height: 0.58rem;
}

body.is-audio-playing .sound-bars i,
body.is-cueing .sound-bars i,
.set-chapter.is-active .video-hud::before {
  animation: meter 560ms ease-in-out infinite alternate;
}

body.is-audio-playing .sound-bars i:nth-child(2),
body.is-cueing .sound-bars i:nth-child(2) {
  animation-delay: 110ms;
}

body.is-audio-playing .sound-bars i:nth-child(3),
body.is-cueing .sound-bars i:nth-child(3) {
  animation-delay: 210ms;
}

.section {
  position: relative;
  z-index: 1;
  padding: var(--section-y) var(--page-x);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-content: center;
  overflow: hidden;
  isolation: isolate;
  padding-top: 7rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, transparent 0 62%, rgba(5, 5, 5, 0.92) 100%),
    radial-gradient(circle at 72% 34%, rgba(143, 168, 122, 0.12), transparent 20rem);
}

.hero-grid {
  position: absolute;
  inset: 5.4rem var(--page-x) 4.8rem;
  z-index: -1;
  border: 1px solid rgba(244, 241, 233, 0.08);
  background:
    linear-gradient(rgba(244, 241, 233, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 233, 0.032) 1px, transparent 1px);
  background-size: 3rem 3rem;
  mask-image: linear-gradient(180deg, transparent, #000 13%, #000 82%, transparent);
}

.hero-logo-stack {
  position: absolute;
  top: 7.2rem;
  left: 54%;
  z-index: -1;
  width: min(100vw, 34rem);
  translate: -50% 0;
  opacity: 0.25;
  filter: contrast(1.2);
  animation: floatLogo 8s var(--melt) infinite;
}

.hero-logo-stack img {
  width: 100%;
  opacity: 0.5;
}

.hero-logo-stack img:nth-child(2),
.hero-logo-stack img:nth-child(3) {
  position: absolute;
  inset: 0;
  mix-blend-mode: screen;
}

.hero-logo-stack img:nth-child(2) {
  transform: translate(-0.42rem, 0.18rem);
  opacity: 0.28;
  filter: sepia(1) hue-rotate(216deg) saturate(0.8);
  clip-path: inset(12% 0 48% 0);
}

.hero-logo-stack img:nth-child(3) {
  transform: translate(0.58rem, 0.05rem);
  opacity: 0.32;
  filter: sepia(1) hue-rotate(44deg) saturate(0.65);
  clip-path: inset(52% 0 8% 0);
}

.hero-avatar {
  position: absolute;
  top: 8.8rem;
  right: var(--page-x);
  width: min(35vw, 9rem);
  aspect-ratio: 1;
  border: 1px solid rgba(143, 168, 122, 0.28);
  border-radius: var(--radius);
  overflow: visible;
  background: rgba(244, 241, 233, 0.035);
  transform: skew(-2deg);
  box-shadow:
    0.7rem 0.7rem 0 rgba(111, 90, 139, 0.13),
    -0.45rem -0.45rem 0 rgba(143, 168, 122, 0.1);
  animation: avatarLowEnd 4.6s var(--melt) infinite;
}

.hero-avatar img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.55rem;
  border-radius: var(--radius);
  filter: drop-shadow(0.28rem 0 rgba(111, 90, 139, 0.45)) drop-shadow(-0.24rem 0 rgba(143, 168, 122, 0.4));
}

.avatar-noise {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 6px),
    linear-gradient(125deg, transparent, rgba(143, 168, 122, 0.14), transparent);
  mix-blend-mode: overlay;
}

.avatar-wave {
  position: absolute;
  inset: -0.55rem;
  z-index: 1;
  border: 1px solid rgba(143, 168, 122, 0.18);
  border-radius: 50%;
  opacity: 0;
  animation: avatarWave 2.8s ease-out infinite;
}

.avatar-wave-b {
  animation-delay: 1.15s;
  border-color: rgba(111, 90, 139, 0.24);
}

.hero-console {
  width: min(100%, 46rem);
  padding-top: clamp(10rem, 26vw, 12.5rem);
}

.eyebrow,
.release-kicker,
.video-hud {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--sage);
}

.hero-kicker-image {
  min-height: 1em;
  width: fit-content;
}

.hero-kicker-image::before {
  content: attr(data-label);
  display: block;
  color: var(--sage);
  filter: drop-shadow(0.08rem 0 rgba(111, 90, 139, 0.48)) drop-shadow(-0.08rem 0 rgba(143, 168, 122, 0.36));
}

.cdj-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  width: min(100%, 31rem);
  border: 1px solid rgba(143, 168, 122, 0.18);
  border-radius: var(--radius);
  padding: 1rem;
  background:
    radial-gradient(circle at 84% 12%, rgba(143, 168, 122, 0.1), transparent 12rem),
    linear-gradient(140deg, rgba(244, 241, 233, 0.065), rgba(244, 241, 233, 0.012)),
    rgba(5, 5, 5, 0.72);
  box-shadow:
    0.85rem 0.85rem 0 rgba(111, 90, 139, 0.1),
    -0.55rem -0.55rem 0 rgba(143, 168, 122, 0.08),
    inset 0 0 2rem rgba(143, 168, 122, 0.035);
  overflow: hidden;
}

.cdj-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 1.6rem),
    linear-gradient(120deg, transparent, rgba(143, 168, 122, 0.08), transparent);
  opacity: 0.54;
  pointer-events: none;
}

.deck-waveform {
  position: relative;
  z-index: 1;
  order: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 4.2rem minmax(0, 1fr);
  gap: 0.56rem;
  align-items: stretch;
  min-height: 5.5rem;
  border: 1px solid rgba(143, 168, 122, 0.22);
  border-radius: var(--radius);
  padding: 0.52rem;
  background:
    linear-gradient(90deg, rgba(143, 168, 122, 0.08), transparent 18%),
    repeating-linear-gradient(90deg, transparent 0 1.35rem, rgba(244, 241, 233, 0.045) 1.4rem 1.46rem),
    rgba(4, 6, 4, 0.72);
  box-shadow: inset 0 0 1.4rem rgba(143, 168, 122, 0.05);
}

.wave-meta {
  display: grid;
  align-content: space-between;
  color: #52b7ff;
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1;
}

.wave-meta i {
  display: block;
  width: 72%;
  height: 0.14rem;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0.75rem rgba(82, 183, 255, 0.32);
}

.wave-lane {
  position: relative;
  display: grid;
  grid-template-columns: repeat(32, minmax(0, 1fr));
  align-items: center;
  gap: 0.11rem;
  overflow: hidden;
}

.wave-lane::before,
.wave-lane::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wave-lane::before {
  background:
    linear-gradient(180deg, transparent 49%, rgba(244, 241, 233, 0.18) 50%, transparent 51%),
    repeating-linear-gradient(90deg, rgba(244, 241, 233, 0.14) 0 1px, transparent 1px 3.25rem);
  opacity: 0.36;
}

.wave-lane::after {
  width: 0.14rem;
  left: 50%;
  right: auto;
  background: var(--green);
  box-shadow: 0 0 1rem rgba(143, 168, 122, 0.62);
}

.wave-lane span {
  display: block;
  width: 100%;
  height: var(--bar, 58%);
  min-height: 0.18rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(244, 241, 233, 0.42), var(--sage) 44%, var(--green) 58%, rgba(143, 168, 122, 0.36));
  box-shadow:
    0 0 0.35rem rgba(143, 168, 122, 0.22),
    0.04rem 0 rgba(111, 90, 139, 0.4);
  opacity: 0.82;
  transform-origin: center;
}

body.is-audio-playing .wave-lane span,
body.is-cueing .wave-lane span {
  animation: waveform 620ms ease-in-out infinite alternate;
}

body.is-audio-playing .wave-lane span:nth-child(3n),
body.is-cueing .wave-lane span:nth-child(3n) {
  animation-delay: 90ms;
}

body.is-audio-playing .wave-lane span:nth-child(4n),
body.is-cueing .wave-lane span:nth-child(4n) {
  animation-delay: 170ms;
}

.deck-button {
  position: relative;
  z-index: 1;
  order: 1;
  display: grid;
  gap: 0.56rem;
  align-content: center;
  justify-items: center;
  min-height: 9.2rem;
  border: 1px solid rgba(244, 241, 233, 0.12);
  border-radius: var(--radius);
  padding: 0.72rem 0.58rem;
  background:
    linear-gradient(90deg, rgba(244, 241, 233, 0.035) 0 1px, transparent 1px 5px),
    linear-gradient(180deg, rgba(28, 30, 27, 0.96), rgba(5, 6, 5, 0.98));
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-transform: uppercase;
  touch-action: none;
  transition:
    transform 130ms var(--ease),
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.play-button {
  order: 2;
}

.deck-knob {
  position: relative;
  display: grid;
  width: clamp(5.35rem, 17vw, 7.35rem);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.12), transparent 17%),
    conic-gradient(from 35deg, #050505, #1c1d1a, #050505, #2d2d29, #070807, #181916, #050505),
    #070807;
  box-shadow:
    inset 0 0 0 0.55rem rgba(0, 0, 0, 0.54),
    inset 0 0 1.2rem rgba(244, 241, 233, 0.12),
    0 1rem 1.8rem rgba(0, 0, 0, 0.42);
}

.deck-knob::before,
.deck-knob::after {
  content: "";
  position: absolute;
  inset: -0.28rem;
  border-radius: 50%;
  pointer-events: none;
}

.deck-knob::before {
  border: 0.38rem solid currentColor;
  box-shadow:
    0 0 1.25rem currentColor,
    inset 0 0 0.85rem rgba(244, 241, 233, 0.06);
  opacity: 0.9;
}

.deck-knob::after {
  inset: 0.78rem;
  background: conic-gradient(from 28deg, transparent 0 16%, rgba(244, 241, 233, 0.26) 18% 21%, transparent 23% 48%, rgba(244, 241, 233, 0.16) 50% 53%, transparent 55% 100%);
  mix-blend-mode: screen;
  opacity: 0.76;
}

.deck-label {
  position: relative;
  z-index: 2;
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.deck-label::before {
  content: attr(data-label);
}

.deck-play-icon {
  position: relative;
  z-index: 2;
  display: inline-grid;
  width: 2.35rem;
  height: 1.6rem;
}

.deck-play-icon::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.16rem;
  width: 1.05rem;
  height: 1.28rem;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: var(--ink);
}

.deck-play-icon::after {
  content: "";
  position: absolute;
  right: 0.12rem;
  top: 0.12rem;
  width: 0.28rem;
  height: 1.36rem;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: -0.46rem 0 0 var(--ink);
}

.deck-button small {
  color: rgba(244, 241, 233, 0.74);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.cue-button {
  color: var(--cue);
}

.play-button {
  color: var(--play);
}

.deck-button:hover,
.deck-button:focus-visible,
.deck-button.is-pressed,
.play-button[aria-pressed="true"] {
  border-color: rgba(244, 241, 233, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(244, 241, 233, 0.05),
    0 0 2rem color-mix(in srgb, currentColor 22%, transparent);
  transform: translateY(-2px) scale(1.01);
}

.deck-button.is-pressed,
.cue-button:active {
  transform: translateY(2px) scale(0.968);
}

.jog-display {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: none;
  min-height: 5.4rem;
  place-items: center;
  border: 1px solid rgba(244, 241, 233, 0.1);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.5);
  overflow: hidden;
}

.jog-ring,
.jog-core {
  position: absolute;
  border-radius: 50%;
}

.jog-ring {
  width: 9rem;
  aspect-ratio: 1;
  border: 1px solid rgba(143, 168, 122, 0.26);
  box-shadow:
    inset 0 0 0 1.4rem rgba(143, 168, 122, 0.035),
    0 0 2rem rgba(111, 90, 139, 0.14);
  animation: jog 7s linear infinite paused;
}

body.is-audio-playing .jog-ring,
body.is-cueing .jog-ring {
  animation-play-state: running;
}

.jog-ring::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.1rem;
  width: 0.28rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--green);
}

.jog-core {
  width: 1.1rem;
  aspect-ratio: 1;
  background: var(--sage);
  box-shadow: 0 0 1.1rem rgba(143, 168, 122, 0.72);
}

.deck-faders {
  position: relative;
  z-index: 1;
  order: 4;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.deck-faders span {
  position: relative;
  height: 1.65rem;
  border: 1px solid rgba(244, 241, 233, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(143, 168, 122, 0.14), rgba(244, 241, 233, 0.04)),
    rgba(5, 5, 5, 0.46);
}

.deck-faders i {
  position: absolute;
  top: 50%;
  left: var(--knob, 42%);
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0.8rem rgba(143, 168, 122, 0.28);
  translate: -50% -50%;
}

.deck-faders span:nth-child(2) i {
  --knob: 64%;
}

.deck-faders span:nth-child(3) i {
  --knob: 28%;
}

.deck-readout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.72rem;
  width: min(100%, 44rem);
  margin-top: 2.2rem;
}

.deck-readout span {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  min-height: 4.2rem;
  border: 1px solid rgba(143, 168, 122, 0.16);
  border-radius: var(--radius);
  padding: 0.78rem 0.86rem;
  background:
    radial-gradient(circle at 10% 10%, rgba(143, 168, 122, 0.16), transparent 7rem),
    linear-gradient(115deg, rgba(143, 168, 122, 0.09), rgba(111, 90, 139, 0.055)),
    rgba(244, 241, 233, 0.02);
  box-shadow: inset 0 0 0 1px rgba(244, 241, 233, 0.025);
  overflow: hidden;
}

.deck-readout span::before {
  content: "";
  position: absolute;
  right: 0.75rem;
  top: 0.65rem;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0.9rem rgba(143, 168, 122, 0.5);
  opacity: 0.72;
}

.deck-readout span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  translate: -120% 0;
  animation: sweep 7s ease-in-out infinite;
}

.deck-readout strong {
  color: var(--ink);
  font-family: var(--pitch);
  font-size: 2.3rem;
  line-height: 0.9;
  font-weight: 950;
  filter: drop-shadow(0.08rem 0 rgba(111, 90, 139, 0.36));
}

.deck-readout small {
  color: rgba(244, 241, 233, 0.62);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.release {
  display: grid;
  gap: 1.7rem;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 8%, rgba(143, 168, 122, 0.13), transparent 19rem),
    linear-gradient(180deg, rgba(17, 26, 19, 0.52), transparent 56%),
    linear-gradient(90deg, transparent, rgba(111, 90, 139, 0.08), transparent);
  overflow: hidden;
}

.release::before {
  content: "";
  position: absolute;
  right: var(--page-x);
  top: 7rem;
  width: min(26rem, 58vw);
  height: min(26rem, 58vw);
  border: 1px solid rgba(143, 168, 122, 0.1);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 1.2rem, rgba(143, 168, 122, 0.055) 1.24rem 1.3rem),
    radial-gradient(circle, rgba(111, 90, 139, 0.12), transparent 58%);
  opacity: 0.68;
  animation: jog 18s linear infinite;
}

.release-kicker {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  color: var(--sage);
}

.release-system {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.38rem;
  width: min(100%, 23rem);
}

.release-system span {
  display: block;
  height: 0.48rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(143, 168, 122, 0.65), rgba(111, 90, 139, 0.26));
  transform-origin: left center;
}

.release-system span:nth-child(2),
.release-system span:nth-child(4) {
  scale: 0.72 1;
  opacity: 0.72;
}

.section-title {
  margin: 0;
  font-size: clamp(2.7rem, 10vw, 7.6rem);
  line-height: 0.84;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.melt-title {
  position: relative;
  max-width: 11ch;
  filter: drop-shadow(0.12rem 0 rgba(111, 90, 139, 0.46)) drop-shadow(-0.12rem 0 rgba(143, 168, 122, 0.34));
}

.melt-title span {
  display: block;
  transform-origin: left center;
  animation: meltFloat 4.8s var(--melt) infinite;
}

.melt-title span:nth-child(2) {
  color: rgba(244, 241, 233, 0.55);
  animation-delay: 0.18s;
}

.melt-title span:nth-child(3) {
  color: var(--sage);
  animation-delay: 0.36s;
}

.melt-title::after {
  content: "";
  position: absolute;
  left: 0.08em;
  right: 0.08em;
  bottom: -0.1em;
  height: 0.12em;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--purple), transparent);
  opacity: 0.55;
  filter: blur(0.03em);
}

.release-copy {
  display: grid;
  gap: 1rem;
  max-width: 58rem;
}

.release-copy p,
.set-copy p:not(.set-name),
.legal-note p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.64;
  font-weight: 650;
}

.release-copy mark {
  border-radius: 0.18rem;
  padding: 0 0.18rem 0.08rem;
  background: rgba(143, 168, 122, 0.14);
  color: var(--sage);
  box-shadow: inset 0 -0.08rem 0 rgba(143, 168, 122, 0.35);
}

.myth {
  display: grid;
  gap: clamp(3.6rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 16%, rgba(143, 168, 122, 0.16), transparent 22rem),
    radial-gradient(circle at 86% 34%, rgba(111, 90, 139, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(5, 5, 5, 0.3), rgba(17, 26, 19, 0.42) 46%, rgba(5, 5, 5, 0.95));
}

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

.myth::before {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(244, 241, 233, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 233, 0.026) 1px, transparent 1px);
  background-size: 4.2rem 4.2rem;
  mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
  opacity: 0.66;
}

.myth::after {
  right: -11rem;
  top: 7rem;
  z-index: -1;
  width: min(80vw, 38rem);
  aspect-ratio: 1;
  border: 1px solid rgba(143, 168, 122, 0.12);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 1.05rem, rgba(143, 168, 122, 0.055) 1.1rem 1.16rem),
    radial-gradient(circle at 40% 55%, rgba(111, 90, 139, 0.16), transparent 60%);
  animation: jog 28s linear infinite;
}

.myth-hero {
  position: relative;
  display: grid;
  min-height: min(82svh, 48rem);
  place-items: center;
}

.myth-logo-field {
  position: relative;
  width: min(86vw, 38rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.myth-logo-field::before,
.myth-logo-field::after {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(143, 168, 122, 0.16);
  border-radius: 50%;
}

.myth-logo-field::before {
  background:
    repeating-radial-gradient(circle, transparent 0 1.2rem, rgba(244, 241, 233, 0.045) 1.24rem 1.3rem),
    radial-gradient(circle, rgba(143, 168, 122, 0.13), transparent 58%);
  animation: mythSigil 16s linear infinite;
}

.myth-logo-field::after {
  inset: 21%;
  border-style: dashed;
  border-color: rgba(111, 90, 139, 0.25);
  animation: mythSigil 12s linear infinite reverse;
}

.myth-logo-main,
.myth-logo-ghost {
  position: relative;
  z-index: 2;
  width: min(74vw, 31rem);
  filter:
    drop-shadow(0.22rem 0 rgba(111, 90, 139, 0.58))
    drop-shadow(-0.22rem 0 rgba(143, 168, 122, 0.42))
    drop-shadow(0 0 2rem rgba(143, 168, 122, 0.08));
}

.myth-logo-main {
  animation: mythLogoFloat 6s var(--melt) infinite;
}

.myth-logo-ghost {
  position: absolute;
  mix-blend-mode: screen;
  opacity: 0.34;
}

.myth-logo-ghost-a {
  translate: 0.62rem -0.18rem;
  filter: sepia(1) hue-rotate(216deg) saturate(0.85);
  clip-path: inset(7% 0 62% 0);
  animation: mythGhost 1.8s steps(2, end) infinite;
}

.myth-logo-ghost-b {
  translate: -0.5rem 0.2rem;
  filter: sepia(1) hue-rotate(54deg) saturate(0.75);
  clip-path: inset(56% 0 10% 0);
  animation: mythGhost 2.2s steps(2, end) infinite reverse;
}

.myth-seal {
  position: absolute;
  right: min(8vw, 5rem);
  bottom: min(7vw, 4rem);
  z-index: 3;
  display: grid;
  width: clamp(5.8rem, 14vw, 9.4rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(244, 241, 233, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 26%, rgba(244, 241, 233, 0.94), rgba(184, 198, 160, 0.86) 54%, rgba(143, 168, 122, 0.55));
  box-shadow:
    0 1.4rem 3rem rgba(0, 0, 0, 0.42),
    0 0 2.4rem rgba(143, 168, 122, 0.18);
  transform: rotate(-6deg);
}

.myth-seal img {
  width: 72%;
  filter: drop-shadow(0.12rem 0 rgba(111, 90, 139, 0.28));
}

.myth-text {
  position: relative;
  max-width: 61rem;
}

.myth-text p {
  margin: 0;
  color: rgba(244, 241, 233, 0.75);
  font-size: clamp(1.34rem, 3vw, 2.72rem);
  line-height: 1.14;
  font-weight: 850;
  text-transform: none;
  text-wrap: balance;
  filter:
    drop-shadow(0.08rem 0 rgba(111, 90, 139, 0.25))
    drop-shadow(-0.06rem 0 rgba(143, 168, 122, 0.18));
}

.myth-text::before {
  content: "";
  display: block;
  width: min(11rem, 42vw);
  height: 0.36rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), rgba(111, 90, 139, 0.48), transparent);
  opacity: 0.72;
}

.myth-text-right {
  margin-left: auto;
  text-align: right;
}

.myth-text-right::before {
  margin-left: auto;
  background: linear-gradient(270deg, var(--green), rgba(111, 90, 139, 0.48), transparent);
}

.myth-text-wide p,
.myth-text-final p {
  max-width: 74rem;
  font-size: clamp(1.3rem, 2.55vw, 2.38rem);
}

.myth-text-challenge {
  margin-left: min(8vw, 8rem);
}

.myth-text-challenge p {
  max-width: 55rem;
  color: rgba(184, 198, 160, 0.84);
}

.set-chapter.myth-video-chapter {
  min-height: 92svh;
  grid-template-columns: 1fr;
  place-items: center;
  border-top: 0;
  padding: 0;
}

.myth-video-chapter::before {
  inset-inline: calc(var(--page-x) * -1);
  background:
    linear-gradient(90deg, transparent, rgba(244, 241, 233, 0.12), rgba(143, 168, 122, 0.46), rgba(111, 90, 139, 0.38), transparent);
}

.video-stage-portrait.myth-video-stage {
  width: min(100%, 24rem);
}

.myth-video-stage .video-frame {
  cursor: default;
  border-color: rgba(244, 241, 233, 0.16);
  transform: rotate(-1.2deg) translateZ(0);
}

.myth-video-chapter-alt .video-frame {
  transform: rotate(1.2deg) translateZ(0);
}

.myth-video-stage .video-orbit {
  inset: -1.6rem;
  border-radius: 50% 42% 48% 52%;
  background:
    radial-gradient(circle at 26% 24%, rgba(244, 241, 233, 0.08), transparent 10rem),
    radial-gradient(circle at 84% 76%, rgba(111, 90, 139, 0.25), transparent 14rem),
    repeating-radial-gradient(circle, transparent 0 1.1rem, rgba(143, 168, 122, 0.07) 1.15rem 1.2rem);
  filter: blur(0.02rem);
}

.myth-video-stage .set-video {
  aspect-ratio: 384 / 832;
  filter: saturate(0.92) contrast(1.22) brightness(0.84);
}

.myth-phone-scene {
  position: relative;
  display: grid;
  min-height: min(92svh, 58rem);
  place-items: center;
  overflow: visible;
}

.myth-phone-scene::before {
  content: "";
  position: absolute;
  inset: 7% 8%;
  z-index: -1;
  border: 1px solid rgba(143, 168, 122, 0.12);
  background:
    linear-gradient(rgba(244, 241, 233, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 233, 0.036) 1px, transparent 1px);
  background-size: 2.9rem 2.9rem;
  transform: skew(-2deg);
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}

.myth-phone {
  width: min(88vw, 41rem);
  filter:
    drop-shadow(0.48rem 0 rgba(111, 90, 139, 0.18))
    drop-shadow(-0.42rem 0 rgba(143, 168, 122, 0.16))
    drop-shadow(0 2rem 4rem rgba(0, 0, 0, 0.45));
  animation: mythPhoneFloat 7.4s var(--melt) infinite;
}

.myth-phone-signal {
  position: absolute;
  inset: auto auto 12% 8%;
  display: grid;
  gap: 0.34rem;
  width: min(32vw, 12rem);
}

.myth-phone-signal span {
  display: block;
  height: 0.32rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(143, 168, 122, 0.78), rgba(111, 90, 139, 0.22), transparent);
  transform-origin: left center;
  animation: mythSignal 1.6s ease-in-out infinite alternate;
}

.myth-phone-signal span:nth-child(2) {
  width: 76%;
  animation-delay: 120ms;
}

.myth-phone-signal span:nth-child(3) {
  width: 54%;
  animation-delay: 240ms;
}

.myth-phone-signal span:nth-child(4) {
  width: 88%;
  animation-delay: 360ms;
}

.myth-text-final {
  margin: 0 auto;
  text-align: center;
}

.myth-text-final::before {
  margin-inline: auto;
}

.setlist {
  position: relative;
  z-index: 1;
}

.set-chapter {
  position: relative;
  min-height: 112svh;
  display: grid;
  align-items: center;
  gap: 2rem;
  padding: 4.8rem var(--page-x);
  border-top: 1px solid rgba(244, 241, 233, 0.1);
  isolation: isolate;
}

.set-chapter::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 168, 122, 0.56), rgba(111, 90, 139, 0.5), transparent);
}

.set-copy {
  max-width: 42rem;
  min-width: 0;
}

.set-name {
  position: relative;
  margin: 0 0 1rem;
  color: var(--green-dark);
  font-family: var(--pitch);
  font-size: clamp(2.25rem, 9vw, 5.6rem);
  line-height: 0.88;
  font-weight: 950;
  text-transform: uppercase;
  max-width: 100%;
  overflow-wrap: break-word;
  text-wrap: balance;
  -webkit-text-stroke: 1px rgba(184, 198, 160, 0.58);
  text-shadow:
    0.08em 0 rgba(111, 90, 139, 0.28),
    -0.06em 0 rgba(143, 168, 122, 0.24),
    0 0 1.2rem rgba(143, 168, 122, 0.08);
  filter: drop-shadow(0.08rem 0 rgba(111, 90, 139, 0.32));
}

.play-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  min-height: 3.1rem;
  margin-top: 1.25rem;
  border: 1px solid rgba(143, 168, 122, 0.38);
  border-radius: 999px;
  padding: 0 1rem;
  background: rgba(143, 168, 122, 0.1);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  touch-action: manipulation;
  transition:
    transform 180ms var(--ease),
    border-color 180ms ease,
    filter 180ms ease,
    background 180ms ease;
}

.play-link:hover,
.final-cta:hover {
  border-color: rgba(244, 241, 233, 0.45);
  filter: drop-shadow(0.18rem 0 rgba(111, 90, 139, 0.44)) drop-shadow(-0.18rem 0 rgba(143, 168, 122, 0.32));
  transform: translateY(-2px);
}

.play-icon {
  width: 0.75rem;
  height: 0.75rem;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: var(--green);
}

.video-stage {
  position: relative;
  justify-self: center;
  width: min(100%, 62rem);
}

.video-stage-portrait {
  width: min(100%, 36rem);
}

.video-orbit {
  position: absolute;
  inset: -1.2rem;
  z-index: -1;
  border: 1px solid rgba(143, 168, 122, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--orb-x, 20%) var(--orb-y, 20%), rgba(143, 168, 122, 0.22), transparent 13rem),
    radial-gradient(circle at 80% 80%, rgba(111, 90, 139, 0.22), transparent 14rem),
    linear-gradient(120deg, rgba(244, 241, 233, 0.045), transparent);
  filter: blur(0.1rem);
  transform: skew(-2deg);
}

.video-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(143, 168, 122, 0.17);
  border-radius: var(--radius);
  background: #070807;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  touch-action: manipulation;
  box-shadow:
    0.72rem 0.72rem 0 rgba(111, 90, 139, 0.12),
    -0.62rem -0.62rem 0 rgba(143, 168, 122, 0.1),
    0 2rem 5rem rgba(0, 0, 0, 0.4);
  transform: translateZ(0);
  backface-visibility: hidden;
  contain: layout paint style;
}

.video-frame:focus-visible {
  outline: 2px solid rgba(143, 168, 122, 0.72);
  outline-offset: 0.35rem;
}

.video-frame::before,
.video-frame::after,
.video-chroma {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.video-frame::before {
  z-index: 4;
  background:
    linear-gradient(90deg, rgba(111, 90, 139, 0.2), transparent 16%, transparent 84%, rgba(143, 168, 122, 0.18)),
    repeating-linear-gradient(180deg, transparent 0 11px, rgba(255, 255, 255, 0.09) 12px);
  mix-blend-mode: screen;
  opacity: 0.58;
}

.video-frame::after {
  z-index: 5;
  border: 1px solid rgba(143, 168, 122, 0.22);
  transform: translate(var(--glitch-x, 0), var(--glitch-y, 0));
  clip-path: inset(var(--clip-top, 8%) 0 var(--clip-bottom, 74%) 0);
  background: rgba(143, 168, 122, 0.09);
  mix-blend-mode: screen;
}

.set-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.18) brightness(0.86);
  transform: scale(1.012);
  background: #050505;
  transition:
    filter 380ms ease,
    transform 520ms var(--ease);
}

.video-stage-portrait .set-video {
  aspect-ratio: 4 / 5;
}

.video-chroma {
  z-index: 3;
  box-shadow:
    inset 0.28rem 0 rgba(111, 90, 139, 0.22),
    inset -0.28rem 0 rgba(143, 168, 122, 0.2);
  mix-blend-mode: screen;
}

.video-hud {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: calc(100% - 1.5rem);
  border: 1px solid rgba(244, 241, 233, 0.14);
  border-radius: 999px;
  padding: 0.48rem 0.68rem;
  background: rgba(5, 5, 5, 0.68);
  color: rgba(244, 241, 233, 0.82);
}

.video-hud::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--green);
}

.video-unmute {
  position: absolute;
  top: 0.72rem;
  right: 0.72rem;
  z-index: 12;
  display: none;
  align-items: center;
  gap: 0.42rem;
  min-height: 2.65rem;
  border: 1px solid rgba(244, 241, 233, 0.18);
  border-radius: 999px;
  padding: 0 0.72rem;
  background:
    radial-gradient(circle at 72% 18%, rgba(143, 168, 122, 0.2), transparent 4rem),
    rgba(5, 5, 5, 0.72);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
  touch-action: manipulation;
  backdrop-filter: blur(14px);
  box-shadow:
    0 0.8rem 1.6rem rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(244, 241, 233, 0.04);
}

.speaker-icon {
  position: relative;
  display: inline-block;
  width: 1.05rem;
  height: 1rem;
}

.speaker-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28rem;
  width: 0.38rem;
  height: 0.46rem;
  border-radius: 0.08rem;
  background: currentColor;
  box-shadow: 0.32rem 0 0 -0.02rem currentColor;
}

.speaker-icon::after {
  content: "";
  position: absolute;
  right: 0.02rem;
  top: 0.12rem;
  width: 0.48rem;
  height: 0.78rem;
  border: 0.14rem solid currentColor;
  border-left: 0;
  border-radius: 0 999px 999px 0;
}

.video-unmute[aria-pressed="true"] {
  border-color: rgba(143, 168, 122, 0.64);
  background:
    radial-gradient(circle at 70% 20%, rgba(143, 168, 122, 0.32), transparent 4.5rem),
    rgba(12, 18, 12, 0.88);
  color: var(--green);
  box-shadow:
    0 0 1.35rem rgba(143, 168, 122, 0.2),
    0 0.8rem 1.6rem rgba(0, 0, 0, 0.36);
}

.video-unmute[aria-pressed="true"] .video-unmute-text {
  color: var(--green);
}

.set-chapter.is-active .video-orbit {
  animation: orbitDrift 5s var(--melt) infinite;
}

.set-chapter.is-active .video-frame {
  border-color: rgba(143, 168, 122, 0.44);
}

.set-chapter.is-active .video-frame::after {
  animation: videoSlice 1.35s steps(2, end) infinite;
}

.set-chapter.is-active .set-video {
  filter: saturate(1.02) contrast(1.22) brightness(0.93);
  transform: scale(1.026) translate3d(0, -0.18rem, 0);
}

.set-chapter.is-active .video-chroma {
  animation: chromaPulse 1.8s steps(2, end) infinite;
}

.booking {
  min-height: 100svh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1.1rem;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.booking .reveal {
  opacity: 1;
  transform: none;
}

.booking::before {
  content: "";
  position: absolute;
  inset: 7rem var(--page-x);
  z-index: -1;
  border: 1px solid rgba(143, 168, 122, 0.14);
  background:
    linear-gradient(rgba(244, 241, 233, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 233, 0.028) 1px, transparent 1px);
  background-size: 2.8rem 2.8rem;
  transform: skewY(-2deg);
}

.booking-orbit {
  position: absolute;
  width: min(74vw, 34rem);
  aspect-ratio: 1;
  border: 1px solid rgba(143, 168, 122, 0.1);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 1.4rem, rgba(143, 168, 122, 0.06) 1.45rem 1.52rem),
    radial-gradient(circle at 62% 38%, rgba(111, 90, 139, 0.14), transparent 58%);
  opacity: 0.72;
  animation: jog 22s linear infinite reverse;
}

.booking-logo {
  position: relative;
  z-index: 1;
  width: min(68vw, 25rem);
  margin-bottom: 0.7rem;
  opacity: 0.82;
  filter: drop-shadow(0.2rem 0 rgba(111, 90, 139, 0.6)) drop-shadow(-0.2rem 0 rgba(143, 168, 122, 0.45));
  animation: bookingFloat 6s var(--melt) infinite;
}

.booking-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
  max-width: 34rem;
}

.booking-copy .eyebrow {
  margin: 0;
}

.booking-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(244, 241, 233, 0.68);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 700;
}

.final-cta {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 25rem);
  min-height: 5.1rem;
  place-items: center;
  border: 1px solid rgba(143, 168, 122, 0.34);
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  background:
    radial-gradient(circle at 80% 10%, rgba(143, 168, 122, 0.26), transparent 11rem),
    linear-gradient(115deg, rgba(33, 51, 34, 0.98), rgba(14, 24, 16, 0.96)),
    rgba(244, 241, 233, 0.025);
  box-shadow:
    0.42rem 0.42rem 0 rgba(111, 90, 139, 0.12),
    -0.34rem -0.34rem 0 rgba(143, 168, 122, 0.1),
    inset 0 0 0 1px rgba(244, 241, 233, 0.055),
    0 0 2rem rgba(143, 168, 122, 0.1);
  overflow: hidden;
  transition:
    transform 180ms var(--ease),
    border-color 180ms ease,
    filter 180ms ease,
    background 180ms ease;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(244, 241, 233, 0.08), transparent),
    repeating-linear-gradient(0deg, transparent 0 8px, rgba(244, 241, 233, 0.05) 9px);
  translate: -120% 0;
  opacity: 0.72;
  animation: sweep 5.4s ease-in-out infinite;
}

.final-cta strong {
  position: relative;
  color: rgba(10, 18, 10, 0.9);
  font-family: var(--pitch);
  font-size: clamp(2.35rem, 8vw, 4.6rem);
  line-height: 0.82;
  font-weight: 950;
  text-transform: uppercase;
  -webkit-text-stroke: 1.45px rgba(184, 198, 160, 0.42);
  text-shadow:
    0 0 0.08em rgba(184, 198, 160, 0.32),
    0.04em 0 rgba(111, 90, 139, 0.34),
    -0.04em 0 rgba(143, 168, 122, 0.36);
}

.final-cta strong::before,
.final-cta strong::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0;
}

.final-cta strong::before {
  color: var(--green);
  translate: 0.06em 0;
}

.final-cta strong::after {
  color: var(--purple);
  translate: -0.06em 0;
}

.final-cta:hover strong::before,
.final-cta:hover strong::after {
  opacity: 0.7;
  animation: titleGlitch 450ms steps(2, end) infinite;
}

.booking-avatar-easter {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(6rem, 12vw, 9.5rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(143, 168, 122, 0.28);
  border-radius: 50%;
  padding: 0.34rem;
  background:
    radial-gradient(circle at 50% 20%, rgba(244, 241, 233, 0.08), transparent 52%),
    rgba(5, 5, 5, 0.58);
  cursor: pointer;
  overflow: hidden;
  touch-action: manipulation;
  box-shadow:
    0 1rem 2.4rem rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(244, 241, 233, 0.045);
}

.booking-avatar-easter img,
.avatar-easter-copy {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.booking-avatar-easter img {
  position: relative;
  z-index: 2;
  filter: grayscale(1) contrast(1.16) brightness(0.96);
  transition:
    filter 220ms ease,
    transform 220ms var(--ease),
    border-radius 220ms ease;
}

.avatar-easter-copy {
  position: absolute;
  inset: 0.34rem;
  z-index: 1;
  background: url("assets/images/avatar-original.jpg") center / cover;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.booking-avatar-easter[data-egg-state="chroma"] {
  border-color: rgba(143, 168, 122, 0.6);
  box-shadow:
    0 0 1.8rem rgba(143, 168, 122, 0.22),
    0.45rem 0 rgba(111, 90, 139, 0.18),
    -0.45rem 0 rgba(143, 168, 122, 0.16);
}

.booking-avatar-easter[data-egg-state="chroma"] img {
  filter:
    grayscale(1)
    contrast(1.2)
    drop-shadow(0.22rem 0 rgba(111, 90, 139, 0.72))
    drop-shadow(-0.22rem 0 rgba(143, 168, 122, 0.58));
  animation: avatarEggChroma 1.4s steps(2, end) infinite;
}

.booking-avatar-easter[data-egg-state="glitch"] .avatar-easter-copy {
  opacity: 0.72;
}

.booking-avatar-easter[data-egg-state="glitch"] .avatar-easter-copy-a {
  z-index: 3;
  translate: 0.22rem -0.08rem;
  filter: hue-rotate(230deg) saturate(1.4);
  clip-path: inset(12% 0 62% 0);
  animation: avatarEggGlitch 520ms steps(2, end) infinite;
}

.booking-avatar-easter[data-egg-state="glitch"] .avatar-easter-copy-b {
  z-index: 4;
  translate: -0.2rem 0.08rem;
  filter: hue-rotate(76deg) saturate(1.25);
  clip-path: inset(58% 0 12% 0);
  animation: avatarEggGlitch 430ms steps(2, end) infinite reverse;
}

.booking-avatar-easter[data-egg-state="melt"] {
  border-radius: 42% 58% 54% 46%;
}

.booking-avatar-easter[data-egg-state="melt"] img {
  border-radius: 42% 58% 54% 46%;
  filter:
    grayscale(0.75)
    contrast(1.2)
    hue-rotate(55deg)
    saturate(1.18)
    drop-shadow(0 0 1.2rem rgba(143, 168, 122, 0.22));
  animation: avatarEggMelt 1.8s var(--melt) infinite;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.2rem;
  border-top: 1px solid var(--line);
  padding: 1.6rem var(--page-x);
  color: rgba(244, 241, 233, 0.58);
}

.legal-note {
  max-width: 58rem;
}

.legal-note p {
  font-size: 0.76rem;
  line-height: 1.55;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-base a {
  position: relative;
  width: fit-content;
  color: #9bbf5d;
  text-shadow:
    0 0 0.8rem rgba(155, 191, 93, 0.32),
    0.08em 0 rgba(111, 90, 139, 0.38),
    -0.06em 0 rgba(143, 168, 122, 0.32);
}

.footer-base a::before,
.footer-base a::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}

.footer-base a::before {
  color: #b3ea72;
  translate: 0.08em 0;
}

.footer-base a::after {
  color: var(--purple);
  translate: -0.08em 0;
}

.footer-base a:hover::before,
.footer-base a:hover::after {
  opacity: 0.78;
  animation: titleGlitch 390ms steps(2, end) infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(1.6rem);
  transition:
    opacity 720ms var(--ease),
    transform 720ms var(--ease);
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

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

@keyframes meter {
  to {
    transform: scaleY(0.42);
  }
}

@keyframes waveform {
  to {
    transform: scaleY(0.48);
    opacity: 0.42;
  }
}

@keyframes jog {
  to {
    rotate: 360deg;
  }
}

@keyframes avatarLowEnd {
  0%,
  100% {
    transform: skew(-2deg) translate3d(0, 0, 0);
  }

  50% {
    transform: skew(-1deg) translate3d(0.12rem, -0.18rem, 0);
  }
}

@keyframes avatarWave {
  0% {
    opacity: 0.55;
    transform: scale(0.82);
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes avatarEggChroma {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0.08rem, -0.08rem, 0) skew(-1deg);
  }
}

@keyframes avatarEggGlitch {
  0% {
    clip-path: inset(9% 0 68% 0);
  }

  45% {
    clip-path: inset(42% 0 29% 0);
  }

  100% {
    clip-path: inset(72% 0 8% 0);
  }
}

@keyframes avatarEggMelt {
  0%,
  100% {
    border-radius: 42% 58% 54% 46%;
    transform: translate3d(0, 0, 0) skewY(0);
  }

  46% {
    border-radius: 54% 46% 42% 58%;
    transform: translate3d(0.06rem, 0.24rem, 0) skewY(-3deg) scaleY(1.06);
  }

  72% {
    border-radius: 48% 52% 60% 40%;
    transform: translate3d(-0.04rem, 0.14rem, 0) skewY(2deg) scaleX(1.04);
  }
}

@keyframes sweep {
  0%,
  35% {
    translate: -120% 0;
  }

  72%,
  100% {
    translate: 120% 0;
  }
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) skew(0deg);
  }

  50% {
    transform: translate3d(0.4rem, -0.55rem, 0) skew(-1deg);
  }
}

@keyframes meltFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) skewY(0);
    filter: blur(0);
  }

  44% {
    transform: translate3d(0.05em, 0.045em, 0) skewY(-1.8deg);
    filter: blur(0.005em);
  }

  68% {
    transform: translate3d(-0.025em, 0.08em, 0) skewY(1deg);
  }
}

@keyframes videoSlice {
  0% {
    --glitch-x: 0;
    --glitch-y: 0;
    --clip-top: 8%;
    --clip-bottom: 74%;
  }

  25% {
    --glitch-x: 0.55rem;
    --glitch-y: -0.08rem;
    --clip-top: 28%;
    --clip-bottom: 47%;
  }

  58% {
    --glitch-x: -0.42rem;
    --glitch-y: 0.08rem;
    --clip-top: 55%;
    --clip-bottom: 16%;
  }

  100% {
    --glitch-x: 0;
    --glitch-y: 0;
    --clip-top: 12%;
    --clip-bottom: 70%;
  }
}

@keyframes chromaPulse {
  0%,
  100% {
    box-shadow:
      inset 0.28rem 0 rgba(111, 90, 139, 0.22),
      inset -0.28rem 0 rgba(143, 168, 122, 0.2);
  }

  50% {
    box-shadow:
      inset 0.62rem 0 rgba(111, 90, 139, 0.32),
      inset -0.58rem 0 rgba(143, 168, 122, 0.32);
  }
}

@keyframes orbitDrift {
  0%,
  100% {
    --orb-x: 18%;
    --orb-y: 20%;
    transform: skew(-2deg) translate3d(0, 0, 0);
  }

  50% {
    --orb-x: 78%;
    --orb-y: 62%;
    transform: skew(1deg) translate3d(0.35rem, -0.28rem, 0);
  }
}

@keyframes bookingFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0.35rem, -0.7rem, 0);
  }
}

@keyframes mythSigil {
  to {
    transform: rotate(360deg);
  }
}

@keyframes mythLogoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) skewY(0);
  }

  46% {
    transform: translate3d(0.22rem, -0.42rem, 0) skewY(-1deg);
  }

  72% {
    transform: translate3d(-0.18rem, 0.18rem, 0) skewY(0.7deg);
  }
}

@keyframes mythGhost {
  0%,
  100% {
    opacity: 0.2;
    transform: translate3d(0, 0, 0);
  }

  48% {
    opacity: 0.5;
    transform: translate3d(0.16rem, -0.08rem, 0);
  }
}

@keyframes mythPhoneFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.8deg);
  }

  50% {
    transform: translate3d(0.35rem, -0.65rem, 0) rotate(0.7deg);
  }
}

@keyframes mythSignal {
  to {
    transform: scaleX(0.42);
    opacity: 0.42;
  }
}

@keyframes titleGlitch {
  0% {
    clip-path: inset(0 0 72% 0);
  }

  45% {
    clip-path: inset(36% 0 28% 0);
  }

  100% {
    clip-path: inset(76% 0 0 0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .video-frame:hover::after {
    animation: videoSlice 1s steps(2, end) infinite;
  }
}

@media (min-width: 700px) {
  :root {
    --page-x: 2rem;
    --section-y: 7rem;
  }

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

  .nav-links {
    display: flex;
    gap: 1.25rem;
    color: rgba(244, 241, 233, 0.64);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .nav-links a:hover {
    color: var(--sage);
  }

  .sound-state {
    grid-column: 3;
  }

  .hero-avatar {
    top: auto;
    right: var(--page-x);
    bottom: 10.2rem;
    width: 13.5rem;
  }

  .hero-console {
    padding-top: 0;
  }

  .cdj-panel {
    grid-template-columns: minmax(8rem, 0.18fr) minmax(8rem, 0.18fr) minmax(0, 1fr);
    align-items: stretch;
    width: min(100%, 48rem);
  }

  .deck-waveform {
    grid-column: auto;
    min-height: 9.2rem;
  }

  .deck-faders {
    grid-column: 1 / -1;
  }

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

  .release-copy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: start;
  }

  .myth {
    padding-block: 7rem;
  }

  .myth-text-right {
    max-width: 56rem;
  }

  .video-stage-portrait.myth-video-stage {
    width: min(100%, 25.5rem);
  }

  .myth-phone-scene {
    min-height: min(96svh, 64rem);
  }

  .set-chapter {
    grid-template-columns: minmax(18rem, 0.43fr) minmax(0, 1.08fr);
    gap: 3.2rem;
    padding-block: 7rem;
  }

  .set-copy {
    max-width: 46rem;
  }

  .set-chapter-reverse .set-copy {
    max-width: min(100%, 58rem);
  }

  .set-name {
    font-size: clamp(4.55rem, 6.25vw, 6.15rem);
  }

  .set-chapter:nth-child(2) .set-name {
    font-size: clamp(4.8rem, 6.15vw, 5.9rem);
  }

  .set-chapter:nth-child(3) .set-name {
    font-size: clamp(5.3rem, 7.2vw, 6.6rem);
  }

  .set-chapter:nth-child(4) .set-name {
    font-size: clamp(5rem, 6.8vw, 6.35rem);
  }

  .set-chapter:nth-child(5) .set-name {
    font-size: clamp(4.75rem, 6.05vw, 5.85rem);
  }

  .set-chapter-reverse .set-copy {
    order: 2;
  }

  .set-chapter-reverse .video-stage {
    order: 1;
  }

  .site-footer {
    padding-block: 2rem;
  }
}

@media (min-width: 1100px) {
  :root {
    --page-x: 3rem;
  }

  .hero-logo-stack {
    top: 5.4rem;
    width: min(61vw, 62rem);
    opacity: 0.22;
  }

  .hero-avatar {
    width: 15.4rem;
  }

  .release-copy p,
  .set-copy p:not(.set-name) {
    font-size: 1.08rem;
  }

  .myth-text p {
    font-size: clamp(1.55rem, 2.45vw, 2.92rem);
  }

  .myth-logo-field {
    width: min(66vw, 42rem);
  }

  .myth-phone {
    width: min(66vw, 44rem);
  }

  .video-stage-portrait.myth-video-stage {
    width: min(100%, 27rem);
  }
}

@media (max-width: 699px) {
  .cdj-panel {
    gap: 0.72rem;
    padding: 0.88rem;
  }

  .deck-faders {
    display: none;
  }

  .deck-button {
    min-height: 7.6rem;
  }

  .deck-knob {
    width: min(31vw, 6.2rem);
  }

  .deck-waveform {
    grid-template-columns: 3.2rem minmax(0, 1fr);
    min-height: 4.85rem;
  }

  .wave-lane {
    gap: 0.08rem;
  }

  .video-unmute {
    display: inline-flex;
  }

  .section-title {
    font-size: 2.5rem;
    line-height: 0.9;
  }

  .melt-title {
    max-width: 100%;
  }

  .melt-title span:nth-child(3) {
    font-size: 0.88em;
  }

  .myth {
    gap: 3.35rem;
    padding-block: 4.8rem;
  }

  .myth::after {
    right: -16rem;
    top: 6rem;
  }

  .myth-hero {
    min-height: 62svh;
  }

  .myth-logo-field {
    width: min(92vw, 28rem);
  }

  .myth-logo-main,
  .myth-logo-ghost {
    width: min(78vw, 23rem);
  }

  .myth-seal {
    right: 0.65rem;
    bottom: 1.1rem;
    width: 5.8rem;
  }

  .myth-text,
  .myth-text-right,
  .myth-text-wide,
  .myth-text-challenge,
  .myth-text-final {
    max-width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .myth-text p,
  .myth-text-wide p,
  .myth-text-final p {
    font-size: 1.26rem;
    line-height: 1.25;
    text-wrap: pretty;
  }

  .myth-text-right::before,
  .myth-text-final::before {
    margin-left: 0;
    margin-inline: 0;
    background: linear-gradient(90deg, var(--green), rgba(111, 90, 139, 0.48), transparent);
  }

  .set-chapter.myth-video-chapter {
    min-height: 84svh;
    padding-block: 0.5rem;
  }

  .myth-video-stage .video-frame,
  .myth-video-chapter-alt .video-frame {
    transform: translateZ(0);
  }

  .video-stage-portrait.myth-video-stage {
    width: min(calc(100vw - var(--page-x) * 2), 24rem);
  }

  .myth-phone-scene {
    min-height: 68svh;
  }

  .myth-phone-scene::before {
    inset: 8% 0;
  }

  .myth-phone {
    width: min(104vw, 31rem);
  }

  .myth-phone-signal {
    left: 0.2rem;
    bottom: 7%;
  }

  .hero-logo-stack {
    left: 50%;
    width: min(calc(100vw - 2rem), 34rem);
  }

  .hero-logo-stack img:nth-child(2) {
    transform: translate(-0.24rem, 0.18rem);
  }

  .hero-logo-stack img:nth-child(3) {
    transform: translate(0.24rem, 0.05rem);
  }

  .sound-state {
    width: 3rem;
    height: 3rem;
    justify-content: center;
    padding: 0;
    border-color: rgba(143, 168, 122, 0.55);
    background: rgba(18, 25, 18, 0.92);
    box-shadow: 0 0 1.3rem rgba(143, 168, 122, 0.16);
  }

  .sound-state span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .set-chapter {
    min-height: auto;
    padding-block: 4.6rem;
  }

  .video-stage {
    overflow: clip;
    width: calc(100vw - var(--page-x) * 2);
  }

  .video-orbit {
    inset: -0.45rem;
  }

  .video-stage-portrait {
    width: min(calc(100vw - var(--page-x) * 2), 28rem);
  }

  .set-video {
    min-height: min(62svh, 34rem);
    transform: scale(1.006);
  }

  .video-stage-portrait .set-video {
    min-height: min(72svh, 38rem);
  }

  .video-frame::before {
    opacity: 0.42;
  }

  .video-chroma {
    opacity: 0.72;
  }

  .set-chapter.is-active .video-orbit {
    animation-duration: 7.5s;
  }

  .set-chapter.is-active .video-frame::after {
    animation: videoSlice 2.2s steps(2, end) infinite;
    opacity: 0.72;
  }

  .set-chapter.is-active .set-video {
    transform: scale(1.012) translate3d(0, -0.08rem, 0);
  }

  .set-chapter.is-active .video-chroma {
    animation-duration: 2.8s;
  }

  .booking {
    min-height: auto;
    align-content: center;
    gap: 0.82rem;
    padding-block: 4.8rem 1.15rem;
  }

  .booking::before {
    inset: 3.8rem var(--page-x) 0.75rem;
  }

  .booking-logo {
    width: min(74vw, 20rem);
    margin-bottom: 0.2rem;
  }

  .booking-copy p:not(.eyebrow) {
    font-size: 0.92rem;
  }

  .final-cta {
    width: min(78vw, 18.75rem);
    min-height: 3.85rem;
    margin-top: 1rem;
    padding: 0.54rem 1rem;
    box-shadow:
      0.26rem 0.26rem 0 rgba(111, 90, 139, 0.12),
      -0.22rem -0.22rem 0 rgba(143, 168, 122, 0.1),
      inset 0 0 0 1px rgba(244, 241, 233, 0.055),
      0 0 1.35rem rgba(143, 168, 122, 0.1);
  }

  .final-cta strong {
    font-size: 2.12rem;
    -webkit-text-stroke-width: 1px;
  }

  .booking-avatar-easter {
    width: min(33vw, 7.625rem);
    margin-top: 1.1rem;
    padding: 0.29rem;
    box-shadow:
      0 1.4rem 3rem rgba(0, 0, 0, 0.38),
      0 0 2.8rem rgba(143, 168, 122, 0.13),
      inset 0 0 0 1px rgba(244, 241, 233, 0.045);
  }

  .avatar-easter-copy {
    inset: 0.29rem;
  }

  .site-footer {
    text-align: center;
    place-items: center;
    gap: 0.95rem;
    padding-block: 1.1rem 1.45rem;
  }

  .legal-note {
    max-width: 30rem;
    margin-inline: auto;
  }

  .footer-base {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.55rem;
  }
}

@media (max-width: 420px) {
  .deck-button {
    min-height: 7.1rem;
  }

  .set-name {
    font-size: 2.14rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .final-cta strong {
    font-size: 1.86rem;
  }

  .legal-note p {
    font-size: 0.68rem;
  }
}

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

  .cursor-light {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
