:root {
  color-scheme: dark;
  --bg: #030407;
  --bg-2: #071015;
  --ink: #f5f8fb;
  --muted: #a7b2b7;
  --cyan: #08d7f7;
  --cyan-2: #68f2ff;
  --lime: #a8ff3e;
  --magenta: #ff3e9e;
  --line: rgba(255, 255, 255, 0.15);
  --panel: rgba(6, 13, 18, 0.78);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(8, 215, 247, 0.16), transparent 28rem),
    radial-gradient(circle at 12% 72%, rgba(255, 62, 158, 0.12), transparent 26rem),
    linear-gradient(180deg, #020306 0%, #071015 48%, #020306 100%);
  color: var(--ink);
  overflow-x: hidden;
}

body.intro-active:not(.intro-complete) .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
}

body.intro-complete .intro-gate {
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

body.intro-complete .intro-skip {
  opacity: 0;
}

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

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

.signal-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.intro-gate {
  --intro-backdrop-opacity: 0.04;
  --intro-backdrop-scale: 0.86;
  --intro-backdrop-y: 42px;
  --intro-border-alpha: 0.12;
  --intro-cyan-alpha: 0.2;
  --intro-glow-alpha: 0;
  --intro-grid-opacity: 0.18;
  --intro-grid-scale: 1;
  --intro-logo-blur: 0px;
  --intro-logo-opacity: 1;
  --intro-logo-scale: 1;
  --intro-logo-y: 0svh;
  --intro-overlay-alpha: 0;
  --intro-saturate: 0.65;
  --intro-symbol-alpha: 0.36;
  --intro-veil-bottom: 0.96;
  --intro-veil-top: 0.9;
  position: relative;
  z-index: 30;
  height: 245svh;
  margin-bottom: -100svh;
  background: #000;
  transition: opacity 180ms ease;
}

.intro-stage {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, var(--intro-veil-top)), rgba(0, 0, 0, var(--intro-veil-bottom))),
    radial-gradient(circle at 50% 50%, rgba(8, 215, 247, var(--intro-cyan-alpha)), transparent 34rem),
    #000;
  isolation: isolate;
}

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

.intro-stage::before {
  z-index: -1;
  opacity: var(--intro-grid-opacity);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: scale(var(--intro-grid-scale));
}

.intro-stage::after {
  background: linear-gradient(180deg, transparent 68%, rgba(0, 0, 0, var(--intro-overlay-alpha)));
}

.intro-backdrop {
  position: absolute;
  inset: clamp(70px, 9vw, 118px) clamp(18px, 6vw, 84px);
  z-index: -2;
  border: 1px solid rgba(104, 242, 255, var(--intro-border-alpha));
  opacity: var(--intro-backdrop-opacity);
  transform: scale(var(--intro-backdrop-scale)) translateY(var(--intro-backdrop-y));
  transition: border-color 160ms ease;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(8, 215, 247, var(--intro-glow-alpha));
}

.intro-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(var(--intro-saturate)) contrast(1.16);
}

.intro-logo {
  display: grid;
  width: min(1160px, 96vw);
  justify-items: center;
  color: transparent;
  text-align: center;
  transform: translateY(var(--intro-logo-y)) scale(var(--intro-logo-scale));
  transform-origin: center;
  opacity: var(--intro-logo-opacity);
  filter: blur(var(--intro-logo-blur));
  will-change: transform, opacity, filter;
}

.intro-symbol {
  color: rgba(8, 215, 247, var(--intro-symbol-alpha));
  font-size: clamp(5rem, 16vw, 13rem);
  font-weight: 900;
  line-height: 0.72;
  text-shadow:
    0 0 32px rgba(8, 215, 247, 0.46),
    0 0 90px rgba(255, 62, 158, 0.22);
}

.intro-word {
  -webkit-text-stroke: clamp(1px, 0.16vw, 2px) rgba(245, 248, 251, 0.38);
  font-size: clamp(4rem, 15.3vw, 12rem);
  font-weight: 950;
  line-height: 0.78;
  text-transform: uppercase;
  text-shadow: 0 0 34px rgba(8, 215, 247, 0.16);
}

.intro-skip {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(22px, 4vw, 46px);
  z-index: 2;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid rgba(104, 242, 255, 0.34);
  background: rgba(0, 0, 0, 0.46);
  color: rgba(245, 248, 251, 0.82);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.intro-skip::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.intro-skip:hover,
.intro-skip:focus-visible {
  border-color: rgba(104, 242, 255, 0.74);
  color: var(--ink);
  transform: translateY(-2px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 4, 7, 0.76);
  backdrop-filter: blur(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 68px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(8, 215, 247, 0.34));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 24px);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--cyan-2);
}

