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

:root {
  --sky:        #38bdf8;
  --sky-bright: #7dd3fc;
  --sky-deep:   #0ea5e9;
  --sky-vivid:  #00d4ff;
  --bg:         #040810;
  --bg2:        #080f1a;
  --bg3:        #0d1626;
  --surface:    #111d2e;
  --border:     rgba(56,189,248,0.15);
  --text:       #e8f4fd;
  --muted:      rgba(232,244,253,0.45);
  --glow:       rgba(56,189,248,0.25);
  --glow-strong:rgba(56,189,248,0.5);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'Space Mono', monospace;

  /* light section text tokens */
  --light-text:    #06121f;
  --light-muted:   rgba(6,18,31,0.55);
  --light-border:  rgba(14,165,233,0.2);
  --light-surface: rgba(255,255,255,0.65);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ─────────────────────────────── */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--sky);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, opacity 0.2s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--sky);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, transform 0.08s linear, border-color 0.3s;
  opacity: 0.6;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 56px; height: 56px;
  border-color: var(--sky-vivid);
  opacity: 1;
}

/* ── NOISE OVERLAY ─────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  opacity: 0.35;
}

/* ── SCROLLBAR ─────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--sky-deep); border-radius: 2px; }

/* ── NAV ───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(4,8,16,0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease;
}
nav.scrolled { padding: 1rem 3rem; }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-logo span { color: var(--sky); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--sky);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--sky); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  border: 1px solid var(--sky);
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.nav-cta:hover {
  background: var(--sky);
  color: var(--bg);
  box-shadow: 0 0 20px var(--glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 1.5px;
  background: var(--sky);
  transition: transform 0.3s ease, opacity 0.3s;
  display: block;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(4,8,16,0.97);
  backdrop-filter: blur(30px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--sky); }

/* ══════════════════════════════════════════════════════
   SECTION 1 — HERO  (LIGHT / AURORA EDITION)
   Luminous sky-to-white aurora, glass cards, shimmer
   Mood: jaw-dropping first impression, luxury daylight
   ══════════════════════════════════════════════════════ */
#home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 3rem 6rem;
  position: relative;
  overflow: hidden;
}

/* ── base aurora gradient ── */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80%  at 50%  -10%, #bae6fd 0%,  #e0f2fe 30%, transparent 65%),
    radial-gradient(ellipse 70%  60%  at 0%   60%,  #7dd3fc 0%,  transparent 55%),
    radial-gradient(ellipse 60%  55%  at 100% 80%,  #38bdf8 0%,  transparent 50%),
    radial-gradient(ellipse 80%  50%  at 50%  110%, #0ea5e9 0%,  transparent 55%),
    linear-gradient(175deg, #f0f9ff 0%, #e0f2fe 25%, #f8fdff 55%, #dbeafe 80%, #eff6ff 100%);
  z-index: 0;
}

/* ── animated shimmer sweep ── */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(255,255,255,0.55) 48%,
    rgba(255,255,255,0.0)  52%,
    transparent 80%
  );
  background-size: 200% 200%;
  animation: shimmerSweep 6s ease-in-out infinite;
}
@keyframes shimmerSweep {
  0%   { background-position: 200% 0%; }
  100% { background-position: -200% 0%; }
}

/* ── floating light orbs ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: float 9s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(56,189,248,0.35) 0%, rgba(147,210,255,0.15) 60%, transparent 100%);
  top: -20%; right: -15%;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14,165,233,0.28) 0%, rgba(186,230,255,0.12) 60%, transparent 100%);
  bottom: -10%; left: -10%;
  animation-delay: -4s;
}
.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
  top: 30%; left: 35%;
  animation-delay: -2s;
  filter: blur(60px);
}
@keyframes float {
  0%, 100% { transform: translateY(0)   scale(1); }
  50%       { transform: translateY(-35px) scale(1.06); }
}

/* ── animated grid (light version) ── */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.07) 1px, transparent 1px);
  background-size: 55px 55px;
  z-index: 0;
  animation: gridShift 25s linear infinite;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}
@keyframes gridShift {
  from { transform: translateY(0); }
  to   { transform: translateY(55px); }
}

