@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono&family=Playfair+Display:ital,wght@1,400;1,700&display=swap');

/* ═══════════════════════════════════════════════════
   SØLØ — ARTISTIC PORTFOLIO
   Direction : Éditorial · Typographie · Paris Noir
   ═══════════════════════════════════════════════════ */

#platform-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#platform-modal.open {
  opacity: 1;
  pointer-events: all;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 6, 0.88);
  backdrop-filter: blur(20px) saturate(1.3);
  cursor: pointer;
}

.modal-box {
  position: relative;
  z-index: 1;
  background: #0D0F16;
  border: 1px solid rgba(232, 114, 42, 0.2);
  border-radius: 16px;
  padding: 40px 44px 36px;
  width: 100%;
  max-width: 420px;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#platform-modal.open .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px; right: 18px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
  line-height: 1;
}
.modal-close:hover { color: var(--off-white); }

.modal-eyebrow {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  opacity: 0.85;
}

.modal-title {
  font-family: var(--f-hero);
  font-size: 52px;
  letter-spacing: 6px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.modal-sub {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 24px;
  margin-top: 18px;
}

.modal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-platform-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  color: var(--off-white);
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.modal-platform-btn i {
  font-size: 18px;
  width: 22px;
  flex-shrink: 0;
}
.modal-platform-btn span:not(.modal-arrow) { flex: 1; }
.modal-arrow {
  color: var(--dim);
  font-size: 13px;
  transition: transform 0.25s, color 0.25s;
}

.modal-platform-btn:hover { border-color: rgba(232,114,42,0.3); background: rgba(232,114,42,0.06); color: var(--white); }
.modal-platform-btn:hover .modal-arrow { transform: translateX(4px); color: var(--orange); }

.modal-platform-btn[data-platform="spotify"]:hover   { border-color: rgba(29,185,84,0.4); background: rgba(29,185,84,0.07); }
.modal-platform-btn[data-platform="spotify"]:hover i { color: #1DB954; }
.modal-platform-btn[data-platform="apple"]:hover   { border-color: rgba(245,220,220,0.3); background: rgba(245,220,220,0.05); }
.modal-platform-btn[data-platform="soundcloud"]:hover { border-color: rgba(255,85,0,0.4); background: rgba(255,85,0,0.07); }
.modal-platform-btn[data-platform="soundcloud"]:hover i { color: #FF5500; }
.modal-platform-btn[data-platform="youtube"]:hover { border-color: rgba(255,0,0,0.35); background: rgba(255,0,0,0.06); }
.modal-platform-btn[data-platform="youtube"]:hover i { color: #FF0000; }

.modal-note {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--dim);
  opacity: 0.5;
  margin-top: 20px;
  text-align: center;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   BEAT UNAVAILABLE STATE
══════════════════════════════════════════════════ */
.beat-unavailable {
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}
.beat-unavailable::before { display: none !important; }
.beat-unavailable::after  { display: none !important; }
.beat-unavailable .beat-row-name { color: var(--dim); }

.beat-locked {
  opacity: 0.4;
  border-color: rgba(255,255,255,0.08) !important;
  background: rgba(255,255,255,0.03) !important;
  color: var(--dim) !important;
  box-shadow: none !important;
  cursor: not-allowed;
}

.beat-soon-badge {
  font-family: var(--f-mono) !important;
  font-size: 9px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: var(--dim) !important;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 999px;
  padding: 4px 12px;
}


@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono&family=Playfair+Display:ital,wght@1,400;1,700&display=swap');

/* ── TOKENS ──────────────────────────────────────── */
:root {
  --black:      #040406;
  --black2:     #080A0F;
  --black3:     #0D0F16;
  --white:      #F0EDE8;
  --off-white:  #C8C4BC;
  --dim:        #585560;
  --faint:      #28252E;
  --orange:     #E8722A;
  --orange2:    #FF9248;
  --orange3:    #FFC49A;
  --gold:       #C9A84C;
  --line:       rgba(255,255,255,0.07);
  --line-o:     rgba(232,114,42,0.18);
  --glow:       rgba(232,114,42,0.4);

  --f-hero:     'Bebas Neue', sans-serif;
  --f-body:     'Space Grotesk', sans-serif;
  --f-mono:     'Space Mono', monospace;
  --f-serif:    'Playfair Display', serif;

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--f-body);
  font-size: 16px;
  overflow-x: hidden;
  cursor: default;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: var(--f-body); color: inherit; }

::selection { background: var(--orange); color: #fff; }

/* Film grain */
#film-grain {
  position: fixed; inset: 0;
  z-index: 9999; pointer-events: none;
  opacity: 0.03; mix-blend-mode: overlay;
}

/* Scrollbar */
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); }

/* ══════════════════════════════════════════════════
   NAVIGATION — small trigger + numbered overlay
══════════════════════════════════════════════════ */
#nav-trigger {
  position: fixed;
  top: 24px; right: 28px;
  z-index: 2000;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(4,4,6,0.8);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono);
  font-size: 18px;
  color: var(--off-white);
  transition: all 0.3s var(--ease);
  line-height: 1;
}
#nav-trigger:hover { border-color: var(--orange); color: var(--orange); box-shadow: 0 0 16px var(--glow); }
#nav-trigger.open  { border-color: var(--orange); color: var(--orange); transform: rotate(45deg); }

