/* ═══════════════════════════════════════════════════════════
   OPPRESSO /  — Official Artist Site
   Cinematic fusion rap · dark steel · musical motion
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Rich absolute darkness — ink / obsidian (not washed grey) */
  --bg: #020204;
  --bg-deep: #000000;
  --bg-elevated: #08080c;
  --bg-card: rgba(255, 255, 255, 0.028);
  --bg-card-hover: rgba(255, 255, 255, 0.055);
  --border: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.045);
  --border-hot: rgba(232, 64, 64, 0.5);
  --text: #f2efe8;
  --text-muted: #9a958c;
  --text-dim: #5e5a55;
  --crimson: #e84545;
  --crimson-deep: #9e1c1c;
  --crimson-soft: rgba(232, 69, 69, 0.14);
  --amber: #e8b04a;
  --amber-soft: rgba(232, 176, 74, 0.12);
  --steel: #7e8896;
  --spotify: #1db954;
  --glow-crimson: 0 0 48px rgba(232, 69, 69, 0.18);
  --glow-amber: 0 0 36px rgba(232, 176, 74, 0.12);
  /* Surfaces lean solid-dark (less frosted glass, more ink) */
  --glass: rgba(6, 6, 10, 0.92);
  --glass-strong: rgba(4, 4, 8, 0.96);
  --glass-soft: rgba(255, 255, 255, 0.045);
  --glass-fill: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 38%,
    rgba(255, 255, 255, 0.01) 100%
  );
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-soft: rgba(255, 255, 255, 0.07);
  --glass-blur: blur(28px) saturate(1.2);
  --glass-blur-sm: blur(16px) saturate(1.15);
  --glass-blur-lg: blur(36px) saturate(1.25);
  --glass-shadow:
    0 8px 32px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 -1px 0 rgba(0, 0, 0, 0.35) inset;
  --glass-shadow-hover:
    0 16px 48px rgba(0, 0, 0, 0.6),
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 -1px 0 rgba(0, 0, 0, 0.3) inset;
  --font-display: "Bebas Neue", "Impact", sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --radius: 18px;
  --radius-sm: 14px;
  --radius-lg: 24px;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
  /* Vertical rhythm — keep sections breathing the same way */
  --section-y: clamp(2.75rem, 6vh, 4.25rem);
  --section-y-tight: clamp(1.5rem, 3vh, 2.25rem);
  --section-y-mid: clamp(2rem, 4vh, 3rem);
  --focus-ring: 0 0 0 2px rgba(0, 0, 0, 0.98), 0 0 0 4px rgba(232, 176, 74, 0.72);
  --focus-ring-soft: 0 0 0 2px rgba(0, 0, 0, 0.95), 0 0 0 4px rgba(255, 255, 255, 0.3);
  --shadow-premium:
    0 24px 80px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  /* Solid chrome — rich black, fully opaque */
  --chrome: #030306;
  --chrome-elevated: #07070c;
  --chrome-footer: #010102;
  --chrome-border: rgba(255, 255, 255, 0.075);
  --chrome-border-soft: rgba(255, 255, 255, 0.05);
  --chrome-highlight: rgba(255, 255, 255, 0.028);
  --chrome-surface: #050508;
}

/* Reusable Apple glass surface */
.glass {
  background: var(--glass-fill), var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glass--strong {
  background: var(--glass-fill), var(--glass-strong);
  backdrop-filter: var(--glass-blur-lg);
  -webkit-backdrop-filter: var(--glass-blur-lg);
}

.glass--chip {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border-soft);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  /* Quiet void — one soft top wash, no multi-orb “product demo” sky */
  background:
    radial-gradient(900px 520px at 50% -12%, rgba(70, 10, 18, 0.18), transparent 60%),
    var(--bg-deep);
  background-color: var(--bg-deep);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.55;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul {
  list-style: none;
}

/* ─── Atmosphere (restrained — less “AI product demo”) ─── */
.bg-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: transparent;
}

/* No tech grid — reads as template wallpaper */
.bg-grid {
  display: none;
}

/* One soft wash at the top — static, not a light show */
.bg-spotlight {
  position: absolute;
  inset: -15% -10% auto -10%;
  height: 55vh;
  background: radial-gradient(
    ellipse 50% 40% at 50% 0%,
    rgba(120, 20, 30, 0.16),
    transparent 70%
  );
}

/* Kill multi-orb glow system — biggest AI tell */
.bg-glow,
.bg-glow--1,
.bg-glow--2,
.bg-glow--3,
.bg-aurora {
  display: none !important;
  animation: none !important;
}

/* Barely-there grain */
.bg-grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* Gentle edge falloff */
.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 75% at 50% 35%, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
  opacity: 0.9;
}

/* Notes are driven by chaos.css + kinetic.js when theme-chaos is on */
.notes-layer {
  display: none;
  pointer-events: none;
}

/* Soft staff suggestion — very restrained */
.staff-lines {
  position: absolute;
  left: 0;
  right: 0;
  top: 22%;
  height: 72px;
  opacity: 0.035;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 15px,
    rgba(255, 255, 255, 0.95) 15px,
    rgba(255, 255, 255, 0.95) 16px
  );
  mask-image: linear-gradient(90deg, transparent, black 25%, black 75%, transparent);
}

/* ─── Layout ─── */
.site {
  position: relative;
  z-index: 1;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: var(--section-y) 0;
  scroll-margin-top: calc(var(--header-h) + 0.5rem);
}

.section .container {
  max-width: min(100% - 1.5rem, var(--max));
}

/* Platforms sits tight under the fold — no blank void */
#platforms.section,
.section--tight {
  padding-top: var(--section-y-tight);
  padding-bottom: var(--section-y-tight);
}

/* Music follows platforms with a short step-up, then full rest before about */
#music.section {
  padding-top: var(--section-y-mid);
  padding-bottom: var(--section-y);
}

#about.section {
  padding-top: var(--section-y);
  padding-bottom: clamp(2.75rem, 6vh, 5rem);
}

.section-head-row {
  margin-bottom: 0.85rem;
}

.section-head-row .section-label {
  margin-bottom: 0.45rem;
}

.section-head-row .section-title {
  margin-bottom: 0.25rem;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
}

.section-head-row .section-lead {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}

.section-label::before {
  content: none;
  display: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 0.45rem;
  text-transform: none;
  color: var(--text);
}

.section-lead {
  color: var(--text-muted);
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
}