/* ── hero eyebrow badge ── */
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #0369a1;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(14,165,233,0.3);
  padding: 0.45rem 1.2rem;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 2.2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(14,165,233,0.12);
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

/* ── hero title ── */
.hero-title {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 15vw, 16rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}
/* deep navy solid words */
.hero-title .word-solid {
  color: #04111f;
  display: block;
}
/* sky blue accent */
.hero-title .accent {
  color: #0284c7;
  display: block;
}
/* glass-stroke outlined word */
.hero-title .outline {
  -webkit-text-stroke: 2px rgba(2,132,199,0.35);
  color: transparent;
  display: block;
}

/* ── tagline under title ── */
.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.8rem;
  position: relative;
  z-index: 1;
  gap: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.85s forwards;
}
.hero-desc {
  max-width: 500px;
  font-size: 1.08rem;
  color: rgba(4,17,31,0.58);
  line-height: 1.75;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── CTA buttons (light hero versions) ── */
.btn-primary {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  padding: 1rem 2.2rem;
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.2s;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(14,165,233,0.35);
  border-radius: 2px;
}
.btn-primary:hover {
  box-shadow: 0 6px 35px rgba(14,165,233,0.55), 0 0 60px rgba(14,165,233,0.2);
  transform: translateY(-3px);
}

.btn-ghost {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0284c7;
  border: 1.5px solid rgba(14,165,233,0.4);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1rem 2.2rem;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.2s;
  display: inline-block;
  border-radius: 2px;
}
.btn-ghost:hover {
  border-color: #0ea5e9;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 4px 24px rgba(14,165,233,0.18);
  transform: translateY(-3px);
}

/* ── floating stat chips (glass cards) ── */
.hero-chips {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.9s 1.1s forwards;
}
.hero-chip {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(14,165,233,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.7rem 1.4rem;
  border-radius: 99px;
  box-shadow: 0 4px 20px rgba(14,165,233,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(14,165,233,0.18);
}
.hero-chip-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  color: #0284c7;
  letter-spacing: 0.02em;
}
.hero-chip-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(4,17,31,0.5);
  line-height: 1.3;
}

/* ── scroll indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}
.scroll-line {
  width: 1px; height: 55px;
  background: linear-gradient(to bottom, #0284c7, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(4,17,31,0.4);
  writing-mode: vertical-lr;
  text-transform: uppercase;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ══════════════════════════════════════════════════════
   MARQUEE — deep navy transition strip
   ══════════════════════════════════════════════════════ */
.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 1rem 0;
  background: linear-gradient(90deg, #060e1d 0%, #091525 50%, #060e1d 100%);
}
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}
.marquee-dot {
  width: 4px; height: 4px;
  background: var(--sky);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION SHARED ────────────────────────────── */
section { position: relative; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--sky);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════════════════════
   SECTION 2 — MARKETING
   Light: white-to-pale-blue, airy, premium editorial
   Mood: clean, confident, day-lit luxury
   ══════════════════════════════════════════════════════ */
#marketing {
  padding: 8rem 3rem;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(ellipse 75% 65% at 95% 5%,  rgba(56,189,248,0.28)  0%, transparent 55%),
    radial-gradient(ellipse 60% 55% at 5%  95%,  rgba(14,165,233,0.18)  0%, transparent 55%),
    linear-gradient(155deg, #b8dff0 0%, #c6e7f5 30%, #aed8ec 65%, #96cce6 100%);
}
/* faint dot texture */
#marketing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(14,165,233,0.1) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
  z-index: 0;
}
/* bottom fade to dark for seamless transition to stats */
#marketing::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(6,13,25,0.18));
  pointer-events: none;
  z-index: 0;
}

/* text overrides for light bg */
#marketing .section-label           { color: #0369a1; }
#marketing .section-label::before   { background: #0369a1; }
#marketing .section-title           { color: #04111f; }
#marketing .approach-left p         { color: rgba(4,17,31,0.62); }