main {
  position: relative;
}

main > section,
#credits {
  scroll-margin-top: 82px;
}

.hero {
  min-height: calc(100svh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 4vw, 70px);
  padding: 96px clamp(18px, 5vw, 72px) 28px;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(4.1rem, 7.8vw, 7.1rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 34px rgba(8, 215, 247, 0.3);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 5vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 22px;
  color: #d5dde2;
  font-size: clamp(1.22rem, 2.1vw, 2.05rem);
  font-weight: 700;
  line-height: 1.15;
}

.genre-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.genre-row span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(8, 215, 247, 0.4);
  background: var(--cyan);
  color: #001116;
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(8, 215, 247, 0.26);
}

.hero-text,
.section-heading p,
.story-panel p,
.milestone-grid p,
.booking-section h2 {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.65;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 34px;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--line);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  border-color: rgba(8, 215, 247, 0.72);
  background: var(--cyan);
  color: #001116;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
}

.hero-media {
  position: relative;
  justify-self: center;
  width: min(480px, 100%);
  margin: 0;
  border: 1px solid rgba(104, 242, 255, 0.24);
  background:
    radial-gradient(circle at 50% 22%, rgba(8, 215, 247, 0.18), transparent 17rem),
    rgba(0, 0, 0, 0.34);
  box-shadow: var(--shadow), 0 0 70px rgba(8, 215, 247, 0.12);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: auto;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(8, 215, 247, 0.12), transparent 34%, rgba(255, 62, 158, 0.08));
}

.sound-section,
.narrative-section,
.category-section,
.detour-section,
.legacy-section,
.live-section,
.capabilities-section,
.process-section,
.about-section,
.booking-section {
  padding: clamp(64px, 8vw, 120px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 860px;
}

.section-heading p,
.signal-card p,
.release-grid p,
.work-card li,
.capability-list p,
.process-grid p,
.booking-section p {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.65;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(8, 215, 247, 0.08), rgba(255, 62, 158, 0.06), rgba(168, 255, 62, 0.06)),
    rgba(0, 0, 0, 0.58);
}

.proof-strip span {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 16px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: #dce8ec;
  font-size: 0.74rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.proof-strip span:last-child {
  border-right: 0;
}

.section-kicker {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
  color: var(--ink);
}

.section-kicker span {
  color: var(--cyan-2);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section-kicker strong {
  max-width: 560px;
  font-size: clamp(2rem, 4.8vw, 5rem);
  line-height: 0.95;
  text-align: right;
  text-transform: uppercase;
}

.category-grid,
.card-grid,
.release-grid,
.work-grid,
.process-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-grid a,
.signal-card,
.release-grid article,
.work-card,
.process-grid article {
  position: relative;
  min-width: 0;
  padding: clamp(20px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 46%),
    rgba(3, 4, 7, 0.86);
  overflow: hidden;
}

.category-grid a::after,
.signal-card::after,
.work-card::after,
.process-grid article::after {
  content: "";
  position: absolute;
  inset: auto 16px 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--lime));
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: opacity 160ms ease, transform 160ms ease;
}

.category-grid a:hover::after,
.category-grid a:focus-visible::after,
.signal-card:hover::after,
.work-card:hover::after,
.process-grid article:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.category-grid span,
.signal-card span,
.process-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--magenta);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.category-grid strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.7rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.category-grid small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

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

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.narrative-section,
.live-section,
.process-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    rgba(0, 0, 0, 0.3);
  background-size: 46px 46px;
}