/* ─── Header — solid premium chrome (no glass / blur) ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition:
    background 0.35s var(--ease-out),
    border-color 0.35s,
    box-shadow 0.35s;
  border-bottom: 1px solid var(--chrome-border);
  background: var(--chrome);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
}

.header.is-scrolled {
  background: var(--chrome-elevated);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: var(--chrome-border);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.65),
    0 1px 0 rgba(255, 255, 255, 0.03) inset;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2rem, var(--max));
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  border-radius: 12px;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.logo:hover {
  opacity: 0.94;
}

.logo:active {
  transform: scale(0.98);
  opacity: 0.9;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--chrome-border);
  box-shadow:
    var(--glow-crimson),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
  background: var(--chrome-surface);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.logo:hover .logo-mark {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 0 36px rgba(232, 69, 69, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.16) inset;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s ease;
  position: relative;
  border-radius: 4px;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
}

.nav a:active {
  color: var(--text);
  opacity: 0.88;
}

/* Quiet active state — no sliding underline animation */
.nav a::after {
  content: none;
  display: none;
}

.nav a.is-active {
  color: var(--text);
}

.nav-cta {
  padding: 0.45rem 0.9rem !important;
  border-radius: 6px !important;
  background: var(--crimson) !important;
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 0.84rem !important;
  border: 1px solid transparent !important;
  box-shadow: none !important;
  letter-spacing: 0.01em !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  filter: none;
  background: #d93c3c !important;
  box-shadow: none !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--chrome-border);
  border-radius: 12px;
  background: var(--chrome-surface);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.15rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    opacity 0.15s ease;
  border: 1px solid transparent;
  position: relative;
}

.btn:hover {
  transform: none;
}

.btn:active {
  opacity: 0.88;
}

.btn-primary {
  background: var(--crimson);
  color: #fff;
  border-color: transparent;
  box-shadow: none;
  filter: none;
}

.btn-primary:hover {
  background: #d93c3c;
  box-shadow: none;
  filter: none;
}

.btn-primary:active {
  background: var(--crimson-deep);
  filter: none;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--text);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

/* Keyboard focus — amber steel ring, keyboard-only via :focus-visible */
.btn:focus-visible,
.stream-cell:focus-visible,
.bento-cell:focus-visible,
.platform-tile:focus-visible,
.album-card:focus-visible,
.nav a:focus-visible,
.logo:focus-visible,
.menu-toggle:focus-visible,
.cd-case-face:focus-visible,
.footer a:focus-visible,
.modal-close:focus-visible,
.song-item:focus-visible,
.track:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn-primary:focus-visible {
  box-shadow:
    var(--focus-ring),
    var(--glow-crimson),
    0 1px 0 rgba(255, 255, 255, 0.28) inset;
}

.btn-ghost:focus-visible,
.stream-cell:focus-visible,
.bento-cell:focus-visible,
.platform-tile:focus-visible,
.album-card:focus-visible {
  border-color: rgba(232, 176, 74, 0.45);
  box-shadow: var(--focus-ring), var(--glass-shadow-hover);
}

.nav a:focus-visible {
  color: var(--text);
  box-shadow: var(--focus-ring-soft);
}

.nav-cta:focus-visible {
  box-shadow:
    var(--focus-ring),
    var(--glow-crimson),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
}

.cd-case-face:focus-visible {
  box-shadow:
    var(--focus-ring),
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 18px 48px rgba(0, 0, 0, 0.4);
}

.btn-icon {
  width: 1.15em;
  height: 1.15em;
}

/* ─── Hero — one full viewport (under fixed header), no dead void ─── */
.hero {
  --hero-pad: clamp(0.65rem, 1.8vh, 1.35rem);
  box-sizing: border-box;
  min-height: 100svh;
  max-height: 100svh;
  display: grid;
  align-content: center;
  align-items: center;
  /* top padding clears sticky header; height includes that padding */
  padding: calc(var(--header-h) + var(--hero-pad)) 0 var(--hero-pad);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(1.25rem, 3vw, 2.75rem);
  align-items: center;
  justify-items: center;
  min-height: 0;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}

.hero-copy {
  min-width: 0;
  max-width: 34rem;
  width: 100%;
  text-align: left;
  justify-self: end;
}

.hero-visual {
  justify-self: start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.85rem;
  animation: none;
}

.hero-badge .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--crimson);
  box-shadow: none;
  animation: none;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw + 0.4vh, 4.4rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  margin-bottom: 0.65rem;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-title .line {
  display: block;
}

.hero-title .accent {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: var(--text);
  color: var(--text);
}

.hero-moniker {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
  display: block;
}

.hero-moniker::before,
.hero-moniker::after {
  content: none;
  display: none;
}

.hero-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 28rem;
  margin-bottom: 1.35rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0;
}

/* Voice note / waveform player mock */
.voice-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(232, 64, 64, 0.06));
  max-width: 420px;
  backdrop-filter: blur(8px);
}

.vn-play {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-deep));
  box-shadow: var(--glow-crimson);
  transition: transform 0.2s;
}

.vn-play:hover {
  transform: scale(1.06);
}

.vn-play.is-playing {
  animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(232, 64, 64, 0.5); }
  100% { box-shadow: 0 0 0 14px rgba(232, 64, 64, 0); }
}

.vn-wave {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 3px;
  height: 36px;
}

.vn-bar {
  flex: 1;
  min-width: 3px;
  max-width: 5px;
  border-radius: 99px;
  background: linear-gradient(to top, var(--crimson-deep), var(--amber));
  transform-origin: center;
  animation: wave-idle 1.2s ease-in-out infinite;
  opacity: 0.55;
}

.voice-note.is-active .vn-bar {
  opacity: 1;
  animation-name: wave-play;
}

@keyframes wave-idle {
  0%, 100% { transform: scaleY(0.35); }
  50% { transform: scaleY(0.7); }
}

@keyframes wave-play {
  0%, 100% { transform: scaleY(0.25); }
  50% { transform: scaleY(1); }
}

.vn-meta {
  flex-shrink: 0;
  text-align: right;
}

.vn-meta strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
}

.vn-meta span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-dim);
}

/* Hero visual — full square art, height-capped so it fits the fold */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: min(100%, 42vh, 400px);
  margin-inline: 0;
  min-width: 0;
}

/* Universal cover frame: shows entire image inside container */
.cover-frame {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: #0a0a0e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    var(--shadow-premium),
    0 0 60px rgba(180, 40, 50, 0.15);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.cover-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 42%);
  mix-blend-mode: soft-light;
}

.cover-frame:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 70px rgba(200, 50, 60, 0.22);
}