#marketing .approach-card {
  background: rgba(255,255,255,0.75);
  border-color: rgba(14,165,233,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
#marketing .approach-card:hover {
  background: rgba(255,255,255,0.95);
  border-color: #0ea5e9;
  box-shadow: 0 8px 32px rgba(14,165,233,0.12);
}
#marketing .approach-card::before  { background: #0ea5e9; }
#marketing .card-number            { color: #0284c7; }
#marketing .card-title             { color: #04111f; }
#marketing .card-desc              { color: rgba(4,17,31,0.58); }

/* ══════════════════════════════════════════════════════
   STATS BAR
   Deep ocean blue — acts as a rich dark divider
   Mood: solid, data-forward, authoritative
   ══════════════════════════════════════════════════════ */
.stats-bar {
  padding: 3.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 200% at 50% 50%, rgba(14,165,233,0.18) 0%, transparent 65%),
    linear-gradient(135deg, #03070f 0%, #071220 40%, #04090f 100%);
  border-top: 1px solid rgba(56,189,248,0.2);
  border-bottom: 1px solid rgba(56,189,248,0.2);
}
/* glowing horizon line */
.stats-bar::before {
  content: '';
  position: absolute;
  top: 50%; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,0.3), transparent);
  transform: translateY(-50%);
  pointer-events: none;
}
/* top edge glow */
.stats-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(56,189,248,0.5) 50%, transparent 100%);
  pointer-events: none;
}

.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--sky);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════════════════════
   SECTION 3 — RELEASES / ARTIST
   Rich midnight indigo — deep, moody, intimate
   Mood: artistic, spotlight, exclusive
   ══════════════════════════════════════════════════════ */
#releases {
  padding: 8rem 3rem;
  position: relative;
  overflow: hidden;
  /* dark at edges, lifts to a mid steel-blue in the centre */
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%,  rgba(56,189,248,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 55% at 85% 15%,  rgba(14,165,233,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 85%,  rgba(2,132,199,0.1)   0%, transparent 55%),
    linear-gradient(160deg, #071525 0%, #0a1e35 30%, #0d2540 55%, #071828 80%, #050e1a 100%);
}
/* subtle dot grid */
#releases::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(56,189,248,0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  opacity: 0.6;
}
/* centre spotlight glow — makes the artist card feel lit from above */
#releases::after {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,0.4), transparent);
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   SECTION 4 — CAMPAIGNS
   Pearl / off-white cool tone — second light section
   Mood: editorial magazine, refined, premium
   ══════════════════════════════════════════════════════ */
#campaigns {
  padding: 8rem 3rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 60% at 5%  10%, rgba(147,210,255,0.5)  0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 95% 90%, rgba(186,230,255,0.4)  0%, transparent 55%),
    linear-gradient(145deg, #f0f8ff 0%, #e8f5fd 30%, #f5fbff 60%, #ddeefb 100%);
}
#campaigns::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 60px,
    rgba(14,165,233,0.04) 60px,
    rgba(14,165,233,0.04) 61px
  );
  pointer-events: none;
}
#campaigns::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(4,12,22,0.12));
  pointer-events: none;
}

/* campaigns text overrides for light bg */
#campaigns .campaigns-header .section-label          { color: #0369a1; }
#campaigns .campaigns-header .section-label::before  { background: #0369a1; }
#campaigns .campaigns-header .section-title          { color: #04111f; }
#campaigns .campaigns-header p                       { color: rgba(4,17,31,0.58); }

#campaigns .campaigns-grid { background: rgba(14,165,233,0.15); }

#campaigns .campaign-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
#campaigns .campaign-card:hover {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 8px 40px rgba(14,165,233,0.1);
}
#campaigns .campaign-card::after {
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(14,165,233,0.1), transparent 70%);
}
#campaigns .campaign-number { color: rgba(14,165,233,0.12); }
#campaigns .campaign-name   { color: #04111f; }
#campaigns .campaign-desc   { color: rgba(4,17,31,0.58); }
#campaigns .campaign-tag    { color: #0284c7; }

/* ══════════════════════════════════════════════════════
   SECTION 5 — ABOUT
   Deep navy with warm blue undertone, soft inner glow
   Mood: trust, depth, heritage
   ══════════════════════════════════════════════════════ */