/* Platform icons — top left */
@media (max-width: 480px) { #nav-platforms { display: none; } }

/* Full-screen overlay */
#nav-overlay {
  position: fixed; inset: 0;
  z-index: 1500;
  background: var(--black);
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 80px 56px 48px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease);
  overflow: hidden;
}
#nav-overlay::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40vw; height: 40vh;
  background: radial-gradient(ellipse at bottom right, rgba(232,114,42,0.05) 0%, transparent 70%);
  pointer-events: none;
}
#nav-overlay.open { opacity: 1; pointer-events: all; }

.nav-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-item {
  border-top: 1px solid var(--line);
}
.nav-item:last-child { border-bottom: 1px solid var(--line); }
.nav-item a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  transition: all 0.3s;
}
.nav-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--orange);
  flex-shrink: 0;
  width: 36px;
}
.nav-label {
  font-family: var(--f-hero);
  font-size: clamp(42px, 7vw, 84px);
  letter-spacing: 4px;
  color: var(--off-white);
  transition: all 0.3s;
  line-height: 1;
}
.nav-item a:hover .nav-label {
  color: var(--white);
  text-shadow: 0 0 60px var(--glow);
  letter-spacing: 8px;
}

.nav-overlay-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.nav-footer-col {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--dim);
  line-height: 2;
}
.nav-footer-col a:hover { color: var(--orange); }

/* ══════════════════════════════════════════════════
   HERO — INDEX (01)
══════════════════════════════════════════════════ */
#index {
  position: relative;
  width: 100%;
  height: calc(100svh - 80px);
  overflow: hidden;
  background: var(--black);
}

/* Paris B&W photo — full bleed */
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: grayscale(1) brightness(0.50) contrast(1.1);
  transition: filter 0.6s;
}

/* Gradient overlays */
.hero-overlay-top {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(4,4,6,0.72) 0%,
      rgba(4,4,6,0)    30%,
      rgba(4,4,6,0)    55%,
      rgba(4,4,6,0.85) 85%,
      rgba(4,4,6,1)    100%
    ),
    linear-gradient(to right,
      rgba(4,4,6,0.6) 0%,
      rgba(4,4,6,0)   25%,
      rgba(4,4,6,0)   75%,
      rgba(4,4,6,0.6) 100%
    );
  z-index: 1;
}

