:root {
  --bg-dark: #05060b;
  --bg-dark-2: #090c14;
  --bg-accent: #151827;
  --text-main: #ffffff;
  --text-muted: #98a2b3;
  --accent-cyan: #7ef0ff;
  --accent-cyan-soft: rgba(126, 240, 255, 0.18);
  --accent-purple: #bf8cff;
  --accent-pink: #ff4da6;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.10);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.45);
  --transition: 0.35s cubic-bezier(.2,.8,.2,1);
  --nav-height: 88px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 50% 15%, rgba(126, 240, 255, 0.10) 0%, rgba(126, 240, 255, 0.03) 18%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(191, 140, 255, 0.10) 0%, transparent 35%),
    linear-gradient(180deg, var(--bg-dark-2) 0%, var(--bg-dark) 40%, #04050a 100%);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
}

body.intro-lock { overflow: hidden; }
body.intro-lock nav,
body.intro-lock main,
body.intro-lock footer,
body.intro-lock .cursor-glow,
body.intro-lock .parallax-elements,
body.intro-lock .grid-overlay {
  opacity: 0;
  visibility: hidden;
}

h1, h2, h3, .intro-mark, .release-title, .archive-kicker {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

a { color: inherit; }

.parallax-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: radial-gradient(circle at center, rgba(26, 28, 44, 0.9) 0%, rgba(5, 6, 11, 1) 60%);
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 90%);
  -webkit-mask-image: radial-gradient(circle at center, black 38%, transparent 90%);
}

.parallax-elements { position: fixed; inset: 0; pointer-events: none; z-index: -1; }
.cursor-glow {
  position: fixed; width: 420px; height: 420px; left: 0; top: 0; border-radius: 50%;
  pointer-events: none; z-index: -1; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(126,240,255,0.12) 0%, rgba(126,240,255,0.04) 28%, transparent 72%);
  filter: blur(12px); opacity: 0.85;
}

