/* Skyline Archive — Promo presentation v8 */
:root {
  color-scheme: dark;
  --bg: #050506;
  --panel: #0d0d10;
  --text: #f4f4f1;
  --muted: rgba(244, 244, 241, 0.62);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.25);
  --accent: #9ae300;
  --accent-dark: #0a0c06;
  --max: 1240px;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::selection { background: var(--accent); color: #050506; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }

body.dj-intro-running { overflow: hidden; }

.promo-particles {
  position: fixed;
  inset: 0;
  z-index: 60;
  overflow: hidden;
  opacity: 0;
  filter: brightness(var(--particle-field-brightness, 1));
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 1.45s cubic-bezier(.22,.74,.24,1), filter .28s linear;
}

body.promo-particles-ready .promo-particles {
  opacity: var(--particle-field-opacity, .34);
}

.promo-particle {
  position: absolute;
  top: var(--particle-y);
  left: var(--particle-x);
  width: var(--particle-size);
  aspect-ratio: 1;
  border-radius: var(--particle-radius, 50%);
  background:
    radial-gradient(circle at 34% 30%, rgba(255,255,255,.98) 0 7%, transparent 11%),
    radial-gradient(ellipse at 52% 56%, rgba(255,255,255,.58) 0 18%, rgba(255,255,255,.16) 39%, rgba(255,255,255,.035) 62%, transparent 75%);
  box-shadow:
    inset 0 0 1px rgba(255,255,255,.65),
    0 0 15px rgba(255,255,255,.32);
  opacity: 0;
  animation: promo-spore-cross var(--particle-duration) var(--particle-delay) linear infinite;
  will-change: transform, opacity;
}

.promo-particle::after {
  position: absolute;
  inset: -70%;
  border-radius: inherit;
  content: "";
  background: radial-gradient(circle, rgba(255,255,255,.24), transparent 66%);
  filter: blur(2.8px);
}

.promo-particle::before {
  position: absolute;
  inset: 29%;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(255,255,255,.95) 0 12%, rgba(255,255,255,.25) 38%, transparent 72%);
  box-shadow: 0 0 5px rgba(255,255,255,.38);
}

.promo-particle.is-accent {
  background:
    radial-gradient(circle at 34% 30%, rgba(234,255,190,1) 0 7%, transparent 11%),
    radial-gradient(ellipse at 52% 56%, rgba(179,242,54,.62) 0 18%, rgba(154,227,0,.18) 40%, rgba(154,227,0,.04) 63%, transparent 75%);
  box-shadow:
    inset 0 0 1px rgba(223,255,158,.72),
    0 0 18px rgba(154,227,0,.42);
}

.promo-particle.is-accent::before {
  background: radial-gradient(circle, rgba(226,255,168,.98) 0 12%, rgba(154,227,0,.28) 38%, transparent 72%);
  box-shadow: 0 0 6px rgba(154,227,0,.48);
}

.promo-particle.is-large {
  border: 1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(circle at 32% 29%, rgba(255,255,255,.62) 0 4%, transparent 8%),
    radial-gradient(circle at 52% 54%, rgba(255,255,255,.16) 0 22%, rgba(255,255,255,.065) 41%, transparent 67%);
  box-shadow:
    inset -2px -2px 7px rgba(255,255,255,.035),
    inset 2px 2px 5px rgba(255,255,255,.08),
    0 0 24px rgba(255,255,255,.12);
  filter: blur(.18px) drop-shadow(0 0 8px rgba(255,255,255,.1));
}

.promo-particle.is-large::before {
  inset: 35%;
  opacity: .55;
}

.promo-particle.is-large::after {
  inset: -95%;
  opacity: .7;
}

.promo-particle.is-distant {
  filter: blur(.5px);
  box-shadow: 0 0 9px rgba(255,255,255,.2);
}

body.audio-signal-active:not(.audio-reactive-active) .promo-particles {
  --particle-field-opacity: .4;
  --particle-field-brightness: 1.35;
}

@keyframes promo-spore-cross {
  0% {
    opacity: .08;
    transform: translate3d(0, 12vh, 0) scale(.42) rotate(0deg);
  }
  12% { opacity: var(--particle-edge-opacity, .52); }
  46% {
    opacity: var(--particle-peak-opacity, .92);
    transform: translate3d(var(--particle-middle-x), var(--particle-middle-y), 0) scale(var(--particle-middle-scale)) rotate(var(--particle-middle-rotation));
  }
  82% { opacity: var(--particle-edge-opacity, .58); }
  100% {
    opacity: 0;
    transform: translate3d(var(--particle-travel-x), var(--particle-travel-y), 0) scale(var(--particle-end-scale)) rotate(var(--particle-end-rotation));
  }
}

.dj-letter-intro {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  color: var(--text);
  opacity: 1;
  visibility: visible;
  transition: opacity .65s cubic-bezier(.55,0,.24,1), visibility 0s linear;
}

.dj-intro-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 39%, rgba(154,227,0,.095), transparent 26%),
    radial-gradient(circle at 50% 56%, rgba(255,255,255,.026), transparent 42%),
    #050506;
  opacity: 1;
  transition: opacity .72s cubic-bezier(.65,0,.24,1);
}

.dj-letter-intro::before,
.dj-letter-intro::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.dj-letter-intro::before {
  z-index: 1;
  background:
    linear-gradient(90deg, transparent 49.94%, rgba(255,255,255,.052) 50%, transparent 50.06%),
    linear-gradient(0deg, transparent 49.94%, rgba(255,255,255,.036) 50%, transparent 50.06%);
  opacity: 0;
  transform: scale(1.08);
}