.release-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.release-grid article {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.release-grid h3,
.work-card h3,
.capability-list h3,
.process-grid h3,
.signal-card h3 {
  text-transform: uppercase;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.tag-row span {
  padding: 6px 9px;
  border: 1px solid rgba(104, 242, 255, 0.28);
  color: var(--cyan-2);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.detour-section {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  background:
    radial-gradient(circle at 78% 18%, rgba(8, 215, 247, 0.1), transparent 28rem),
    radial-gradient(circle at 12% 82%, rgba(255, 62, 158, 0.08), transparent 24rem),
    #000;
}

.legacy-section {
  background: #020306;
}

.work-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.work-card.featured {
  grid-column: span 2;
}

.work-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.work-card:not(.featured) ul {
  grid-template-columns: 1fr;
}

.work-card li {
  min-width: 0;
  overflow-wrap: anywhere;
}

.capabilities-section {
  background:
    radial-gradient(circle at 82% 0%, rgba(168, 255, 62, 0.1), transparent 26rem),
    rgba(2, 3, 6, 0.82);
}

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

.capability-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 62px);
  padding: clamp(20px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--line);
}

.capability-list p {
  max-width: 760px;
  margin-bottom: 0;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid article {
  min-height: 300px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  background:
    radial-gradient(circle at 18% 50%, rgba(8, 215, 247, 0.12), transparent 28rem),
    #000;
}

.about-media {
  border: 1px solid rgba(104, 242, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(1.16) contrast(1.12);
}

.warp-section {
  --warp-progress: 0;
  --warp-depth: 0;
  --warp-zoom: 1;
  --warp-opacity: 0;
  --warp-accent: var(--cyan);
  --warp-accent-2: var(--cyan-2);
  position: relative;
  height: 170svh;
  margin-block: -1px;
  background: #000;
  isolation: isolate;
}

.warp-section[data-tone="magenta"] {
  --warp-accent: var(--magenta);
  --warp-accent-2: #ff8ac7;
}

.warp-section[data-tone="lime"] {
  --warp-accent: var(--lime);
  --warp-accent-2: #d4ff90;
}

.warp-stage {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 52%, rgba(245, 248, 251, calc(0.06 + var(--warp-opacity) * 0.22)), transparent calc(8rem + var(--warp-depth) * 18rem)),
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--warp-accent) 28%, transparent), transparent calc(16rem + var(--warp-depth) * 30rem)),
    linear-gradient(180deg, #000 0%, #030407 42%, #000 100%);
  perspective: 900px;
}

.warp-stage::before,
.warp-stage::after,
.warp-grid,
.warp-rings,
.warp-streaks,
.warp-core {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.warp-stage::before {
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: calc(0.12 + var(--warp-opacity) * 0.18);
  transform: scale(calc(1 + var(--warp-depth) * 1.25));
}

.warp-stage::after {
  content: "";
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.12) 50%, transparent 52%),
    linear-gradient(0deg, transparent 0 48%, rgba(255, 255, 255, 0.1) 50%, transparent 52%),
    radial-gradient(circle at 50% 50%, transparent 0 18%, rgba(0, 0, 0, calc(0.24 + var(--warp-opacity) * 0.34)) 74%);
  opacity: calc(0.18 + var(--warp-opacity) * 0.42);
  mix-blend-mode: screen;
  transform: scale(calc(1 + var(--warp-depth) * 0.34)) rotate(calc(var(--warp-progress) * 18deg));
}

.warp-grid {
  background:
    repeating-linear-gradient(90deg, transparent 0 64px, rgba(255, 255, 255, 0.05) 65px, transparent 66px),
    repeating-linear-gradient(0deg, transparent 0 64px, rgba(255, 255, 255, 0.04) 65px, transparent 66px);
  clip-path: polygon(50% 50%, 100% 0, 100% 100%, 0 100%, 0 0);
  opacity: calc(0.08 + var(--warp-opacity) * 0.22);
  transform: translateZ(-160px) scale(calc(1.04 + var(--warp-depth) * 1.8));
}

.warp-rings {
  transform-style: preserve-3d;
  transform: rotateX(64deg) scale(calc(0.72 + var(--warp-depth) * 0.48));
}

.warp-rings span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(18vmin + var(--i) * 13vmin);
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--warp-accent-2) 70%, transparent);
  border-radius: 50%;
  box-shadow:
    0 0 28px color-mix(in srgb, var(--warp-accent) 34%, transparent),
    inset 0 0 22px color-mix(in srgb, var(--warp-accent) 18%, transparent);
  opacity: calc(0.2 + var(--warp-opacity) * 0.48 - var(--i) * 0.025);
  transform:
    translate(-50%, -50%)
    translateZ(calc(var(--i) * -90px + var(--warp-depth) * 380px))
    scale(calc(1 + var(--warp-depth) * (1.2 + var(--i) * 0.18)))
    rotate(calc(var(--warp-progress) * 95deg + var(--i) * 18deg));
}

.warp-streaks {
  opacity: calc(0.18 + var(--warp-opacity) * 0.62);
  transform: scale(calc(0.9 + var(--warp-depth) * 1.35));
}

