:root {
  --ink: #050507;
  --ink-2: #0a0a0e;
  --ink-3: #111117;
  --paper: #f4f2ec;
  --paper-2: #e7e4dc;
  --white: #fbfbf8;
  --muted: #a5a5ad;
  --muted-2: #72727c;
  --line: rgba(255,255,255,.14);
  --line-strong: rgba(255,255,255,.28);
  --dark-line: rgba(5,5,7,.14);
  --violet: #9384ff;
  --violet-soft: #b8afff;
  --chrome: linear-gradient(115deg, #686871 0%, #ffffff 18%, #9d9da5 37%, #f8f8f8 53%, #73737c 72%, #ffffff 88%, #8f8f99 100%);
  --display: "Bodoni Moda", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --max: 1320px;
  --pad: clamp(20px, 4.8vw, 72px);
  --ease: cubic-bezier(.2,.78,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --header-h: 82px;
  --stage-rx: 0deg;
  --stage-ry: 0deg;
  --stage-y: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open,
body.modal-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
svg { display: block; width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
::selection { color: var(--ink); background: var(--white); }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 5000;
  transform: translateY(-180%);
  padding: 12px 16px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.container { width: min(var(--max), calc(100% - (var(--pad) * 2))); margin-inline: auto; }
.section-dark { position: relative; background: transparent; color: var(--white); }
.section-light { position: relative; background: var(--paper); color: var(--ink); }

/* ambient world */
.world-canvas {
  position: fixed;
  inset: 0;
  z-index: -5;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: #050507;
}
.ambient {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 20%, rgba(134,116,255,.13), transparent 27%),
    radial-gradient(circle at 18% 78%, rgba(255,255,255,.055), transparent 31%),
    linear-gradient(180deg, transparent 0%, rgba(5,5,7,.58) 48%, rgba(5,5,7,.92) 100%);
}
.grain {
  position: fixed;
  inset: -50%;
  z-index: 4000;
  opacity: .045;
  pointer-events: none;
  background: url("../images/noise.png") repeat;
  animation: grainShift .22s steps(2) infinite;
  mix-blend-mode: screen;
}
@keyframes grainShift {
  0% { transform: translate3d(0,0,0); }
  25% { transform: translate3d(3%, -4%, 0); }
  50% { transform: translate3d(-4%, 2%, 0); }
  75% { transform: translate3d(2%, 5%, 0); }
  100% { transform: translate3d(-2%, -3%, 0); }
}
.cursor-aura {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  pointer-events: none;
  opacity: .12;
  background: radial-gradient(circle, rgba(147,132,255,.72), rgba(147,132,255,.12) 38%, transparent 69%);
  filter: blur(24px);
  transform: translate3d(-50%, -50%, 0);
  mix-blend-mode: screen;
  will-change: left, top;
}
.scroll-progress {
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), #fff, var(--violet));
  box-shadow: 0 0 20px rgba(147,132,255,.75);
}

/* boot */
.boot {
  position: fixed;
  inset: 0;
  z-index: 6000;
  display: grid;
  place-items: center;
  background: #020203;
  opacity: 1;
  visibility: visible;
  transition: opacity .75s var(--ease), visibility .75s var(--ease);
}
.boot.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.boot__inner { width: min(320px, 72vw); text-align: center; }
.boot__mark {
  width: 92px;
  margin: 0 auto 28px;
  opacity: 0;
  transform: scale(.78) rotate(-5deg);
  animation: bootMark 1s var(--ease-out) .08s forwards;
}
.boot__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  color: rgba(255,255,255,.58);
  opacity: 0;
  animation: fadeUp .6s var(--ease-out) .25s forwards;
}
.boot__track {
  height: 1px;
  margin-top: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.12);
}
.boot__track span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #fff, var(--violet));
  transform-origin: left;
  transform: scaleX(0);
  animation: bootTrack 1.25s var(--ease-out) .15s forwards;
}
@keyframes bootMark { to { opacity: 1; transform: none; } }
@keyframes bootTrack { to { transform: scaleX(1); } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, transform .35s var(--ease);
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(5,5,7,.76);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  backdrop-filter: blur(22px) saturate(130%);
}
.site-header.is-hidden { transform: translateY(-105%); }
.nav-shell {
  width: min(1480px, calc(100% - 40px));
  height: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; width: 156px; min-height: 42px; }
.brand img { width: 100%; height: 56px; object-fit: contain; object-position: left center; }
.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}
.desktop-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .22s ease, background .22s ease;
}
.desktop-nav a:hover,
.desktop-nav a.active { color: var(--ink); background: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: rgba(255,255,255,.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nav-status i,
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a6ffb8;
  box-shadow: 0 0 0 0 rgba(166,255,184,.65);
  animation: pulse 2.1s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(166,255,184,.45); }
  70% { box-shadow: 0 0 0 8px rgba(166,255,184,0); }
  100% { box-shadow: 0 0 0 0 rgba(166,255,184,0); }
}
.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: currentColor;
  transition: transform .32s var(--ease), top .32s var(--ease);
}
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 25px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

/* buttons */
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
  transition: color .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease), transform .28s var(--ease), box-shadow .28s var(--ease);
  overflow: hidden;
}
.button svg { width: 17px; height: 17px; transition: transform .28s var(--ease); }
.button:hover svg { transform: translateX(4px); }
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 42px; padding-inline: 19px; font-size: 10px; }
.button--light { color: var(--ink); background: var(--white); border-color: var(--white); box-shadow: 0 12px 40px rgba(0,0,0,.18); }
.button--light:hover { color: var(--white); background: transparent; border-color: rgba(255,255,255,.6); box-shadow: 0 18px 46px rgba(0,0,0,.3); }
.button--ghost { color: var(--white); background: rgba(255,255,255,.035); border-color: var(--line); }
.button--ghost:hover { border-color: rgba(255,255,255,.62); background: rgba(255,255,255,.08); }
.button--dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button--dark:hover { color: var(--ink); background: transparent; }
.button--outline-dark { color: var(--ink); background: transparent; border-color: rgba(5,5,7,.24); }
.button--outline-dark:hover { color: var(--white); background: var(--ink); border-color: var(--ink); }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: calc(var(--header-h) + 32px) 24px 34px;
  background:
    radial-gradient(circle at 80% 20%, rgba(147,132,255,.2), transparent 30%),
    rgba(5,5,7,.97);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition: opacity .38s var(--ease), visibility .38s var(--ease), transform .38s var(--ease);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu__top,