.dj-letter-intro::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.54), transparent 22%, transparent 78%, rgba(0,0,0,.54)),
    radial-gradient(ellipse at center, transparent 36%, rgba(0,0,0,.68) 100%);
  opacity: 1;
  transition: opacity .76s ease;
}

.dj-letter-intro.is-playing::before {
  animation: dj-grid-focus 2s .1s cubic-bezier(.2,.72,.16,1) both;
}

.dj-letter-intro.is-exiting .dj-intro-backdrop,
.dj-letter-intro.is-exiting::before,
.dj-letter-intro.is-exiting::after,
.dj-letter-intro.is-exiting .dj-intro-meta {
  opacity: 0;
}

.dj-letter-intro.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .65s cubic-bezier(.55,0,.24,1), visibility 0s linear .65s;
}

.dj-intro-ceremony {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(760px, 86vw);
  justify-content: center;
  justify-items: center;
  padding: clamp(42px, 7vh, 76px) clamp(18px, 4vw, 52px);
  text-align: center;
  transition: opacity .62s ease, filter .72s ease, transform .8s cubic-bezier(.55,0,.24,1);
}

.dj-letter-intro.is-exiting .dj-intro-ceremony {
  opacity: 1;
  filter: none;
  transform: none;
}

.dj-letter-intro.is-exiting .dj-intro-brand {
  animation: dj-prestige-handoff-out .88s cubic-bezier(.55,0,.24,1) both;
}

.dj-letter-intro.is-exiting .dj-intro-ceremony > h2,
.dj-letter-intro.is-exiting .dj-intro-rule,
.dj-letter-intro.is-exiting .dj-intro-promise,
.dj-letter-intro.is-exiting .dj-intro-arrow {
  animation: none !important;
  opacity: 0;
  filter: blur(7px);
  transform: translateY(-10px);
  transition:
    opacity .44s ease,
    filter .58s ease,
    transform .58s cubic-bezier(.55,0,.24,1);
}

.dj-letter-intro.is-exiting .dj-intro-emblem::before,
.dj-letter-intro.is-exiting .dj-intro-emblem::after,
.dj-letter-intro.is-exiting .dj-intro-emblem span {
  opacity: 0;
  transition: opacity .4s ease;
}

.dj-intro-brand {
  display: grid;
  justify-items: center;
}

.dj-intro-emblem {
  position: relative;
  display: grid;
  width: clamp(150px, 18vw, 224px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  opacity: 0;
  filter: blur(9px);
  transform: translateY(18px) scale(.78);
}

.dj-intro-emblem::before,
.dj-intro-emblem::after {
  position: absolute;
  top: 50%;
  width: clamp(72px, 11vw, 156px);
  height: 1px;
  content: "";
  opacity: 0;
  transform: scaleX(0);
}

.dj-intro-emblem::before {
  right: calc(100% + clamp(18px, 3vw, 38px));
  background: linear-gradient(90deg, transparent, rgba(154,227,0,.68));
  transform-origin: right;
}

.dj-intro-emblem::after {
  left: calc(100% + clamp(18px, 3vw, 38px));
  background: linear-gradient(90deg, rgba(154,227,0,.68), transparent);
  transform-origin: left;
}

.dj-intro-emblem span {
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(154,227,0,.1);
  border-radius: inherit;
  opacity: 0;
  transform: scale(.86);
}

.dj-intro-emblem img {
  width: 64%;
  height: 64%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 24px rgba(255,255,255,.18))
    drop-shadow(0 0 52px rgba(154,227,0,.1));
}

.dj-intro-brand p {
  width: max-content;
  max-width: 90vw;
  margin: clamp(20px, 3vh, 30px) 0 0;
  color: var(--text);
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 440;
  letter-spacing: .24em;
  line-height: 1;
  text-indent: .24em;
  opacity: 0;
  scale: 1 1.12;
  transform: translateY(12px);
  transform-origin: center;
  white-space: nowrap;
}

.dj-intro-ceremony h2 {
  margin: clamp(26px, 4vh, 40px) 0 0;
  color: var(--accent);
  font-family: var(--sans);
  font-size: clamp(18px, 2.6vw, 30px);
  font-weight: 620;
  letter-spacing: 1.15em;
  line-height: 1;
  text-indent: 1.15em;
  opacity: 0;
  transform: translateY(18px);
}

.dj-intro-rule {
  position: relative;
  width: min(390px, 70vw);
  height: 1px;
  margin-top: clamp(32px, 5vh, 50px);
  background: rgba(255,255,255,.16);
  overflow: visible;
  opacity: 0;
  transform: scaleX(.15);
}

.dj-intro-rule i {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 46%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 18px rgba(154,227,0,.4);
  transform: translateX(-50%);
}

.dj-intro-promise {
  margin: clamp(28px, 4.5vh, 44px) 0 0;
  color: rgba(244,244,241,.72);
  font-size: clamp(14px, 1.45vw, 19px);
  font-weight: 400;
  letter-spacing: .035em;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(14px);
}

.dj-intro-arrow {
  display: block;
  margin-top: clamp(26px, 4vh, 38px);
  color: var(--accent);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1;
  opacity: 0;
  transform: translateY(-5px);
}

.dj-letter-intro.is-playing .dj-intro-emblem {
  animation: dj-prestige-emblem 1.15s .08s cubic-bezier(.16,.82,.18,1) both;
}