/* ═══════════════════════════════════════════════════════════
   CD jewel case + factory plastic shrink-wrap
   ═══════════════════════════════════════════════════════════ */
.cd-case {
  --cd-radius: 6px 12px 12px 6px;
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  perspective: 1100px;
  transform-style: preserve-3d;
  /* room for spine + soft cast */
  padding-left: 9px;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.45));
  /* keep 3D tilt from causing horizontal page scroll */
  margin-right: 2px;
}

.cd-case-face {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--cd-radius);
  overflow: hidden;
  background:
    linear-gradient(145deg, #0c0c12 0%, #030306 55%, #08080c 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 -1px 0 rgba(0, 0, 0, 0.35) inset,
    0 18px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.35);
  transform: none;
  transform-origin: left center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  isolation: isolate;
}

/* When cover-frame is the face, let the case own the chrome */
.cd-case .cover-frame,
.cd-case-face.cover-frame {
  border-radius: var(--cd-radius);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 18px 48px rgba(0, 0, 0, 0.4);
  max-width: none;
}

.cd-case .cover-frame:hover,
.cd-case-face.cover-frame:hover,
.cd-case:hover .cd-case-face {
  transform: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 28px 70px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(200, 50, 60, 0.12);
}

.cd-case .cover-img,
.cd-case-face img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #0a0a0e;
}

/* Thin jewel-case spine (left edge) */
.cd-spine {
  position: absolute;
  left: 0;
  top: 2.5%;
  bottom: 2.5%;
  width: 10px;
  border-radius: 3px 0 0 3px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(180, 185, 195, 0.18) 18%,
      rgba(40, 42, 50, 0.95) 42%,
      rgba(28, 30, 36, 1) 58%,
      rgba(160, 165, 175, 0.2) 82%,
      rgba(255, 255, 255, 0.12) 100%
    );
  box-shadow:
    1px 0 0 rgba(255, 255, 255, 0.08) inset,
    -1px 0 3px rgba(0, 0, 0, 0.4);
  transform: rotateY(18deg);
  transform-origin: right center;
  pointer-events: none;
  z-index: 0;
}

.cd-case-face {
  z-index: 1;
}

/* Factory shrink-wrap film over the artwork — subtle sealed plastic */
.cd-plastic {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 4;
  background:
    /* top-left heat-seal specular */
    linear-gradient(
      152deg,
      rgba(255, 255, 255, 0.32) 0%,
      rgba(255, 255, 255, 0.1) 9%,
      rgba(255, 255, 255, 0.03) 18%,
      transparent 34%
    ),
    /* bottom-right cooler bounce */
    linear-gradient(
      330deg,
      rgba(210, 225, 245, 0.1) 0%,
      transparent 28%
    ),
    /* soft diagonal crease (one fold, not noisy) */
    linear-gradient(
      124deg,
      transparent 42%,
      rgba(255, 255, 255, 0.04) 49%,
      transparent 56%
    ),
    /* micro wrinkle bands — very faint factory texture */
    repeating-linear-gradient(
      116deg,
      transparent 0 16px,
      rgba(255, 255, 255, 0.018) 16px 17px,
      transparent 17px 31px
    ),
    /* cool film cast */
    linear-gradient(
      200deg,
      rgba(200, 220, 255, 0.065) 0%,
      transparent 38%,
      rgba(255, 255, 255, 0.025) 68%,
      rgba(180, 200, 230, 0.055) 100%
    );
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 0 0 2px rgba(255, 255, 255, 0.04),
    inset 0 0 28px rgba(255, 255, 255, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12);
  mix-blend-mode: soft-light;
  opacity: 0.9;
}

/* Corner seal pucker — tiny premium detail */
.cd-plastic::after {
  content: "";
  position: absolute;
  top: 6%;
  right: 5%;
  width: 18%;
  height: 14%;
  border-radius: 40% 55% 45% 50%;
  background: radial-gradient(
    ellipse at 40% 40%,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0.04) 45%,
    transparent 70%
  );
  opacity: 0.55;
  transform: rotate(-12deg);
  pointer-events: none;
}

/* Moving plastic glare (premium silver, not neon) */
.cd-glare {
  position: absolute;
  inset: -30% -40%;
  border-radius: inherit;
  pointer-events: none;
  z-index: 5;
  background: linear-gradient(
    108deg,
    transparent 40%,
    rgba(255, 255, 255, 0.015) 45%,
    rgba(255, 255, 255, 0.18) 49.5%,
    rgba(225, 235, 250, 0.1) 51%,
    rgba(255, 255, 255, 0.03) 55%,
    transparent 62%
  );
  transform: translateX(-12%) rotate(1deg);
  animation: none;
  mix-blend-mode: soft-light;
  opacity: 0.4;
  will-change: auto;
}

@keyframes plastic-glare {
  from {
    transform: translateX(-18%) rotate(1deg);
    opacity: 0.35;
  }
  to {
    transform: translateX(10%) rotate(1deg);
    opacity: 0.55;
  }
}

.cd-case:hover .cd-glare,
.album-card:hover .cd-glare {
  animation: plastic-glare 1.6s ease-out forwards;
  opacity: 0.55;
}

/* Mini cases in grids / cards — less 3D, same plastic */
.cd-case-mini {
  --cd-radius: 4px 8px 8px 4px;
  perspective: 800px;
  padding-left: 6px;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.35));
}

.cd-case-mini .cd-case-face {
  transform: none;
  border-radius: var(--cd-radius);
}

.album-card:hover .cd-case-mini .cd-case-face,
.more-card:hover .cd-case-mini .cd-case-face {
  transform: rotateY(-0.5deg) translateY(-2px) scale(1.02);
}

.cd-case-mini .cd-spine {
  width: 7px;
  left: 0;
}

.cd-case-mini .cd-plastic {
  opacity: 0.88;
}

.cd-case-mini .cd-glare {
  animation-duration: 9s;
}

/* Album card art hosts the mini case flush */
.album-card-art.cd-case-mini {
  overflow: visible;
  background: transparent;
  isolation: auto;
}

.album-card-art.cd-case-mini .cd-case-face {
  aspect-ratio: 1 / 1;
}

.album-card-art.cd-case-mini .card-badge,
.album-card-art.cd-case-mini .note-overlay {
  z-index: 6;
}

.cover-img,
.cover-frame img,
.album-float img,
.featured-art img,
.album-card-art img,
.release-art img,
.song-art img,
.album-hero__cover img,
.song-hero__cover img,
.song-group-cover img,
.related-item__art img,
.modal-head img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain; /* FULL image visible — no crop */
  object-position: center;
  display: block;
  background: #0a0a0e;
}

