:root {
  color-scheme: dark;
  --black: #050505;
  --ink: #0a0a0a;
  --charcoal: #111111;
  --panel: #151515;
  --paper: #f4f1ea;
  --white: #ffffff;
  --muted: #a1a1a1;
  --soft: #d6d2ca;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.42);
  --red: #d71920;
  --font-body: "Instrument Sans", "Inter", Arial, sans-serif;
  --font-display: "Space Grotesk", "Arial Black", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  min-width: 320px;
  max-width: 100%;
  margin: 0;
  padding-bottom: env(safe-area-inset-bottom);
  overflow-x: clip;
  background:
    radial-gradient(circle at 76% 14%, rgba(215, 25, 32, 0.12), transparent 26rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 96px 96px,
    var(--black);
  color: var(--paper);
  font-family: var(--font-body);
}

body.boot-locked {
  overflow: hidden;
}

.site-texture,
.glitch-jump-flash {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
}

.site-texture {
  z-index: 1;
  opacity: 0.36;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 18% 22%, rgba(215, 25, 32, 0.14), transparent 18rem),
    radial-gradient(circle at 86% 78%, rgba(215, 25, 32, 0.11), transparent 14rem),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 38px);
  animation: textureDrift 9s linear infinite;
}

.site-texture::before,
.site-texture::after {
  content: "";
  position: absolute;
  inset: -10%;
}

.site-texture::before {
  opacity: 0.22;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1px 80px),
    radial-gradient(circle at 63% 58%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1px 96px),
    radial-gradient(circle at 82% 30%, rgba(215, 25, 32, 0.9) 0 1px, transparent 1px 72px);
  animation: dustPulse 1.8s steps(2, end) infinite;
}

.site-texture::after {
  opacity: 0.18;
  background: linear-gradient(105deg, transparent 0 58%, rgba(215, 25, 32, 0.6) 59%, transparent 66%);
  transform: translateX(-18%);
  animation: lightLeak 7s ease-in-out infinite;
}

.glitch-jump-flash {
  z-index: 90;
  visibility: hidden;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(215, 25, 32, 0.95) 18% 20%, transparent 20% 62%, rgba(255, 255, 255, 0.72) 62% 63%, transparent 63%),
    rgba(215, 25, 32, 0.16);
}

body.is-glitch-jumping .glitch-jump-flash {
  visibility: visible;
  animation: navFlash 360ms steps(3, end) both;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 2;
}

#music,
#epk,
#contact {
  scroll-margin-top: 86px;
}

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

button,
a,
input,
textarea {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

.boot-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(5, 5, 5, 0.98);
  transition:
    opacity 260ms ease,
    visibility 260ms ease;
}

.boot-overlay img {
  width: min(240px, 56vw);
  height: auto;
  filter: contrast(1.08) drop-shadow(0 0 28px rgba(215, 25, 32, 0.42));
  animation: bootPop 900ms cubic-bezier(0.2, 0.9, 0.18, 1) both;
}

.boot-overlay.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  height: 64px;
  min-width: 0;
  gap: 12px;
  padding-inline: 20px;
  border-right: 1px solid var(--line);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 38px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--white);
  background: var(--ink);
}

.brand-mark img {
  width: 90%;
  height: 84%;
  object-fit: contain;
  image-rendering: auto;
}

.brand-name {
  overflow: hidden;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
  height: 64px;
}

.site-nav a {
  display: grid;
  place-items: center;
  min-width: 104px;
  padding-inline: 16px;
  border-left: 1px solid var(--line);
  color: var(--soft);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--black);
  background: var(--paper);
  text-shadow:
    2px 0 var(--red),
    -2px 0 var(--white);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  margin-right: 10px;
  padding: 0;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--paper);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 40vw);
  min-height: 100svh;
  padding: 64px 0 0;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 64px 0 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(215, 25, 32, 0.16) 58% 58.6%, transparent 58.6%),
    radial-gradient(circle at 80% 26%, rgba(255, 255, 255, 0.08), transparent 24rem);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-width: 0;
  padding: clamp(78px, 9vw, 122px) clamp(28px, 6vw, 86px) clamp(44px, 5vw, 70px);
}