.dj-letter-intro.is-playing .dj-intro-emblem::before,
.dj-letter-intro.is-playing .dj-intro-emblem::after {
  animation: dj-prestige-wings .85s .62s ease both;
}

.dj-letter-intro.is-playing .dj-intro-emblem span {
  animation: dj-prestige-ring 1s .42s cubic-bezier(.2,.8,.2,1) both;
}

.dj-letter-intro.is-playing .dj-intro-brand p {
  animation: dj-prestige-rise .72s .72s ease both;
}

.dj-letter-intro.is-playing .dj-intro-ceremony h2 {
  animation: dj-prestige-title .9s 1.08s cubic-bezier(.16,.82,.18,1) both;
}

.dj-letter-intro.is-playing .dj-intro-rule {
  animation: dj-prestige-rule .88s 1.55s cubic-bezier(.65,0,.25,1) both;
}

.dj-letter-intro.is-playing .dj-intro-promise {
  animation: dj-prestige-rise .78s 1.9s ease both;
}

.dj-letter-intro.is-playing .dj-intro-arrow {
  animation:
    dj-prestige-rise .6s 2.28s ease both,
    dj-prestige-arrow 1.7s 2.95s ease-in-out infinite;
}

.dj-intro-scan {
  position: absolute;
  z-index: 4;
  top: 51%;
  left: 50%;
  width: min(900px, 82vw);
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(154,227,0,.58), 0 0 52px rgba(154,227,0,.18);
  opacity: 0;
  transform: translate(-50%,-50%) scaleX(0);
  transform-origin: center;
}

.dj-letter-intro.is-playing .dj-intro-scan {
  animation: dj-scan-lock .72s 1.58s cubic-bezier(.7,0,.22,1) both;
}

.dj-intro-meta {
  position: absolute;
  right: max(24px,4vw);
  bottom: max(24px,4vw);
  z-index: 3;
  margin: 0;
  color: rgba(244,244,241,.42);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: 0;
}

.dj-letter-intro.is-playing .dj-intro-meta {
  animation: dj-meta-in .55s 2.18s ease both;
}

.dj-intro-replay {
  position: fixed;
  right: max(18px,env(safe-area-inset-right));
  bottom: max(18px,env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(5,6,5,.68);
  color: rgba(255,255,255,.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: color .22s ease, border-color .22s ease, opacity .35s ease, transform .35s ease, visibility 0s linear .35s;
}

body.dj-intro-complete .dj-intro-replay {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}

.dj-intro-replay.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
  transform: translateY(8px) !important;
}

.dj-intro-replay:hover,
.dj-intro-replay:focus-visible {
  border-color: rgba(154,227,0,.62);
  color: var(--accent);
  outline: none;
}

body.dj-intro-running:not(.dj-intro-handoff) .hero-copy > *,
body.dj-intro-handoff .hero-copy > :not(h1),
body.dj-intro-running .home-pill,
body.dj-intro-running .language-switch {
  opacity: 0 !important;
}

body.dj-intro-running .hero-copy .reveal {
  animation-play-state: paused;
}

body.dj-intro-handoff .hero-copy > h1 {
  animation: hero-seal-handoff .9s cubic-bezier(.16,.82,.18,1) both;
}

body.dj-intro-handoff .hero-brand-emblem {
  animation: hero-emblem-settle .9s cubic-bezier(.16,.82,.18,1) both;
}

body.dj-intro-handoff .hero-brand-emblem::before {
  animation: hero-seal-ring 1.05s cubic-bezier(.16,.82,.18,1) both;
}

body.dj-intro-handoff .hero-official-brand {
  animation: hero-wordmark-settle .82s .08s cubic-bezier(.16,.82,.18,1) both;
}

body.dj-intro-complete .hero-copy > h1 {
  opacity: 1 !important;
  transition: none;
}

@keyframes dj-prestige-emblem {
  0% {
    opacity: 0;
    filter: blur(9px);
    transform: translateY(18px) scale(.78);
  }
  62% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}

@keyframes dj-prestige-wings {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes dj-prestige-ring {
  0% { opacity: 0; transform: scale(.86); }
  62% { opacity: .82; }
  100% { opacity: .26; transform: scale(1); }
}

@keyframes dj-prestige-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@keyframes dj-prestige-title {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}

@keyframes dj-prestige-rule {
  from { opacity: 0; transform: scaleX(.15); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes dj-prestige-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

@keyframes dj-grid-focus {
  0% { opacity: 0; transform: scale(1.08); }
  58% { opacity: .56; }
  100% { opacity: .16; transform: scale(1); }
}

@keyframes dj-scan-lock {
  0% { opacity: 0; transform: translate(-50%,-50%) scaleX(0); }
  42% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%,-50%) scaleX(1); }
}

@keyframes dj-meta-in {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: none; }
}

@keyframes dj-prestige-handoff-out {
  0%, 24% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(5px);
    transform: scale(.9);
  }
}

@keyframes hero-seal-handoff {
  from {
    opacity: .12;
    filter: blur(5px);
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}

@keyframes hero-emblem-settle {
  from {
    opacity: .2;
    filter:
      blur(3px)
      drop-shadow(0 0 42px rgba(255,255,255,.26))
      drop-shadow(0 0 80px rgba(154,227,0,.18));
    transform: scale(1.13);
  }
  to {
    opacity: .94;
    filter:
      blur(0)
      drop-shadow(0 0 28px rgba(255,255,255,.14))
      drop-shadow(0 0 54px rgba(154,227,0,.1));
    transform: none;
  }
}

@keyframes hero-wordmark-settle {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(10px);
  }
  to {
    opacity: .96;
    filter: blur(0);
    transform: none;
  }
}