.intro-overlay {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center;
  background:
    radial-gradient(circle at center, rgba(126,240,255,0.10) 0%, rgba(126,240,255,0.03) 16%, transparent 36%),
    radial-gradient(circle at center, rgba(191,140,255,0.08) 0%, transparent 34%),
    #05060b;
  transition: opacity 0.9s ease, visibility 0.9s ease;
  isolation: isolate;
}
.intro-overlay.hidden { opacity: 0; visibility: hidden; }
.intro-inner { position: relative; width: min(78vw, 760px); aspect-ratio: 1 / 1; display: grid; place-items: center; isolation: isolate; }
.intro-rings, .intro-flash { position: absolute; inset: 0; border-radius: 50%; }
.intro-rings::before, .intro-rings::after {
  content: ""; position: absolute; inset: 18%; border-radius: 50%; border: 1px solid rgba(126, 240, 255, 0.18);
  box-shadow: 0 0 50px rgba(126, 240, 255, 0.12), inset 0 0 24px rgba(126, 240, 255, 0.08);
  animation: pulseRing 2.3s ease-out infinite;
}
.intro-rings::after { inset: 8%; animation-delay: 0.45s; border-color: rgba(191, 140, 255, 0.16); }
.intro-flash {
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(126,240,255,0.12) 22%, transparent 58%);
  opacity: 0.55; filter: blur(20px); animation: introFlash 4.8s ease-in-out forwards;
}
.intro-logo {
  width: clamp(180px, 34vw, 360px);
  filter: drop-shadow(0 0 25px rgba(126,240,255,0.4)) drop-shadow(0 0 70px rgba(126,240,255,0.22));
  opacity: 0; transform: scale(0.4);
  animation: introLogoBuild 4.4s cubic-bezier(.15,.85,.18,1) forwards, introLogoShake 0.13s linear 2.8s 16;
}
.intro-mark { position: absolute; bottom: 7%; font-size: 0.78rem; color: rgba(255,255,255,0.7); letter-spacing: 0.35em; opacity: 0; animation: fadeUp 1s ease 0.5s forwards; }

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 34px;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
  box-shadow: none;
}
.nav-brand { justify-self: start; display: inline-flex; align-items: center; }
.nav-brand img { width: 48px; height: auto; display: block; filter: drop-shadow(0 0 12px rgba(255,255,255,0.12)); }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  position: relative; text-decoration: none; color: var(--text-muted); font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.18em; transition: var(--transition);
  display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; padding: 2px 0;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 50%; bottom: -12px; transform: translateX(-50%);
  width: 72%; height: 3px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(126,240,255,0.2), rgba(126,240,255,1), rgba(191,140,255,0.7));
  box-shadow: 0 0 20px rgba(126,240,255,0.38);
}
.hero {
  min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 110px 20px 40px; position: relative;
}
.hero-content {
  position: relative; z-index: 10; width: 100%; max-width: 1400px; min-height: calc(100vh - 150px);
  display: grid; place-items: center; align-content: center; justify-items: center;
}
.hero-center { width: 100%; display: grid; justify-items: center; align-items: center; row-gap: 18px; }
.logo-stage {
  position: relative; width: min(92vw, 1040px); min-height: 58vh; display: grid; place-items: center; margin: 0 auto; isolation: isolate;
}
.logo-shrine {
  position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); width: min(90vw, 940px); height: min(68vh, 620px);
  pointer-events: none; z-index: 0;
}
.signal-beam, .signal-rays, .signal-sweep, .logo-core-glow, .logo-halo, .logo-ring-grid, .orbit {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.signal-beam {
  width: min(78vw, 860px); height: 2px;
  background: linear-gradient(90deg, rgba(126,240,255,0), rgba(126,240,255,0.55), rgba(255,255,255,0.95), rgba(191,140,255,0.55), rgba(191,140,255,0));
  box-shadow: 0 0 18px rgba(126,240,255,0.32), 0 0 42px rgba(191,140,255,0.16); opacity: 0.9; animation: beamPulse 4.8s ease-in-out infinite;
}
.signal-rays {
  width: min(80vw, 760px); height: min(80vw, 760px); border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(126,240,255,0) 0deg, rgba(126,240,255,0.14) 36deg, rgba(126,240,255,0) 70deg, rgba(191,140,255,0.14) 120deg, rgba(191,140,255,0) 160deg, rgba(255,77,166,0.10) 220deg, rgba(255,77,166,0) 258deg, rgba(126,240,255,0.14) 322deg, rgba(126,240,255,0) 360deg);
  filter: blur(12px); opacity: 0.72; animation: raysSpin 18s linear infinite;
}
.signal-sweep {
  width: min(58vw, 560px); height: min(58vw, 560px); border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(126,240,255,0.08) 24%, rgba(191,140,255,0.05) 40%, transparent 68%);
  filter: blur(12px); animation: sweepBreathe 6s ease-in-out infinite; opacity: 0.9;
}
.logo-core-glow {
  width: min(46vw, 400px); height: min(46vw, 400px);
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, rgba(126,240,255,0.11) 24%, rgba(191,140,255,0.08) 42%, transparent 72%);
  filter: blur(22px); opacity: 0.9; animation: pulseCore 5.4s ease-in-out infinite; z-index: 0;
}
.logo-halo {
  width: min(66vw, 640px); height: min(66vw, 640px); border-radius: 50%; border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 0 0 1px rgba(126,240,255,0.05) inset, 0 0 34px rgba(126,240,255,0.08), 0 0 84px rgba(191,140,255,0.05);
  animation: haloRotate 24s linear infinite; opacity: 0.68;
}
.logo-ring-grid {
  width: min(82vw, 760px); height: min(82vw, 760px); border-radius: 50%;
  background: radial-gradient(circle, transparent 56%, rgba(126,240,255,0.05) 57%, transparent 58%), radial-gradient(circle, transparent 68%, rgba(191,140,255,0.05) 69%, transparent 70%), radial-gradient(circle, transparent 79%, rgba(255,255,255,0.04) 80%, transparent 81%);
  filter: blur(1px); animation: breatheGrid 7s ease-in-out infinite; opacity: 0.55;
}
.orbit { width: min(70vw, 680px); height: min(70vw, 680px); }
.orbit span {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%); font-family: 'Orbitron', sans-serif;
  font-size: clamp(14px, 1.5vw, 18px); color: rgba(255,255,255,0.72);
  text-shadow: 0 0 16px rgba(126,240,255,0.25), 0 0 28px rgba(191,140,255,0.18);
}
.orbit-a { animation: orbitSpin 18s linear infinite; }
.orbit-b { width: min(58vw, 560px); height: min(58vw, 560px); animation: orbitSpinReverse 13s linear infinite; }
.orbit-c { width: min(76vw, 740px); height: min(76vw, 740px); animation: orbitSpin 23s linear infinite; }
.orbit-d { width: min(50vw, 480px); height: min(50vw, 480px); animation: orbitSpinReverse 11s linear infinite; }
.logo-img {
  position: relative; z-index: 2; width: clamp(300px, 46vw, 660px); margin: 0;
  filter: drop-shadow(0 0 14px rgba(255,255,255,0.10)) drop-shadow(0 0 28px rgba(126,240,255,0.14)) drop-shadow(0 0 62px rgba(126,240,255,0.10));
  animation: heroLogoFloat 7s ease-in-out infinite, heroLogoTilt 10s ease-in-out infinite, heroLogoPulse 5.4s ease-in-out infinite;
  transform-origin: center center;
}
.btn-group { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: -10px; position: relative; z-index: 12; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-width: 160px; padding: 16px 28px; border-radius: 999px;
  text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.2em; transition: var(--transition);
}
.btn-primary { background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(235,242,245,0.96)); color: #05060b; box-shadow: 0 20px 50px rgba(126,240,255,0.14); }
.btn-primary:hover { transform: translateY(-4px); }

