/* ═══════════════════════════════════════════════════
   THE BLUE WAVE — LISTEN SUBDOMAIN
   listen.thebluewave26.com · Premium Listening Hub
   RayNoize / Mandela Records 2026
═══════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --navy:        #04080f;
  --deep:        #060d1c;
  --blue:        #071428;
  --wave:        #1456c8;
  --bright:      #1e72f0;
  --cyan:        #38a8ff;
  --yellow:      #f5c518;
  --gold:        #d4a017;
  --gold-soft:   rgba(245,197,24,0.15);
  --white:       #ffffff;
  --off-white:   #e8eef8;
  --gray:        #7a8caa;
  --gray-dark:   #3a4a66;
  --card:        rgba(10,20,50,0.7);
  --card-hover:  rgba(18,40,100,0.72);
  --glass:       rgba(14,28,68,0.55);
  --card-border: rgba(30,114,240,0.18);
  --card-border-hover: rgba(56,168,255,0.4);
  --shadow-glow: 0 0 40px rgba(20,86,200,0.3), 0 4px 24px rgba(0,0,0,0.5);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.35);
  --radius:      12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--off-white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  user-select: none;
  -webkit-user-select: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select, .allow-copy, a[href^="mailto:"] {
  user-select: text;
  -webkit-user-select: text;
}
img { -webkit-user-drag: none; }

/* ── WAVE BACKGROUND ── */
.wave-bg {
  position: fixed;
  bottom: 0; left: 0;
  width: 200%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
}
.wave-svg {
  width: 200%;
  animation: waveScroll 20s linear infinite;
}
.wave-svg-slow {
  width: 200%;
  animation: waveScroll 35s linear infinite reverse;
  margin-top: -20px;
}
@keyframes waveScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CONTAINER ── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(4,8,15,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--card-border);
  padding: .75rem 0;
  transition: box-shadow .3s;
}
#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-main {
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: .04em;
  color: var(--white);
}
.logo-sub {
  font-size: .62rem;
  color: var(--cyan);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.header-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

/* ── LANG SWITCHER ── */
.lang-sw { display: flex; gap: .2rem; }
.lang-btn {
  background: rgba(255,255,255,0.06);
  color: var(--gray);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: .3rem .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  transition: background .2s, color .2s;
}
.lang-btn:hover, .lang-btn.active {
  background: var(--wave);
  color: var(--white);
  border-color: var(--bright);
}
.lang-btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .03em;
  transition: transform .15s, box-shadow .2s, opacity .2s, background .2s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  border: none;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

.btn-primary {
  background: var(--wave);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(20,86,200,0.4);
}
.btn-primary:hover { background: var(--bright); box-shadow: 0 6px 28px rgba(30,114,240,0.5); }

.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--off-white);
  border: 1px solid var(--card-border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.13); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 3px 14px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { background: #1ebe5b; box-shadow: 0 5px 20px rgba(37,211,102,0.45); }

.btn-lg  { padding: .9rem 1.8rem; font-size: .95rem; border-radius: 10px; min-height: 50px; }
.btn-sm  { padding: .45rem .9rem; font-size: .78rem; border-radius: 6px; min-height: 36px; }
.back-link { font-size: .75rem; }

/* ── HERO ── */
.hero {
  padding: 4rem 0 3rem;
  min-height: 75vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: center;
}

/* Hub badge */
.hub-badge {
  display: inline-block;
  background: var(--gold-soft);
  border: 1px solid rgba(245,197,24,0.35);
  color: var(--yellow);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 20px;
  margin-bottom: .75rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: .75rem;
}
.hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: .75rem;
}
.hero-sub {
  font-size: 1rem;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 52ch;
}
.hero-byline {
  font-size: .75rem;
  color: var(--gray);
  letter-spacing: .04em;
  margin-bottom: 1.5rem;
}
.hero-ctas {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

/* ── ALBUM VISUAL ── */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem 1rem;
}
.album-ring {
  position: absolute;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  border: 1px solid rgba(56,168,255,0.14);
  animation: ringPulse 4.5s ease-in-out infinite;
  pointer-events: none;
}
.album-ring::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(245,197,24,0.07);
  animation: ringPulse 4.5s ease-in-out infinite reverse;
}
@keyframes ringPulse {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}
.album-wrap {
  width: 260px;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue), var(--wave));
  box-shadow: var(--shadow-glow);
  animation: coverFloat 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.album-wrap img { width: 100%; height: 100%; object-fit: cover; }