@keyframes hero-seal-ring {
  0% {
    opacity: 0;
    transform: scale(.72);
  }
  42% {
    opacity: .48;
  }
  100% {
    opacity: 0;
    transform: scale(1.38);
  }
}

.site-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}

.site-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(154,227,0,.58);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.home-pill,
.language-switch {
  position: fixed;
  z-index: 90;
  top: max(18px, env(safe-area-inset-top));
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(0,0,0,.44);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-pill {
  left: max(18px, env(safe-area-inset-left));
  display: inline-flex;
  min-height: 46px;
  padding: 9px 13px;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.84);
  text-decoration: none;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .17em;
}

.home-pill img { width: 24px; height: 24px; object-fit: contain; }

.language-switch {
  right: max(18px, env(safe-area-inset-right));
  display: inline-flex;
  min-height: 46px;
  padding: 9px 13px;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.82);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.language-switch > span { opacity: .25; }

.language-button {
  appearance: none;
  padding: 6px 2px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  opacity: .5;
  cursor: pointer;
  transition: color 180ms ease, opacity 180ms ease;
}

.language-button:hover,
.language-button:focus-visible,
.language-button.is-active {
  color: var(--accent);
  opacity: 1;
  outline: none;
}

.dj-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 42%, rgba(154,227,0,.1), transparent 32%),
    radial-gradient(circle at 27% 60%, rgba(255,255,255,.055), transparent 28%),
    #050506;
}

.dj-hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(90deg, transparent 49.94%, rgba(255,255,255,.06) 50%, transparent 50.06%),
    linear-gradient(transparent 49.94%, rgba(255,255,255,.045) 50%, transparent 50.06%);
  background-size: 9vw 9vw;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  opacity: .4;
}

.dj-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 30vh;
  content: "";
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  width: min(74vw, 980px);
  aspect-ratio: 1;
  transform: rotate(-18deg) scaleY(.43);
}

.hero-orbit-two {
  width: min(48vw, 640px);
  aspect-ratio: 1;
  border-color: rgba(154,227,0,.2);
  transform: rotate(42deg) scaleY(.38);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(1080px, 90vw);
  padding: 120px 0 74px;
  text-align: center;
}

.hero-kicker,
.manifesto-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .27em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: clamp(28px, 4vh, 40px);
  font-family: var(--sans);
  line-height: 1;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
  text-shadow: 0 24px 100px rgba(0,0,0,.58);
}

.hero-brand-emblem {
  position: relative;
  width: clamp(132px, 12vw, 176px);
  aspect-ratio: 1;
  opacity: .94;
  filter:
    drop-shadow(0 0 28px rgba(255,255,255,.14))
    drop-shadow(0 0 54px rgba(154,227,0,.1));
}

.hero-brand-emblem::before {
  position: absolute;
  inset: -26%;
  z-index: -1;
  border: 1px solid rgba(154,227,0,.42);
  border-radius: 50%;
  content: "";
  opacity: 0;
  pointer-events: none;
}

.hero-brand-emblem img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-official-brand {
  color: rgba(244,244,241,.96);
  font-size: clamp(30px, 6.4vw, 82px);
  font-weight: 420;
  letter-spacing: .21em;
  text-indent: .21em;
  opacity: .96;
  scale: 1 1.14;
  transform-origin: center;
}

.brand-tm {
  display: inline-block;
  margin-left: .12em;
  color: rgba(244,244,241,.72);
  font-size: .21em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  opacity: .82;
  text-indent: 0;
  vertical-align: top;
  transform: translateY(-.08em);
}

.hero-promo-context {
  width: fit-content;
  margin: clamp(29px, 4.2vh, 40px) auto 0;
  padding-top: clamp(16px, 2.3vh, 22px);
  border-top: 1px solid rgba(154,227,0,.42);
  color: var(--accent);
  opacity: .92;
}