.kicker,
.section-index,
.release-panel span,
.drop-feature span,
.visual-tile span,
.visual-copy span,
  .show-board span,
  .promoter-pack span,
  .stream-grid span,
  .social-strip span,
  .epk-preview-card span,
  .terminal-caption {
  margin: 0;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.kicker::before,
.release-panel span::before,
.drop-feature span::before,
.visual-tile span::before,
.visual-copy span::before,
.show-board span::before {
  content: '"';
}

.kicker::after,
.release-panel span::after,
.drop-feature span::after,
.visual-tile span::after,
.visual-copy span::after,
.show-board span::after {
  content: '"';
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin-top: 18px;
  font-size: clamp(4.3rem, 8.7vw, 8.9rem);
}

.glitch-text {
  position: relative;
  display: inline-block;
  text-shadow:
    3px 0 rgba(215, 25, 32, 0.82),
    -2px 0 rgba(255, 255, 255, 0.35);
  animation: glitchIntro 950ms steps(2, end) both;
}

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

.glitch-text::before {
  color: var(--red);
  transform: translate(3px, -1px);
  clip-path: inset(0 0 54% 0);
  animation: glitchSlice 4.2s steps(2, end) infinite;
}

.glitch-text::after {
  color: rgba(255, 255, 255, 0.72);
  transform: translate(-3px, 2px);
  clip-path: inset(48% 0 0 0);
  animation: glitchSlice 5.1s steps(2, end) infinite reverse;
}

.glitch-text.subtle {
  text-shadow:
    2px 0 rgba(215, 25, 32, 0.6),
    -1px 0 rgba(255, 255, 255, 0.28);
}

.statement {
  width: min(760px, 100%);
  margin: 22px 0 0;
  color: var(--soft);
  font-size: clamp(1.15rem, 2.2vw, 1.72rem);
  font-weight: 700;
  line-height: 1.22;
}

.hero-actions,
.mini-actions,
.press-actions,
.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-socials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, 100%);
  margin-top: 18px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.44);
}

.hero-socials a {
  display: grid;
  gap: 8px;
  min-height: 86px;
  padding: 14px;
  border-right: 1px solid var(--line);
}

.hero-socials a:last-child {
  border-right: 0;
}

.hero-socials span {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-socials strong {
  align-self: end;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1.35vw, 1.22rem);
  line-height: 0.96;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-socials a:first-child {
  background: var(--red);
}

.hero-socials a:first-child span,
.hero-socials a:first-child strong {
  color: var(--white);
}

.hero-socials a:hover,
.hero-socials a:focus-visible {
  color: var(--black);
  background: var(--paper);
  outline: none;
}

.hero-socials a:hover span,
.hero-socials a:hover strong,
.hero-socials a:focus-visible span,
.hero-socials a:focus-visible strong {
  color: var(--black);
}

.terminal-module {
  display: grid;
  gap: 4px;
  width: min(520px, 100%);
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(215, 25, 32, 0.48);
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.14), transparent),
    rgba(0, 0, 0, 0.58);
  color: rgba(244, 241, 234, 0.82);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
  box-shadow: 10px 10px 0 rgba(215, 25, 32, 0.16);
}

.terminal-module span {
  animation: terminalFlicker 4.8s steps(2, end) infinite;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 150ms ease,
    color 150ms ease,
    border-color 150ms ease,
    transform 150ms ease,
    box-shadow 150ms ease;
}

.button::after {
  content: "->";
  margin-left: 12px;
  color: currentColor;
  transition: transform 140ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--black);
  border-color: var(--paper);
  background: var(--paper);
  outline: none;
  box-shadow: 7px 7px 0 var(--red);
  transform: translate(-2px, -2px) rotate(-0.7deg);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(4px);
}

.button.primary {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.button.primary:hover,
.button.primary:focus-visible {
  color: var(--white);
  background: #ff2530;
}

.release-stage {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: stretch;
  min-width: 0;
  border-left: 1px solid var(--line);
  background: var(--ink);
}

.hero-object-stage {
  grid-template-rows: minmax(0, 1fr) auto;
}

.video-overlays {
  position: absolute;
  inset: 74px 22px 22px;
  z-index: 8;
  pointer-events: none;
}

.overlay-label,
.section-body::before {
  position: absolute;
  display: inline-grid;
  place-items: center;
  min-height: 24px;
  padding: 5px 8px;
  border: 1px solid rgba(244, 241, 234, 0.28);
  color: var(--paper);
  background: rgba(0, 0, 0, 0.64);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 2px 0 var(--red);
  box-shadow: 5px 5px 0 rgba(215, 25, 32, 0.34);
  animation: labelFlicker 5.4s steps(2, end) infinite;
}

.label-a {
  top: 4%;
  left: 4%;
  transform: rotate(-2deg);
}

.label-b {
  top: 30%;
  right: 2%;
  transform: rotate(2deg);
}

.label-c {
  right: 4%;
  bottom: 22%;
  max-width: 180px;
  transform: rotate(-1deg);
}

.label-d {
  left: 10%;
  bottom: 8%;
  transform: rotate(1.5deg);
}

.cb-motion-shell {
  position: relative;
  min-height: 68svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 62% 32%, rgba(255, 255, 255, 0.14), transparent 12rem),
    radial-gradient(circle at 30% 70%, rgba(215, 25, 32, 0.2), transparent 17rem),
    #000000;
}