#about {
  padding: 8rem 3rem;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%,  rgba(14,165,233,0.1)  0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 5%  10%,   rgba(56,189,248,0.07) 0%, transparent 50%),
    radial-gradient(ellipse 35% 35% at 95% 90%,   rgba(0,212,255,0.06)  0%, transparent 50%),
    linear-gradient(160deg, #050d1c 0%, #040810 45%, #071320 100%);
}
/* soft radial vignette for intimate feel */
#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 85% at 50% 50%, transparent 40%, rgba(3,7,14,0.55) 100%);
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   SECTION 6 — CONTACT
   Electric sky — dramatic, bold, energetic close
   Mood: action, momentum, closing call-to-action
   ══════════════════════════════════════════════════════ */
#contact {
  padding: 8rem 3rem;
  position: relative;
  overflow: hidden;
  /* mid-tone: not light, not pitch black — a rich slate-blue */
  background:
    radial-gradient(ellipse 90%  65% at 50% 110%, rgba(56,189,248,0.22)  0%, transparent 55%),
    radial-gradient(ellipse 60%  50% at 90%  5%,  rgba(14,165,233,0.14)  0%, transparent 50%),
    radial-gradient(ellipse 45%  45% at 5%   40%,  rgba(56,189,248,0.1)   0%, transparent 50%),
    linear-gradient(170deg, #0e2236 0%, #0c1e30 25%, #0a1a28 55%, #0d2038 80%, #0e2440 100%);
}
/* rising light from bottom */
#contact::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(14,165,233,0.08), transparent);
  pointer-events: none;
}
/* glowing top edge */
#contact::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(56,189,248,0.45) 50%, transparent 100%);
  pointer-events: none;
}

.contact-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 22rem);
  color: rgba(56,189,248,0.025);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
  user-select: none;
}

/* ══════════════════════════════════════════════════════
   FOOTER
   Pure black — closes the journey
   ══════════════════════════════════════════════════════ */
footer {
  background: #020509;
  border-top: 1px solid var(--border);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: 0.1em;
}
.footer-logo span { color: var(--sky); }
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--sky); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(232,244,253,0.18);
}

/* ══════════════════════════════════════════════════════
   COMPONENTS — unchanged from your original
   ══════════════════════════════════════════════════════ */

/* approach grid */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 5rem;
  position: relative;
  z-index: 1;
}
.approach-left .section-title { margin-bottom: 2rem; }
.approach-left p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 460px;
  line-height: 1.8;
}
.approach-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5px;
}
.approach-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem 2.5rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.approach-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--sky);
  transition: height 0.4s ease;
}
.approach-card:hover {
  border-color: var(--sky-deep);
  background: rgba(14,165,233,0.05);
  transform: translateX(6px);
}
.approach-card:hover::before { height: 100%; }
.card-number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--sky);
  letter-spacing: 0.2em;
  margin-bottom: 0.8rem;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.card-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* artist section */