.hero-intro {
  max-width: 940px;
  margin: clamp(48px, 5.4vw, 68px) auto 0;
  color: rgba(244,244,241,.9);
  font-family: ui-serif, Georgia, serif;
  font-size: clamp(30px, 4.2vw, 58px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.06;
}

.scroll-cue {
  margin-top: 42px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.scroll-cue b {
  color: var(--accent);
  font-size: 19px;
  font-weight: 400;
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue { 50% { transform: translateY(7px); } }

.hero-side {
  position: absolute;
  top: 50%;
  z-index: 2;
  margin: 0;
  color: rgba(255,255,255,.35);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .24em;
  writing-mode: vertical-rl;
}

.hero-side-left { left: 24px; transform: translateY(-50%) rotate(180deg); }
.hero-side-right { right: 24px; transform: translateY(-50%); }

.manifesto {
  width: min(var(--max), 90vw);
  margin: 0 auto;
  padding: clamp(120px, 14vw, 200px) 0;
  display: grid;
  grid-template-columns: 110px minmax(0,1fr);
  gap: 42px;
}

.section-index {
  margin: 7px 0 0;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
}

.manifesto h2 {
  max-width: 970px;
  margin: 26px 0 0;
  font-family: ui-serif, Georgia, serif;
  font-size: clamp(45px, 7vw, 102px);
  font-weight: 400;
  line-height: .97;
  letter-spacing: -.045em;
}

.manifesto-copy {
  max-width: 670px;
  margin: 40px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.7;
}

.listening-room {
  position: relative;
  isolation: isolate;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: clamp(52px, 6.5vw, 92px) max(5vw, calc((100vw - var(--max))/2)) clamp(90px, 10vw, 150px);
  display: grid;
  grid-template-columns: minmax(360px, .94fr) minmax(500px, 1.06fr);
  align-items: start;
  gap: clamp(48px, 7vw, 108px);
  overflow: clip;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 34%, rgba(154,227,0,.075), transparent 25%),
    linear-gradient(135deg, #070708, #0d0d10 58%, #050506);
}

.listening-room::before {
  position: absolute;
  inset: -24%;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 23% 42%, rgba(154,227,0,.16), transparent 29%),
    radial-gradient(circle at 72% 58%, rgba(255,255,255,.065), transparent 26%),
    radial-gradient(ellipse at 50% 50%, rgba(154,227,0,.065), transparent 60%);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-1.5%,1%,0) scale(.94);
  transition: opacity 1.25s ease;
  will-change: opacity, transform;
}

body.audio-signal-active .listening-room::before {
  animation: room-signal-pulse 5.8s ease-in-out infinite;
}

.room-glow {
  position: absolute;
  top: 6%;
  left: -10%;
  width: min(60vw, 850px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(154,227,0,.05);
  filter: blur(110px);
  opacity: .72;
  pointer-events: none;
  transform: scale(.92);
  transform-origin: center;
  transition: opacity 1.1s ease, transform 1.1s ease;
  will-change: opacity, transform;
}

body.audio-signal-active .room-glow {
  animation: room-glow-pulse 5.8s ease-in-out infinite;
}

.artwork-stage {
  position: sticky;
  top: 86px;
  z-index: 1;
  width: 100%;
  max-width: 620px;
  margin: 0;
  justify-self: end;
  background: #09090b;
  border: 1px solid var(--line);
  box-shadow: 0 38px 110px rgba(0,0,0,.48);
  transition: border-color .9s ease, box-shadow 1.2s ease;
}

body.audio-signal-active .artwork-stage {
  animation: artwork-frame-pulse 5.8s ease-in-out infinite;
}

body.audio-signal-active .artwork {
  animation: artwork-signal-vibration 5.8s linear infinite;
}

body.audio-signal-active .artwork-shade {
  animation: artwork-shade-pulse 5.8s ease-in-out infinite;
}

body.audio-signal-active .artwork-play-indicator {
  border-color: rgba(154,227,0,.68);
  animation: playback-control-pulse 4.8s ease-in-out infinite;
}

body.audio-reactive-active .listening-room::before {
  animation: none;
  opacity: var(--signal-room-opacity, .32);
  transform: translate3d(-1.5%,1%,0) scale(.94);
}

body.audio-reactive-active .room-glow {
  animation: none;
  opacity: var(--signal-glow-opacity, .55);
  transform: scale(.92);
}

body.audio-reactive-active .artwork-stage {
  animation: none;
  border-color: var(--signal-frame-color, rgba(154,227,0,.2));
  box-shadow:
    0 38px 110px rgba(0,0,0,.48),
    0 0 82px var(--signal-frame-glow, rgba(154,227,0,.06));
  transition: none;
}

body.audio-reactive-active .artwork {
  animation: none;
  filter:
    brightness(var(--signal-brightness, 1))
    saturate(var(--signal-saturation, 1));
  transform:
    translate3d(var(--signal-x, 0), var(--signal-y, 0), 0)
    scale(1);
  transition: none;
}

body.audio-reactive-active .artwork-shade {
  animation: none;
  opacity: var(--signal-shade-opacity, .34);
}

body.audio-reactive-active .artwork-play-indicator {
  animation: none;
  border-color: var(--signal-control-color, rgba(154,227,0,.58));
  box-shadow:
    0 16px 45px rgba(0,0,0,.4),
    0 0 42px var(--signal-control-glow, rgba(154,227,0,.12));
  transform:
    translate(-50%,-50%)
    scale(var(--signal-control-scale, 1));
}

.artwork-play {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #121212;
  cursor: pointer;
}

.artwork {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.artwork {
  position: relative;
  z-index: 1;
  background: #09090b;
  transform: none;
  transition: filter .7s ease;
  animation: none;
}

.artwork-ghost {
  position: absolute;
  inset: -6%;
  z-index: 0;
  display: block;
  width: auto;
  aspect-ratio: auto;
  background-image: var(--active-cover, url("/assets/dj/covers/elektr-o-cean.jpg"));
  background-position: center;
  background-size: cover;
  filter: blur(42px) saturate(1.3);
  opacity: .38;
  animation: artwork-glow 12s ease-in-out infinite alternate;
}

@keyframes artwork-glow {
  from { transform: scale(1.12); opacity: .3; }
  to { transform: scale(1.18); opacity: .42; }
}

.artwork-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,.38));
  opacity: .15;
  transition: opacity .25s ease;
}

.artwork-play:hover .artwork-shade,
.artwork-play:focus-visible .artwork-shade,
.artwork-play.is-playing .artwork-shade { opacity: .5; }

.artwork-play:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -4px;
}

.artwork-play-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: clamp(62px, 6.6vw, 84px);
  height: clamp(62px, 6.6vw, 84px);
  place-items: center;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 50%;
  background: rgba(5,5,6,.52);
  box-shadow: 0 16px 45px rgba(0,0,0,.4);
  opacity: .82;
  transform: translate(-50%,-50%);
  backdrop-filter: blur(12px);
  transition: background .25s ease, transform .25s ease;
}