@keyframes coverFloat {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}
.album-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1.5rem;
  text-align: center;
}
.album-ph-title { font-weight: 900; font-size: .75rem; color: var(--cyan); letter-spacing: .06em; }
.album-ph-sub   { font-size: .65rem; color: var(--gray); }
.album-badge {
  position: absolute;
  bottom: 1.2rem;
  background: var(--yellow);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 800;
  padding: .28rem .9rem;
  border-radius: 20px;
  letter-spacing: .06em;
  z-index: 2;
}

/* Hero QR */
.hero-qr {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  z-index: 1;
}
.qr-cap-sm {
  font-size: .65rem;
  color: var(--gray);
  letter-spacing: .05em;
  text-align: center;
}

/* ── QR BOX ── */
.qr-box {
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.qr-box--sm {
  padding: 6px;
}
/* QRCode.js renders a canvas or table inside */
.qr-box canvas,
.qr-box img { display: block !important; }

/* ── COPY SECTION ── */
.copy-section { padding: .75rem 0 2rem; }
.copy-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: .75rem 1.25rem;
  flex-wrap: wrap;
}
.copy-url {
  font-size: .85rem;
  color: var(--cyan);
  font-family: 'Courier New', monospace;
  flex: 1;
  min-width: 0;
}
.copy-btn { flex-shrink: 0; }
.copy-toast {
  font-size: .76rem;
  color: var(--yellow);
  font-weight: 700;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  white-space: nowrap;
}
.copy-toast.show { opacity: 1; }

/* ── SECTION HEADER ── */
.section-label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: .4rem;
}
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-head h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: .5rem;
  line-height: 1.15;
}
.section-head p { color: var(--gray); font-size: .9rem; }

/* ── STREAM SECTION ── */
.stream-section { padding: 2.5rem 0 1rem; }

/* ── RELEASES SECTION ── */
.releases-section { padding: 1rem 0 2rem; }

/* Single grid (2 columns) */
.singles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* QR CODES SECTION */
.qr-section {
  padding: 3rem 0;
  border-top: 1px solid var(--card-border);
}
.qr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.qr-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.qr-card:hover {
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-card);
}
.qr-card-title {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
}
.qr-card-url {
  font-size: .68rem;
  color: var(--gray);
  font-family: 'Courier New', monospace;
}
.qr-img {
  border-radius: 8px;
  background: #fff;
  padding: 6px;
  display: block;
}
.qr-img--lg { padding: 8px; }

/* ── BACK TO TOP ── */
.back-to-top-wrap {
  width: 100%;
  text-align: center;
  padding: 2rem 1rem 1rem;
}
.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .75rem 1.4rem;
  border: 1px solid rgba(255, 214, 79, 0.45);
  border-radius: 999px;
  color: #FFD64F;
  background: rgba(7, 27, 58, 0.72);
  text-decoration: none;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .03em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  backdrop-filter: blur(8px);
}
.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 214, 79, 0.14);
  border-color: #FFD64F;
  outline: none;
}

/* ── FEATURED / RELEASE SECTION (kept for compat) ── */
.featured-section { padding: 2rem 0; }