.mobile-menu__socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,.4);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.mobile-menu nav { align-self: center; display: grid; }
.mobile-menu nav a {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: baseline;
  padding: 9px 0;
  font-family: var(--display);
  font-size: clamp(38px, 10vw, 64px);
  line-height: 1;
  letter-spacing: -.04em;
}
.mobile-menu nav a span { font-family: var(--sans); color: var(--violet-soft); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.mobile-menu__socials { justify-content: flex-start; gap: 24px; }
.mobile-menu__socials a { color: rgba(255,255,255,.68); }

/* world rail */
.world-rail {
  position: fixed;
  z-index: 80;
  right: 20px;
  top: 50%;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}
.world-rail a { display: flex; align-items: center; justify-content: flex-end; gap: 10px; color: rgba(255,255,255,.32); }
.world-rail a span { font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.world-rail a b {
  width: 7px;
  height: 7px;
  overflow: hidden;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0;
  transition: width .25s var(--ease), background .25s ease, color .25s ease, border-radius .25s ease;
}
.world-rail a:hover,
.world-rail a.active { color: rgba(255,255,255,.92); }
.world-rail a.active b { width: 28px; border-radius: 999px; background: currentColor; }

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(5px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), filter .9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; filter: none; }

/* hero */
.hero {
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--header-h) + 58px) 0 32px;
  background:
    linear-gradient(90deg, rgba(5,5,7,.92) 0%, rgba(5,5,7,.56) 48%, rgba(5,5,7,.28) 100%),
    radial-gradient(circle at 72% 42%, rgba(147,132,255,.095), transparent 32%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .18;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.7) 62%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.7) 62%, transparent 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 28%;
  background: linear-gradient(to bottom, transparent, var(--ink));
}
.hero__grid {
  min-height: calc(100svh - var(--header-h) - 130px);
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(460px, 1.06fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
}
.hero__copy { position: relative; z-index: 2; max-width: 690px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: rgba(255,255,255,.52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow a { color: var(--white); border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 2px; transition: border-color .2s; }
.eyebrow a:hover { border-color: currentColor; }
.hero__wordmark {
  width: min(600px, 96%);
  max-height: 330px;
  object-fit: contain;
  object-position: left center;
  margin-left: -4.5%;
  filter: drop-shadow(0 20px 70px rgba(0,0,0,.5));
}
.hero__statement {
  margin: -2px 0 0;
  font-family: var(--display);
  font-size: clamp(31px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.hero__lead {
  max-width: 600px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.61);
  font-size: clamp(15px, 1.45vw, 19px);
  line-height: 1.7;
  letter-spacing: -.015em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__micro {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 590px;
  margin-top: 38px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: rgba(255,255,255,.34);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero__visual { position: relative; min-height: 640px; display: grid; place-items: center; perspective: 1600px; }
.world-stage {
  position: relative;
  width: min(620px, 46vw);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  transform: perspective(1300px) rotateX(var(--stage-rx)) rotateY(var(--stage-ry)) translateY(var(--stage-y));
  transition: transform .18s linear;
  will-change: transform;
}
.world-stage__grid {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  opacity: .34;
  background:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(circle, #000 0%, rgba(0,0,0,.86) 52%, transparent 73%);
  mask-image: radial-gradient(circle, #000 0%, rgba(0,0,0,.86) 52%, transparent 73%);
  transform: rotateX(68deg) translateZ(-74px) scale(1.08);
}
.world-stage__halo {
  position: absolute;
  inset: 13%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.07), rgba(147,132,255,.08) 34%, rgba(147,132,255,.02) 58%, transparent 70%);
  filter: blur(5px);
  transform: translateZ(-10px);
  animation: haloBreath 5s ease-in-out infinite;
}
@keyframes haloBreath { 50% { transform: translateZ(-10px) scale(1.07); opacity: .72; } }
.world-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48%;
  aspect-ratio: 1;
  transform: translate3d(-50%, -50%, 80px);
  transform-style: preserve-3d;
  animation: coreFloat 6s ease-in-out infinite;
}
@keyframes coreFloat {
  0%,100% { transform: translate3d(-50%, -50%, 80px) rotateZ(-1deg); }
  50% { transform: translate3d(-50%, calc(-50% - 12px), 95px) rotateZ(1deg); }
}
.world-core__sphere {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 27%, rgba(255,255,255,.32), transparent 10%),
    radial-gradient(circle at 38% 34%, rgba(147,132,255,.24), transparent 29%),
    radial-gradient(circle at 66% 72%, #050507 0%, #101016 43%, #020203 77%);
  box-shadow:
    inset -30px -30px 70px rgba(0,0,0,.78),
    inset 18px 14px 38px rgba(255,255,255,.04),
    0 0 90px rgba(147,132,255,.17),
    0 42px 90px rgba(0,0,0,.66);
}
.world-core__sphere::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.09);
  transform: rotateX(62deg);
}
.world-core__logo {
  position: absolute;
  inset: 16%;
  z-index: 2;
  background: var(--chrome);
  background-size: 220% 100%;
  -webkit-mask: url("../images/badge-white.png") center / contain no-repeat;
  mask: url("../images/badge-white.png") center / contain no-repeat;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.55));
  animation: chromeSweep 7s ease-in-out infinite;
}
@keyframes chromeSweep { 0%,100% { background-position: 0 0; } 50% { background-position: 100% 0; } }
.world-core__fallback { position: absolute; inset: 16%; width: 68%; height: 68%; object-fit: contain; opacity: .9; }
@supports ((-webkit-mask-image: url("")) or (mask-image: url(""))) { .world-core__fallback { display: none; } }
.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
  transform-style: preserve-3d;
}
.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 16px rgba(255,255,255,.9);
}
.orbit::before { left: 11%; top: 17%; }
.orbit::after { right: 9%; bottom: 21%; width: 4px; height: 4px; opacity: .65; }
.orbit span {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 45deg, transparent 0 14%, rgba(147,132,255,.72) 18%, transparent 24% 61%, rgba(255,255,255,.34) 67%, transparent 72%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
}
.orbit--inner { width: 62%; height: 62%; transform: translate(-50%,-50%) rotateX(69deg) rotateZ(10deg); animation: orbitInner 14s linear infinite; }
.orbit--mid { width: 82%; height: 82%; transform: translate(-50%,-50%) rotateX(74deg) rotateZ(-22deg); animation: orbitMid 22s linear infinite reverse; }
.orbit--outer { width: 100%; height: 100%; transform: translate(-50%,-50%) rotateX(78deg) rotateZ(38deg); animation: orbitOuter 31s linear infinite; opacity: .75; }
@keyframes orbitInner { to { transform: translate(-50%,-50%) rotateX(69deg) rotateZ(370deg); } }
@keyframes orbitMid { to { transform: translate(-50%,-50%) rotateX(74deg) rotateZ(338deg); } }
@keyframes orbitOuter { to { transform: translate(-50%,-50%) rotateX(78deg) rotateZ(398deg); } }
.orbit-node {
  position: absolute;
  z-index: 8;
  display: inline-grid;
  grid-template-columns: 38px auto;
  align-items: center;
  gap: 10px;
  padding: 7px 13px 7px 7px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(8,8,12,.67);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 45px rgba(0,0,0,.32);
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.orbit-node:hover { transform: translateZ(34px) scale(1.06); border-color: rgba(255,255,255,.5); background: rgba(18,18,24,.88); }
.orbit-node span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: var(--ink); background: var(--white); font-size: 9px; font-weight: 900; letter-spacing: .05em; }
.orbit-node b { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.orbit-node--spotify { left: 2%; top: 30%; transform: translateZ(26px); }
.orbit-node--youtube { right: 0; top: 39%; transform: translateZ(42px); }
.orbit-node--instagram { left: 27%; bottom: 4%; transform: translateZ(48px); }
.world-stage__coordinate {
  position: absolute;
  color: rgba(255,255,255,.3);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.world-stage__coordinate--a { left: 5%; bottom: 25%; transform: rotate(-90deg); }
.world-stage__coordinate--b { right: 4%; top: 20%; }
.world-stage__coordinate--c { right: 12%; bottom: 14%; }
.hero__footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.32); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.scroll-cue { display: flex; align-items: center; gap: 12px; }
.scroll-cue span { position: relative; width: 42px; height: 1px; overflow: hidden; background: rgba(255,255,255,.16); }
.scroll-cue span::after { content: ""; position: absolute; inset: 0; background: var(--white); transform: translateX(-100%); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateX(-100%); } 50%,100% { transform: translateX(100%); } }