.artwork-play:hover .artwork-play-indicator,
.artwork-play:focus-visible .artwork-play-indicator {
  background: rgba(5,5,6,.78);
  transform: translate(-50%,-50%) scale(1.07);
}

.artwork-play-indicator svg {
  position: absolute;
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.artwork-pause-icon,
.player-pause-icon { display: none; }
.is-playing .artwork-play-icon,
.custom-player.is-playing .player-play-icon { display: none; }
.is-playing .artwork-pause-icon,
.custom-player.is-playing .player-pause-icon { display: block; }

.artwork-caption {
  min-height: 47px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

.track-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
}

@keyframes room-signal-pulse {
  0%, 100% {
    opacity: .36;
  }
  18% { opacity: .48; }
  21% { opacity: .88; }
  24% { opacity: .46; }
  58% { opacity: .4; }
  61% { opacity: 1; }
  65% { opacity: .44; }
}

@keyframes room-glow-pulse {
  0%, 100% {
    opacity: .55;
  }
  19% { opacity: .68; }
  22% { opacity: 1; }
  26% { opacity: .62; }
  59% { opacity: .58; }
  62% { opacity: .95; }
  66% { opacity: .6; }
}

@keyframes artwork-frame-pulse {
  0%, 100% {
    border-color: rgba(255,255,255,.14);
    box-shadow:
      0 38px 110px rgba(0,0,0,.48),
      0 0 0 rgba(154,227,0,0);
  }
  21%, 61% {
    border-color: rgba(154,227,0,.48);
    box-shadow:
      0 38px 110px rgba(0,0,0,.48),
      0 0 82px rgba(154,227,0,.16),
      0 0 0 1px rgba(154,227,0,.18);
  }
}

@keyframes artwork-signal-vibration {
  0%, 18%, 24%, 58%, 65%, 100% {
    filter: brightness(1) saturate(1);
    transform: translate3d(0,0,0);
  }
  19% { filter: brightness(1.035) saturate(1.025); transform: translate3d(.04px,-.025px,0); }
  20% { transform: translate3d(-.035px,.02px,0); }
  21% { filter: brightness(1.055) saturate(1.035); transform: translate3d(.025px,.015px,0); }
  22% { transform: translate3d(-.02px,-.01px,0); }
  23% { filter: brightness(1.02) saturate(1.015); transform: translate3d(0,0,0); }
  59% { filter: brightness(1.03) saturate(1.02); transform: translate3d(-.04px,.025px,0); }
  60% { transform: translate3d(.035px,-.02px,0); }
  61% { filter: brightness(1.055) saturate(1.035); transform: translate3d(-.025px,-.015px,0); }
  62% { transform: translate3d(.02px,.01px,0); }
  64% { filter: brightness(1.018) saturate(1.012); transform: translate3d(0,0,0); }
}

@keyframes artwork-shade-pulse {
  0%, 100% { opacity: .34; }
  21%, 61% { opacity: .5; }
}

@keyframes playback-control-pulse {
  0%, 100% {
    box-shadow:
      0 16px 45px rgba(0,0,0,.4),
      0 0 22px rgba(154,227,0,.08),
      0 0 0 0 rgba(154,227,0,.18);
    transform: translate(-50%,-50%) scale(.98);
  }
  50% {
    box-shadow:
      0 16px 45px rgba(0,0,0,.4),
      0 0 38px rgba(154,227,0,.22),
      0 0 0 13px rgba(154,227,0,0);
    transform: translate(-50%,-50%) scale(1.055);
  }
}

.track-heading { min-height: 285px; padding-bottom: 34px; }

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .21em;
  text-transform: uppercase;
}

.eyebrow > span { width: 34px; height: 1px; background: var(--accent); }
.eyebrow b { font: inherit; }

.artist {
  margin: 0 0 11px;
  color: var(--accent);
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 650;
  letter-spacing: .23em;
}

.track-heading h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(52px, 5vw, 78px);
  font-weight: 300;
  letter-spacing: -.07em;
  line-height: .84;
  white-space: nowrap;
}

.version {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .18em;
}

.custom-player {
  min-height: 84px;
  padding: 15px;
  display: grid;
  grid-template-columns: 52px minmax(0,1fr) 38px;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}

.native-player {
  display: block;
  grid-column: 1 / -1;
  width: 100%;
  height: 54px;
  color-scheme: dark;
  accent-color: var(--accent);
}

.simple-player {
  display: block;
  min-height: 0;
  padding: 10px 14px;
}

.custom-player [hidden] {
  display: none !important;
}

.artwork-stage .custom-player {
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(154,227,0,.045), rgba(255,255,255,.025));
}

.artwork-stage .quality-line {
  padding: 10px 15px;
  border-bottom: 1px solid var(--line);
}

.player-toggle,
.mute-toggle {
  appearance: none;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.player-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-dark);
}

.player-toggle svg { width: 23px; height: 23px; fill: currentColor; }

.mute-toggle {
  width: 38px;
  height: 38px;
  color: var(--muted);
}

.mute-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: square;
}

.player-toggle:focus-visible,
.mute-toggle:focus-visible { outline: 2px solid var(--text); outline-offset: 3px; }

.timeline {
  min-width: 0;
  position: relative;
}

.timeline input {
  appearance: none;
  width: 100%;
  height: 28px;
  margin: 0;
  background: transparent;
  cursor: pointer;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.timeline input::-webkit-slider-runnable-track {
  height: 2px;
  background: linear-gradient(to right, var(--accent) var(--seek-fill, 0%), rgba(255,255,255,.18) var(--seek-fill, 0%));
}

.timeline input::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  margin-top: -6px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 13px rgba(154,227,0,.55);
}

