/* ═══════════════════════════════════════════════════════
   SibLynXMusic — "The Neon Frequency"
   Immersive Electronic Music Label Experience
   ═══════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500&display=swap");

/* ─── DESIGN TOKENS ─── */
:root {
  /* Core palette */
  --void: #02040A;
  --deep: #050816;
  --surface: #0a1020;
  --surface-light: #0f1730;

  /* Neon accents */
  --cyan: #00F0FF;
  --cyan-dim: rgba(0, 240, 255, 0.15);
  --cyan-glow: rgba(0, 240, 255, 0.35);
  --mint: #00FFA3;
  --mint-dim: rgba(0, 255, 163, 0.12);
  --purple: #8A2BE2;
  --purple-dim: rgba(138, 43, 226, 0.15);
  --purple-glow: rgba(138, 43, 226, 0.35);
  --magenta: #E040FB;
  --magenta-dim: rgba(224, 64, 251, 0.12);
  --orange: #FF6B00;
  --orange-dim: rgba(255, 107, 0, 0.15);
  --orange-glow: rgba(255, 107, 0, 0.35);

  /* Text */
  --text-1: #F0F4FF;
  --text-2: #8B9DC3;
  --text-3: #4A5578;

  /* Borders */
  --border: rgba(0, 240, 255, 0.12);
  --border-hover: rgba(0, 240, 255, 0.3);

  /* Radii */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-pill: 9999px;

  /* Shadows */
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow-cyan: 0 0 40px rgba(0, 240, 255, 0.2), 0 0 80px rgba(0, 240, 255, 0.08);
  --shadow-glow-purple: 0 0 40px rgba(138, 43, 226, 0.2), 0 0 80px rgba(138, 43, 226, 0.08);
  --shadow-glow-orange: 0 0 40px rgba(255, 107, 0, 0.2), 0 0 80px rgba(255, 107, 0, 0.08);

  /* Layout */
  --container: 1240px;
  --header-h: 80px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  min-width: 320px;
  background: var(--void);
  color: var(--text-1);
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; color: inherit; font: inherit; }

.hidden { display: none !important; }

/* ─── CONTAINER ─── */
.container {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════
   ENTRY SCREEN
   ═══════════════════════════════════════════════════════ */
.entry-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--void);
  transition: opacity 1.2s var(--ease), visibility 1.2s var(--ease);
}
.entry-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.entry-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.entry-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: entryFadeIn 1.5s var(--ease-out) both;
}
@keyframes entryFadeIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.entry-logo-wrap {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 40px var(--cyan-glow)) drop-shadow(0 0 80px rgba(0, 240, 255, 0.15));
  animation: entryPulse 3s ease-in-out infinite;
}
@keyframes entryPulse {
  0%, 100% { filter: drop-shadow(0 0 40px var(--cyan-glow)) drop-shadow(0 0 80px rgba(0, 240, 255, 0.15)); }
  50% { filter: drop-shadow(0 0 60px var(--cyan-glow)) drop-shadow(0 0 120px rgba(0, 240, 255, 0.25)); }
}
.entry-logo {
  width: 100%;
  height: auto;
}
.entry-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-1);
  text-shadow: 0 0 30px var(--cyan-glow);
}
.entry-sub {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--text-2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.entry-buttons {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.entry-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--r-pill);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.entry-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.entry-btn:hover::before { opacity: 1; }
.entry-btn-sound {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(138, 43, 226, 0.15));
  border: 1px solid rgba(0, 240, 255, 0.4);
  color: var(--cyan);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.15), inset 0 0 30px rgba(0, 240, 255, 0.05);
}
.entry-btn-sound:hover {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.35), rgba(138, 43, 226, 0.25));
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.3), inset 0 0 40px rgba(0, 240, 255, 0.08);
  transform: translateY(-3px);
}
.entry-btn-silent {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-2);
}
.entry-btn-silent:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-1);
  transform: translateY(-3px);
}
.entry-btn-icon { display: flex; align-items: center; }