/* Legacy class aliases */
.album-float {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #0a0a0e;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    var(--glow-crimson);
}

.cover-caption {
  margin-top: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-dim);
  display: block;
}

.cover-caption .note-glyph {
  display: none;
}

.hero-player {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 100%;
}

.embed-wrap--hero {
  min-height: 352px;
}

.embed-wrap {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.embed-wrap iframe {
  width: 100% !important;
  max-width: 100%;
  border: 0;
  display: block;
}

.eq-bars {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 36px;
  z-index: 3;
  pointer-events: none;
  opacity: 0.85;
}

.eq-bars span {
  width: 5px;
  border-radius: 99px;
  background: linear-gradient(to top, var(--crimson), var(--amber));
  animation: eq 0.9s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(232, 64, 64, 0.4);
}

.eq-bars span:nth-child(1) { height: 40%; animation-delay: 0s; }
.eq-bars span:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.eq-bars span:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.eq-bars span:nth-child(4) { height: 55%; animation-delay: 0.3s; }
.eq-bars span:nth-child(5) { height: 85%; animation-delay: 0.15s; }
.eq-bars span:nth-child(6) { height: 45%; animation-delay: 0.25s; }
.eq-bars span:nth-child(7) { height: 65%; animation-delay: 0.05s; }

@keyframes eq {
  0%, 100% { transform: scaleY(0.45); }
  50% { transform: scaleY(1); }
}

/* SVG music ornaments around hero visual */
.orbit-svg {
  position: absolute;
  inset: -12%;
  width: 124%;
  height: 124%;
  pointer-events: none;
  opacity: 0.55;
  animation: orbit-spin 40s linear infinite;
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

/* Scroll cue */
.scroll-cue {
  position: relative;
  margin: 1.5rem auto 0;
  left: auto;
  bottom: auto;
  transform: none;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue .mouse {
  width: 20px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 10px;
  position: relative;
}

.scroll-cue .mouse::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--crimson);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ─── Stream links — compact chips (editorial, not app-store tiles) ─── */
.stream-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.1rem;
  width: 100%;
}

/* Release pages still use a tidy dense grid */
.stream-grid--dense,
.bento-stream {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.95rem;
  width: 100%;
  isolation: isolate;
}

.stream-cell,
.bento-cell,
.platform-tile {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  min-height: 0;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
  text-align: left;
  width: auto;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.stream-grid--dense .stream-cell,
.bento-stream .bento-cell,
.platforms .platform-tile {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  min-height: 84px;
  padding: 0.75rem 0.4rem;
  border-radius: 8px;
  background: var(--chrome-surface);
  border-color: var(--chrome-border);
  gap: 0.4rem;
}

.stream-cell img,
.bento-cell img,
.platform-tile img,
.platform-tile svg {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  transition: none;
  opacity: 0.95;
}

.stream-grid--dense .stream-cell img,
.bento-stream .bento-cell img,
.platforms .platform-tile img {
  width: 24px;
  height: 24px;
}

.stream-cell:hover img,
.bento-cell:hover img,
.platform-tile:hover img,
.platform-tile:hover svg {
  transform: none;
}

.stream-cell strong,
.bento-cell strong,
.platform-tile span,
.platform-tile strong {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  position: relative;
  z-index: 3;
  color: var(--text-muted);
}

.stream-grid--dense .stream-cell strong,
.platforms .platform-tile span {
  font-size: 0.72rem;
  font-weight: 600;
}

.stream-cell:hover,
.bento-cell:hover,
.platform-tile:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
  z-index: 1;
}

.stream-cell:hover strong,
.bento-cell:hover strong,
.platform-tile:hover span,
.platform-tile:hover strong {
  color: var(--text);
}

.stream-cell:active,
.bento-cell:active,
.platform-tile:active {
  transform: none;
  opacity: 0.88;
  border-color: rgba(255, 255, 255, 0.12);
}

/* Keep amber focus ring visible while hovering (hover rules are later) */
.stream-cell:focus-visible,
.bento-cell:focus-visible,
.platform-tile:focus-visible,
.album-card:focus-visible,
.btn-ghost:focus-visible {
  border-color: rgba(232, 176, 74, 0.5);
  box-shadow: var(--focus-ring), var(--glass-shadow-hover);
}

.btn-primary:focus-visible {
  box-shadow:
    var(--focus-ring),
    0 0 40px rgba(232, 69, 69, 0.32),
    0 1px 0 rgba(255, 255, 255, 0.28) inset;
}

/* legacy class kept for stand-outs / song chips */
.platforms {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

/* dense on release pages — same 4-col */
.stream-grid--dense .stream-cell {
  min-height: 88px;
  padding: 0.75rem 0.4rem;
}

.stream-grid--dense .stream-cell img {
  width: 26px;
  height: 26px;
}

.stream-grid--dense .stream-cell strong {
  font-size: 0.72rem;
}

/* ─── Featured album ─── */
.featured {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.08), transparent 40%),
    linear-gradient(135deg, rgba(232, 64, 64, 0.1), transparent 45%),
    rgba(4, 4, 8, 0.94);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.featured::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.08), transparent 70%);
  pointer-events: none;
}

.featured-art {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
  background: #0a0a0e;
  width: 100%;
  max-width: 100%;
}

.featured-art img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: #0a0a0e;
}

.featured-art .play-badge {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.3s;
}

.featured-art:hover .play-badge {
  opacity: 1;
}

.play-badge span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--crimson);
  display: grid;
  place-items: center;
  box-shadow: var(--glow-crimson);
}

.featured-body h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.chip {
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.chip--hot {
  border-color: rgba(255, 120, 120, 0.35);
  color: #ffb0b0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent),
    rgba(232, 64, 64, 0.16);
}

.featured-body p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 40rem;
}

.tracklist {
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%),
    rgba(8, 8, 12, 0.55);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  box-shadow: var(--glass-shadow);
  margin-bottom: 1.25rem;
}

.track {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  cursor: pointer;
}

.track:last-child {
  border-bottom: none;
}

.track:hover,
.track.is-active {
  background: rgba(232, 64, 64, 0.1);
}

.track-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}

.track-name {
  font-weight: 500;
  font-size: 0.95rem;
}

.track-link {
  font-size: 0.75rem;
  color: var(--spotify);
  opacity: 0;
  transition: opacity 0.2s;
}

.track:hover .track-link {
  opacity: 1;
}