.cb-motion-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0 56%, rgba(0, 0, 0, 0.82)),
    linear-gradient(90deg, rgba(215, 25, 32, 0.18), transparent 42%);
}

.cb-motion-canvas,
.cb-motion-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cb-motion-canvas {
  z-index: 1;
  display: block;
  opacity: 0;
  transition: opacity 260ms ease;
}

.cb-motion-shell.is-live .cb-motion-canvas {
  opacity: 1;
}

.cb-motion-fallback {
  object-fit: cover;
  filter: contrast(1.08);
  transition: opacity 260ms ease;
}

.cb-motion-shell.is-live .cb-motion-fallback {
  opacity: 0;
}

.release-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 68svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #000;
}

.release-art::after,
.visual-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0 52%, rgba(5, 5, 5, 0.72)),
    linear-gradient(90deg, rgba(215, 25, 32, 0.14), transparent 38%);
}

.release-art img {
  width: 100%;
  height: 100%;
  min-height: 68svh;
  padding: clamp(14px, 2.4vw, 36px);
  object-fit: contain;
  filter: contrast(1.08);
}

.release-panel {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px;
}

.vinyl-cover-object {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1;
  margin-bottom: clamp(8px, 1.5vw, 18px);
  perspective: 1100px;
  transform-style: preserve-3d;
}

.vinyl-cover-object::before {
  display: none;
}

.vinyl-cover-object::after {
  content: "";
  position: absolute;
  inset: 18px -18px -20px 20px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.55), rgba(0, 0, 0, 0.1)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13), transparent 26%);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.48);
  transform: translateZ(-34px) rotateX(8deg) rotateY(-13deg);
  filter: blur(0.2px);
}

.vinyl-cover-object img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(244, 241, 234, 0.24);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.55),
    18px 18px 0 rgba(255, 255, 255, 0.045),
    30px 30px 0 rgba(215, 25, 32, 0.16);
  transform: rotateX(8deg) rotateY(-13deg) rotateZ(-1deg);
  transform-origin: center;
  transition:
    filter 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.drop-feature:hover .vinyl-cover-object img,
.drop-feature:focus-within .vinyl-cover-object img {
  filter: contrast(1.18) saturate(0.92);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.62),
    14px 14px 0 rgba(255, 255, 255, 0.08),
    34px 28px 0 rgba(215, 25, 32, 0.3);
  transform: rotateX(10deg) rotateY(-16deg) rotateZ(-1.8deg) translateY(-5px);
}

.cb-companion-motion {
  position: absolute;
  left: clamp(22px, 3vw, 46px);
  top: clamp(22px, 3vw, 46px);
  z-index: 4;
  width: clamp(72px, 8vw, 128px);
  min-height: 0;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 241, 234, 0.42);
  background: rgba(0, 0, 0, 0.34);
  overflow: hidden;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.42),
    12px 12px 0 rgba(215, 25, 32, 0.3);
  transform: perspective(900px) rotateY(-18deg) rotateX(6deg);
  transform-origin: center;
}

.cb-companion-motion::after {
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(135deg, transparent 45%, rgba(215, 25, 32, 0.26));
}

.cb-companion-motion .cb-motion-canvas,
.cb-companion-motion .cb-motion-fallback {
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: contain;
}

.release-panel strong {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.release-panel p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.4;
}