section { padding: 120px 8%; min-height: 44vh; display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 20px; }
.section-title::after { content: ''; display: block; width: 70px; height: 4px; background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple)); margin: 18px auto 0; border-radius: 999px; }
.section-subtitle { max-width: 760px; color: rgba(255,255,255,0.7); margin-bottom: 34px; }
.about-copy { width: 100%; max-width: 920px; }
.about-copy p { font-size: clamp(1.04rem, 1.45vw, 1.24rem); line-height: 1.95; color: rgba(255,255,255,0.86); }

.spotify-shell {
  width: 100%; max-width: 920px; padding: 18px; border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)), radial-gradient(circle at top, rgba(126,240,255,0.08), transparent 45%);
  border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 18px 70px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.05);
}
.spotify-shell-top { display: flex; align-items: center; gap: 12px; padding: 10px 10px 18px; color: rgba(255,255,255,0.68); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.76rem; }
.spotify-shell-line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(126,240,255,0.45), rgba(191,140,255,0.12)); }
.spotify-container { width: 100%; max-width: 800px; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); margin: 0 auto; }
iframe { width: 100%; height: 450px; border: none; }

.archive-section { padding-top: 110px; }
.archive-shell { width: 100%; max-width: 1380px; display: grid; gap: 24px; }
.archive-topbar {
  display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
}
.archive-kicker {
  display: inline-flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.72); letter-spacing: 0.18em; font-size: 0.76rem;
}
.archive-kicker::before, .archive-kicker::after {
  content: ""; width: 38px; height: 1px; background: linear-gradient(90deg, rgba(126,240,255,0), rgba(126,240,255,0.55), rgba(191,140,255,0));
}
.archive-controls {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px; border-radius: 999px; background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08); box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.archive-filter {
  appearance: none; border: 0; background: transparent; color: rgba(255,255,255,0.68); padding: 10px 16px; border-radius: 999px; font: inherit;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: var(--transition);
}
.archive-filter.active, .archive-filter:hover { background: rgba(255,255,255,0.08); color: #fff; box-shadow: 0 0 18px rgba(126,240,255,0.12); }

.release-slider {
  position: relative; width: 100%; min-height: 640px; display: grid; align-items: center;
}
.slider-viewport {
  overflow: hidden; width: 100%; padding: 26px 0 40px;
}
.slider-track {
  position: relative; height: 560px; display: flex; align-items: center; justify-content: center;
}
.release-card {
  position: absolute; top: 50%; left: 50%; width: min(34vw, 460px); aspect-ratio: 0.92 / 1.18; border-radius: 32px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)), rgba(10,12,19,0.92);
  border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 30px 90px rgba(0,0,0,0.34); isolation: isolate;
  transform-style: preserve-3d; transition: transform 0.65s cubic-bezier(.2,.8,.2,1), opacity 0.55s ease, filter 0.55s ease, box-shadow 0.55s ease;
}
.release-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(126,240,255,0.22), rgba(191,140,255,0.14), rgba(255,255,255,0.02));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.72; pointer-events: none;
}
.release-card.is-center { box-shadow: 0 40px 120px rgba(0,0,0,0.46), 0 0 40px rgba(126,240,255,0.10); }
.release-card.is-hidden { opacity: 0; pointer-events: none; }
.release-cover-wrap { position: relative; height: 70%; overflow: hidden; background: radial-gradient(circle at 50% 30%, rgba(126,240,255,0.12), transparent 48%), #0b0f17; }
.release-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.release-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,6,10,0.04) 0%, rgba(4,6,10,0.12) 50%, rgba(4,6,10,0.88) 100%), radial-gradient(circle at 50% 100%, rgba(126,240,255,0.14), transparent 42%);
}
.release-status {
  position: absolute; top: 18px; left: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 999px;
  background: rgba(5,6,11,0.6); backdrop-filter: none; border: 1px solid rgba(255,255,255,0.12); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.68rem; color: rgba(255,255,255,0.9);
}
.release-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; }
.release-status.live { color: #7ef0ff; }
.release-status.soon { color: #bf8cff; }
.release-status.signal { color: #ff7dc2; }
.release-content { position: relative; z-index: 2; padding: 18px 20px 22px; display: grid; gap: 10px; text-align: left; }
.release-meta { display: flex; justify-content: space-between; gap: 14px; align-items: center; color: rgba(255,255,255,0.58); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.release-title { font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.25; }
.release-text { color: rgba(255,255,255,0.72); font-size: 0.92rem; line-height: 1.65; }
.release-actions { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 6px; }
.release-link {
  display: inline-flex; align-items: center; justify-content: center; min-width: 118px; padding: 11px 14px; border-radius: 999px; text-decoration: none; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.68rem; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); color: #fff; transition: var(--transition);
}
.release-link.primary { background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(235,242,245,0.96)); color: #05060b; border-color: rgba(255,255,255,0.35); }
.release-link:hover { transform: translateY(-2px); }
.slider-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12);
  background: rgba(7,10,16,0.74); backdrop-filter: blur(14px); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; transition: var(--transition);
}
.slider-nav:hover { transform: translateY(-50%) scale(1.05); }
.slider-nav.prev { left: 10px; }
.slider-nav.next { right: 10px; }
.slider-dots { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: -8px; }
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%; border: 0; cursor: pointer; background: rgba(255,255,255,0.18); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); transition: var(--transition);
}
.slider-dot.active { width: 32px; border-radius: 999px; background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple)); box-shadow: 0 0 18px rgba(126,240,255,0.28); }
.release-empty {
  display: none; padding: 34px 24px; border-radius: 24px; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); color: rgba(255,255,255,0.62); text-align: center;
}
.release-empty.show { display: block; }
.social-links { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
footer { padding: 34px 20px 48px; text-align: center; color: rgba(255,255,255,0.54); border-top: 1px solid rgba(255,255,255,0.06); }
.note {
  position: absolute; pointer-events: none; opacity: 0.18; font-size: 30px; animation: floatNote linear forwards;
}
.reveal { opacity: 0; transform: translateY(26px); transition: 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes pulseRing { 0% { transform: scale(.86); opacity: .72; } 100% { transform: scale(1.12); opacity: 0; } }
@keyframes introFlash { 0%, 100% { opacity: .32; } 50% { opacity: .9; } }
@keyframes introLogoBuild {
  0% { opacity: 0; transform: scale(0.35) rotate(-6deg); }
  26% { opacity: 1; transform: scale(0.72) rotate(-1deg); }
  52% { transform: scale(1.12) rotate(0deg); }
  74% { transform: scale(1.5); }
  88% { transform: scale(1.82); }
  100% { opacity: 1; transform: scale(2.12); }
}
@keyframes introLogoShake {
  0% { transform: translate(0,0) scale(1.92); }
  25% { transform: translate(-6px, 4px) scale(1.99) rotate(-0.8deg); }
  50% { transform: translate(6px, -4px) scale(2.06) rotate(0.7deg); }
  75% { transform: translate(-5px, 1px) scale(2.0) rotate(-0.4deg); }
  100% { transform: translate(0,0) scale(2.12); }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroLogoFloat {
  0%, 100% { transform: translate(var(--mx, 0px), calc(var(--my, 0px) - 6px)) translateY(0px) scale(1); }
  50% { transform: translate(var(--mx, 0px), calc(var(--my, 0px) - 6px)) translateY(-12px) scale(1.015); }
}
@keyframes heroLogoTilt { 0%,100% { rotate: -0.6deg; } 50% { rotate: 0.6deg; } }
@keyframes heroLogoPulse {
  0%,100% { filter: drop-shadow(0 0 14px rgba(255,255,255,0.10)) drop-shadow(0 0 28px rgba(126,240,255,0.14)) drop-shadow(0 0 62px rgba(126,240,255,0.10)); }
  50% { filter: drop-shadow(0 0 20px rgba(255,255,255,0.16)) drop-shadow(0 0 40px rgba(126,240,255,0.20)) drop-shadow(0 0 88px rgba(191,140,255,0.14)); }
}
@keyframes pulseCore { 0%,100% { transform: translate(-50%, -50%) scale(0.96); opacity: 0.78; } 50% { transform: translate(-50%, -50%) scale(1.06); opacity: 1; } }
@keyframes haloRotate { from { transform: translate(-50%, -50%) rotate(0deg) scale(0.98); } 50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.015); } to { transform: translate(-50%, -50%) rotate(360deg) scale(0.98); } }
@keyframes breatheGrid { 0%,100% { transform: translate(-50%, -50%) scale(0.985); opacity: .45; } 50% { transform: translate(-50%, -50%) scale(1.02); opacity: .72; } }
@keyframes beamPulse { 0%,100% { opacity: .72; transform: translate(-50%, -50%) scaleX(.96); } 50% { opacity: 1; transform: translate(-50%, -50%) scaleX(1.03); } }
@keyframes raysSpin { from { transform: translate(-50%, -50%) rotate(0deg) scale(.98); } 50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.02); } to { transform: translate(-50%, -50%) rotate(360deg) scale(.98); } }
@keyframes sweepBreathe { 0%,100% { transform: translate(-50%, -50%) scale(.92); opacity: .62; } 50% { transform: translate(-50%, -50%) scale(1.08); opacity: .96; } }
@keyframes orbitSpin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes orbitSpinReverse { from { transform: translate(-50%, -50%) rotate(360deg); } to { transform: translate(-50%, -50%) rotate(0deg); } }
@keyframes floatNote { from { transform: translateY(110vh) rotate(0deg); } to { transform: translateY(-20vh) rotate(360deg); } }