/* Scrolling marquee strip — across top of photo */
.hero-marquee-wrap {
  position: absolute;
  top: 52px;
  left: 0; right: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(232,114,42,0.25);
  border-bottom: 1px solid rgba(232,114,42,0.25);
  padding: 6px 0;
  background: rgba(4,4,6,0.55);
  backdrop-filter: blur(4px);
}
.hero-marquee-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.hero-marquee-inner span {
  display: inline-block;
  font-family: var(--f-hero);
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--orange);
  padding: 0 32px;
}
.hero-marquee-inner .sep {
  color: var(--orange2);
  opacity: 0.5;
  padding: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Side info panels */
.hero-side {
  position: absolute;
  bottom: 80px;
  z-index: 4;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--dim);
  line-height: 2.2;
}
.hero-side-left  { left: 40px; }
.hero-side-right { right: 40px; text-align: right; }
.hero-side .label { display: block; text-transform: uppercase; color: var(--orange); margin-bottom: 2px; opacity: 0.8; }
.hero-side .value { display: block; color: var(--off-white); opacity: 0.7; }
.hero-side-group { margin-bottom: 16px; }

/* Center content */
.hero-center {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  white-space: nowrap;
}

/* SØLØ title */
.hero-title {
  display: block;
  font-family: var(--f-hero);
  font-size: clamp(80px, 16vw, 200px);
  letter-spacing: 18px;
  line-height: 0.88;
  color: transparent;
  /* outlined text — artistic */
  -webkit-text-stroke: 1.5px var(--white);
  text-shadow: none;
  animation: titleReveal 1.8s var(--ease) both;
  position: relative;
}
/* Filled version layered via pseudo */
.hero-title::before {
  content: 'SØLØ';
  position: absolute;
  inset: 0;
  color: var(--white);
  -webkit-text-stroke: 0;
  clip-path: inset(0 100% 0 0);
  animation: titleFill 1.8s var(--ease) 0.2s both;
}

@keyframes titleReveal {
  from { opacity: 0; letter-spacing: 40px; }
  to   { opacity: 1; letter-spacing: 18px; }
}
@keyframes titleFill {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}

.hero-tagline {
  display: block;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(13px, 2vw, 18px);
  color: var(--orange2);
  letter-spacing: 2px;
  margin-top: 8px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.2s both;
}

.hero-cta-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 24px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.5s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn-outline {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid rgba(232,114,42,0.35);
  border-radius: 999px;
  color: var(--orange2);
  background: rgba(232,114,42,0.06);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--orange); background: rgba(232,114,42,0.14); color: var(--white); }
.btn-orange {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 28px rgba(232,114,42,0.4);
  transition: all 0.3s;
}
.btn-orange:hover { background: var(--orange2); box-shadow: 0 0 48px rgba(232,114,42,0.65); }

/* Year stamp */
.hero-year {
  position: absolute;
  bottom: 30px; right: 40px;
  z-index: 4;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--dim);
}



/* ══════════════════════════════════════════════════
   SECTION HEADER (shared)
══════════════════════════════════════════════════ */
.s-head {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  margin-bottom: 0;
}
.s-marquee-line {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  background: var(--black2);
  border-bottom: 1px solid var(--line);
}
.s-marquee-line-inner {
  display: flex;
  gap: 0;
  animation: marquee 40s linear infinite;
}
.s-marquee-line-inner span {
  display: inline-block;
  font-family: var(--f-hero);
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 4px;
  padding: 6px 40px;
  color: var(--faint);
}
.s-marquee-line-inner .s-num {
  font-family: var(--f-mono);
  font-size: 18px;
  vertical-align: super;
  color: var(--orange);
  padding: 0;
  margin-right: 8px;
  opacity: 0.9;
}

/* ══════════════════════════════════════════════════
   DISCOGRAPHIE — EDITORIAL TRACKLIST
══════════════════════════════════════════════════ */
#sorties {
  background: var(--black2);
}