.release-panel .lyric-pull {
  max-width: 420px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 3.2rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.terminal-caption {
  max-width: 420px;
  color: var(--red) !important;
  font-size: 0.78rem !important;
  line-height: 1.3 !important;
}

.release-panel a {
  width: max-content;
  border-bottom: 1px solid var(--red);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.release-panel .button {
  width: auto;
  border-bottom: 1px solid var(--line-strong);
}

.vertical-ticker {
  position: absolute;
  top: 84px;
  bottom: 20px;
  z-index: 2;
  width: 30px;
  overflow: hidden;
  color: rgba(244, 241, 234, 0.64);
  pointer-events: none;
}

.vertical-ticker-left {
  left: 12px;
}

.vertical-ticker-right {
  right: 12px;
}

.vertical-ticker div {
  display: flex;
  gap: 18px;
  min-height: max-content;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  animation: verticalTicker 18s linear infinite;
}

.vertical-ticker-right div {
  animation-direction: reverse;
}

.ticker {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line-strong);
  color: var(--paper);
  background: var(--red);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(48px, 8vw, 140px);
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--red), rgba(215, 25, 32, 0));
}

.ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--red), rgba(215, 25, 32, 0));
}

.ticker div {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: tickerMove 36s linear infinite;
}

.ticker span {
  position: relative;
  padding: 12px 20px;
}

.ticker span::after {
  content: "/";
  position: absolute;
  right: -2px;
  color: rgba(255, 255, 255, 0.7);
}

.bio-section {
  min-height: auto;
}

.bio-section-body {
  padding-block: clamp(42px, 6vw, 84px);
}

.bio-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.78fr);
  min-height: min(720px, 78svh);
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px) 0 0 / 76px 76px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px) 0 0 / 76px 76px,
    rgba(12, 12, 12, 0.96);
}

.bio-copy {
  display: grid;
  align-content: end;
  gap: clamp(18px, 2.2vw, 28px);
  min-width: 0;
  padding: clamp(28px, 6vw, 72px);
  border-right: 1px solid var(--line);
}

.bio-label {
  margin: 0;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.bio-copy h2 {
  max-width: 10.5ch;
  margin: 0;
  font-size: clamp(3.2rem, 7.4vw, 7.1rem);
}

.bio-deck {
  max-width: 760px;
  margin: 0;
  color: rgba(244, 241, 234, 0.82);
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.7vw, 1.62rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.bio-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 8px;
  border: 1px solid var(--line);
}

.bio-proof-grid span {
  display: grid;
  align-content: space-between;
  gap: 28px;
  min-height: 96px;
  padding: 14px;
  border-right: 1px solid var(--line);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.34rem);
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
}

.bio-proof-grid small {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

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

.bio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.atm-motion-shell {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 40%, rgba(255, 255, 255, 0.11), transparent 15rem),
    radial-gradient(circle at 72% 70%, rgba(215, 25, 32, 0.18), transparent 16rem),
    #050505;
}

.hero-atm-object {
  min-height: 68svh;
  border-bottom: 1px solid var(--line);
}

.atm-motion-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.72)),
    linear-gradient(90deg, rgba(215, 25, 32, 0.12), transparent 42%);
}

.atm-motion-canvas,
.atm-motion-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.atm-motion-canvas {
  z-index: 1;
  display: block;
  opacity: 0;
  transition: opacity 260ms ease;
}

.atm-motion-shell.is-live .atm-motion-canvas {
  opacity: 1;
}

.atm-motion-fallback {
  object-fit: contain;
  padding: clamp(54px, 8vw, 112px);
  filter: drop-shadow(0 26px 64px rgba(215, 25, 32, 0.26));
  transition: opacity 260ms ease;
}

.atm-motion-shell.is-live .atm-motion-fallback {
  opacity: 0;
}

.section {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  min-height: 72svh;
  border-bottom: 1px solid var(--line);
}

.section-index {
  display: grid;
  place-items: start center;
  padding-top: clamp(34px, 5vw, 70px);
  border-right: 1px solid var(--line);
  color: var(--muted);
}

.section-body {
  position: relative;
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  min-width: 0;
  padding: clamp(34px, 5vw, 70px);
}

.section-body::before {
  right: clamp(18px, 4vw, 62px);
  top: clamp(26px, 4vw, 54px);
  z-index: 1;
  opacity: 0.78;
}

.music-section .section-body::before {
  content: "STREAM LINKS ONLINE";
}

.epk-section .section-body::before {
  content: "PRESS KIT READY";
}

.contact-section .section-body::before {
  content: "FINAL TAKE";
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 1120px;
}

.section-heading h2 {
  max-width: 14ch;
  font-size: clamp(3rem, 8vw, 7.7rem);
}