@media (max-width: 1100px) {
  .site-nav { grid-template-columns: auto 1fr auto; gap: 14px; padding-inline: 20px; }
  .nav-links { gap: 22px; }
  .release-card { width: min(44vw, 420px); }
}
@media (max-width: 760px) {
  .site-nav { grid-template-columns: 1fr; gap: 14px; justify-items: center; }
  .nav-brand, .nav-links { gap: 18px; flex-wrap: wrap; }
  .hero { padding-top: 150px; }
  .logo-stage { min-height: 42vh; }
  .hero-content { min-height: calc(100vh - 120px); }
  .hero-center { row-gap: 16px; }
  .logo-img { width: clamp(230px, 68vw, 460px); }
  .archive-topbar { justify-content: center; }
  .archive-controls { width: 100%; justify-content: center; flex-wrap: wrap; }
  .release-slider { min-height: 560px; }
  .slider-track { height: 500px; }
  .release-card { width: min(76vw, 360px); }
  .slider-nav { width: 46px; height: 46px; }
  iframe { height: 360px; }
}


.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(126,240,255,0), rgba(255,255,255,0.95), rgba(191,140,255,0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s ease, opacity .28s ease;
  opacity: 0;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
}

.nav-brand img {
  width: 74px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(126,240,255,0.10));
}