.warp-streaks span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(44vw, 560px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--warp-accent-2), transparent);
  box-shadow: 0 0 22px var(--warp-accent);
  opacity: calc(0.14 + var(--warp-opacity) * 0.5);
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--i) * 30deg + var(--warp-progress) * 28deg))
    translateX(calc(8vw + var(--warp-depth) * 18vw))
    scaleX(calc(0.46 + var(--warp-depth) * 1.5));
}

.warp-core {
  inset: 50%;
  width: clamp(120px, 24vw, 320px);
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--warp-accent-2) 76%, transparent);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(245, 248, 251, calc(0.5 + var(--warp-opacity) * 0.25)) 0 8%, color-mix(in srgb, var(--warp-accent) 42%, transparent) 10% 34%, transparent 58%);
  box-shadow:
    0 0 calc(48px + var(--warp-depth) * 80px) color-mix(in srgb, var(--warp-accent) 64%, transparent),
    inset 0 0 42px color-mix(in srgb, var(--warp-accent) 28%, transparent);
  opacity: calc(0.46 + var(--warp-opacity) * 0.42);
  transform:
    translate(-50%, -50%)
    scale(calc(0.76 + var(--warp-depth) * 3.2))
    rotate(calc(var(--warp-progress) * -70deg));
}

.warp-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  max-width: min(880px, 88vw);
  color: var(--ink);
  text-align: center;
  text-transform: uppercase;
  transform:
    translateY(calc((0.5 - var(--warp-progress)) * 28px))
    scale(calc(0.88 + var(--warp-opacity) * 0.18));
  opacity: calc(0.36 + var(--warp-opacity) * 0.64);
}

.warp-copy span {
  margin-bottom: 14px;
  color: var(--warp-accent-2);
  font-size: 0.82rem;
  font-weight: 950;
}

.warp-copy strong {
  font-size: clamp(2.6rem, 9vw, 9rem);
  line-height: 0.86;
  text-shadow: 0 0 44px color-mix(in srgb, var(--warp-accent) 34%, transparent);
}

@supports not (color: color-mix(in srgb, red, blue)) {
  .warp-stage {
    background:
      radial-gradient(circle at 50% 50%, rgba(8, 215, 247, 0.22), transparent 44rem),
      #000;
  }

  .warp-rings span,
  .warp-core {
    border-color: rgba(104, 242, 255, 0.55);
  }
}

.player-shell {
  position: relative;
  border: 1px solid rgba(122, 34, 255, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 32%),
    radial-gradient(circle at 24% 18%, rgba(122, 34, 255, 0.2), transparent 24rem),
    rgba(0, 0, 0, 0.88);
  box-shadow: var(--shadow), 0 0 60px rgba(122, 34, 255, 0.16);
  overflow: hidden;
}

.player-shell::before {
  content: "Beyond the Void";
  position: absolute;
  left: clamp(18px, 4vw, 48px);
  right: clamp(18px, 4vw, 48px);
  bottom: calc(100% + 12px);
  z-index: -1;
  color: rgba(245, 248, 251, 0.045);
  font-size: clamp(3.8rem, 11vw, 10.8rem);
  font-weight: 950;
  line-height: 0.78;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.soundcloud-widget {
  position: absolute;
  width: 100%;
  height: 166px;
  opacity: 0;
  pointer-events: none;
}

.player-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.72fr);
  min-height: 348px;
}

.player-deck,
.queue-panel {
  min-width: 0;
  padding: clamp(20px, 3vw, 34px);
}

.player-deck {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 42%),
    rgba(5, 6, 10, 0.64);
}

.player-status,
.queue-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 24px;
  color: rgba(245, 248, 251, 0.7);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.player-status {
  justify-content: flex-start;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(8, 215, 247, 0.8);
}

.player-shell.is-playing .status-dot {
  background: var(--lime);
  box-shadow: 0 0 20px rgba(168, 255, 62, 0.86);
}

.track-meta {
  align-self: center;
}

.track-meta p {
  margin-bottom: 8px;
  color: #a35cff;
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.track-meta h3 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 5.1vw, 4.8rem);
  font-weight: 950;
  line-height: 0.88;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.timeline-wrap {
  display: grid;
  gap: 10px;
}

.timeline,
.volume-slider {
  width: 100%;
  margin: 0;
  accent-color: #f5f8fb;
  cursor: pointer;
}

.timeline {
  height: 22px;
}