.timeline input::-moz-range-track { height: 2px; background: rgba(255,255,255,.18); }
.timeline input::-moz-range-progress { height: 2px; background: var(--accent); }
.timeline input::-moz-range-thumb { width: 14px; height: 14px; border: 0; border-radius: 50%; background: var(--accent); }

.time-row {
  margin-top: 3px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.43);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
}

.quality-line {
  padding: 11px 2px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,.35);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .16em;
}

.actions {
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: 1fr .6fr;
  gap: 10px;
}

.button {
  min-height: 52px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid var(--line-strong);
  text-decoration: none;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.5;
}

.button-primary { background: var(--accent); border-color: var(--accent); color: #080a05; }
.button-primary:hover, .button-primary:focus-visible { background: var(--text); border-color: var(--text); }
.button-secondary:hover, .button-secondary:focus-visible { border-color: var(--accent); color: var(--accent); }

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

.track-row {
  width: 100%;
  min-height: 84px;
  padding: 11px 0;
  display: grid;
  grid-template-columns: 30px 58px minmax(0,1fr) 22px;
  align-items: center;
  gap: 13px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: padding .22s ease, background-color .22s ease, color .22s ease;
}

.track-row:hover,
.track-row:focus-visible {
  padding-right: 12px;
  padding-left: 12px;
  background: rgba(255,255,255,.045);
  outline: none;
}

.track-row.is-active {
  padding-right: 12px;
  padding-left: 12px;
  background: var(--accent);
  color: #080a05;
}

.track-index {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
}

.track-row.is-active .track-index,
.track-row.is-active .track-artist,
.track-row.is-active .track-name small { color: rgba(8,10,5,.62); }

.track-row img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: cover;
}

.track-copy { min-width: 0; display: grid; gap: 6px; }

.track-artist {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .17em;
}

.track-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .04em;
}

.track-name small {
  margin-left: 8px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .09em;
}

.track-arrow {
  color: var(--muted);
  font-size: 15px;
  transition: color .2s ease, transform .2s ease;
}

.track-row.is-active .track-arrow { color: #080a05; transform: rotate(45deg); }

.closing-band {
  position: relative;
  min-height: 100svh;
  padding: clamp(80px, 9vw, 132px) max(5vw, calc((100vw - var(--max))/2));
  display: grid;
  grid-template-columns: minmax(0,1fr) clamp(190px,19vw,270px);
  grid-template-rows: auto auto;
  align-items: end;
  column-gap: clamp(44px,7vw,110px);
  row-gap: clamp(58px,7vw,96px);
  background: var(--text);
  color: #080808;
  overflow: hidden;
}

.closing-copy {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: center;
}

.closing-copy > p {
  margin: 0 0 28px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .24em;
}

.closing-copy h2 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(56px, 9vw, 142px);
  font-weight: 300;
  letter-spacing: -.075em;
  line-height: .86;
}