.nav-social-icon {
  justify-self: end;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  transition: transform .28s ease, opacity .28s ease, color .28s ease;
}

.nav-social-icon svg,
.social-icon-link svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}

.nav-social-icon:hover,
.social-icon-link:hover {
  transform: translateY(-1px) scale(1.06);
  color: #fff;
  opacity: 1;
}


.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin-top: 8px;
}

.social-icon-link {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  opacity: 0.9;
  transition: transform .28s ease, opacity .28s ease, color .28s ease;
}


@media (max-width: 900px) {
  .site-nav {
    grid-template-columns: auto 1fr auto;
    padding: 0 18px;
    height: 74px;
    column-gap: 14px;
  }

  .nav-brand img {
    width: 58px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-link {
    letter-spacing: 0.12em;
    font-size: 0.75rem;
  }
}


.site-nav::before,
.site-nav::after {
  content: none !important;
}

.nav-links,
.nav-links li {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.nav-link,
.nav-link span {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.nav-link {
  padding: 0 !important;
  border-radius: 0 !important;
}

.nav-brand img {
  width: 74px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(126,240,255,0.10));
}

@media (max-width: 900px) {
  .site-nav {
    background: transparent;
    backdrop-filter: none;
    border-bottom: 0;
  }
}


.release-slider {
  position: relative;
  z-index: 5;
}

.slider-viewport {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.slider-track {
  position: relative;
  min-height: 720px;
  perspective: 1600px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  color: #fff;
  background: rgba(8, 10, 16, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 34px rgba(0,0,0,0.34), 0 0 18px rgba(126,240,255,0.08);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, opacity .25s ease;
  user-select: none;
  -webkit-user-select: none;
}

.slider-nav:hover {
  transform: translateY(-50%) scale(1.05);
  background: rgba(16, 19, 28, 0.88);
  box-shadow: 0 16px 38px rgba(0,0,0,0.42), 0 0 24px rgba(126,240,255,0.14);
}

.slider-nav.prev { left: -10px; }
.slider-nav.next { right: -10px; }

.release-card {
  pointer-events: none;
}

.release-card.is-center,
.release-card.is-center a,
.release-card.is-center button {
  pointer-events: auto;
}

@media (max-width: 1100px) {
  .slider-nav.prev { left: 0; }
  .slider-nav.next { right: 0; }
}

@media (max-width: 760px) {
  .slider-track {
    min-height: 620px;
  }

  .slider-nav {
    width: 48px;
    height: 48px;
  }
}


.release-cover-wrap {
  position: relative;
  overflow: hidden;
}

.release-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.release-status {
  z-index: 3;
}

.release-content {
  position: relative;
  z-index: 4;
}

.release-actions {
  position: relative;
  z-index: 5;
  opacity: 1 !important;
  visibility: visible !important;
}

.release-link {
  position: relative;
  z-index: 6;
}

.release-card {
  overflow: visible;
}

.release-card.is-hidden {
  pointer-events: none;
}

.release-card,
.release-card * {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.release-card a {
  pointer-events: auto;
}

.release-card.is-center,
.release-card:not(.is-hidden) {
  pointer-events: auto;
}

.release-card:not(.is-hidden) .release-actions {
  opacity: 1;
  visibility: visible;
}

.release-card:not(.is-hidden) .release-link {
  display: inline-flex;
}

@media (max-width: 760px) {
  .release-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .release-link {
    width: 100%;
  }
}

/* === Safari / mobile hard-fix === */
@media (max-width: 900px), (pointer: coarse) {
  .site-nav {
    grid-template-columns: auto 1fr auto !important;
    padding: 0 10px !important;
    height: 68px !important;
    column-gap: 8px !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
  }

  .nav-brand img {
    width: 40px !important;
  }

  .nav-links {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    min-width: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px !important;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links li {
    flex: 0 0 auto !important;
  }

  .nav-link {
    font-size: 0.60rem !important;
    letter-spacing: 0.05em !important;
    white-space: nowrap !important;
  }

  .nav-link::after {
    bottom: -6px !important;
  }

  .nav-social-icon {
    width: 16px !important;
    height: 16px !important;
    flex: 0 0 auto !important;
  }

  .cursor-glow,
  .signal-rays,
  .orbit-c,
  .orbit-d,
  .note {
    display: none !important;
  }

  .slider-nav,
  .slider-dots {
    display: none !important;
  }

  .slider-viewport {
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    padding: 0 12px 8px !important;
    scrollbar-width: none;
  }

  .slider-viewport::-webkit-scrollbar {
    display: none;
  }

  .slider-track {
    display: flex !important;
    gap: 14px !important;
    min-height: auto !important;
    perspective: none !important;
    padding: 0 !important;
    transform: none !important;
  }

  .release-card {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: min(84vw, 360px) !important;
    min-width: min(84vw, 360px) !important;
    max-width: min(84vw, 360px) !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    z-index: auto !important;
    scroll-snap-align: center !important;
    pointer-events: auto !important;
    display: block !important;
    overflow: hidden !important;
  }

  .release-card.is-hidden {
    display: block !important;
  }

  .release-cover-wrap {
    aspect-ratio: 1 / 1 !important;
  }

  .release-content,
  .release-actions,
  .release-link {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .release-content {
    padding: 16px 16px 18px !important;
  }

  .release-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .release-link {
    width: 100% !important;
    justify-content: center !important;
  }
}