.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.release-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, box-shadow .25s, transform .2s;
  box-shadow: var(--shadow-card);
  margin-bottom: 0;
}
.release-card:hover {
  border-color: var(--card-border-hover);
  box-shadow: 0 8px 40px rgba(20,86,200,.28);
  transform: translateY(-3px);
}
/* Primary card: horizontal layout */
.release-card--primary {
  flex-direction: row;
  border-color: rgba(20,86,200,0.35);
  margin-bottom: 1.5rem;
}
.release-card--primary:hover {
  border-color: var(--yellow);
  box-shadow: 0 8px 40px rgba(245,197,24,.15);
}
.release-card--primary .release-art {
  width: 240px;
  min-width: 240px;
  max-height: none;
  aspect-ratio: 1;
  flex-shrink: 0;
}
.release-card--primary .release-body {
  flex: 1;
  padding: 1.75rem 2rem;
}

/* Art */
.release-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-height: 220px;
  background: linear-gradient(135deg, #071428 0%, #1456c8 100%);
  overflow: hidden;
  flex-shrink: 0;
}
.release-art--sm {
  max-height: 200px;
}
.release-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.art-fallback {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.release-type-badge,
.art-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  background: rgba(4,8,15,0.78);
  color: var(--cyan);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 20px;
  border: 1px solid rgba(56,168,255,0.35);
  backdrop-filter: blur(6px);
}
.release-type-badge--gold,
.art-badge--gold {
  color: var(--yellow);
  border-color: rgba(245,197,24,0.35);
}
.release-type-badge--blue,
.art-badge--blue {
  color: #7dd3fc;
  border-color: rgba(125,211,252,0.35);
}

/* Body */
.release-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
}
.release-type,
.release-kicker {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
}
.release-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}
.release-desc {
  font-size: .82rem;
  color: var(--off-white);
  line-height: 1.65;
  flex: 1;
}
.release-meta {
  font-size: .72rem;
  color: var(--gray);
}
.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
  position: relative;
}
.release-qr {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .75rem;
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--card-border);
}
.qr-label {
  font-size: .68rem;
  color: var(--gray);
  line-height: 1.4;
  max-width: 14ch;
}

/* ── PLATFORMS SECTION ── */
.platforms-section { padding: 3rem 0 3.5rem; }

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.platform-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  min-height: 68px;
}
.platform-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--wave), var(--cyan));
  opacity: 0;
  transition: opacity .25s;
}
.platform-card:hover {
  background: var(--card-hover);
  border-color: var(--card-border-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(20,86,200,.25);
}
.platform-card:hover::before { opacity: 1; }
.platform-card:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.platform-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.platform-icon img { width: 36px; height: 36px; object-fit: contain; }
.platform-info { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.platform-name { font-weight: 800; font-size: .95rem; color: var(--white); }
.platform-cta  { font-size: .75rem; color: var(--gray); margin-top: .1rem; }
.platform-arrow {
  color: var(--cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform .2s;
}
.platform-card:hover .platform-arrow { transform: translateX(4px); }
.platform-note {
  text-align: center;
  font-size: .78rem;
  color: var(--gray-dark);
  font-style: italic;
  margin-top: .25rem;
  margin-bottom: 2rem;
}

/* Social */
.social-wrap { text-align: center; }
.social-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}
.social-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.social-card {
  display: flex; align-items: center; gap: .75rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: .9rem 1.25rem;
  min-width: 200px;
  transition: background .2s, border-color .2s, transform .2s;
}
.social-card:hover {
  background: var(--card-hover);
  border-color: var(--card-border-hover);
  transform: translateY(-2px);
}
.social-card:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.social-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.social-info { display: flex; flex-direction: column; flex: 1; }
.social-name   { font-weight: 800; font-size: .88rem; color: var(--white); }
.social-handle { font-size: .73rem; color: var(--gray); margin-top: .1rem; }

/* ── MEDIA / DJ / RADIO SECTION ── */
.media-section {
  padding: 3rem 0;
  border-top: 1px solid var(--card-border);
}
.media-card {
  background: linear-gradient(135deg, rgba(20,86,200,0.12), rgba(10,20,60,0.65));
  border: 1px solid rgba(20,86,200,0.3);
  border-radius: var(--radius-xl);
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
}
.media-info { flex: 1; min-width: 200px; }
.media-contact-row {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: 1rem;
}
.media-contact-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
}
.media-contact-link {
  color: var(--cyan);
  font-weight: 700;
  font-size: .95rem;
  transition: color .2s;
}
.media-contact-link:hover { color: var(--white); }
.media-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: flex-start;
}