.embed-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}

.embed-wrap iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* ─── Discography ─── */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
  /* mini CD spines / hover lift may extend slightly outside cards */
  padding: 0.15rem 0.1rem 0.5rem;
  isolation: isolate;
}

.album-card {
  display: block;
  border-radius: 12px;
  border: 1px solid var(--chrome-border);
  background: var(--chrome-surface);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  overflow: visible;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.album-card:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.14);
  background: #0a0a10;
  box-shadow: none;
  z-index: 1;
}

.album-card:active {
  transform: none;
  opacity: 0.92;
}

.album-card-art {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0a0a0e;
  isolation: isolate;
}

.album-card-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #0a0a0e;
  transition: transform 0.5s var(--ease-out);
}

.album-card:hover .album-card-art img {
  transform: scale(1.03);
}

.album-card-art .note-overlay {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--amber);
  font-size: 0.85rem;
}

.album-card-body {
  padding: 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  position: relative;
  z-index: 2;
}

.album-card-body h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.album-card-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* ─── Lyrics panel ─── */
.lyrics-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
  min-height: 420px;
}

.lyrics-sidebar {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-elevated);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 560px;
}

.lyrics-search {
  padding: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.lyrics-search input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  outline: none;
}

.lyrics-search input:focus {
  border-color: rgba(232, 64, 64, 0.5);
}

.lyrics-search input::placeholder {
  color: var(--text-dim);
}

.song-list {
  overflow-y: auto;
  flex: 1;
  padding: 0.5rem;
}

.song-item {
  width: 100%;
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.song-item:hover,
.song-item.is-active {
  background: rgba(232, 64, 64, 0.12);
}

.song-item strong {
  font-size: 0.9rem;
  font-weight: 600;
}

.song-item span {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.lyrics-panel {
  border: 1px solid var(--border);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(232, 64, 64, 0.05), transparent 30%),
    var(--bg-elevated);
  padding: clamp(1.25rem, 3vw, 2rem);
  position: relative;
  overflow: hidden;
}

.lyrics-panel::before {
  content: "♪";
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  font-size: 6rem;
  color: rgba(232, 64, 64, 0.06);
  font-family: serif;
  pointer-events: none;
}

.lyrics-empty {
  height: 100%;
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text-muted);
  gap: 0.75rem;
}

.lyrics-empty svg {
  width: 56px;
  height: 56px;
  opacity: 0.4;
  margin-bottom: 0.5rem;
}

.lyrics-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.lyrics-content .album-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.lyrics-body {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 1.05rem;
  white-space: pre-line;
}

.lyrics-body .verse-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  margin: 1.25rem 0 0.5rem;
}

.lyrics-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

/* ─── About ─── */
.about-grid {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: 2rem;
}

.about-portrait {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
}

.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 8, 0.75), transparent 50%);
}

.about-portrait .name-stamp {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.12em;
}

.about-copy p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-copy p strong {
  color: var(--text);
  font-weight: 600;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.stat {
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border-soft);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(4, 4, 8, 0.92);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  box-shadow: var(--glass-shadow);
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--crimson);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
}

.genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.genre-tags span {
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border-soft);
  font-size: 0.78rem;
  color: var(--text-muted);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

/* ─── Footer — solid dark steel (no glass / blur) ─── */
.footer {
  position: relative;
  isolation: isolate;
  border-top: 1px solid var(--chrome-border);
  padding: clamp(3.5rem, 8vh, 5.5rem) 0 clamp(1.85rem, 3.5vh, 2.5rem);
  background: var(--chrome-footer);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.025) inset,
    0 -24px 56px rgba(0, 0, 0, 0.5);
}

/* Subtle top hairline — champagne → steel, crimson kiss at center */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(138, 150, 164, 0.22) 12%,
    rgba(232, 176, 74, 0.42) 38%,
    rgba(232, 69, 69, 0.38) 50%,
    rgba(232, 176, 74, 0.42) 62%,
    rgba(138, 150, 164, 0.22) 88%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Barely-there ink wash on solid footer */
.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(255, 255, 255, 0.016), transparent 55%),
    radial-gradient(ellipse 36% 28% at 88% 100%, rgba(120, 20, 28, 0.06), transparent 52%);
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.footer > .container {
  position: relative;
  z-index: 1;
}

/* Multipage shell: brand + CTA row, then full-width columns */
.footer > .container:has(> .footer-brand):not(:has(.footer-top)) {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, auto);
  column-gap: clamp(1.5rem, 3vw, 2.75rem);
  row-gap: 0;
  align-items: start;
}

.footer > .container:has(> .footer-brand):not(:has(.footer-top)) > .footer-brand {
  grid-column: 1;
  grid-row: 1;
}

.footer > .container:has(> .footer-brand):not(:has(.footer-top)) > .footer-cta {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: center;
}

.footer > .container:has(> .footer-brand):not(:has(.footer-top)) > .footer-cols {
  grid-column: 1 / -1;
  margin-top: clamp(1.85rem, 3.5vh, 2.75rem);
}

.footer > .container:has(> .footer-brand):not(:has(.footer-top)) > .footer-rule,
.footer > .container:has(> .footer-brand):not(:has(.footer-top)) > .footer-bottom,
.footer > .container:has(> .footer-brand):not(:has(.footer-top)) > .footer-meta {
  grid-column: 1 / -1;
}

/* Homepage premium shell: brand | link columns */
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: clamp(2rem, 4.5vw, 4rem) clamp(1.75rem, 3.5vw, 3.25rem);
  align-items: start;
  margin-bottom: 0;
}

/* Legacy multipage grid (brand + 2 cols) */
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 3.5vw, 3.25rem) clamp(1.5rem, 3vw, 2.75rem);
  margin-bottom: clamp(2.25rem, 4.5vh, 3rem);
  align-items: start;
}

.footer-grid:has(> :nth-child(4)) {
  grid-template-columns:
    minmax(0, 1.4fr)
    repeat(3, minmax(0, 0.95fr));
}

/* Brand lockup */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  max-width: 22rem;
}

/* Wordmark — large, controlled (homepage + multipage aliases) */
.footer-brand-mark,
.footer-brand-wordmark,
.footer-wordmark,
.footer-brand h4,
.footer-grid > :first-child > h4:first-child {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.8vw, 2.55rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1;
  margin: 0;
  padding: 0;
  color: var(--text);
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  background: none;
  box-shadow: none;
  width: auto;
  height: auto;
  border-radius: 4px;
  transition: color 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

a.footer-brand-mark:hover,
a.footer-wordmark:hover,
.footer-brand-mark:hover,
.footer-wordmark:hover {
  color: var(--text);
  opacity: 0.88;
  transform: none;
}

/* Optional small monogram/initial chip */
.footer-brand-mark--mono,
.footer-brand-monogram {
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 8px;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border-soft);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 8px 20px rgba(0, 0, 0, 0.25);
}