.release-grid,
.visual-grid,
.press-layout,
.bio-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.drop-feature,
.stream-grid,
.visual-tile,
.visual-copy,
.fact-sheet,
.press-actions,
.bio-layout p {
  background: rgba(12, 12, 12, 0.96);
}

.drop-feature {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: end;
  min-height: 440px;
  padding: clamp(22px, 4vw, 42px);
  overflow: hidden;
  transition:
    box-shadow 160ms ease,
    transform 160ms ease,
    border-color 160ms ease;
}

.drop-feature::before {
  content: "";
  position: absolute;
  inset: -30%;
  opacity: 0.26;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 30%, rgba(215, 25, 32, 0.62), transparent 14rem),
    linear-gradient(115deg, transparent 0 47%, rgba(255, 255, 255, 0.12) 47% 48%, transparent 48%);
  transform: translateX(-18%);
  transition: transform 200ms ease;
}

.drop-feature > * {
  position: relative;
  z-index: 1;
}

.drop-feature:hover,
.drop-feature:focus-within {
  box-shadow:
    12px 12px 0 rgba(215, 25, 32, 0.3),
    inset 0 0 0 1px rgba(215, 25, 32, 0.72);
  transform: rotate(-0.35deg) translateY(-3px);
}

.drop-feature:hover::before,
.drop-feature:focus-within::before {
  transform: translateX(0);
}

.card-stamp {
  position: absolute !important;
  top: 18px;
  right: 18px;
  z-index: 3 !important;
  padding: 5px 8px;
  border: 1px solid rgba(244, 241, 234, 0.4);
  background: var(--red);
  color: var(--white) !important;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.8);
  transform: rotate(2deg);
}

.drop-feature h3 {
  font-size: clamp(4rem, 11vw, 10rem);
}

.drop-feature p,
.visual-copy p,
.show-board p,
.bio-layout p,
.release-panel p {
  color: var(--muted);
}

.drop-feature p {
  max-width: 520px;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
}

.drop-quote {
  color: var(--paper) !important;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 3.2rem) !important;
  line-height: 0.92 !important;
  text-transform: uppercase;
}

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

.stream-grid a {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: end;
  min-height: 220px;
  padding: 22px;
  overflow: hidden;
  background: rgba(9, 9, 9, 0.98);
  transition:
    background 150ms ease,
    color 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

.stream-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 7px),
    linear-gradient(120deg, transparent 0 52%, rgba(215, 25, 32, 0.34) 52% 56%, transparent 56%);
  transition: opacity 150ms ease;
}

.stream-grid a:hover,
.stream-grid a:focus-visible {
  background: var(--paper);
  color: var(--black);
  box-shadow: 10px 10px 0 var(--red);
  transform: rotate(0.7deg) translate(-2px, -2px);
  outline: none;
}

.stream-grid a:hover::before,
.stream-grid a:focus-visible::before {
  opacity: 0.45;
}

.stream-grid strong {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.stream-grid em {
  position: relative;
  z-index: 1;
  max-width: 24ch;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.stream-grid b {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 1.2rem;
  transition: transform 150ms ease;
}

.stream-grid a:hover em,
.stream-grid a:focus-visible em,
.stream-grid a:hover b,
.stream-grid a:focus-visible b {
  color: var(--black);
}

.stream-grid a:hover b,
.stream-grid a:focus-visible b {
  transform: translate(4px, -4px);
}

.visual-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.62fr) minmax(260px, 0.72fr);
}

.visual-tile {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.visual-tile-large {
  min-height: 620px;
}

.visual-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.08);
}

.visual-tile div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 20px;
}

.visual-tile strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.visual-copy {
  display: grid;
  gap: 16px;
  align-content: end;
  min-height: 520px;
  padding: 22px;
}

.visual-copy p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
}

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

.show-board article,
.promoter-pack article {
  display: grid;
  gap: 12px;
  align-content: space-between;
  min-height: 260px;
  padding: 22px;
  background: rgba(10, 10, 10, 0.96);
  transition:
    box-shadow 150ms ease,
    transform 150ms ease,
    background 150ms ease;
}

.promoter-pack article:hover,
.promoter-pack article:focus-within {
  background: rgba(18, 18, 18, 0.98);
  box-shadow: 8px 8px 0 rgba(215, 25, 32, 0.28);
  transform: rotate(-0.3deg) translateY(-2px);
}