/* ═══════════════════════════════════════════════════════
   SITE WRAPPER & AMBIENT
   ═══════════════════════════════════════════════════════ */
.site-wrapper {
  position: relative;
  min-height: 100vh;
  opacity: 0;
  transition: opacity 1s var(--ease) 0.3s;
}
.site-wrapper.visible { opacity: 1; }

.ambient-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════
   FLOATING AUDIO CONTROL
   ═══════════════════════════════════════════════════════ */
.audio-control {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 12px;
  border-radius: var(--r-pill);
  background: rgba(5, 8, 22, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease);
  opacity: 0;
  transform: translateY(20px);
}
.audio-control.visible {
  opacity: 1;
  transform: translateY(0);
}
.audio-control:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card), var(--shadow-glow-cyan);
}
.mute-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cyan-dim);
  display: grid;
  place-items: center;
  color: var(--cyan);
  transition: all 0.3s var(--ease);
}
.mute-toggle:hover {
  background: rgba(0, 240, 255, 0.25);
  box-shadow: 0 0 20px var(--cyan-glow);
}
.now-playing {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.now-playing-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}
.now-playing-bars span {
  width: 3px;
  background: var(--cyan);
  border-radius: 2px;
  animation: barPulse 1.2s ease-in-out infinite;
}
.now-playing-bars span:nth-child(1) { height: 40%; animation-delay: 0s; }
.now-playing-bars span:nth-child(2) { height: 70%; animation-delay: 0.15s; }
.now-playing-bars span:nth-child(3) { height: 50%; animation-delay: 0.3s; }
.now-playing-bars span:nth-child(4) { height: 80%; animation-delay: 0.45s; }
.audio-control.paused .now-playing-bars span {
  animation: none;
  height: 30%;
}
@keyframes barPulse {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

/* ═══════════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 4, 10, 0.75);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(0, 240, 255, 0.06);
  transition: background 0.3s var(--ease);
}
.nav-wrap {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-1);
}
.brand img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 16px var(--cyan-glow));
  transition: filter 0.3s var(--ease);
}
.brand:hover img {
  filter: drop-shadow(0 0 24px var(--cyan-glow));
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.03em;
  transition: all 0.25s var(--ease);
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text-1);
  background: rgba(0, 240, 255, 0.06);
}
.site-nav a.is-active {
  color: var(--cyan);
  box-shadow: inset 0 0 0 1px var(--border);
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: rgba(10, 16, 32, 0.8);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}

/* ═══════════════════════════════════════════════════════
   SHARED SECTION STYLES
   ═══════════════════════════════════════════════════════ */
section { padding: 120px 0; position: relative; }

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: var(--cyan-dim);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-heading h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.08);
}
.section-sub {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
.hero-section {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.2), transparent 70%);
  animation: heroFloat1 8s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.18), transparent 70%);
  animation: heroFloat2 10s ease-in-out infinite;
}
.hero-glow-3 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 255, 163, 0.08), transparent 70%);
  animation: heroFloat3 12s ease-in-out infinite;
}
@keyframes heroFloat1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-30px, 20px); } }
@keyframes heroFloat2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(20px, -30px); } }
@keyframes heroFloat3 { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.15); } }

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-copy { z-index: 2; }
.hero-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  line-height: 1.05;
  margin: 20px 0 0;
}
.hero-title-line {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.hero-title-accent {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--text-1);
  text-shadow: 0 0 40px var(--cyan-glow), 0 0 80px rgba(138, 43, 226, 0.15);
  background: linear-gradient(135deg, var(--cyan), var(--purple), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text {
  margin: 28px 0 0;
  font-size: 1.12rem;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}
.hero-visual {
  display: grid;
  place-items: center;
  z-index: 1;
}
.hero-logo-orb {
  position: relative;
  width: clamp(220px, 28vw, 360px);
  height: clamp(220px, 28vw, 360px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.08), transparent 70%);
  animation: orbPulse 4s ease-in-out infinite;
}
.hero-logo-orb::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0, 240, 255, 0.15);
  animation: orbRing 6s linear infinite;
}
.hero-logo-orb::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(138, 43, 226, 0.1);
  animation: orbRing 8s linear infinite reverse;
}
@keyframes orbPulse {
  0%, 100% { box-shadow: 0 0 60px rgba(0, 240, 255, 0.1), 0 0 120px rgba(0, 240, 255, 0.05); }
  50% { box-shadow: 0 0 80px rgba(0, 240, 255, 0.2), 0 0 160px rgba(0, 240, 255, 0.08); }
}
@keyframes orbRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-logo-img {
  width: 65%;
  height: auto;
  filter: drop-shadow(0 0 30px var(--cyan-glow));
  animation: logoFloat 5s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.3s var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 0.84rem; }