.footer-tagline,
.footer-brand-tagline,
.footer-brand p,
.footer-grid > :first-child > p {
  margin: 0;
  max-width: 26rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
}

/* Link column cluster */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.75vw, 2.5rem);
  min-width: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-width: 0;
}

/* Footer column labels — quiet, not mono-tracking shout */
.footer-col-label,
.footer-col > h4,
.footer-grid > :not(:first-child) > h4,
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  margin: 0;
  color: var(--text-dim);
  line-height: 1.3;
}

/* Brand wordmark re-assert after general h4 */
.footer-brand h4,
.footer-grid > :first-child > h4:first-child,
.footer-brand-wordmark,
.footer-wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.8vw, 2.55rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer a {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
  text-decoration: none;
  border-radius: 4px;
  transition:
    color 0.25s var(--ease-out),
    transform 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out),
    background 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    opacity 0.25s var(--ease-out);
}

.footer a:hover {
  color: var(--text);
}

/* Keep primary/ghost CTAs legible inside footer */
.footer a.btn,
.footer .btn {
  font-size: 0.88rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: none;
}

.footer a.btn-primary,
.footer .btn-primary {
  color: #fff;
}

.footer a.btn-ghost,
.footer .btn-ghost {
  color: var(--text);
}

.footer a.btn:hover,
.footer .btn:hover {
  color: inherit;
}

.footer-links a:hover,
.footer-col .footer-links a:hover {
  transform: translateX(3px);
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

/* CTA: compact button (homepage) OR button cluster (multipage) */
.footer-cta.btn,
a.footer-cta.btn {
  align-self: flex-start;
  margin-top: 0.15rem;
  padding: 0.62rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  border-radius: 999px;
}

.footer-cta.btn:hover,
a.footer-cta.btn:hover {
  color: var(--text);
  transform: translateY(-2px);
}

/* Cluster variant when .footer-cta is a wrapper, not a .btn */
.footer-cta:not(.btn) {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.footer-cta:not(.btn) .footer-col-label,
.footer-cta:not(.btn) > h4 {
  margin-bottom: 0;
  width: 100%;
}

.footer-cta:not(.btn) .btn {
  padding: 0.68rem 1.2rem;
  font-size: 0.86rem;
}

.footer-cta-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

/* Horizontal platform chips / pills */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border-soft);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  transition:
    color 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out),
    background 0.25s var(--ease-out),
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.footer-social-link:hover {
  color: var(--text);
  border-color: rgba(232, 176, 74, 0.35);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    var(--amber-soft);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 6px 16px rgba(0, 0, 0, 0.22);
}

/* Thin elegant divider */
.footer-rule {
  display: block;
  height: 1px;
  width: 100%;
  margin: clamp(1.85rem, 3.5vh, 2.65rem) 0 clamp(1.15rem, 2.2vh, 1.5rem);
  border: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 18%,
    rgba(232, 176, 74, 0.28) 50%,
    rgba(255, 255, 255, 0.1) 82%,
    transparent 100%
  );
  opacity: 0.95;
}

/* When rule is present, bottom bar drops its own hairline */
.footer-rule + .footer-bottom,
.footer-rule + .footer-meta {
  border-top: none;
  padding-top: 0;
}

/* Meta / bottom bar — quiet premium lockup */
.footer-meta,
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem 1.5rem;
  padding-top: clamp(1.25rem, 2.5vh, 1.65rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.footer-domain {
  color: var(--steel);
  opacity: 0.85;
  letter-spacing: 0.12em;
}

.footer-meta a,
.footer-bottom a {
  color: var(--text-muted);
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding-bottom: 1px;
  transition:
    color 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
}

.footer-meta a:hover,
.footer-bottom a:hover {
  color: var(--amber);
  border-bottom-color: rgba(232, 176, 74, 0.55);
  transform: none;
}

/* XLT / credit lockup — quieter than primary text */
.footer-credit,
.footer-bottom .footer-credit {
  color: var(--text-dim);
  opacity: 0.92;
}

.footer-credit a {
  color: var(--steel);
}

/* Footer focus rings — match Wave 1 amber steel a11y */
.footer a:focus-visible,
.footer-social-link:focus-visible,
.footer-brand-mark:focus-visible,
.footer-wordmark:focus-visible,
.footer-cta:focus-visible {
  outline: none;
  color: var(--text);
  box-shadow: var(--focus-ring);
}

.footer-social-link:focus-visible,
.footer-cta.btn:focus-visible,
.footer .btn:focus-visible {
  border-color: rgba(232, 176, 74, 0.5);
  box-shadow: var(--focus-ring), var(--glass-shadow-hover);
}

.footer .btn-primary:focus-visible {
  color: #fff;
  box-shadow:
    var(--focus-ring),
    var(--glow-crimson),
    0 1px 0 rgba(255, 255, 255, 0.28) inset;
}

.footer-meta a:focus-visible,
.footer-bottom a:focus-visible {
  border-radius: 3px;
  border-bottom-color: transparent;
}

/* ─── Reveal — short fade, no long “landing page” floats ─── */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

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

.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.1s; }
.reveal-delay-3 { transition-delay: 0.15s; }
.reveal-delay-4 { transition-delay: 0.2s; }