.show-board strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.show-board p {
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

.bio-layout {
  align-items: stretch;
}

.bio-layout p {
  display: grid;
  align-content: end;
  min-height: 360px;
  margin: 0;
  padding: clamp(22px, 4vw, 42px);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.35;
}

.fact-sheet {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.fact-sheet div {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background 150ms ease,
    transform 150ms ease,
    box-shadow 150ms ease;
}

.fact-sheet div:hover {
  background: rgba(20, 20, 20, 0.98);
  box-shadow: inset 5px 0 0 var(--red);
  transform: translateX(2px);
}

.fact-sheet div:nth-child(3),
.fact-sheet div:nth-child(4) {
  grid-column: 1 / -1;
}

.fact-sheet dt {
  margin: 0 0 10px;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.fact-sheet dd {
  margin: 0;
  color: var(--paper);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.press-actions {
  display: flex;
  flex-wrap: wrap;
  align-content: end;
  align-items: end;
  min-height: 360px;
  gap: 10px;
  padding: 22px;
}

.epk-preview-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 0.44fr) minmax(0, 0.56fr);
  width: 100%;
  min-height: 230px;
  margin-bottom: 8px;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 234, 0.24);
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.18), transparent 44%),
    #050505;
  box-shadow:
    12px 12px 0 rgba(215, 25, 32, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.epk-preview-card::after {
  content: "REC 06.23.26";
  position: absolute;
  right: 12px;
  top: 12px;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.epk-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.16) grayscale(0.08);
}

.epk-preview-card div {
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 18px;
}

.epk-preview-card strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.88;
}

.epk-preview-card p {
  margin: 0;
  color: var(--soft);
  font-weight: 800;
  line-height: 1.35;
}

.inline-status {
  min-height: 1.3em;
  margin: 0;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
}

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

.promoter-pack p {
  margin: 0;
  color: var(--paper);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.35;
}

.contact-layout {
  gap: 28px;
}

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

.offer-form label,
.offer-preview-block,
.offer-actions {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 18px;
  background: rgba(10, 10, 10, 0.96);
  transition:
    background 150ms ease,
    box-shadow 150ms ease;
}

.offer-form label:focus-within,
.offer-preview-block:focus-within {
  background: rgba(16, 16, 16, 0.98);
  box-shadow: inset 0 0 0 1px rgba(215, 25, 32, 0.62);
}

.offer-form span,
.offer-preview-block span {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.offer-form input,
.offer-form textarea,
.offer-preview-block textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line-strong);
  color: var(--paper);
  background: #050505;
  font-size: 0.96rem;
  font-weight: 700;
}

.offer-form input {
  min-height: 48px;
  padding: 0 12px;
}

.offer-form textarea,
.offer-preview-block textarea {
  min-height: 126px;
  resize: vertical;
  padding: 12px;
  line-height: 1.45;
}