.btn-primary {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(138, 43, 226, 0.12));
  border: 1px solid rgba(0, 240, 255, 0.35);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}
.btn-primary:hover {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.3), rgba(138, 43, 226, 0.2));
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.2);
  transform: translateY(-2px);
}
.btn-glow { box-shadow: var(--shadow-glow-cyan); }
.btn-glow:hover { box-shadow: 0 0 60px rgba(0, 240, 255, 0.3), 0 0 120px rgba(0, 240, 255, 0.1); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-2);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-1);
  transform: translateY(-2px);
}
.btn-bounce {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 107, 0, 0.08));
  border-color: rgba(255, 107, 0, 0.35);
  color: var(--orange);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.1);
}
.btn-bounce:hover {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.3), rgba(255, 107, 0, 0.15));
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.2);
}

/* ═══════════════════════════════════════════════════════
   ARTIST SECTION
   ═══════════════════════════════════════════════════════ */
.artists-section {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 240, 255, 0.04), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(138, 43, 226, 0.04), transparent 50%),
    var(--void);
}
.artist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.artist-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface), var(--void));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.5s var(--ease);
  position: relative;
}
.artist-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
}
.artist-card--siblynx:hover {
  box-shadow: var(--shadow-card), var(--shadow-glow-cyan);
}
.artist-card--bounce:hover {
  box-shadow: var(--shadow-card), var(--shadow-glow-orange);
}
.artist-card-visual {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.artist-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.artist-card:hover .artist-card-visual img {
  transform: scale(1.05);
  filter: brightness(0.7);
}
.artist-card-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(2, 4, 10, 0.3);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.artist-card:hover .artist-card-overlay { opacity: 1; }
.play-btn {
  color: var(--text-1);
  transition: all 0.3s var(--ease);
  filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.4));
}
.play-btn:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.6));
}
.artist-card--bounce .play-btn {
  filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.4));
}
.artist-card--bounce .play-btn:hover {
  filter: drop-shadow(0 0 30px rgba(255, 107, 0, 0.6));
}
.artist-card-info {
  padding: 28px;
}
.artist-card-info h3 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.artist-card--siblynx .artist-card-info h3 {
  text-shadow: 0 0 20px var(--cyan-glow);
}
.artist-card--bounce .artist-card-info h3 {
  text-shadow: 0 0 20px var(--orange-glow);
}
.artist-genre {
  font-size: 0.85rem;
  color: var(--text-2);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.artist-tagline {
  font-size: 0.95rem;
  color: var(--text-2);
  font-style: italic;
  margin-bottom: 20px;
}
.artist-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ═══════════════════════════════════════════════════════
   RELEASES SECTION
   ═══════════════════════════════════════════════════════ */
.releases-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(138, 43, 226, 0.06), transparent 50%),
    var(--void);
}
.release-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.release-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface), var(--void));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.5s var(--ease);
}
.release-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card), var(--shadow-glow-purple);
}
.release-card--bounce:hover {
  box-shadow: var(--shadow-card), var(--shadow-glow-orange);
}
.release-art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.08), transparent 60%);
}
.release-card--bounce .release-art {
  background: radial-gradient(circle at center, rgba(255, 107, 0, 0.08), transparent 60%);
}
.release-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.release-card:hover .release-art img {
  transform: scale(1.05);
}
.release-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(2, 4, 10, 0.3);
  color: var(--text-1);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  filter: drop-shadow(0 0 20px var(--cyan-glow));
}
.release-card:hover .release-play { opacity: 1; }
.release-play:hover { filter: drop-shadow(0 0 30px var(--cyan-glow)); }
.release-info {
  padding: 24px;
}
.release-artist {
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  display: block;
  margin-bottom: 8px;
}
.release-card--bounce .release-artist { color: var(--orange); }
.release-info h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.release-info p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.release-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-2);
  transition: all 0.3s var(--ease);
}
.platform-link:hover {
  border-color: var(--border-hover);
  color: var(--text-1);
  background: var(--cyan-dim);
}