/* Hero — same short fade as everything else */
.hero .reveal {
  transform: translateY(8px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

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

.hero-visual.reveal,
.hero-visual .reveal {
  transition-delay: 0.08s;
}

/* ─── Modal for album tracks ─── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 4, 8, 0.55);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  width: min(100%, 520px);
  max-height: min(85vh, 680px);
  overflow: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(16, 16, 24, 0.78);
  backdrop-filter: var(--glass-blur-lg);
  -webkit-backdrop-filter: var(--glass-blur-lg);
  box-shadow: var(--glass-shadow-hover);
  padding: 1.5rem;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.35s var(--ease-out);
}

.modal-backdrop.is-open .modal {
  transform: translateY(0) scale(1);
}

.modal-head {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.modal-head img {
  width: 88px;
  height: 88px;
  border-radius: 10px;
  object-fit: contain;
  background: #0a0a0e;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.modal-head h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.modal-head p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.modal-close {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  flex-shrink: 0;
}

.modal-close:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ─── Responsive: width + height breakpoints ─── */

/* Short desktop / laptop height — compress hero to stay in one screen */
@media (max-height: 760px) and (min-width: 901px) {
  .hero {
    --hero-pad: 0.55rem;
    min-height: 100svh;
    max-height: 100svh;
  }

  .hero-title {
    font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  }

  .hero-tagline {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-visual {
    max-width: min(100%, 34vh, 280px);
  }

  .hero-badge {
    margin-bottom: 0.45rem;
  }

  .btn {
    padding: 0.65rem 1.15rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .hero {
    max-height: none; /* stacked content may need to grow */
    min-height: 100svh;
    overflow: visible;
    align-content: center;
    padding-bottom: 1.25rem;
  }

  .hero-grid,
  .featured,
  .about-grid,
  .lyrics-layout,
  .footer-grid,
  .footer-top,
  .footer-cols {
    grid-template-columns: 1fr;
  }

  /* Multipage flat shell → stack brand, CTA, cols */
  .footer > .container:has(> .footer-brand):not(:has(.footer-top)) {
    grid-template-columns: 1fr;
  }

  .footer > .container:has(> .footer-brand):not(:has(.footer-top)) > .footer-brand,
  .footer > .container:has(> .footer-brand):not(:has(.footer-top)) > .footer-cta,
  .footer > .container:has(> .footer-brand):not(:has(.footer-top)) > .footer-cols {
    grid-column: 1;
    justify-self: stretch;
  }

  .footer > .container:has(> .footer-brand):not(:has(.footer-top)) > .footer-cta {
    justify-content: flex-start;
    margin-top: 1.15rem;
  }

  .footer > .container:has(> .footer-brand):not(:has(.footer-top)) > .footer-cols {
    margin-top: 1.75rem;
  }

  .footer-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1.25rem;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-cta.btn,
  a.footer-cta.btn {
    align-self: flex-start;
  }

  .hero-grid {
    gap: 1.15rem;
  }

  .hero-visual {
    order: -1;
    max-width: min(52vw, 40vh, 280px);
    width: 100%;
    margin-inline: auto;
    overflow: visible;
    min-width: 0;
    justify-self: center;
  }

  /* Flatten CD tilt slightly on tablet so case never clips/scrolls */
  .hero-visual .cd-case {
    padding-left: 7px;
    margin-right: 0;
    max-width: 100%;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.4));
  }

  .hero-visual .cd-case-face {
    transform: rotateY(-2deg) rotateX(0.8deg);
  }

  .hero-visual .cd-case:hover .cd-case-face {
    transform: rotateY(-0.5deg) rotateX(0.3deg) translateY(-3px) scale(1.01);
  }

  .hero-grid {
    justify-items: center;
  }

  .hero-copy {
    text-align: center;
    justify-self: center;
    max-width: 36rem;
  }

  .hero-moniker {
    justify-content: center;
  }

  .hero-tagline {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .cover-frame,
  .album-float {
    width: 100%;
    max-width: 100%;
  }

  .cover-caption {
    justify-content: center;
  }

  .nav {
    position: fixed;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 28%),
      var(--chrome);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    font-size: 1.35rem;
    font-family: var(--font-display);
    letter-spacing: 0.1em;
  }

  .menu-toggle {
    display: grid;
    z-index: 2;
  }

  .stream-grid--dense,
  .bento-stream,
  .platforms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .stream-grid--dense .stream-cell,
  .platforms .platform-tile {
    min-height: 80px;
  }

  .stream-cell:hover,
  .bento-cell:hover,
  .platform-tile:hover,
  .album-card:hover {
    transform: none;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    max-height: none;
    padding-top: calc(var(--header-h) + 0.75rem);
    padding-bottom: 1rem;
    overflow-x: clip;
  }

  .hero-title {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }

  .hero-visual {
    max-width: min(68vw, 240px);
  }

  .hero-visual .cd-case {
    padding-left: 6px;
  }

  .hero-visual .cd-case-face {
    transform: rotateY(-1.5deg) rotateX(0.5deg);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .stream-grid--dense,
  .bento-stream,
  .platforms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: 0.75rem;
  }

  .stream-grid--dense .stream-cell,
  .platforms .platform-tile {
    min-height: 72px;
    padding: 0.65rem 0.35rem;
  }

  .stream-grid .stream-cell {
    padding: 0.5rem 0.75rem;
  }

  .stream-cell strong,
  .bento-cell strong,
  .platform-tile span {
    font-size: 0.78rem;
  }

  .album-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  #platforms.section,
  .section--tight {
    padding-top: 1rem;
    padding-bottom: 1.1rem;
  }

  #music.section {
    padding-top: 1.2rem;
    padding-bottom: 1.75rem;
  }

  #about.section {
    padding-top: 1.75rem;
    padding-bottom: 2.25rem;
  }

  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .section .container {
    max-width: min(100% - 1.25rem, var(--max));
  }
}