.tracklist {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.track-row {
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: all 0.25s;
  cursor: pointer;
  position: relative;
}

.track-row::before {
  content: '';
  position: absolute;
  left: -40px; right: -40px; top: 0; bottom: 0;
  background: rgba(232,114,42,0.04);
  opacity: 0;
  transition: opacity 0.25s;
}
.track-row:hover::before { opacity: 1; }

.track-year {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--dim);
}


.track-name {
  font-family: var(--f-hero);
  font-size: clamp(22px, 4vw, 44px);
  letter-spacing: 2px;
  color: var(--off-white);
  transition: color 0.25s, text-shadow 0.25s;
  line-height: 1.1;
}
.track-feat {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(13px, 1.8vw, 18px);
  color: var(--dim);
  margin-left: 8px;
  font-weight: 400;
}
.track-row:hover .track-name { color: var(--white); text-shadow: 0 0 30px var(--glow); }
.track-row:hover .track-feat { color: var(--orange2); }

.track-type {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--dim);
  text-transform: uppercase;
  white-space: nowrap;
}

.track-arrow {
  font-size: 13px;
  color: var(--dim);
  transition: color 0.25s, transform 0.25s;
}
.track-row:hover .track-arrow { color: var(--orange); transform: translateX(4px); }

/* ══════════════════════════════════════════════════
   LE COFFRE — BEAT STORE EDITORIAL LIST
══════════════════════════════════════════════════ */
#coffre {
  background: var(--black3);
  border-top: 1px solid var(--line);
}

.beat-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.beat-row {
  display: grid;
  grid-template-columns: 44px 1fr auto auto auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: all 0.25s;
  position: relative;
}
.beat-row::before {
  content: '';
  position: absolute;
  left: -40px; right: -40px; top: 0; bottom: 0;
  background: rgba(232,114,42,0.03);
  opacity: 0;
  transition: opacity 0.25s;
}
.beat-row:hover::before { opacity: 1; }

.beat-row-num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--dim);
}


.beat-row-name {
  font-family: var(--f-hero);
  font-size: clamp(20px, 3.5vw, 38px);
  letter-spacing: 2px;
  color: var(--off-white);
  transition: color 0.25s;
  line-height: 1.1;
}
.beat-row-meta {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--dim);
  margin-top: 2px;
  text-transform: uppercase;
}
.beat-row:hover .beat-row-name { color: var(--white); }

.beat-row-tags {
  display: flex; gap: 6px;
  flex-wrap: wrap;
}
.beat-tag {
  font-family: var(--f-mono);
  font-size: 8px; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(232,114,42,0.2);
  color: var(--dim);
  transition: all 0.25s;
}
.beat-row:hover .beat-tag { border-color: rgba(232,114,42,0.5); color: var(--orange2); }

.beat-row-price {
  font-family: var(--f-hero);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 2px;
  white-space: nowrap;
}

.beat-play-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(232,114,42,0.3);
  background: rgba(232,114,42,0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange2);
  font-size: 12px;
  transition: all 0.25s;
  flex-shrink: 0;
}
.beat-play-btn:hover, .beat-play-btn.playing {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 0 18px var(--glow);
}

/* Waveform panel — expands on play */
.beat-waveform-panel {
  display: none;
  grid-column: 1 / -1;
  padding: 0 0 16px;
}
.beat-row.playing .beat-waveform-panel { display: block; }

.waveform {
  width: 100%;
  height: 32px;
  overflow: visible;
}
.waveform-bar {
  fill: var(--faint);
  opacity: 1;
  transition: fill 0.3s;
}
.beat-row.playing .waveform-bar {
  fill: var(--orange);
  animation: waveAnim 0.7s ease-in-out infinite alternate;
}
.beat-row.playing .waveform-bar:nth-child(2n) { animation-delay: 0.07s; animation-duration: 0.5s; }
.beat-row.playing .waveform-bar:nth-child(3n) { animation-delay: 0.14s; animation-duration: 0.72s; }
.beat-row.playing .waveform-bar:nth-child(4n) { animation-delay: 0.03s; animation-duration: 0.44s; }
.beat-row.playing .waveform-bar:nth-child(5n) { animation-delay: 0.20s; animation-duration: 0.63s; }
@keyframes waveAnim {
  from { transform: scaleY(0.3); opacity: 0.5; }
  to   { transform: scaleY(1);   opacity: 1; }
}