.artist-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 5rem;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.artist-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.artist-visual {
  position: relative;
  background: var(--surface);
  min-height: 550px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.artist-placeholder {
  width: 100%; height: 100%;
  min-height: 550px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(14,165,233,0.18) 0%, transparent 70%),
    var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.artist-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.artist-placeholder-icon { font-size: 6rem; opacity: 0.2; position: absolute; }
.artist-img-frame {
  width: 220px; height: 280px;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.artist-img-frame::before, .artist-img-frame::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--sky);
  border-style: solid;
}
.artist-img-frame::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.artist-img-frame::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.img-placeholder-text {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
  line-height: 2;
}
.artist-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(14,165,233,0.15), transparent);
}
.artist-info {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--border);
}
.artist-badge {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sky);
  background: rgba(56,189,248,0.1);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  display: inline-block;
  margin-bottom: 2rem;
  width: fit-content;
}
.artist-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.artist-name .sky { color: var(--sky); }
.artist-genre {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.artist-bio {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 380px;
}
.artist-releases {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-bottom: 2.5rem;
}
.releases-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.release-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(56,189,248,0.06);
  transition: padding-left 0.25s;
}
.release-item:hover { padding-left: 6px; }
.release-title { font-size: 0.95rem; font-weight: 400; }
.release-year {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
}
.artist-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* campaigns cards */
.campaigns-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}
.campaigns-header p { color: var(--muted); font-size: 1rem; line-height: 1.8; }
.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  position: relative;
  z-index: 1;
}
.campaign-card {
  background: var(--bg2);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, box-shadow 0.3s;
}
.campaign-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(14,165,233,0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.campaign-card:hover { background: var(--bg3); }
.campaign-card:hover::after { opacity: 1; }
.campaign-icon { font-size: 2rem; margin-bottom: 1.5rem; display: block; filter: grayscale(0.3); }
.campaign-number {
  position: absolute;
  top: 2rem; right: 2.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(56,189,248,0.05);
  line-height: 1;
  pointer-events: none;
}
.campaign-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.campaign-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.campaign-tag {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--sky);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* about */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-visual { position: relative; }
.about-box {
  width: 100%;
  aspect-ratio: 4/5;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.about-box-inner {
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(56,189,248,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-big {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 8rem);
  color: rgba(56,189,248,0.07);
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1;
}
.about-accent-line {
  position: absolute;
  bottom: 2rem; left: -3rem;
  width: calc(100% + 3rem);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sky), transparent);
}
.about-float-badge {
  position: absolute;
  bottom: -2rem; right: -2rem;
  background: var(--sky);
  color: var(--bg);
  padding: 1.5rem 2rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.3;
}
.about-float-badge small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.2rem;
}
.about-content .section-title { margin-bottom: 2rem; }
.about-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.about-values {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.value-item {
  border-top: 2px solid var(--sky);
  padding-top: 1rem;
  min-width: 120px;
}
.value-name { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.05em; }
.value-desc { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; }

/* contact inner */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-left .section-title { margin-bottom: 1.5rem; }
.contact-left > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 3rem;
}
.contact-info-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1.2rem; }
.contact-info-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.2rem;
}
.contact-info-value { font-size: 0.95rem; color: var(--text); }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.9rem 1.2rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: none;
  -webkit-appearance: none;
  cursor: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(232,244,253,0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky-deep);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.08);
}
.form-group select option { background: var(--surface); }
.form-submit {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--sky);
  border: none;
  padding: 1.1rem 2.5rem;
  cursor: none;
  transition: box-shadow 0.3s, transform 0.2s;
  margin-top: 0.5rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.form-submit:hover {
  box-shadow: 0 0 40px var(--glow-strong);
  transform: translateY(-2px);
}
.form-submit:hover::before { opacity: 1; }
.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* ── SCROLL REVEAL ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible       { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }

/* ── ANIMATIONS ────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
  .approach-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .about-inner     { grid-template-columns: 1fr; gap: 4rem; }
  .contact-inner   { grid-template-columns: 1fr; gap: 4rem; }
  .campaigns-grid  { grid-template-columns: 1fr 1fr; }
  .stats-bar       { grid-template-columns: repeat(2, 1fr); }
  .artist-showcase { grid-template-columns: 1fr; }
  .artist-info     { border-left: none; border-top: 1px solid var(--border); }
  .about-float-badge { display: none; }
}

@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  nav.scrolled { padding: 0.9rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  #home      { padding: 0 1.5rem 4rem; }
  #marketing, #releases, #campaigns, #about, #contact { padding: 5rem 1.5rem; }

  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }

  .campaigns-header { grid-template-columns: 1fr; gap: 2rem; }
  .campaigns-grid   { grid-template-columns: 1fr; }
  .stats-bar        { grid-template-columns: repeat(2, 1fr); padding: 2.5rem 1.5rem; gap: 1.5rem; }

  .artist-info  { padding: 2rem; }
  .artist-name  { font-size: 3.5rem; }
  .form-row     { grid-template-columns: 1fr; }
  footer        { flex-direction: column; align-items: flex-start; }

  .contact-bg-text    { display: none; }
  .about-box          { aspect-ratio: 3/2; }
  .campaigns-header,
  .about-inner,
  .contact-inner      { gap: 2rem; }
}

@media (max-width: 480px) {
  .hero-actions  { align-items: flex-start; }
  .hero-title    { font-size: clamp(4rem, 18vw, 7rem); }
  .section-title { font-size: clamp(2.5rem, 12vw, 5rem); }
  .stats-bar     { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

@media (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  * { cursor: auto; }
  button, a, input, select, textarea { cursor: pointer; }
}

/* ══════════════════════════════════════════════════════
   SMOOTH SLIDE-UP ANIMATIONS
   — Marketing approach cards (one by one)
   — Release / tracklist items (one by one)
   Triggered by IntersectionObserver in smooth-reveal.js
   ══════════════════════════════════════════════════════ */