.timeline::-webkit-slider-runnable-track,
.volume-slider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--track-fill, #f5f8fb) var(--value, 0%), rgba(255, 255, 255, 0.2) 0);
}

.timeline::-moz-range-track,
.volume-slider::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.timeline::-moz-range-progress,
.volume-slider::-moz-range-progress {
  height: 4px;
  border-radius: 999px;
  background: var(--track-fill, #f5f8fb);
}

.timeline::-webkit-slider-thumb,
.volume-slider::-webkit-slider-thumb {
  width: 14px;
  height: 14px;
  margin-top: -5px;
  border-radius: 999px;
  border: 0;
  background: #f5f8fb;
  box-shadow: 0 0 18px rgba(245, 248, 251, 0.65);
  appearance: none;
}

.timeline::-moz-range-thumb,
.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 999px;
  background: #f5f8fb;
  box-shadow: 0 0 18px rgba(245, 248, 251, 0.65);
}

.time-row {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  color: rgba(245, 248, 251, 0.72);
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
  font-weight: 850;
}

.time-row span:first-child::after {
  content: "/";
  margin-left: 8px;
  color: rgba(245, 248, 251, 0.42);
}

.transport-row,
.transport-controls,
.volume-wrap {
  display: flex;
  align-items: center;
}

.transport-row {
  justify-content: space-between;
  gap: 22px;
}

.transport-controls {
  gap: 14px;
}

.volume-wrap {
  width: min(170px, 31%);
  gap: 10px;
}

.icon-button,
.play-button,
.queue-list button {
  border: 0;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.icon-button,
.play-button {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.icon-button {
  width: 42px;
  height: 42px;
  color: rgba(245, 248, 251, 0.82);
}

.icon-button.subtle {
  width: 28px;
  height: 28px;
  color: rgba(245, 248, 251, 0.64);
}

.play-button {
  width: 58px;
  height: 58px;
  background: var(--ink);
  color: #05060a;
  box-shadow: 0 0 28px rgba(245, 248, 251, 0.24);
}

.icon-button:hover,
.icon-button:focus-visible,
.play-button:hover,
.play-button:focus-visible {
  transform: translateY(-2px);
}

.icon-button:hover,
.icon-button:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cyan-2);
}

.play-symbol {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid currentColor;
}

.player-shell.is-playing .play-symbol {
  width: 16px;
  height: 20px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(90deg, currentColor 0 5px, transparent 5px 11px, currentColor 11px 16px);
}

.skip-icon {
  position: relative;
  width: 20px;
  height: 18px;
}

.skip-icon::before,
.skip-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.skip-icon::before {
  left: 1px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.skip-icon::after {
  right: 1px;
  width: 3px;
  height: 16px;
  border-radius: 999px;
  background: currentColor;
}

.skip-icon.prev {
  transform: scaleX(-1);
}

.volume-icon {
  position: relative;
  width: 18px;
  height: 16px;
  border-left: 5px solid currentColor;
}

.volume-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 10px;
  height: 14px;
  border: 2px solid currentColor;
  border-left: 0;
  border-radius: 0 999px 999px 0;
}

.soundcloud-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 85, 0, 0.54);
  color: #ff8a42;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.soundcloud-link:hover,
.soundcloud-link:focus-visible {
  border-color: #ff5500;
  color: #ffb27f;
  transform: translateY(-2px);
}

.queue-panel {
  background:
    linear-gradient(180deg, rgba(122, 34, 255, 0.12), transparent 38%),
    rgba(0, 0, 0, 0.66);
}

.queue-header {
  margin-bottom: 16px;
}

.queue-header p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.queue-header span {
  color: rgba(245, 248, 251, 0.48);
  font-variant-numeric: tabular-nums;
}

.queue-list {
  display: grid;
  gap: 8px;
  max-height: 256px;
  padding: 0;
  margin: 0;
  overflow: auto;
  list-style: none;
  scrollbar-color: rgba(122, 34, 255, 0.72) rgba(255, 255, 255, 0.08);
}

.queue-list li {
  min-width: 0;
}