/* ══════════════════════════════════════════════════
   SOCIAL HUB — HORIZONTAL DOCK (bottom-center)
══════════════════════════════════════════════════ */
#social-hub {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.social-hub-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  background: rgba(8,10,15,0.88);
  backdrop-filter: blur(28px) saturate(1.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.soc-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--dim);
  transition: all 0.25s;
  position: relative;
}
.soc-btn:hover { color: var(--white); transform: scale(1.18); }
.soc-btn[data-label="Spotify"]:hover     { color: #1DB954; }
.soc-btn[data-label="Apple Music"]:hover { color: #f5dfdf; }
.soc-btn[data-label="Amazon Music"]:hover { color: #00A8E0; }
.soc-btn[data-label="Deezer"]:hover       { color: #EF5466; }
.modal-platform-btn[data-platform="amazon"]:hover   { border-color: rgba(0,168,224,0.4); background: rgba(0,168,224,0.07); }
.modal-platform-btn[data-platform="amazon"]:hover i { color: #00A8E0; }
.modal-platform-btn[data-platform="deezer"]:hover   { border-color: rgba(239,84,102,0.4); background: rgba(239,84,102,0.07); }
.modal-platform-btn[data-platform="deezer"]:hover svg { color: #EF5466; }
.soc-btn[data-label="SoundCloud"]:hover  { color: #FF5500; }
.soc-btn[data-label="YouTube"]:hover     { color: #FF0000; }
.soc-btn[data-label="Instagram"]:hover   { color: #E13C78; }
.soc-btn[data-label="TikTok"]:hover      { color: #ff0050; }

.soc-divider {
  /* vertical separator in horizontal dock */
  width: 1px;
  height: 18px;
  background: var(--line);
  margin: 0 6px;
  flex-shrink: 0;
}
.soc-btn::before {
  content: attr(data-label);
  position: absolute;
  /* tooltip appears ABOVE in horizontal dock */
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8,10,15,0.95);
  border: 1px solid var(--line);
  color: var(--off-white);
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.soc-btn:hover::before { opacity: 1; }

.social-pulse {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-left: 2px;
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(232,114,42,0.4); }
  50%      { opacity: 0.5; box-shadow: 0 0 0 5px rgba(232,114,42,0); }
}



/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 56px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: var(--f-hero);
  font-size: 40px;
  letter-spacing: 12px;
  color: var(--white);
  opacity: 0.35;
}
.footer-right {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--dim);
  text-align: right;
  line-height: 2.2;
  opacity: 0.5;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-side { display: none; }
  .hero-center { width: 90%; }

  .tracklist, .beat-list, .event-list { padding: 0 20px 60px; }

  .track-row { grid-template-columns: 48px 1fr auto; gap: 12px; }
  .track-type, .track-arrow { display: none; }

  .beat-row { grid-template-columns: 36px 1fr auto; gap: 12px; }
  .beat-row-tags, .beat-row-price { display: none; }
  .beat-row-price { display: block; } /* keep price */
  .beat-row-tags  { display: none; }

  .event-row { grid-template-columns: 88px 1fr; gap: 14px; }
  .event-badge { display: none; }

  #nav-overlay { padding: 70px 28px 40px; }
  .nav-label { font-size: clamp(38px, 10vw, 64px); }

  footer { flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }

  #social-hub { bottom: 12px; }
  body { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; align-items: center; }
  .beat-row { grid-template-columns: 1fr auto; }
  .beat-row-num { display: none; }
}