/* ═══════════════════════════════════════════════════════
   INSIDE THE SIGNAL (BIOGRAPHIES)
   ═══════════════════════════════════════════════════════ */
.signal-section {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(0, 240, 255, 0.03), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(255, 107, 0, 0.03), transparent 50%),
    var(--void);
}
.bio-block {
  max-width: 860px;
  margin: 0 auto 64px;
  padding: 48px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(10, 16, 32, 0.6), rgba(2, 4, 10, 0.8));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.bio-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.bio-block--siblynx::before {
  background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent);
}
.bio-block--bounce::before {
  background: linear-gradient(90deg, transparent, var(--orange), #FF3D00, transparent);
}
.bio-block:last-child { margin-bottom: 0; }
.bio-header {
  margin-bottom: 32px;
}
.bio-header h3 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.bio-block--siblynx .bio-header h3 {
  text-shadow: 0 0 30px var(--cyan-glow);
}
.bio-block--bounce .bio-header h3 {
  text-shadow: 0 0 30px var(--orange-glow);
}
.bio-label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.bio-body p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-2);
  margin-bottom: 20px;
}
.bio-body p:last-child { margin-bottom: 0; }

/* Platform link row */
.release-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   STREAMING LINKS SECTION
   ═══════════════════════════════════════════════════════ */
.links-section {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(0, 240, 255, 0.04), transparent 50%),
    var(--void);
}
.links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--surface), var(--void));
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.4s var(--ease);
}
.link-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow-cyan);
}
.link-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cyan-dim);
  display: grid;
  place-items: center;
  color: var(--cyan);
  transition: all 0.3s var(--ease);
}
.link-card:hover .link-card-icon {
  background: rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 30px var(--cyan-glow);
}
.link-card-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-1);
}
.link-card-status {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid rgba(0, 240, 255, 0.06);
  background: linear-gradient(180deg, var(--void), #010208);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
}
.footer-brand img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 12px var(--cyan-glow));
  opacity: 0.7;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-3);
  font-style: italic;
}
.footer-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-meta p {
  font-size: 0.8rem;
  color: var(--text-3);
}
.footer-top {
  font-size: 0.8rem;
  color: var(--cyan);
  transition: opacity 0.3s var(--ease);
}
.footer-top:hover { opacity: 0.7; }

/* ═══════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-visual { order: 1; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-logo-orb { width: 200px; height: 200px; }
  .artist-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .release-grid { grid-template-columns: repeat(2, 1fr); }
  .links-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: rgba(5, 8, 22, 0.96);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s var(--ease);
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 680px) {
  .container { width: min(var(--container), calc(100% - 40px)); }
  section { padding: 80px 0; }
  .hero-section { min-height: auto; padding: 60px 0; }
  .release-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .links-grid { grid-template-columns: repeat(2, 1fr); }
  .bio-block { padding: 28px; }
  .entry-buttons { flex-direction: column; align-items: center; }
  .entry-btn { width: 100%; max-width: 280px; justify-content: center; }
  .audio-control { bottom: 16px; right: 16px; }
}

/* ═══════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