.queue-list button {
  display: grid;
  width: 100%;
  min-height: 58px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.queue-list button:hover,
.queue-list button:focus-visible,
.queue-list li.is-active button {
  border-color: rgba(122, 34, 255, 0.84);
  background: rgba(122, 34, 255, 0.13);
}

.queue-list button:hover,
.queue-list button:focus-visible {
  transform: translateX(2px);
}

.queue-list span {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.queue-list small {
  min-width: 0;
  overflow: hidden;
  color: rgba(245, 248, 251, 0.56);
  font-size: 0.68rem;
  font-weight: 850;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.fallback-player iframe {
  display: block;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: stretch;
  background: #000;
}

.story-panel {
  padding: clamp(24px, 4vw, 46px) 0;
}

.milestone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  align-self: center;
  border: 1px solid var(--line);
  background: var(--line);
}

.milestone-grid article {
  padding: clamp(20px, 3vw, 34px);
  background: rgba(3, 4, 7, 0.82);
  backdrop-filter: blur(10px);
}

.milestone-grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--magenta);
  font-weight: 950;
}

.credit-lanes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.credit-lane {
  padding: clamp(22px, 3vw, 42px);
  background: rgba(4, 10, 13, 0.86);
}

.credit-lane ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  color: #d7dee2;
  font-weight: 750;
}

.credit-lane li {
  min-width: 0;
  overflow-wrap: anywhere;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(8, 215, 247, 0.12), rgba(255, 62, 158, 0.08) 58%, rgba(168, 255, 62, 0.08));
}

.booking-section h2 {
  max-width: 880px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1;
}

.booking-section p {
  max-width: 720px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 32px clamp(18px, 5vw, 72px);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  color: var(--ink);
  font-weight: 850;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 1020px) {
  .hero,
  .detour-section,
  .about-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

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

  .proof-strip span:nth-child(3n) {
    border-right: 0;
  }

  .category-grid,
  .four-up,
  .work-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .three-up,
  .release-grid {
    grid-template-columns: 1fr;
  }

  .work-card.featured {
    grid-column: span 2;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-media {
    width: min(460px, 100%);
  }

  .player-panel {
    grid-template-columns: 1fr;
  }

  .player-deck {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .queue-list {
    max-height: 244px;
  }

  .booking-actions {
    justify-content: flex-start;
  }

  .warp-section {
    height: 150svh;
  }

  .warp-copy strong {
    font-size: clamp(2.6rem, 12vw, 7.4rem);
  }
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    min-height: 62px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    position: relative;
    isolation: isolate;
    min-height: auto;
    padding-top: 44px;
    overflow: hidden;
  }

  .hero-copy {
    position: relative;
    z-index: 1;
  }

  .hero-media {
    position: absolute;
    top: 86px;
    right: -78px;
    z-index: 0;
    width: 280px;
    opacity: 0.24;
    pointer-events: none;
  }

  .hero-media img {
    height: 520px;
    object-fit: cover;
  }

  .warp-section {
    height: 150svh;
  }

  .warp-stage {
    min-height: 86svh;
  }

  .warp-rings {
    transform: rotateX(58deg) scale(calc(0.88 + var(--warp-depth) * 0.42));
  }

  .warp-streaks span {
    width: 82vw;
  }

  .warp-copy strong {
    font-size: clamp(2.45rem, 15vw, 5.2rem);
  }

  .proof-strip,
  .category-grid,
  .four-up,
  .work-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip span,
  .proof-strip span:nth-child(3n) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .proof-strip span:last-child {
    border-bottom: 0;
  }

  .section-kicker {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-kicker strong {
    text-align: left;
  }

  .work-card.featured {
    grid-column: auto;
  }

  .capability-list article {
    grid-template-columns: 1fr;
  }

  .about-media img {
    min-height: 280px;
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 5.3rem);
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .credit-lanes {
    grid-template-columns: 1fr;
  }

  .work-card ul {
    grid-template-columns: 1fr;
  }

  .player-shell::before {
    display: none;
  }

  .player-deck,
  .queue-panel {
    padding: 20px;
  }

  .player-deck {
    min-height: 410px;
  }

  .track-meta h3 {
    font-size: clamp(1.55rem, 12vw, 3.6rem);
  }

  .transport-row {
    align-items: stretch;
    flex-direction: column;
  }

  .volume-wrap {
    width: 100%;
  }

  .transport-controls {
    justify-content: center;
  }

  .soundcloud-link {
    width: 100%;
  }

  .credit-lane ul {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .warp-section {
    height: auto;
  }

  .warp-stage {
    position: relative;
    min-height: 56svh;
  }

  .warp-stage::before,
  .warp-stage::after,
  .warp-grid,
  .warp-rings,
  .warp-streaks,
  .warp-core,
  .warp-copy {
    transition: none;
  }
}