/* ticker */
.signal-strip { position: relative; z-index: 4; overflow: hidden; color: var(--ink); background: var(--white); border-block: 1px solid rgba(255,255,255,.4); }
.signal-strip__track { display: flex; width: max-content; align-items: center; gap: 28px; padding: 11px 0; animation: marquee 40s linear infinite; }
.signal-strip__track span { font-size: 10px; font-weight: 900; letter-spacing: .19em; text-transform: uppercase; }
.signal-strip__track i { font-style: normal; color: #4a4a50; font-size: 8px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* shared section heading */
.portal-section,
.content-section,
.vault-section { padding: clamp(88px, 11vw, 160px) 0; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(300px,.6fr);
  align-items: end;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 54px;
}
.section-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--violet-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.section-heading h2,
.vault-copy h2,
.story-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 98px);
  font-weight: 500;
  line-height: .91;
  letter-spacing: -.065em;
}
.section-heading > p {
  max-width: 560px;
  margin: 0 0 4px;
  color: rgba(255,255,255,.52);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -.015em;
}
.section-heading--light .section-kicker { color: #514a8b; }
.section-heading--light > p { color: rgba(5,5,7,.58); }

/* portals */
.portal-section { overflow: hidden; background: linear-gradient(180deg, rgba(5,5,7,.72), rgba(5,5,7,.96)); }
.portal-grid { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 14px; }
.portal-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255,255,255,.035);
  transform-style: preserve-3d;
  transition: border-color .35s ease, background .35s ease, box-shadow .35s ease;
}
.portal-card:hover { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.065); box-shadow: 0 32px 90px rgba(0,0,0,.34); }
.portal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.12), transparent 34%);
  opacity: 0;
  transition: opacity .35s;
}
.portal-card:hover::after { opacity: 1; }
.portal-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 0;
  color: rgba(255,255,255,.43);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: translateZ(24px);
}
.round-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.035);
  cursor: pointer;
  transition: color .25s, background .25s, transform .25s var(--ease);
}
.portal-card:hover .round-arrow { color: var(--ink); background: var(--white); transform: rotate(-25deg); }
.round-arrow svg { width: 16px; height: 16px; }
.portal-card__body {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 28px;
  transform: translateZ(32px);
}
.portal-card__title { font-family: var(--display); font-size: clamp(40px, 4.7vw, 70px); line-height: .95; letter-spacing: -.055em; }
.portal-card__body p { max-width: 420px; margin: 12px 0 0; color: rgba(255,255,255,.52); font-size: 13px; line-height: 1.6; }
.portal-card--music { grid-column: span 7; min-height: 510px; background: linear-gradient(145deg, rgba(147,132,255,.16), rgba(255,255,255,.025) 48%, rgba(255,255,255,.04)); }
.portal-card--watch { grid-column: span 5; min-height: 510px; }
.portal-card--social,
.portal-card--vault,
.portal-card--story { grid-column: span 4; }
.portal-card--contact { grid-column: span 12; min-height: 240px; background: linear-gradient(90deg, rgba(255,255,255,.025), rgba(147,132,255,.13)); }
.portal-card--contact .portal-card__body { position: relative; min-height: 180px; display: grid; grid-template-columns: .7fr 1fr auto; align-items: end; gap: 30px; }
.portal-card--contact .portal-card__body p { margin: 0 0 7px; }
.portal-email { justify-self: end; padding-bottom: 7px; border-bottom: 1px solid rgba(255,255,255,.32); color: rgba(255,255,255,.72); font-size: 12px; }
.portal-card__noise { position: absolute; inset: 0; opacity: .12; background: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 46px 46px; }
.waveform { display: flex; align-items: center; gap: 5px; height: 90px; margin-top: 28px; opacity: .68; }
.waveform i { display: block; width: 3px; height: 22%; border-radius: 999px; background: var(--white); animation: wave 1.25s ease-in-out infinite alternate; }
.waveform i:nth-child(3n) { height: 78%; animation-delay: -.5s; }
.waveform i:nth-child(4n) { height: 48%; animation-delay: -.8s; }
.waveform i:nth-child(5n) { height: 92%; animation-delay: -.2s; }
.waveform i:nth-child(7n) { height: 35%; animation-delay: -.9s; }
@keyframes wave { to { transform: scaleY(.46); opacity: .35; } }
.portal-glyph { position: absolute; right: 28px; bottom: 20px; color: rgba(255,255,255,.065); font-size: 180px; line-height: 1; transform: translateZ(-10px); }
.portal-stack { display: flex; margin-bottom: 28px; }
.portal-stack span { display: grid; place-items: center; width: 58px; height: 58px; margin-left: -8px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: var(--ink-2); font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.portal-stack span:first-child { margin-left: 0; }
.vault-seal { position: absolute; right: 16px; bottom: 12px; width: 155px; opacity: .12; transform: rotate(-8deg); }
.portal-year { margin-bottom: 30px; font-family: var(--display); color: rgba(255,255,255,.22); font-size: 54px; letter-spacing: -.06em; }

/* release */
.release-section { overflow: hidden; padding: clamp(96px, 12vw, 170px) 0; }
.release-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background:
    radial-gradient(circle at 82% 18%, rgba(147,132,255,.24), transparent 25%),
    linear-gradient(rgba(5,5,7,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5,5,7,.06) 1px, transparent 1px);
  background-size: auto, 84px 84px, 84px 84px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 72%);
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}
.release-grid { position: relative; display: grid; grid-template-columns: minmax(380px,.86fr) minmax(0,1.14fr); gap: clamp(48px, 8vw, 120px); align-items: center; }
.release-art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(5,5,7,.3);
  background: #050507;
  box-shadow: 0 40px 90px rgba(24,17,49,.18);
  transform-style: preserve-3d;
}
.release-art__grid { position: absolute; inset: 0; opacity: .22; background: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 44px 44px; }
.release-art__sun { position: absolute; width: 88%; aspect-ratio: 1; right: -34%; top: -30%; border-radius: 50%; background: radial-gradient(circle at 35% 38%, #f7f5ee 0%, #b5aaff 15%, #382f76 38%, #0d0c17 70%); filter: saturate(.72); box-shadow: 0 0 100px rgba(147,132,255,.25); }
.release-art__badge { position: absolute; z-index: 2; left: 50%; top: 44%; width: 43%; transform: translate3d(-50%,-50%,40px); filter: drop-shadow(0 24px 30px rgba(0,0,0,.7)); }
.release-art__meta { position: absolute; z-index: 3; inset: 22px 24px auto; display: flex; justify-content: space-between; color: rgba(255,255,255,.6); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.release-art__title { position: absolute; z-index: 3; left: 24px; right: 24px; bottom: 18px; font-family: var(--display); font-size: clamp(62px, 8vw, 118px); line-height: .78; letter-spacing: -.08em; color: var(--white); transform: translateZ(45px); }
.release-copy { position: relative; }
.release-label { color: #514a8b; font-size: 10px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.release-copy h3 { margin: 18px 0 0; font-family: var(--display); font-size: clamp(74px, 10vw, 150px); font-weight: 500; line-height: .72; letter-spacing: -.085em; }
.release-facts { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 30px; color: rgba(5,5,7,.48); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.release-facts i { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }
.release-copy > p { max-width: 610px; margin: 24px 0 0; color: rgba(5,5,7,.62); font-size: 17px; line-height: 1.75; }
.release-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.recent-list { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--dark-line); }
.recent-list > span { display: block; margin-bottom: 14px; color: rgba(5,5,7,.42); font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.recent-list > div { display: flex; flex-wrap: wrap; gap: 8px; }
.recent-list a { padding: 9px 12px; border: 1px solid var(--dark-line); border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .06em; transition: color .2s, background .2s, border-color .2s; }
.recent-list a:hover { color: var(--white); background: var(--ink); border-color: var(--ink); }
.platform-row { position: relative; display: grid; grid-template-columns: repeat(4,1fr); margin-top: 90px; border-top: 1px solid var(--dark-line); border-left: 1px solid var(--dark-line); }
.platform-row a { min-height: 156px; padding: 22px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: 1fr auto; gap: 12px; border-right: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); transition: color .25s, background .25s; }
.platform-row a:hover { color: var(--white); background: var(--ink); }
.platform-row a > span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid currentColor; border-radius: 50%; font-size: 9px; font-weight: 900; }
.platform-row b { align-self: center; font-family: var(--display); font-size: 24px; font-weight: 500; letter-spacing: -.03em; }
.platform-row i { grid-column: 2; justify-self: end; align-self: end; font-style: normal; color: rgba(5,5,7,.43); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.platform-row a:hover i { color: rgba(255,255,255,.55); }

/* content */
.content-section { background: linear-gradient(180deg, rgba(5,5,7,.96), #07070a); }
.content-grid { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 14px; }
.content-card { position: relative; grid-column: span 4; padding: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.03); transform-style: preserve-3d; transition: border-color .3s, background .3s; }
.content-card:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.055); }
.content-card__screen { position: relative; min-height: 430px; overflow: hidden; background: radial-gradient(circle at 50% 38%, rgba(147,132,255,.28), transparent 31%), #020203; transform: translateZ(18px); }
.content-card__screen::before { content: ""; position: absolute; inset: 0; opacity: .24; background: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 38px 38px; }
.content-card__scan { position: absolute; inset: -50% 0 auto; height: 40%; background: linear-gradient(to bottom, transparent, rgba(255,255,255,.12), transparent); animation: scan 5s linear infinite; }
@keyframes scan { to { transform: translateY(380%); } }
.content-card__mark { position: absolute; left: 50%; top: 50%; width: 52%; transform: translate(-50%,-50%); filter: drop-shadow(0 25px 45px rgba(0,0,0,.65)); }
.content-card__play { position: absolute; z-index: 3; left: 50%; top: 50%; display: grid; place-items: center; width: 68px; height: 68px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: rgba(5,5,7,.42); font-size: 19px; transform: translate(-50%,-50%); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.content-card__hud { position: absolute; z-index: 3; inset: 16px 16px auto; display: flex; justify-content: space-between; color: rgba(255,255,255,.56); font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.content-card__copy { min-height: 190px; padding: 24px 16px 16px; transform: translateZ(24px); }
.content-card__copy > span { color: var(--violet-soft); font-size: 9px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.content-card__copy h3 { margin: 17px 0 24px; font-family: var(--display); font-size: 34px; font-weight: 500; line-height: 1; letter-spacing: -.045em; }
.content-card__copy b { color: rgba(255,255,255,.48); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.content-card__screen--portrait { min-height: 430px; background: linear-gradient(160deg, #25212f, #07070a 62%); }
.story-bars { position: absolute; z-index: 4; inset: 14px 14px auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.story-bars i { height: 2px; background: rgba(255,255,255,.42); }
.story-bars i:first-child { background: var(--white); }
.content-card__wordmark { position: absolute; left: 50%; top: 50%; width: 79%; transform: translate(-50%,-50%) rotate(-5deg); }
.content-card__screen--signal { background: radial-gradient(circle at 50% 50%, rgba(147,132,255,.34), transparent 25%), #020203; }
.signal-rings { position: absolute; inset: 50% auto auto 50%; width: 78%; aspect-ratio: 1; transform: translate(-50%,-50%); }
.signal-rings i { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; animation: signalRing 3.2s ease-out infinite; }
.signal-rings i:nth-child(2) { animation-delay: -1.05s; }
.signal-rings i:nth-child(3) { animation-delay: -2.1s; }
@keyframes signalRing { 0% { opacity: 0; transform: scale(.25); } 35% { opacity: .65; } 100% { opacity: 0; transform: scale(1); } }
.content-card__monogram { position: absolute; z-index: 3; left: 50%; top: 50%; font-family: var(--display); font-size: 58px; letter-spacing: -.08em; transform: translate(-50%,-50%); }

/* vault */
.vault-section { overflow: hidden; padding-top: 80px; background: #050507; }
.vault-shell { position: relative; min-height: 690px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(50px, 8vw, 120px); padding: clamp(32px, 5vw, 72px); border: 1px solid var(--line); background: linear-gradient(130deg, rgba(255,255,255,.035), rgba(147,132,255,.08) 55%, rgba(255,255,255,.025)); }
.vault-shell::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .24; background: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 52px 52px; -webkit-mask-image: radial-gradient(circle at 22% 50%, #000, transparent 55%); mask-image: radial-gradient(circle at 22% 50%, #000, transparent 55%); }
.vault-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.vault-door { position: relative; width: min(420px, 90%); aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: radial-gradient(circle, #101017 0%, #07070a 58%, #020203 100%); box-shadow: inset 0 0 0 18px rgba(255,255,255,.025), inset 0 0 0 38px rgba(255,255,255,.02), 0 50px 100px rgba(0,0,0,.42); }
.vault-door::before { content: ""; position: absolute; inset: 8%; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: inset 0 0 60px rgba(147,132,255,.08); }
.vault-door img { position: relative; z-index: 4; width: 47%; filter: drop-shadow(0 20px 30px rgba(0,0,0,.7)); }
.vault-door__ring { position: absolute; border: 1px dashed rgba(255,255,255,.2); border-radius: 50%; animation: vaultSpin 24s linear infinite; }
.vault-door__ring::before { content: ""; position: absolute; left: 50%; top: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--white); box-shadow: 0 0 18px var(--white); }
.vault-door__ring--1 { inset: 14%; }
.vault-door__ring--2 { inset: 25%; animation-direction: reverse; animation-duration: 17s; opacity: .7; }
.vault-door__ring--3 { inset: 35%; animation-duration: 11s; opacity: .52; }
@keyframes vaultSpin { to { transform: rotate(360deg); } }
.vault-code { position: absolute; bottom: 7%; color: rgba(255,255,255,.35); font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.vault-copy { position: relative; z-index: 2; }
.vault-copy h2 { font-size: clamp(48px, 6.4vw, 88px); }
.vault-copy > p { max-width: 620px; margin: 26px 0 0; color: rgba(255,255,255,.55); font-size: 16px; line-height: 1.8; }
.vault-benefits { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.vault-benefits span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: rgba(255,255,255,.64); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.vault-form { margin-top: 38px; }
.vault-form > label { display: block; margin-bottom: 10px; color: rgba(255,255,255,.45); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.vault-form__row { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px; }
.vault-form input[type="email"] { width: 100%; min-height: 54px; padding: 0 18px; border: 1px solid var(--line); border-radius: 999px; outline: none; color: var(--white); background: rgba(5,5,7,.62); transition: border-color .2s, box-shadow .2s; }
.vault-form input[type="email"]:focus { border-color: rgba(255,255,255,.62); box-shadow: 0 0 0 4px rgba(147,132,255,.12); }
.vault-form input::placeholder { color: rgba(255,255,255,.3); }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.form-note { margin: 12px 0 0; color: rgba(255,255,255,.3); font-size: 10px; line-height: 1.6; }
.form-message { min-height: 24px; margin-top: 14px; color: var(--white); font-size: 12px; }
.form-message.is-error { color: #ffaaa8; }
.form-message.is-success { color: #b7ffc5; }

/* story */
.story-section { padding: clamp(100px, 13vw, 180px) 0; }
.story-intro { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(360px,.72fr); gap: clamp(60px, 10vw, 150px); align-items: start; }
.story-intro h2 { font-size: clamp(50px, 6.7vw, 96px); }
.story-intro h2 em { color: #514a8b; font-style: italic; font-weight: 400; }
.story-intro__copy { padding-top: 36px; }
.story-intro__copy p { margin: 0 0 22px; color: rgba(5,5,7,.62); font-size: 17px; line-height: 1.8; }
.story-intro__copy strong { color: var(--ink); }
.timeline { margin-top: 100px; border-top: 1px solid var(--dark-line); }
.timeline-item { display: grid; grid-template-columns: 130px minmax(220px,.7fr) 1fr; gap: 30px; align-items: baseline; padding: 30px 0; border-bottom: 1px solid var(--dark-line); }
.timeline-item > span { color: #514a8b; font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.timeline-item h3 { margin: 0; font-family: var(--display); font-size: 34px; font-weight: 500; letter-spacing: -.04em; }
.timeline-item p { max-width: 640px; margin: 0; color: rgba(5,5,7,.56); font-size: 14px; line-height: 1.7; }
.other-world { margin-top: 90px; padding: 34px; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; border: 1px solid var(--dark-line); background: rgba(255,255,255,.5); }
.other-world span { color: #514a8b; font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.other-world h3 { max-width: 780px; margin: 13px 0 0; font-family: var(--display); font-size: clamp(30px, 4vw, 54px); font-weight: 500; line-height: 1; letter-spacing: -.045em; }

/* finale */
.finale { overflow: hidden; padding: clamp(110px, 15vw, 210px) 0; text-align: center; background: radial-gradient(circle at 50% 28%, rgba(147,132,255,.16), transparent 30%), #050507; }
.finale::before { content: ""; position: absolute; inset: 0; opacity: .2; background: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 58px 58px; -webkit-mask-image: radial-gradient(circle, #000, transparent 70%); mask-image: radial-gradient(circle, #000, transparent 70%); }
.finale__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.finale__logo { width: min(920px, 86vw); max-height: 390px; object-fit: contain; }
.finale__inner > p { max-width: 640px; margin: 12px auto 0; color: rgba(255,255,255,.51); font-size: 16px; line-height: 1.7; }
.finale__email { margin-top: 42px; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.35); font-family: var(--display); font-size: clamp(27px, 4.5vw, 62px); letter-spacing: -.045em; transition: color .2s, border-color .2s; }
.finale__email:hover { color: var(--violet-soft); border-color: currentColor; }
.finale__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 42px; }

/* footer */
.site-footer { position: relative; padding: 62px 0 28px; border-top: 1px solid var(--line); background: #030304; }
.site-footer__grid { display: grid; grid-template-columns: minmax(260px,.7fr) 1fr; gap: 80px; }
.site-footer__brand img { width: 220px; max-height: 100px; object-fit: contain; object-position: left center; }
.site-footer__brand > span { display: block; max-width: 330px; margin-top: 16px; color: rgba(255,255,255,.36); font-family: var(--display); font-size: 17px; line-height: 1.45; }
.site-footer__links { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.site-footer__links > div { display: flex; flex-direction: column; gap: 9px; }
.site-footer__links span { margin-bottom: 8px; color: rgba(255,255,255,.28); font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.site-footer__links a { width: fit-content; color: rgba(255,255,255,.68); font-size: 13px; transition: color .2s, transform .2s; }
.site-footer__links a:hover { color: var(--white); transform: translateX(3px); }
.site-footer__bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; margin-top: 55px; padding-top: 22px; border-top: 1px solid var(--line); color: rgba(255,255,255,.28); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.site-footer__bottom > div { display: flex; gap: 18px; }
.site-footer__bottom > span:last-child { justify-self: end; }
.site-footer__bottom a:hover { color: var(--white); }

/* mobile dock */
.mobile-dock { display: none; }

/* listen modal */
.listen-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .38s var(--ease), visibility .38s var(--ease);
}
.listen-modal.is-open { opacity: 1; visibility: visible; }
.listen-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.76); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
.listen-modal__panel {
  position: relative;
  width: min(780px, 100%);
  max-height: min(820px, calc(100svh - 40px));
  overflow: auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 90% 8%, rgba(147,132,255,.2), transparent 30%),
    #08080b;
  box-shadow: 0 60px 160px rgba(0,0,0,.65);
  transform: translateY(20px) scale(.98);
  transition: transform .45s var(--ease-out);
}
.listen-modal.is-open .listen-modal__panel { transform: none; }
.listen-modal__panel::before { content: ""; position: absolute; inset: 0; opacity: .14; pointer-events: none; background: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 48px 48px; }
.listen-modal__close { position: absolute; z-index: 3; right: 18px; top: 18px; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.04); cursor: pointer; }
.listen-modal__close span { position: absolute; left: 12px; right: 12px; top: 21px; height: 1px; background: var(--white); }
.listen-modal__close span:first-child { transform: rotate(45deg); }
.listen-modal__close span:last-child { transform: rotate(-45deg); }
.listen-modal__header { position: relative; z-index: 2; padding-right: 50px; }
.listen-modal__header > span { color: var(--violet-soft); font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.listen-modal__header h2 { max-width: 620px; margin: 18px 0 0; font-family: var(--display); font-size: clamp(48px, 8vw, 82px); font-weight: 500; line-height: .9; letter-spacing: -.06em; }
.listen-modal__header p { margin: 17px 0 0; color: rgba(255,255,255,.48); font-size: 14px; }
.listen-modal__links { position: relative; z-index: 2; margin-top: 42px; border-top: 1px solid var(--line); }
.listen-modal__links a { display: grid; grid-template-columns: 54px 1fr auto; gap: 20px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); transition: padding .24s var(--ease), color .24s; }
.listen-modal__links a:hover { padding-left: 12px; color: var(--violet-soft); }
.listen-modal__links span { color: rgba(255,255,255,.32); font-size: 9px; font-weight: 900; }
.listen-modal__links b { font-family: var(--display); font-size: 30px; font-weight: 500; }
.listen-modal__links i { color: rgba(255,255,255,.38); font-size: 9px; font-style: normal; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.listen-modal__footer { position: relative; z-index: 2; display: flex; align-items: center; gap: 12px; margin-top: 28px; color: rgba(255,255,255,.38); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.listen-modal__footer img { width: 34px; height: 34px; object-fit: contain; }

/* focus */
a:focus-visible,
button:focus-visible,
input:focus-visible { outline: 2px solid var(--violet-soft); outline-offset: 4px; }

/* responsive */
@media (max-width: 1240px) {
  :root { --header-h: 76px; }
  .nav-shell { grid-template-columns: 170px 1fr auto; }
  .nav-status { display: none; }
  .hero__grid { grid-template-columns: minmax(0,.9fr) minmax(430px,1.1fr); }
  .world-stage { width: min(590px, 49vw); }
  .hero__visual { min-height: 590px; }
  .world-rail { display: none; }
  .portal-card--contact .portal-card__body { grid-template-columns: .65fr .9fr auto; }
}

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; }
  .hero { padding-top: calc(var(--header-h) + 36px); }
  .hero__grid { min-height: auto; grid-template-columns: 1fr; padding-top: 44px; }
  .hero__copy { max-width: 790px; }
  .hero__wordmark { width: min(650px, 90%); }
  .hero__visual { min-height: 620px; }
  .world-stage { width: min(610px, 80vw); }
  .hero__footer { margin-top: 10px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading > p { max-width: 700px; }
  .portal-card--music { grid-column: span 12; min-height: 470px; }
  .portal-card--watch { grid-column: span 12; min-height: 430px; }
  .portal-card--social,
  .portal-card--vault,
  .portal-card--story { grid-column: span 6; }
  .portal-card--story { grid-column: span 12; min-height: 280px; }
  .portal-card--contact .portal-card__body { grid-template-columns: 1fr 1fr; }
  .portal-card--contact .portal-email { grid-column: 2; }
  .release-grid { grid-template-columns: .82fr 1.18fr; gap: 48px; }
  .platform-row { grid-template-columns: repeat(2,1fr); }
  .content-card { grid-column: span 6; }
  .content-card:last-child { grid-column: 4 / span 6; }
  .vault-shell { grid-template-columns: 1fr; }
  .vault-visual { min-height: 430px; }
  .vault-door { width: min(400px, 80%); }
  .story-intro { grid-template-columns: 1fr; gap: 34px; }
  .story-intro__copy { max-width: 760px; padding-top: 0; }
}

@media (max-width: 760px) {
  :root { --pad: 18px; --header-h: 68px; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .cursor-aura { display: none; }
  .grain { opacity: .035; }
  .nav-shell { width: calc(100% - 28px); }
  .brand { width: 126px; }
  .brand img { height: 48px; }
  .nav-actions .button { display: none; }
  .menu-toggle { width: 42px; height: 42px; }
  .hero { min-height: auto; padding: calc(var(--header-h) + 28px) 0 30px; background: radial-gradient(circle at 50% 58%, rgba(147,132,255,.1), transparent 32%); }
  .hero__grid { display: flex; flex-direction: column; padding-top: 34px; }
  .hero__copy { width: 100%; text-align: center; }
  .eyebrow { justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
  .hero__wordmark { width: min(520px, 105%); max-height: 230px; margin: 0 auto; object-position: center; }
  .hero__statement { margin-top: 3px; font-size: clamp(34px, 10.5vw, 49px); }
  .hero__lead { max-width: 520px; margin: 17px auto 0; font-size: 14px; }
  .hero__actions { justify-content: center; margin-top: 26px; }
  .hero__actions .button { width: 100%; max-width: 430px; }
  .hero__micro { display: none; }
  .hero__visual { width: 100%; min-height: 430px; margin-top: -4px; }
  .world-stage { width: min(430px, 102vw); }
  .orbit-node { grid-template-columns: 32px auto; gap: 7px; padding: 5px 10px 5px 5px; }
  .orbit-node span { width: 32px; height: 32px; }
  .orbit-node b { font-size: 8px; }
  .orbit-node--spotify { left: 2%; top: 27%; }
  .orbit-node--youtube { right: 1%; top: 42%; }
  .orbit-node--instagram { left: 27%; bottom: 2%; }
  .world-stage__coordinate { display: none; }
  .hero__footer { display: none; }
  .signal-strip__track { gap: 20px; padding: 9px 0; }
  .portal-section,
  .content-section,
  .vault-section { padding: 84px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2,
  .vault-copy h2,
  .story-intro h2 { font-size: clamp(44px, 14vw, 66px); }
  .section-heading > p { font-size: 14px; }
  .portal-grid { grid-template-columns: 1fr; gap: 10px; }
  .portal-card,
  .portal-card--music,
  .portal-card--watch,
  .portal-card--social,
  .portal-card--vault,
  .portal-card--story,
  .portal-card--contact { grid-column: auto; min-height: 330px; }
  .portal-card--music { min-height: 420px; }
  .portal-card--contact { min-height: 310px; }
  .portal-card--contact .portal-card__body { min-height: auto; display: block; }
  .portal-card--contact .portal-card__body p { margin-top: 12px; }
  .portal-email { display: inline-block; margin-top: 24px; }
  .portal-card__title { font-size: 48px; }
  .portal-card__body { padding: 24px; }
  .waveform { height: 66px; }
  .release-section { padding: 88px 0; }
  .release-grid { grid-template-columns: 1fr; gap: 42px; }
  .release-art { width: 100%; }
  .release-copy h3 { font-size: clamp(80px, 25vw, 120px); }
  .release-copy > p { font-size: 15px; }
  .release-actions .button { width: 100%; }
  .platform-row { grid-template-columns: 1fr; margin-top: 60px; }
  .platform-row a { min-height: 118px; }
  .content-grid { grid-template-columns: 1fr; gap: 10px; }
  .content-card,
  .content-card:last-child { grid-column: auto; }
  .content-card__screen,
  .content-card__screen--portrait { min-height: 390px; }
  .content-card__copy { min-height: 160px; }
  .vault-shell { width: calc(100% - 24px); padding: 28px 20px 34px; gap: 34px; }
  .vault-visual { min-height: 330px; }
  .vault-door { width: min(330px, 100%); }
  .vault-code { bottom: 0; font-size: 7px; }
  .vault-copy { text-align: left; }
  .vault-copy > p { font-size: 14px; }
  .vault-form__row { grid-template-columns: 1fr; }
  .vault-form__row .button { width: 100%; }
  .story-section { padding: 90px 0; }
  .story-intro__copy p { font-size: 15px; }
  .timeline { margin-top: 62px; }
  .timeline-item { grid-template-columns: 58px 1fr; gap: 12px 18px; padding: 25px 0; }
  .timeline-item p { grid-column: 2; }
  .timeline-item h3 { font-size: 29px; }
  .other-world { grid-template-columns: 1fr; padding: 24px; margin-top: 60px; }
  .other-world .button { width: 100%; }
  .finale { padding: 100px 0; }
  .finale__logo { width: 104%; max-width: none; }
  .finale__email { font-size: clamp(23px, 7vw, 34px); overflow-wrap: anywhere; }
  .finale__actions { width: 100%; }
  .finale__actions .button { width: 100%; }
  .site-footer { padding-top: 48px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 44px; }
  .site-footer__links { gap: 18px; }
  .site-footer__bottom { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .site-footer__bottom > span:last-child { justify-self: center; }
  .mobile-dock {
    position: fixed;
    z-index: 1100;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(4,1fr);
    min-height: 62px;
    padding: 6px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 18px;
    background: rgba(8,8,11,.86);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    backdrop-filter: blur(22px) saturate(150%);
    box-shadow: 0 18px 50px rgba(0,0,0,.4);
  }
  .mobile-dock a,
  .mobile-dock button { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 0; border: 0; color: rgba(255,255,255,.66); background: transparent; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
  .mobile-dock svg { width: 18px; height: 18px; }
  .listen-modal { padding: 0; align-items: end; }
  .listen-modal__panel { width: 100%; max-height: 92svh; padding: 34px 20px calc(26px + env(safe-area-inset-bottom)); border-inline: 0; border-bottom: 0; border-radius: 22px 22px 0 0; transform: translateY(100%); }
  .listen-modal.is-open .listen-modal__panel { transform: none; }
  .listen-modal__links a { grid-template-columns: 38px 1fr auto; }
  .listen-modal__links b { font-size: 26px; }
}

@media (max-width: 430px) {
  .hero__statement { font-size: 35px; }
  .hero__visual { min-height: 390px; }
  .world-stage { width: 105vw; }
  .orbit-node b { display: none; }
  .orbit-node { grid-template-columns: 30px; padding: 4px; }
  .orbit-node span { width: 30px; height: 30px; }
  .portal-card { min-height: 300px; }
  .portal-card--music { min-height: 390px; }
  .portal-card__title { font-size: 43px; }
  .site-footer__links { grid-template-columns: repeat(2,1fr); }
  .site-footer__links > div:last-child { grid-column: span 2; }
}

@media (hover: none), (pointer: coarse) {
  .tilt-card { transform: none !important; }
  .cursor-aura { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .grain { display: none; }
  .world-stage { transform: none !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
}

.no-js .boot { display: none; }
body.on-light-section .world-rail a { color: rgba(5,5,7,.34); }
body.on-light-section .world-rail a:hover,
body.on-light-section .world-rail a.active { color: rgba(5,5,7,.88); }
.no-js .reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ======================================================================
   V2 refinements: stable mobile world, vector play glyphs, live releases
   ====================================================================== */
.portal-card--button {
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  color: inherit;
  font: inherit;
  text-align: left;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

/* Use a real SVG instead of a Unicode play character so iOS never swaps it
   for a large blue emoji. */
.portal-glyph {
  width: clamp(112px, 34%, 178px);
  height: auto;
  font-size: 0;
}
.portal-glyph svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  fill: currentColor;
}
.content-card__play { font-size: 0; }
.content-card__play svg {
  display: block;
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* Keep the image fallback in its own composited layer. Safari can flicker
   animated CSS masks inside transformed 3D parents, especially on iPhone. */
.world-core__fallback {
  z-index: 3;
  transform: translateZ(4px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Live Spotify artwork. The original generated artwork remains as a polished
   fallback until the API response and cover image have both loaded. */
.release-art-shell { min-width: 0; }
.release-art__fallback {
  position: absolute;
  inset: 0;
  transition: opacity .55s var(--ease), visibility .55s var(--ease);
}
.release-art__cover {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050507;
  opacity: 0;
  transition: opacity .55s var(--ease);
}
.release-art.has-live-cover .release-art__cover { opacity: 1; }
.release-art.has-live-cover .release-art__fallback { opacity: 0; visibility: hidden; }
.spotify-attribution {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: rgba(5,5,7,.48);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.spotify-attribution:hover { color: rgba(5,5,7,.88); }
.spotify-attribution svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
}
.spotify-attribution svg circle { fill: currentColor; stroke: none; }
.spotify-attribution svg path { stroke: #fff; }
.spotify-sync {
  display: inline-grid;
  grid-template-columns: 8px auto;
  align-items: center;
  column-gap: 9px;
  row-gap: 2px;
  margin-top: 24px;
  padding: 10px 13px;
  border: 1px solid rgba(5,5,7,.12);
  border-radius: 999px;
  color: rgba(5,5,7,.62);
  background: rgba(255,255,255,.42);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.spotify-sync[hidden] { display: none; }
.spotify-sync > span {
  grid-row: 1 / span 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1ed760;
  box-shadow: 0 0 0 4px rgba(30,215,96,.12);
  animation: spotifyPulse 2.2s ease-in-out infinite;
}
.spotify-sync b { font-size: 8px; font-weight: 900; }
.spotify-sync small { color: rgba(5,5,7,.42); font-size: 7px; font-weight: 800; }
@keyframes spotifyPulse { 50% { box-shadow: 0 0 0 7px rgba(30,215,96,0); } }

.release-copy h3.is-long { font-size: clamp(56px, 7.4vw, 112px); line-height: .8; }
.release-copy h3.is-very-long { font-size: clamp(43px, 5.7vw, 86px); line-height: .86; letter-spacing: -.065em; }
.release-art__title.is-long { font-size: clamp(42px, 5.4vw, 82px); line-height: .86; }
.release-art__title.is-very-long { font-size: clamp(31px, 4vw, 62px); line-height: .9; letter-spacing: -.055em; }
.listen-modal__panel {
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

/* iOS/WebKit stability path: use the normal transparent PNG instead of an
   animated mask, and stop the transformed core from repainting every frame. */
@supports (-webkit-touch-callout: none) {
  .world-core { animation: none; transform: translate3d(-50%, -50%, 80px); }
  .world-core__logo { display: none; }
  .world-core__fallback { display: block !important; opacity: .92; }
}

@media (max-width: 760px) {
  .portal-glyph { right: 22px; bottom: 86px; width: min(42%, 148px); }
  .release-copy h3.is-long { font-size: clamp(52px, 16vw, 78px); }
  .release-copy h3.is-very-long { font-size: clamp(40px, 12vw, 62px); line-height: .88; }
  .release-art__title.is-long { font-size: clamp(40px, 13vw, 64px); }
  .release-art__title.is-very-long { font-size: clamp(30px, 9.5vw, 48px); }
  .spotify-attribution { width: 100%; justify-content: center; text-align: center; }
  .spotify-sync { margin-top: 20px; }
}

@media (hover: none), (pointer: coarse) {
  .world-core { animation: none; transform: translate3d(-50%, -50%, 80px); }
  .world-core__logo { display: none; }
  .world-core__fallback { display: block !important; opacity: .92; }
}

@media (prefers-reduced-motion: reduce) {
  .spotify-sync > span { animation: none; }
}
.release-art__cover[hidden],
.spotify-attribution[hidden] { display: none; }
.release-art { display: block; width: 100%; }