.offer-preview-block textarea {
  min-height: 220px;
  overflow: hidden;
  resize: none;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.offer-form input:focus,
.offer-form textarea:focus,
.offer-preview-block textarea:focus {
  border-color: var(--paper);
  outline: none;
}

.wide-field,
.offer-preview-block,
.offer-actions {
  grid-column: 1 / -1;
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.social-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  border: 1px solid var(--line);
}

.social-strip a {
  display: grid;
  align-content: space-between;
  gap: 22px;
  min-height: 84px;
  padding: 16px;
  border-right: 1px solid var(--line);
  color: var(--paper);
  text-transform: uppercase;
  transition:
    background 150ms ease,
    color 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

.social-strip strong {
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 2.2vw, 1.72rem);
  font-weight: 700;
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.social-strip a:first-child {
  color: var(--white);
  background: var(--red);
}

.social-strip a:hover,
.social-strip a:focus-visible {
  color: var(--black);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--red);
  transform: rotate(-0.5deg) translate(-2px, -2px);
  outline: none;
}

.social-strip a:hover span,
.social-strip a:focus-visible span,
.social-strip a:hover strong,
.social-strip a:focus-visible strong {
  color: var(--black);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px calc(20px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

@keyframes bootPop {
  0% {
    opacity: 0;
    transform: scale(0.86) translateY(8px);
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes textureDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-38px, 24px, 0);
  }
}

@keyframes dustPulse {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(18px, -12px);
  }
}

@keyframes lightLeak {
  0%,
  100% {
    opacity: 0.08;
    transform: translateX(-18%);
  }
  45% {
    opacity: 0.28;
    transform: translateX(10%);
  }
}

@keyframes navFlash {
  0% {
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  42% {
    opacity: 0.28;
  }
  70% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}

@keyframes glitchIntro {
  0% {
    opacity: 0;
    transform: translateX(-10px) skewX(-4deg);
  }
  22% {
    opacity: 1;
    transform: translateX(7px) skewX(3deg);
  }
  36% {
    transform: translateX(-3px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes glitchSlice {
  0%,
  82%,
  100% {
    opacity: 0;
  }
  84% {
    opacity: 0.72;
    transform: translate(5px, -1px);
  }
  86% {
    opacity: 0.4;
    transform: translate(-4px, 2px);
  }
  88% {
    opacity: 0;
  }
}

@keyframes labelFlicker {
  0%,
  100% {
    opacity: 0.82;
  }
  44% {
    opacity: 0.82;
  }
  46% {
    opacity: 0.32;
  }
  48% {
    opacity: 0.92;
  }
}

@keyframes terminalFlicker {
  0%,
  100% {
    opacity: 0.82;
  }
  50% {
    opacity: 1;
  }
  52% {
    opacity: 0.58;
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-20%);
  }
}

@keyframes verticalTicker {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@media (max-width: 1180px) {
  .hero,
  .release-grid,
  .visual-grid,
  .press-layout,
  .bio-layout,
  .bio-feature {
    grid-template-columns: 1fr;
  }

  .release-stage {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .release-art,
  .cb-motion-shell,
  .atm-motion-shell,
  .release-art img {
    min-height: 520px;
  }

  .vertical-ticker {
    display: none;
  }

  .visual-grid {
    display: grid;
  }
}

@media (max-width: 860px) {
  .site-texture {
    opacity: 0.18;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand-lockup {
    border-right: 0;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 64px 0 auto;
    display: grid;
    height: auto;
    border-top: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 150ms ease,
      transform 150ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    justify-content: start;
    min-width: 0;
    min-height: 54px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
  }

  .section-index {
    display: none;
  }

  .section-body {
    padding: 36px 18px;
  }

  .section-body::before,
  .video-overlays {
    display: none;
  }

  .section-heading,
  .section-heading h2 {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding: 128px 18px 42px;
  }

  h1 {
    max-width: 100%;
  }

  .statement,
  .hero-actions,
  .hero-socials,
  .release-stage,
  .ticker {
    width: 100%;
    max-width: 100%;
  }

  .stream-grid,
  .hero-socials,
  .bio-proof-grid,
  .show-board,
  .promoter-pack,
  .offer-form,
  .social-strip {
    grid-template-columns: 1fr;
  }

  .fact-sheet {
    grid-template-columns: 1fr;
  }

  .fact-sheet div {
    grid-column: auto !important;
  }

  .visual-tile,
  .visual-tile-large,
  .visual-copy {
    min-height: 390px;
  }

  .hero-actions > *,
  .mini-actions > *,
  .press-actions > *,
  .offer-actions > *,
  .button {
    width: 100%;
  }

  .terminal-module,
  .epk-preview-card {
    box-shadow: none;
  }

  .epk-preview-card {
    grid-template-columns: 1fr;
  }

  .epk-preview-card img {
    aspect-ratio: 1;
    height: auto;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(3rem, 14.6vw, 3.55rem);
    line-height: 0.9;
    overflow-wrap: anywhere;
  }

  .brand-name {
    max-width: 160px;
  }

  .release-art,
  .cb-motion-shell,
  .atm-motion-shell,
  .release-art img {
    min-height: 420px;
  }

  .hero-atm-object {
    min-height: 480px;
  }

  .terminal-module {
    font-size: 0.72rem;
  }

  .ticker span {
    padding-inline: 14px;
  }

  .drop-feature {
    min-height: 360px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 78px;
  }

  #music,
  #epk,
  #contact {
    scroll-margin-top: 78px;
  }

  .site-header {
    min-height: 64px;
  }

  .brand-lockup {
    height: 64px;
    padding-inline: 16px;
  }

  .brand-mark {
    width: 70px;
    height: 40px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 64px 0 0;
    overflow: hidden;
  }

  .hero::before {
    inset: 64px 0 0;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    order: 1;
    width: 100%;
    padding: 34px 18px 24px;
  }

  .hero-copy .kicker {
    order: 1;
  }

  .hero-copy h1 {
    order: 2;
  }

  .statement {
    order: 3;
    margin-top: 16px;
    font-size: clamp(1.02rem, 5.3vw, 1.28rem);
    line-height: 1.18;
  }

  .hero-actions {
    order: 4;
    gap: 8px;
    margin-top: 20px;
  }

  .hero-actions .button {
    width: auto;
    flex: 1 1 146px;
    min-height: 44px;
    padding-inline: 12px;
  }

  .hero-socials {
    order: 5;
    grid-template-columns: repeat(auto-fit, minmax(106px, 1fr));
    margin-top: 16px;
    width: 100%;
  }

  .hero-socials a {
    min-height: 72px;
    padding: 11px;
  }

  .hero-socials span {
    font-size: 0.62rem;
  }

  .hero-socials strong {
    font-family: var(--font-mono);
    font-size: clamp(0.62rem, 2.7vw, 0.74rem);
    line-height: 1.1;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .terminal-module {
    display: none;
  }

  .release-stage {
    order: 2;
    display: flex;
    flex-direction: column;
    width: 100%;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-object-stage {
    grid-template-rows: none;
  }

  .atm-motion-shell,
  .hero-atm-object {
    min-height: 0 !important;
    height: clamp(290px, 78vw, 430px);
    border-bottom: 1px solid var(--line);
  }

  .atm-motion-fallback {
    object-fit: contain;
    padding: clamp(22px, 8vw, 46px);
  }

  .cb-companion-motion {
    left: 12px;
    top: 12px;
    width: clamp(58px, 16vw, 82px);
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 1;
    box-shadow:
      0 12px 26px rgba(0, 0, 0, 0.38),
      6px 6px 0 rgba(215, 25, 32, 0.28);
  }

  .cb-companion-motion .cb-motion-canvas,
  .cb-companion-motion .cb-motion-fallback {
    inset: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    object-fit: contain;
  }

  .release-panel {
    order: 2;
    gap: 9px;
    padding: 22px 18px 28px;
  }

  .release-panel strong {
    font-size: clamp(3.25rem, 18vw, 4.7rem);
  }

  .release-panel p {
    max-width: 100%;
    font-size: 1rem;
  }

  .release-panel .lyric-pull {
    font-size: clamp(1.85rem, 8vw, 2.7rem);
  }

  .release-links {
    gap: 8px;
    margin-top: 12px;
  }

  .release-links .button {
    flex: 1 1 132px;
    width: auto;
  }

  .ticker {
    font-size: 0.68rem;
  }

  .section {
    min-height: auto;
  }

  .section-body {
    gap: 28px;
    padding: 38px 18px;
  }

  .release-grid,
  .press-layout,
  .stream-grid,
  .fact-sheet,
  .promoter-pack,
  .offer-form,
  .social-strip {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .drop-feature,
  .stream-grid a,
  .fact-sheet div,
  .press-actions,
  .promoter-pack article,
  .offer-form label,
  .offer-preview-block,
  .offer-actions {
    padding: 20px;
  }

  .drop-feature {
    min-height: auto;
  }

  .vinyl-cover-object {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .mini-actions {
    gap: 8px;
  }

  .mini-actions .button {
    flex: 1 1 132px;
    width: auto;
  }

  .stream-grid a {
    min-height: 170px;
  }

  .epk-preview-card {
    min-height: auto;
  }

  .social-strip a {
    min-height: 82px;
  }

  .site-footer {
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .cb-motion-canvas,
  .atm-motion-canvas,
  .site-texture {
    display: none;
  }

  .cb-motion-fallback,
  .atm-motion-fallback {
    opacity: 1 !important;
  }
}

@media print {
  body {
    background: #ffffff;
    color: #111111;
  }

  .boot-overlay,
  .site-header,
  .ticker,
  .vertical-ticker,
  .hero-actions,
  .visuals-section,
  .shows-section,
  .contact-section,
  .site-footer {
    display: none !important;
  }

  .hero,
  .section {
    display: block;
    min-height: auto;
    padding: 24px 0;
    border: 0;
    color: #111111;
  }

  .hero::before {
    display: none;
  }

  h1,
  h2,
  h3,
  .statement,
  .drop-feature p,
  .fact-sheet dd,
  .promoter-pack p {
    color: #111111;
  }

  .release-stage,
  .drop-feature,
  .fact-sheet,
  .promoter-pack article {
    border-color: #444444;
    background: #ffffff;
  }
}