/* ── ABOUT / SEO SECTION ── */
.about-section {
  padding: 3rem 0;
  border-top: 1px solid var(--card-border);
}
.about-inner {
  max-width: 72ch;
  margin: 0 auto;
}
.about-inner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}
.about-inner h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--cyan);
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}
.about-inner p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ── DISCLAIMER ── */
.disclaimer-section { padding: 2rem 0 3rem; }
.disclaimer {
  background: rgba(20,86,200,0.07);
  border: 1px solid rgba(20,86,200,0.2);
  border-left: 3px solid var(--wave);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .77rem;
  color: var(--gray);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.disclaimer strong {
  font-size: .66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--cyan);
}
.back-wrap {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

/* ── FOOTER ── */
footer {
  background: rgba(0,0,0,0.35);
  border-top: 1px solid var(--card-border);
  padding: 0 0 1.5rem;
}
.footer-flag {
  height: 5px;
  background: linear-gradient(90deg, #002B7F 0%, #002B7F 34%, #F9E816 34%, #F9E816 66%, #002B7F 66%);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.footer-brand p { font-size: .8rem; color: var(--gray); margin-top: .3rem; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  text-align: right;
}
.footer-links a { font-size: .8rem; color: var(--gray); transition: color .2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  margin-top: 1.5rem;
  text-align: center;
  font-size: .72rem;
  color: var(--gray-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1rem;
}

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: -88px;
  left: 0; right: 0;
  z-index: 200;
  background: rgba(4,8,15,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--card-border);
  padding: .75rem 1.5rem;
  transition: bottom .35s cubic-bezier(.4,0,.2,1);
}
.sticky-cta.show { bottom: 0; }
.sticky-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sticky-info { display: flex; align-items: center; gap: .75rem; flex: 1; }
.sticky-album-thumb {
  width: 40px; height: 40px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--wave), var(--blue));
  overflow: hidden;
  flex-shrink: 0;
}
.sticky-album-thumb img { width: 40px; height: 40px; object-fit: cover; }
.sticky-text { display: flex; flex-direction: column; }
.sticky-title { font-weight: 800; font-size: .82rem; color: var(--white); }
.sticky-sub   { font-size: .7rem; color: var(--gray); }
.sticky-close {
  background: none;
  color: var(--gray);
  font-size: 1.25rem;
  padding: .25rem .5rem;
  flex-shrink: 0;
  transition: color .2s;
  min-height: 44px;
}
.sticky-close:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-visual { order: -1; padding: 1.5rem 1rem; }
  .album-ring  { width: 240px; height: 240px; }
  .album-wrap  { width: 200px; height: 200px; }
  .hero-eyebrow, .hero-ctas { justify-content: center; }
  .hero-sub { margin-inline: auto; }

  /* Primary card stacks on mobile */
  .release-card--primary {
    flex-direction: column;
  }
  .release-card--primary .release-art {
    width: 100%;
    min-width: auto;
    max-height: 200px;
  }
  .release-card--primary .release-body {
    padding: 1.25rem;
  }

  .singles-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .qr-grid { grid-template-columns: repeat(2, 1fr); }

  .media-card { flex-direction: column; gap: 1.25rem; }
  .media-actions { width: 100%; }

  .footer-inner { flex-direction: column; }
  .footer-links { text-align: left; }
  .social-row { flex-direction: column; align-items: center; }
  .social-card { min-width: auto; width: 100%; max-width: 340px; }
  .header-right .back-link { display: none; }
}

@media (max-width: 480px) {
  .btn-lg { padding: .8rem 1.2rem; font-size: .85rem; }
  .hero h1 { font-size: 1.75rem; }
  .release-body { padding: 1rem; }
  .qr-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .qr-img--lg { width: 160px !important; height: 160px !important; }
}

/* ── FOCUS ── */
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }
