/* =========================================================
   ZONAZJAYY — DESIGN SYSTEM
   Dark · cinematic · premium · minimal
   ========================================================= */

:root {
  --bg: #050505;
  --bg-2: #0b0b0e;
  --bg-3: #111115;
  --ink: #f2efe9;
  --muted: #8f8b83;
  --line: rgba(242, 239, 233, 0.10);
  --accent: #e0a82e;           /* oro — the one accent */
  --accent-ink: #120d02;
  /* Venezuela 🇻🇪 — used as thin tricolor hairlines throughout */
  --tricolor: linear-gradient(90deg,
    #f6d33c 0 33.4%, #2b4ea2 33.4% 66.7%, #c0392b 66.7% 100%);
  --font-display: "Archivo", "Arial Narrow", sans-serif;
  --font-body: "Space Grotesk", "Helvetica Neue", sans-serif;
  --pad: clamp(20px, 5vw, 72px);
  --radius: 14px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.locked { overflow: hidden; }

/* tricolor hairline across the very top of the site */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--tricolor);
  opacity: .55;
  z-index: 66;
  pointer-events: none;
}

::selection { background: var(--accent); color: var(--accent-ink); }

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

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

/* ---------- type ---------- */
.display, .hero-name, .section-title, .gate-name, .vip-title {
  font-family: var(--font-display);
  font-stretch: 115%;
  font-weight: 850;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.015em;
}

.section-kicker, .gate-kicker, .prev-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-stretch: 110%;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .35s, color .35s, border-color .35s, box-shadow .35s;
  min-height: 48px;
}

.btn:active { transform: scale(.97); }

.btn-solid {
  background: var(--ink);
  color: #0a0a0a;
}
.btn-solid:hover {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 8px 40px rgba(224, 168, 46, .25);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255,255,255,.02);
}
.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* =========================================================
   INTRO GATE
   ========================================================= */
.gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .9s var(--ease), visibility .9s;
}
.gate.gone { opacity: 0; visibility: hidden; pointer-events: none; }

.gate-noise {
  position: absolute; inset: 0; opacity: .5;
  background:
    radial-gradient(60% 50% at 50% 110%, rgba(224,168,46,.10), transparent 70%),
    radial-gradient(40% 40% at 80% 0%, rgba(126,107,214,.06), transparent 70%);
}

.gate-inner { position: relative; text-align: center; padding: 0 24px; }

.gate-kicker { margin-bottom: 18px; }

.gate-name {
  font-size: clamp(72px, 18vw, 220px);
  background: linear-gradient(180deg, var(--ink) 55%, rgba(242,239,233,.25));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gate-tag {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.gate-tag::after {
  content: "";
  display: block;
  width: 64px; height: 2px;
  border-radius: 2px;
  background: var(--tricolor);
  margin: 18px auto 0;
  opacity: .8;
}

.gate-enter {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-display);
  font-stretch: 110%;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  padding: 18px 34px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color .4s, background .4s, color .4s, transform .4s var(--ease);
}
.gate-enter:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
  transform: translateY(-2px);
}
.gate-arrow { transition: transform .4s var(--ease); }
.gate-enter:hover .gate-arrow { transform: translateX(6px); }

.gate-skip {
  position: absolute;
  bottom: max(24px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  background: none; border: none;
  color: var(--muted);
  font-size: 11px; letter-spacing: .3em;
  cursor: pointer; padding: 12px;
}

.reveal-gate { opacity: 0; transform: translateY(24px); animation: gateIn 1s var(--ease) forwards; }
.reveal-gate:nth-child(2) { animation-delay: .12s; }
.reveal-gate:nth-child(3) { animation-delay: .28s; }
.reveal-gate:nth-child(4) { animation-delay: .44s; }
@keyframes gateIn { to { opacity: 1; transform: none; } }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad);
  transition: background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav-logo {
  font-family: var(--font-display);
  font-stretch: 120%;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -.04em;
}
.nav-logo span { color: var(--accent); }

.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--muted);
  transition: color .3s;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: var(--tricolor);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  background: none;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  padding: 9px 16px;
  cursor: pointer;
  min-height: 36px;
  transition: color .3s, border-color .3s, background .3s;
}
.lang-toggle:hover { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); }
.lang-toggle-menu { align-self: flex-start; margin-top: 40px; min-height: 44px; padding: 12px 22px; color: var(--ink); }
.btn-nav { padding: 12px 24px; min-height: 42px; font-size: 12px; }

.nav-burger {
  display: none;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink);
  transition: transform .4s var(--ease), opacity .3s;
}
.nav-burger.open span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-burger.open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

/* mobile menu */
.menu {
  position: fixed; inset: 0;
  z-index: 55;
  background: rgba(5,5,5,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--pad);
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.menu.open { opacity: 1; visibility: visible; }

.menu-links { display: flex; flex-direction: column; gap: 6px; }
.menu-links a {
  font-family: var(--font-display);
  font-stretch: 115%;
  font-weight: 850;
  font-size: clamp(40px, 11vw, 64px);
  text-transform: uppercase;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
}
.menu.open .menu-links a { opacity: 1; transform: none; }
.menu.open .menu-links a:nth-child(1) { transition-delay: .05s; }
.menu.open .menu-links a:nth-child(2) { transition-delay: .1s; }
.menu.open .menu-links a:nth-child(3) { transition-delay: .15s; }
.menu.open .menu-links a:nth-child(4) { transition-delay: .2s; }
.menu.open .menu-links a:nth-child(5) { transition-delay: .25s; }
.menu.open .menu-links a:nth-child(6) { transition-delay: .3s; }
.menu-links a:hover { color: var(--accent); }
.menu-links .menu-vip { color: var(--accent); font-size: clamp(22px, 6vw, 32px); margin-top: 18px; }

.menu-socials {
  display: flex; flex-wrap: wrap; gap: 20px;
  margin-top: 48px;
}
.menu-socials a { font-size: 12px; letter-spacing: .2em; color: var(--muted); }
.menu-socials a:hover { color: var(--ink); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 100px var(--pad) 80px;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  filter: saturate(.8) brightness(.48) contrast(1.12);
  opacity: .55;
  mask-image: radial-gradient(115% 95% at 50% 30%, #000 25%, transparent 74%);
  -webkit-mask-image: radial-gradient(115% 95% at 50% 30%, #000 25%, transparent 74%);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-photo { animation: heroDrift 26s ease-in-out infinite alternate; }
  @keyframes heroDrift { from { transform: scale(1); } to { transform: scale(1.06); } }
}

.hero-glow {
  position: absolute;
  left: 50%; bottom: -30%;
  width: 120vmax; height: 80vmax;
  transform: translateX(-50%);
  background: radial-gradient(45% 45% at 50% 60%, rgba(224,168,46,.13), transparent 65%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(242,239,233,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,239,233,.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(70% 60% at 50% 45%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 45%, #000 30%, transparent 100%);
}

.hero-zona {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-family: var(--font-display);
  font-stretch: 120%;
  font-weight: 900;
  font-size: clamp(60px, 12vh, 120px);
  letter-spacing: .1em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242,239,233,.045);
  user-select: none;
}

.hero-inner { position: relative; max-width: 1100px; width: 100%; container-type: inline-size; }

.hero-kicker {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.hero-kicker span { color: var(--accent); }

.hero-name {
  /* sized to always fit the container width — "ZJAYY" never clips */
  font-size: min(300px, 21cqw);
  background: linear-gradient(180deg, var(--ink) 50%, rgba(242,239,233,.32));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 26px;
}

.hero-release {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-stretch: 110%;
  font-weight: 700;
  font-size: clamp(15px, 2.6vw, 20px);
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 26px;
  margin-bottom: 36px;
  background: rgba(255,255,255,.02);
}

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224,168,46,.5); }
  50% { box-shadow: 0 0 0 8px rgba(224,168,46,0); }
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-vip-link {
  display: inline-block;
  margin-top: 30px;
  font-size: 12px;
  letter-spacing: .26em;
  color: var(--muted);
  transition: color .3s, letter-spacing .4s var(--ease);
}
.hero-vip-link:hover { color: var(--accent); letter-spacing: .32em; }

.hero-scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 56px;
  overflow: hidden;
}
.hero-scroll span {
  position: absolute; top: -50%;
  width: 1px; height: 50%;
  background: linear-gradient(var(--accent), transparent);
  animation: scrollHint 2.2s var(--ease) infinite;
}
@keyframes scrollHint { to { top: 110%; } }

/* =========================================================
   SECTIONS (shared)
   ========================================================= */
.section {
  position: relative;
  padding: clamp(90px, 12vw, 170px) var(--pad);
  max-width: 1400px;
  margin: 0 auto;
}

.section-head { margin-bottom: clamp(40px, 6vw, 80px); }

.section-kicker { margin-bottom: 16px; }
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 28px; height: 2px;
  border-radius: 2px;
  background: var(--tricolor);
  vertical-align: middle;
  margin-right: 12px;
}

.section-title { font-size: clamp(44px, 9vw, 110px); }

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   MUSIC
   ========================================================= */
.feature-release {
  display: grid;
  grid-template-columns: minmax(280px, 480px) 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.feature-art {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  transition: transform .6s var(--ease), box-shadow .6s;
  width: 100%;
}
.feature-art:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.feature-art .cover { width: 100%; height: 100%; }

.feature-art .art-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5,5,5,.25);
  opacity: 0;
  transition: opacity .4s;
}
.feature-art:hover .art-play, .feature-art:focus-visible .art-play { opacity: 1; }
.art-play-circle {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(242,239,233,.95);
  color: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s var(--ease);
}
.feature-art:hover .art-play-circle { transform: scale(1.06); }

.feature-info { container-type: inline-size; }
.feature-info .f-type {
  font-size: 11px; letter-spacing: .3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.feature-info h3 {
  font-family: var(--font-display);
  font-stretch: 115%;
  font-weight: 850;
  font-size: min(clamp(52px, 8vw, 96px), calc(95cqw / var(--len, 6)));
  line-height: .95;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.feature-info .f-status {
  display: inline-block;
  font-size: 12px; letter-spacing: .24em;
  color: var(--muted);
  margin-bottom: 30px;
}

.stream-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.stream-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,.02);
  transition: border-color .3s, background .3s, transform .3s var(--ease);
  min-height: 44px;
}
.stream-chip:hover {
  border-color: var(--accent);
  background: rgba(224,168,46,.08);
  transform: translateY(-2px);
}
.stream-chip.disabled { opacity: .45; pointer-events: none; }

.play-inline {
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer;
}

.prev-releases { margin-top: clamp(60px, 8vw, 110px); }
.prev-label { margin-bottom: 8px; }

.release-list { list-style: none; counter-reset: rel; }
.release-row {
  display: grid;
  grid-template-columns: 56px 72px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 10px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background .3s, padding .35s var(--ease);
}
.release-row:first-child { border-top: 1px solid var(--line); }
.release-row:hover { background: rgba(255,255,255,.025); padding-left: 20px; }

.release-num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .1em;
}
.release-thumb {
  width: 72px; height: 72px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.release-thumb .cover { width: 100%; height: 100%; }
.release-thumb .cover-tag, .player-art .cover-tag { display: none; }
.release-name {
  font-family: var(--font-display);
  font-stretch: 112%;
  font-weight: 800;
  font-size: clamp(20px, 3.4vw, 32px);
  text-transform: uppercase;
  line-height: 1;
}
.release-meta { font-size: 12px; color: var(--muted); letter-spacing: .16em; margin-top: 6px; text-transform: uppercase; }
.release-arrow {
  color: var(--muted);
  font-size: 20px;
  transition: transform .35s var(--ease), color .3s;
}
.release-row:hover .release-arrow { transform: translateX(6px); color: var(--accent); }

/* generated cover art */
.cover {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  container-type: inline-size;
  background:
    radial-gradient(120% 120% at 20% 0%, var(--cover-accent, var(--accent)) 0%, transparent 55%),
    linear-gradient(200deg, #16161b, #060607 70%);
}
.cover::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}
.cover .cover-word {
  font-family: var(--font-display);
  font-stretch: 120%;
  font-weight: 900;
  text-transform: uppercase;
  line-height: .82;
  letter-spacing: -.02em;
  color: rgba(242,239,233,.92);
  padding: 6%;
  /* auto-fit: never larger than --cover-size, never wider than the cover */
  font-size: min(var(--cover-size, 3rem), calc(95cqw / var(--len, 6)));
}
.cover .cover-tag {
  position: absolute; top: 6%; right: 6%;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: .3em;
  color: rgba(242,239,233,.55);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* =========================================================
   CD EXPERIENCE
   ========================================================= */
.section-cd { text-align: left; }

.cd-stage {
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.cd-object {
  background: none; border: none; padding: 0; cursor: pointer;
  perspective: 1200px;
  width: 100%;
}

.cd-tilt {
  position: relative;
  transition: transform .5s var(--ease);
  transform-style: preserve-3d;
}

.cd-case {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,.65), 0 2px 0 rgba(255,255,255,.06) inset;
}
.cd-case .cover { position: absolute; inset: 0; }

.cd-sheen {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.10) 45%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 1s var(--ease);
  pointer-events: none;
}
.cd-object:hover .cd-sheen { transform: translateX(120%); }

.cd-disc {
  position: absolute;
  top: 50%;
  right: -14%;
  width: 62%;
  aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, #0a0a0a 17%, transparent 17.5%),
    conic-gradient(from 0deg, #2c2c31, #57575e, #2c2c31, #4a4a51, #2c2c31);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  z-index: -1;
  transition: transform .8s var(--ease);
}
.cd-object:hover .cd-disc { transform: translateY(-50%) translateX(7%) rotate(40deg); }
.cd-hole {
  position: absolute; top: 50%; left: 50%;
  width: 10%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,.12);
}

.cd-meta h3 {
  font-family: var(--font-display);
  font-stretch: 112%;
  font-weight: 850;
  font-size: clamp(26px, 4.4vw, 46px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 14px;
}
.cd-edition { color: var(--muted); font-size: 14px; letter-spacing: .1em; margin-bottom: 18px; }
.cd-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  color: var(--accent);
  margin-bottom: 26px;
}

/* =========================================================
   STORE
   ========================================================= */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}