.closing-contact {
  display: inline-block;
  align-self: flex-start;
  margin-top: 54px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(0,0,0,.45);
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.closing-contact span { color: #5a8500; }

.closing-left-links {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  justify-self: start;
  display: grid;
  grid-template-columns: repeat(2, clamp(190px,19vw,270px));
  gap: clamp(16px,2vw,28px);
}

.press-square {
  position: relative;
  align-self: end;
  justify-self: end;
  width: 100%;
  aspect-ratio: 1;
  padding: clamp(22px,2.6vw,36px);
  display: flex;
  flex-direction: column;
  border: 1px solid #080808;
  background: #080808;
  color: var(--text);
  text-decoration: none;
  transition: background-color .28s ease, color .28s ease, transform .28s ease;
}

.closing-band > .press-square {
  grid-column: 2;
  grid-row: 2;
}

.press-square:hover,
.press-square:focus-visible {
  background: var(--accent);
  color: #080808;
  outline: none;
  transform: translateY(-8px);
}

.press-square-index {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .19em;
}

.press-square strong {
  margin-top: auto;
  font-family: ui-serif,Georgia,serif;
  font-size: clamp(30px,3.3vw,50px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .9;
}

.press-square small {
  max-width: 18ch;
  margin-top: 16px;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: .12em;
  line-height: 1.55;
  text-transform: uppercase;
}

.press-square i {
  position: absolute;
  right: clamp(22px,2.6vw,36px);
  top: clamp(22px,2.6vw,36px);
  color: var(--accent);
  font-size: 20px;
  font-style: normal;
}

.press-square:hover i,
.press-square:focus-visible i { color: #080808; }

.site-footer {
  width: min(var(--max), 90vw);
  min-height: 94px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
}

.site-footer a { color: var(--text); text-decoration: none; text-transform: uppercase; }

.section-reveal {
  opacity: 0;
  transform: translate3d(0,70px,0);
  transition: opacity .9s cubic-bezier(.22,1,.36,1), transform 1.1s cubic-bezier(.22,1,.36,1);
}

.section-reveal.is-visible { opacity: 1; transform: none; }

.reveal {
  opacity: 0;
  transform: translate3d(0,42px,0);
  animation: intro-reveal .95s cubic-bezier(.22,1,.36,1) forwards;
}

.hero-copy h1 { animation-delay: .08s; }
.hero-intro { animation-delay: .22s; }
.scroll-cue { animation-delay: .34s; }

@keyframes intro-reveal { to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  .listening-room {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .artwork-stage {
    position: relative;
    top: auto;
    max-width: 650px;
    justify-self: center;
  }

  .track-panel { width: min(100%,650px); justify-self: center; }
  .track-heading { min-height: auto; }
  .track-heading h2 { max-width: none; }
}

@media (max-width: 700px) {
  .home-pill {
    min-height: 42px;
    padding: 8px 10px;
    font-size: 8px;
  }

  .home-pill img { width: 21px; height: 21px; }

  .language-switch { min-height: 42px; padding: 8px 10px; }
  .hero-side { display: none; }
  .manifesto {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .listening-room { padding-right: 16px; padding-left: 16px; }
  .quality-line { flex-wrap: wrap; }

  .closing-band {
    min-height: 100svh;
    padding-right: 20px;
    padding-left: 20px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 40px;
  }

  .closing-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .closing-left-links {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 14px;
  }

  .closing-band > .press-square {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
  }

  .closing-band > .press-square {
    width: min(250px,72vw);
  }

  .closing-left-links .press-square {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .home-pill { top: 12px; left: 12px; }
  .home-pill span { display: none; }
  .language-switch { top: 12px; right: 12px; }

  .hero-copy { padding-top: 84px; }
  .hero-copy h1 { gap: 24px; }
  .hero-brand-emblem {
    width: clamp(104px, 29vw, 124px);
    opacity: .92;
  }
  .hero-official-brand {
    font-size: clamp(27px, 8vw, 34px);
    letter-spacing: .13em;
    text-indent: .13em;
  }
  .brand-tm {
    margin-left: .1em;
    font-size: .24em;
  }
  .hero-promo-context {
    max-width: calc(100vw - 48px);
    margin-top: 28px;
    padding-top: 17px;
    font-size: 9px;
    letter-spacing: .22em;
    line-height: 1.45;
  }
  .hero-intro {
    max-width: 12.5em;
    margin-top: 44px;
    font-size: clamp(28px, 8.8vw, 40px);
    line-height: 1.08;
  }

  .manifesto {
    width: calc(100% - 32px);
    padding: 105px 0;
  }

  .manifesto h2 { font-size: clamp(43px, 13.5vw, 62px); }

  .listening-room {
    padding-top: 46px;
    padding-bottom: 82px;
    gap: 38px;
  }

  .artwork-caption { min-height: 40px; }
  .track-heading { padding-bottom: 25px; }
  .track-heading h2 { font-size: clamp(40px, 11vw, 54px); }

  .custom-player {
    grid-template-columns: 48px minmax(0,1fr);
    gap: 12px;
    padding: 12px;
  }

  .simple-player {
    display: block;
    min-height: 0;
    padding: 10px 12px;
  }

  .player-toggle { width: 48px; height: 48px; }
  .mute-toggle { display: none; }

  .actions { grid-template-columns: 1fr; margin-bottom: 28px; }

  .track-row {
    min-height: 76px;
    grid-template-columns: 24px 50px minmax(0,1fr) 18px;
    gap: 10px;
  }

  .track-row img { width: 50px; height: 50px; }
  .track-name small { display: block; margin: 4px 0 0; }

  .closing-band h2 { font-size: clamp(59px, 19vw, 88px); }
  .site-footer { min-height: 110px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .promo-particle { animation: none !important; }
  .promo-particles { opacity: 0; }
  body.promo-particles-ready .promo-particles { opacity: .08; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
/* Track-specific verified selector ratings */
.selector-signal {
  position: relative;
  margin: 0 0 26px;
  padding: 18px 0 16px;
  border-top: 1px solid rgba(184,255,52,.32);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.selector-signal::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 78px;
  height: 1px;
  content: "";
  background: #b8ff34;
  box-shadow: 0 0 22px rgba(184,255,52,.42);
}

.selector-signal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.selector-signal-kicker,
.selector-signal-proof,
.selector-rating-name small,
.selector-rating-score em,
.selector-rating-note {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
}

.selector-signal-kicker {
  margin: 0;
  color: #b8ff34;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .24em;
}

.selector-signal-proof {
  margin: 0;
  color: rgba(255,255,255,.34);
  font-size: 7px;
  letter-spacing: .18em;
}

.selector-rating-list {
  width: 100%;
  margin-top: 14px;
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
}

.selector-rating {
  padding: 12px 14px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 18px;
  background: rgba(0,0,0,.56);
}

.selector-rating-name {
  margin: 0;
  color: #fff;
  font-size: clamp(16px,1.55vw,21px);
  font-weight: 320;
  letter-spacing: -.025em;
}

.selector-rating-name small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.3);
  font-size: 7px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .16em;
}

.selector-rating-score {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.selector-rating-stars {
  color: #b8ff34;
  font: 300 19px/1 Arial, sans-serif;
  letter-spacing: .06em;
  text-shadow: 0 0 18px rgba(184,255,52,.22);
}

.selector-rating-stars .is-empty {
  color: rgba(255,255,255,.16);
  text-shadow: none;
}

.selector-rating-score em {
  color: rgba(255,255,255,.52);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .12em;
}

.selector-rating-note {
  margin: 10px 0 0;
  color: rgba(255,255,255,.28);
  font-size: 7px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .13em;
}

@media (max-width: 520px) {
  .selector-signal { margin-bottom: 22px; padding: 16px 0 14px; }
  .selector-signal-head { align-items: flex-start; flex-direction: column; gap: 7px; }
  .selector-rating { padding: 11px 12px; gap: 10px; }
  .selector-rating-name { font-size: 16px; }
  .selector-rating-stars { font-size: 17px; }
  .selector-rating-score { gap: 8px; }
}