@media (max-width: 520px) {
  .album-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  /* Footer mobile: brand first, clean stacks, centered meta */
  .footer {
    padding: clamp(2.75rem, 8vw, 3.5rem) 0 1.75rem;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-cta:not(.btn) {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .footer-cta:not(.btn) .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-meta,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.55rem;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

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

  html {
    scroll-behavior: auto;
  }

  /* Reveal: show immediately — no entrance cascade */
  .reveal,
  .reveal.is-visible,
  .hero .reveal,
  .hero .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Footer: no translate hover motion */
  .footer-links a:hover,
  .footer-col .footer-links a:hover,
  .footer-social-link:hover,
  .footer-cta.btn:hover,
  a.footer-cta.btn:hover {
    transform: none;
  }
}

/* Apple-like: respect reduced transparency preferences */
@media (prefers-reduced-transparency: reduce) {
  .btn-ghost,
  .stream-cell,
  .bento-cell,
  .platform-tile,
  .album-card,
  .featured,
  .stat,
  .modal {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .stream-cell,
  .bento-cell,
  .album-card,
  .featured,
  .modal {
    background: #050508 !important;
  }

  /* Header/footer already solid — keep chrome tokens */
  .header,
  .header.is-scrolled,
  .footer,
  .menu-toggle,
  .nav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .stream-cell,
  .bento-cell,
  .platform-tile,
  .album-card,
  .btn-ghost,
  .featured {
    background-color: #050508;
  }

  .header {
    background: var(--chrome) !important;
  }

  .header.is-scrolled {
    background: var(--chrome-elevated) !important;
  }

  .footer {
    background: var(--chrome-footer) !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   Premium shimmer — quiet metal / champagne glass (not neon holo)
   ═══════════════════════════════════════════════════════════ */

@keyframes holo-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shine-sweep {
  0% { transform: translateX(-130%) skewX(-16deg); opacity: 0; }
  18% { opacity: 0.4; }
  48% { opacity: 0.28; }
  100% { transform: translateX(160%) skewX(-16deg); opacity: 0; }
}

@keyframes sheen-pulse {
  0%, 100% { opacity: 0.28; }
  50% { opacity: 0.55; }
}

/* Surfaces that host subtle sheen */
.holo-border,
.stream-cell,
.bento-cell,
.album-card,
.btn-ghost,
.platform-tile,
.stat,
.filter-btn,
.song-group,
.lyrics-top-main,
.lyrics-panel,
.release-hero,
.song-hero,
.play-on-site {
  position: relative;
}

/* No perpetual shimmer on chrome/tiles — AI sites overdo this */
.stream-cell::before,
.bento-cell::before,
.album-card::before,
.cover-frame::before,
.btn-primary::before,
.btn-ghost::before,
.platform-tile::before,
.nav-cta::before,
.stream-cell::after,
.bento-cell::after,
.btn-primary::after {
  content: none !important;
  display: none !important;
  animation: none !important;
}

.cd-case .cover-frame::before,
.cd-case-face.cover-frame::before {
  display: none;
}

.cover-shine {
  display: none !important;
}

/* Editorial section heads — left-aligned, not everything centered */
.section-head-row,
#platforms .section-head-row,
#music > .container > .reveal:first-child,
#about > .container > .reveal:first-child {
  text-align: left;
  display: block;
  align-items: stretch;
}

.section-head-row .section-lead,
#music .section-lead,
#about .section-lead {
  margin-inline: 0;
  text-align: left;
}

#music .hero-actions,
#about .hero-actions {
  justify-content: flex-start;
}

.section-label {
  justify-content: flex-start;
}

.stream-cell strong,
.bento-cell strong,
.platform-tile span,
.album-card-body h4,
.btn {
  text-shadow: none;
}

/* Stronger frosted fill for legibility */
.stream-cell,
.bento-cell,
.platform-tile,
.album-card,
.btn-ghost,
.stat,
.chip,
.genre-tags span {
  background-blend-mode: normal;
}

/* Header/footer use solid --chrome tokens (Wave 4) */

@media (prefers-reduced-motion: reduce) {
  /* Fully kill CD glare + champagne shimmer (not just speed-cap) */
  .stream-cell::before,
  .stream-cell::after,
  .bento-cell::before,
  .bento-cell::after,
  .album-card::before,
  .cover-frame::before,
  .btn-primary::before,
  .btn-ghost::before,
  .platform-tile::before,
  .nav-cta::before,
  .cover-shine,
  .btn-primary::after,
  .cd-glare,
  .cd-plastic::after {
    animation: none !important;
  }

  .stream-cell:hover::before,
  .bento-cell:hover::before,
  .album-card:hover::before,
  .cover-frame:hover::before,
  .btn-primary:hover::before,
  .btn-ghost:hover::before,
  .platform-tile:hover::before,
  .stream-cell:hover::after,
  .bento-cell:hover::after,
  .btn-primary:hover::after {
    animation: none !important;
  }

  .cd-glare {
    opacity: 0.28 !important;
    transform: translateX(0) rotate(0deg) !important;
    will-change: auto;
  }

  .cd-case:hover .cd-glare {
    animation: none !important;
    opacity: 0.32 !important;
  }

  .cover-shine,
  .stream-cell::before,
  .bento-cell::before,
  .album-card::before,
  .btn-ghost::before,
  .platform-tile::before {
    opacity: 0.22;
    background-position: 50% 50%;
  }

  .btn-primary::after,
  .stream-cell::after,
  .bento-cell::after {
    display: none;
  }

  .cd-case-face,
  .cd-case .cover-frame,
  .cd-case-mini .cd-case-face {
    transform: none !important;
  }

  .cd-case:hover .cd-case-face,
  .cd-case .cover-frame:hover,
  .album-card:hover .cd-case-mini .cd-case-face,
  .more-card:hover .cd-case-mini .cd-case-face {
    transform: none !important;
  }

  /* No lift/scale jank when motion is reduced */
  .stream-cell:hover,
  .bento-cell:hover,
  .platform-tile:hover,
  .stream-cell:active,
  .bento-cell:active,
  .platform-tile:active,
  .album-card:hover,
  .album-card:active,
  .btn:hover,
  .btn:active,
  .cover-frame:hover {
    transform: none;
  }

  .album-card:hover .album-card-art img,
  .stream-cell:hover img,
  .bento-cell:hover img,
  .platform-tile:hover img,
  .platform-tile:hover svg {
    transform: none;
  }

  .bg-glow,
  .bg-aurora,
  .note,
  .orbit-svg,
  .eq-bars span,
  .vn-bar,
  .hero-badge,
  .hero-badge .dot,
  .scroll-cue .mouse::after {
    animation: none !important;
  }
}


/* ─── Featured track list (editorial, not tile grid) ─── */
.standout-block {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--chrome-border);
}

.standout-list {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  border-top: 1px solid var(--chrome-border-soft);
}

.standout-list li {
  border-bottom: 1px solid var(--chrome-border-soft);
}

.standout-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0.15rem;
  transition: color 0.15s ease;
}

.standout-list a:hover .standout-name {
  color: var(--text);
}

.standout-name {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-muted);
}

.standout-meta {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: right;
  flex-shrink: 0;
}

.standout-list a:hover .standout-meta {
  color: var(--text-muted);
}

/* CD face — flat, quiet (no toy 3D) */
.cd-case {
  perspective: none;
  filter: none;
  padding-left: 0;
}

.cd-case-face {
  transform: none !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.45);
}

.cd-spine {
  display: none;
}

.cd-case-mini {
  padding-left: 0;
  perspective: none;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.4));
}

.cd-case-mini .cd-case-face {
  transform: none !important;
}

.cd-case-mini .cd-spine {
  display: none;
}


/* craft: quieter plastic */
.cd-plastic {
  opacity: 0.55;
}
.cd-glare {
  opacity: 0.25 !important;
}
.cd-case:hover .cd-glare,
.album-card:hover .cd-glare {
  opacity: 0.4 !important;
}

.album-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.35rem;
  font-weight: 400;
}