.product {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  cursor: pointer;
  transition: transform .5s var(--ease), border-color .4s, box-shadow .5s;
  text-align: left;
  padding: 0;
  color: var(--ink);
  font-family: inherit;
}
.product:hover {
  transform: translateY(-6px);
  border-color: rgba(242,239,233,.28);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}

.product.featured { grid-column: span 2; }

.product-art {
  container-type: inline-size;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(100% 100% at 50% 120%, color-mix(in srgb, var(--p-accent, #e0a82e) 22%, transparent), transparent 70%),
    linear-gradient(180deg, #101014, #08080a);
}
.product.featured .product-art { aspect-ratio: 2 / 1; }

.product-art .p-word {
  font-family: var(--font-display);
  font-stretch: 120%;
  font-weight: 900;
  font-size: min(clamp(34px, 5vw, 60px), calc(95cqw / var(--len, 5)));
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: rgba(242,239,233,.9);
  transition: transform .6s var(--ease);
}
.product:hover .p-word { transform: scale(1.05) rotate(-1.5deg); }

.product-art .p-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.product:hover .p-img { transform: scale(1.04); }

.chip-video { border-color: rgba(224,168,46,.5); color: var(--accent); }

.product-tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 9px; letter-spacing: .26em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.product-info {
  padding: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.product-name {
  font-family: var(--font-display);
  font-stretch: 110%;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  line-height: 1.2;
}
.product-detail { font-size: 12px; color: var(--muted); margin-top: 4px; }
.product-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  white-space: nowrap;
}
.product-soon {
  font-size: 9px; letter-spacing: .2em;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
  text-align: right;
  margin-top: 3px;
}

.store-empty {
  grid-column: 1 / -1;
  border: 1px dashed rgba(242, 239, 233, 0.18);
  border-radius: var(--radius);
  padding: clamp(50px, 8vw, 100px) 24px;
  text-align: center;
  background:
    radial-gradient(70% 100% at 50% 120%, rgba(224,168,46,.07), transparent 65%),
    var(--bg-2);
}
.store-empty-big {
  font-family: var(--font-display);
  font-stretch: 115%;
  font-weight: 850;
  font-size: clamp(34px, 6vw, 64px);
  text-transform: uppercase;
  line-height: 1;
  background: linear-gradient(180deg, var(--ink) 55%, rgba(242,239,233,.3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
.store-empty-copy {
  color: var(--muted);
  font-size: 14px;
  max-width: 44ch;
  margin: 0 auto 30px;
}

.store-note {
  margin-top: 34px;
  color: var(--muted);
  font-size: 14px;
}
.store-note a { color: var(--accent); border-bottom: 1px solid rgba(224,168,46,.35); }

/* =========================================================
   VISUALS
   ========================================================= */
.visuals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 14px;
}

.visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  background: var(--bg-2);
}
.visual.wide { grid-column: span 2; }
.visual.tall { grid-row: span 2; }

.visual-ph {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background:
    radial-gradient(140% 90% at 80% -10%, color-mix(in srgb, var(--v-accent, #e0a82e) 20%, transparent), transparent 60%),
    linear-gradient(200deg, #131318, #070708);
  transition: transform .8s var(--ease);
}
.visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.visual:hover .visual-ph, .visual:hover img { transform: scale(1.04); }

.visual-caption {
  position: relative;
  font-family: var(--font-display);
  font-stretch: 112%;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(242,239,233,.9);
  text-align: left;
}
.visual-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(5,5,5,.55);
  border: 1px solid rgba(242,239,233,.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background .3s, color .3s, transform .35s var(--ease);
}
.visual:hover .visual-play {
  background: var(--accent);
  color: var(--accent-ink);
  transform: translate(-50%, -50%) scale(1.08);
}

.visual-credit {
  position: relative;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .2em;
  text-transform: uppercase;
  text-align: left;
  margin-top: 4px;
}

/* =========================================================
   SHOWS
   ========================================================= */
.shows-list { border-top: 1px solid var(--line); }

.show-row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 10px;
  border-bottom: 1px solid var(--line);
  transition: background .3s, padding .35s var(--ease);
}
.show-row:hover { background: rgba(255,255,255,.025); padding-left: 20px; }

.show-date {
  font-family: var(--font-display);
  font-stretch: 115%;
  font-weight: 850;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1;
}
.show-date small { display: block; font-size: 11px; color: var(--muted); letter-spacing: .2em; font-weight: 500; margin-top: 5px; }
.show-city {
  font-family: var(--font-display);
  font-stretch: 110%;
  font-weight: 800;
  font-size: clamp(20px, 3.4vw, 30px);
  text-transform: uppercase;
  line-height: 1.05;
}
.show-venue { font-size: 13px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; margin-top: 5px; }

.shows-empty {
  padding: 60px 0;
  color: var(--muted);
  font-size: 15px;
  border-bottom: 1px solid var(--line);
}
.shows-empty a { color: var(--accent); }

/* =========================================================
   ABOUT
   ========================================================= */
.section-about {
  max-width: none;
  background:
    radial-gradient(60% 70% at 85% 20%, rgba(224,168,46,.06), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-wrap {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
}
.about-lede {
  font-family: var(--font-display);
  font-stretch: 108%;
  font-weight: 600;
  font-size: clamp(21px, 3vw, 30px);
  line-height: 1.35;
  margin-bottom: 28px;
  text-wrap: balance;
}
.about-body p:not(.about-lede) {
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 60ch;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  margin-top: 40px;
  justify-content: start;
}
.about-stats dt { font-size: 10px; letter-spacing: .3em; color: var(--accent); text-transform: uppercase; margin-bottom: 8px; }
.about-stats dd {
  font-family: var(--font-display);
  font-stretch: 110%;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
}

/* =========================================================
   VIP
   ========================================================= */
.section-vip { padding-bottom: clamp(110px, 14vw, 190px); }

.vip-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(44px, 7vw, 90px) clamp(24px, 6vw, 80px);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(80% 100% at 50% 120%, rgba(224,168,46,.12), transparent 60%),
    var(--bg-2);
}
.vip-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--tricolor);
  opacity: .75;
}

.vip-title { font-size: clamp(38px, 8vw, 92px); margin: 18px 0; }
.vip-copy {
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto 36px;
  font-size: 15px;
}

.vip-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.vip-form input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 24px;
  outline: none;
  transition: border-color .3s, background .3s;
  min-height: 48px;
}
.vip-form input::placeholder { color: var(--muted); }
.vip-form input:focus { border-color: var(--accent); background: rgba(255,255,255,.06); }

.vip-status { margin-top: 20px; font-size: 13px; color: var(--accent); min-height: 20px; letter-spacing: .04em; }
.vip-status.err { color: #d47a6e; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: 1px solid var(--line);
  padding: 60px var(--pad) 120px;
  overflow: hidden;
}
.footer-name {
  font-family: var(--font-display);
  font-stretch: 120%;
  font-weight: 900;
  font-size: clamp(40px, 11vw, 175px);
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242,239,233,.14);
  user-select: none;
  margin-bottom: 46px;
  white-space: nowrap;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-socials { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-socials a {
  font-size: 11px; letter-spacing: .22em;
  color: var(--muted);
  text-transform: uppercase;
  transition: color .3s;
  padding: 6px 0;
}
.footer-socials a:hover { color: var(--accent); }
.footer-copy { font-size: 11px; color: var(--muted); letter-spacing: .1em; }

.footer-line { display: flex; height: 2px; max-width: 1400px; margin: 40px auto 0; border-radius: 2px; overflow: hidden; opacity: .35; }
.footer-line i { flex: 1; }
.footer-line i:nth-child(1) { background: #f6d33c; }
.footer-line i:nth-child(2) { background: #2b4ea2; }
.footer-line i:nth-child(3) { background: #c0392b; }

/* =========================================================
   MINI PLAYER
   ========================================================= */
.player {
  position: fixed;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  transform: translate(-50%, 140%);
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(520px, calc(100vw - 28px));
  padding: 10px 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(12,12,15,.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  transition: transform .6s var(--ease);
}
.player.show { transform: translate(-50%, 0); }

.player-art {
  width: 46px; height: 46px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.player-art .cover { width: 100%; height: 100%; }

.player-info { flex: 1; min-width: 0; }
.player-track {
  font-family: var(--font-display);
  font-stretch: 110%;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-artist { font-size: 10px; color: var(--muted); letter-spacing: .24em; text-transform: uppercase; }

.player-wave { display: flex; align-items: flex-end; gap: 3px; height: 18px; }
.player-wave i {
  width: 3px;
  height: 30%;
  background: var(--accent);
  border-radius: 2px;
  transition: height .3s;
}
.player.playing .player-wave i { animation: wave 1s ease-in-out infinite; }
.player.playing .player-wave i:nth-child(2) { animation-delay: .15s; }
.player.playing .player-wave i:nth-child(3) { animation-delay: .3s; }
.player.playing .player-wave i:nth-child(4) { animation-delay: .45s; }
.player.playing .player-wave i:nth-child(5) { animation-delay: .6s; }
@keyframes wave { 0%, 100% { height: 25%; } 50% { height: 100%; } }

.player-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .3s, transform .3s var(--ease);
  flex-shrink: 0;
}
.player-btn:hover { background: var(--accent); transform: scale(1.06); }
.player .ic-pause { display: none; }
.player.playing .ic-pause { display: block; }
.player.playing .ic-play { display: none; }

.player-close {
  background: none; border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  padding: 8px;
  flex-shrink: 0;
}
.player-close:hover { color: var(--ink); }

/* =========================================================
   MODAL / LIGHTBOX
   ========================================================= */
.modal {
  position: fixed; inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.modal.open { opacity: 1; visibility: visible; }

.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(3,3,4,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  width: min(880px, 100%);
  max-height: min(86vh, 86svh);
  overflow-y: auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  transform: translateY(24px) scale(.98);
  transition: transform .45s var(--ease);
  scrollbar-width: thin;
}
.modal.open .modal-panel { transform: none; }

.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(5,5,5,.6);
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  transition: background .3s, transform .3s;
}
.modal-close:hover { background: var(--accent); color: var(--accent-ink); }

/* release / CD modal layout */
.rm-grid { display: grid; grid-template-columns: 1fr 1fr; }
.rm-art { aspect-ratio: 1; position: relative; }
.rm-art .cover { position: absolute; inset: 0; }
.rm-body { padding: clamp(24px, 4vw, 44px); container-type: inline-size; }
.rm-kicker { font-size: 10px; letter-spacing: .3em; color: var(--accent); text-transform: uppercase; margin-bottom: 12px; }
.rm-title {
  font-family: var(--font-display);
  font-stretch: 115%;
  font-weight: 850;
  font-size: min(clamp(30px, 5vw, 52px), calc(92cqw / var(--len, 6)));
  text-transform: uppercase;
  line-height: .95;
  margin-bottom: 10px;
}
.rm-sub { color: var(--muted); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 24px; }

.rm-tabs { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.rm-tab {
  background: none;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 9px 16px;
  cursor: pointer;
  transition: color .3s, border-color .3s, background .3s;
  font-family: var(--font-body);
}
.rm-tab.active { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); font-weight: 600; }

.rm-pane { min-height: 120px; font-size: 14px; color: var(--muted); }
.rm-pane ol { list-style: none; counter-reset: t; }
.rm-pane ol li {
  counter-increment: t;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-display);
  font-stretch: 108%;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  display: flex;
  gap: 14px;
}
.rm-pane ol li::before { content: counter(t, decimal-leading-zero); color: var(--muted); font-size: 12px; }
.rm-pane ul { list-style: none; }
.rm-pane ul li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.rm-pane ul li::before { content: "◆ "; color: var(--accent); font-size: 9px; vertical-align: middle; margin-right: 8px; }

.rm-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

/* lightbox */
.lb-figure { position: relative; }
.lb-media { aspect-ratio: 16 / 10; position: relative; overflow: hidden; border-radius: 20px 20px 0 0; }
.lb-media .visual-ph { position: absolute; inset: 0; }
.lb-media img { width: 100%; height: 100%; object-fit: contain; background: #000; }
.lb-media.lb-video { aspect-ratio: 16 / 9; background: #000; }
.lb-media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lb-caption { padding: 20px 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.lb-caption h4 {
  font-family: var(--font-display);
  font-stretch: 112%;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 16px;
}
.lb-caption p { font-size: 11px; color: var(--muted); letter-spacing: .2em; text-transform: uppercase; }
.lb-nav {
  display: flex; gap: 8px;
}
.lb-nav button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: none;
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  transition: background .3s, color .3s;
}
.lb-nav button:hover { background: var(--ink); color: #0a0a0a; }

/* secret */
.secret-pane { padding: clamp(40px, 6vw, 70px); text-align: center; }
.secret-pane h3 {
  font-family: var(--font-display);
  font-stretch: 115%;
  font-weight: 850;
  font-size: clamp(28px, 5vw, 44px);
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--accent);
}
.secret-pane p { color: var(--muted); max-width: 42ch; margin: 0 auto 8px; font-size: 14px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .btn-nav { display: none; }

  .feature-release { grid-template-columns: 1fr; }
  .cd-stage { grid-template-columns: 1fr; }
  .cd-disc { right: -6%; }

  .about-wrap { grid-template-columns: 1fr; }

  .visuals-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }

  .product.featured { grid-column: span 1; }
  .product.featured .product-art { aspect-ratio: 1; }

  .show-row { grid-template-columns: 90px 1fr; }
  .show-row .btn { grid-column: 1 / -1; justify-self: start; }
  .show-date { font-size: 19px; }

  .rm-grid { grid-template-columns: 1fr; }
  .rm-art { aspect-ratio: 16 / 9; }

  .release-row { grid-template-columns: 56px 1fr auto; }
  .release-num { display: none; }

  .about-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .hero { padding-top: 88px; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .vip-form { flex-direction: column; }
  .vip-form .btn { width: 100%; }
  .store-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-info { flex-direction: column; align-items: flex-start; }
  .footer { padding-bottom: 140px; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
  }
  .reveal { opacity: 1; transform: none; }
  .cd-tilt { transform: none !important; }
}