/* ── shared base state: hidden, shifted down ── */
.slide-up {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity  0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── visible state ── */
.slide-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── staggered delays for sequential feel ── */
.slide-up:nth-child(1) { transition-delay: 0.00s; }
.slide-up:nth-child(2) { transition-delay: 0.10s; }
.slide-up:nth-child(3) { transition-delay: 0.20s; }
.slide-up:nth-child(4) { transition-delay: 0.30s; }
.slide-up:nth-child(5) { transition-delay: 0.40s; }
.slide-up:nth-child(6) { transition-delay: 0.50s; }
.slide-up:nth-child(7) { transition-delay: 0.60s; }
.slide-up:nth-child(8) { transition-delay: 0.70s; }

/* ── release items: tiny left-edge accent line slides in with them ── */
.release-item.slide-up {
  border-left: 2px solid transparent;
  padding-left: 0;
  transition:
    opacity   0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    padding-left 0.4s ease;
}
.release-item.slide-up.in {
  border-left-color: rgba(56,189,248,0.35);
  padding-left: 10px;
}

/* ── marketing cards: subtle lift shadow on arrival ── */
.approach-card.slide-up.in {
  box-shadow: 0 4px 24px rgba(14,165,233,0.08);
}

/* ══════════════════════════════════════════════════════
   SONGS SECTION
   Desktop: clean track list
   Mobile:  swipe-up flashcard stack
   ══════════════════════════════════════════════════════ */

.songs-section { position: relative; z-index: 1; margin-top: 4rem; }

/* ── DESKTOP LIST ── */
.songs-desktop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}
.song-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 1.8rem;
  border-bottom: 1px solid rgba(56,189,248,0.07);
  transition: background 0.2s, padding-left 0.25s;
  cursor: default;
}
.song-row:nth-child(odd)  { border-right: 1px solid rgba(56,189,248,0.07); }
.song-row:last-child,
.song-row:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.song-row:hover { background: rgba(56,189,248,0.04); padding-left: 2.2rem; }

.song-num  {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--sky);
  flex-shrink: 0;
  width: 1.8rem;
}
.song-name {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  flex: 1;
}
.song-year {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  flex-shrink: 0;
}

/* hide mobile stack on desktop */
.songs-mobile { display: none; }

/* ── MOBILE FLASHCARD STACK ── */
@media (max-width: 768px) {
  .songs-desktop { display: none; }
  .songs-mobile  { display: block; }

  .sm-stack {
    position: relative;
    height: 420px;   /* visible card area */
    margin: 0 auto;
    max-width: 340px;
  }

  .sm-card {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    /* transforms set by JS */
  }

  /* album art */
  .sm-art {
    flex: 1;
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(ellipse 60% 60% at 40% 40%,
        hsla(var(--mh,210), 60%, 55%, 0.5) 0%, transparent 65%),
      linear-gradient(135deg,
        hsl(var(--mh,210), 45%, 14%) 0%,
        hsl(calc(var(--mh,210) + 20), 38%, 9%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(56,189,248,0.12);
  }
  .sm-art::after  { content: '♪'; }
  .sm-art img     { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

  /* info strip */
  .sm-meta {
    padding: 1rem 1.3rem 1.2rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .sm-num  {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    color: var(--sky);
    flex-shrink: 0;
  }
  .sm-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    color: var(--text);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
  }
  .sm-year {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    color: var(--muted);
    flex-shrink: 0;
  }

  /* controls */
  .sm-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
  }
  .sm-hint {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
  }
  .sm-dots {
    display: flex;
    gap: 0.4rem;
  }
  .sm-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(56,189,248,0.2);
    transition: background 0.3s, transform 0.3s;
  }
  .sm-dot.sm-dot-on {
    background: var(--sky);
    transform: scale(1.5);
  }
}