/* ============================================================
   TumbleTunes — Design System
   ============================================================ */

:root {
  /* Colors */
  --pink:        #fb3a64;
  --pink-dark:   #d62850;
  --pink-glow:   rgba(251, 58, 100, 0.25);
  --bg:          #0d0d0f;
  --bg-card:     #141417;
  --bg-raise:    #1c1c21;
  --border:      rgba(255,255,255,0.07);
  --text:        #e8e8ec;
  --text-muted:  #7a7a8c;
  --text-dim:    #3f3f50;
  --white:       #ffffff;

  /* Type */
  --font-sans:   'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-display:'Syne', 'Inter', sans-serif;

  /* Spacing */
  --gap:         clamp(1rem, 3vw, 2rem);
  --section-pad: clamp(4rem, 8vw, 8rem);

  /* Radii */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;

  /* Transitions */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast:      0.18s var(--ease);
  --t-med:       0.32s var(--ease);
  --t-slow:      0.55s var(--ease);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
#about,
#subscribe {
  scroll-margin-top: 96px;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ---- Typography ---- */
.font-display { font-family: var(--font-display); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}
.section-label[data-no-dash]::before { display: none; }

/* ---- Layout Utilities ---- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--gap); }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  background: rgba(13,13,15,0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-med);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.nav-logo .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
  animation: pulse 2.4s ease-in-out infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--pink);
  transition: width var(--t-fast);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 64px 0 0;
    background: var(--bg);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    font-size: 1.25rem;
  }
  .nav.open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-hamburger span:nth-child(2) { opacity: 0; }
  .nav.open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 60svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(6rem, 10vw, 9rem);
  padding-bottom: clamp(9rem, 12vw, 11rem);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 30%, rgba(251,58,100,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(120,40,200,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Animated waveform bars */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  opacity: 0.18;
  pointer-events: none;
}
.hero-wave span {
  display: block;
  width: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--pink);
  animation: wave var(--dur, 1.2s) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
}

.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1.5px;
  background: var(--pink);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.0;
  color: var(--white);
  max-width: 14ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--pink);
  position: relative;
}

.hero-sub {
  margin-top: 1.75rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; right: 3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 24px var(--pink-glow);
}
.btn-primary:hover {
  background: var(--pink-dark);
  box-shadow: 0 6px 32px rgba(251,58,100,0.4);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  background: var(--bg-raise);
  transform: translateY(-1px);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   PLAYLIST CARDS
   ============================================================ */
.playlist-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.playlist-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251,58,100,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(251,58,100,0.1);
}

.playlist-card-art {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-raise);
}
.playlist-card-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow), filter var(--t-slow);
}
.playlist-card:hover .playlist-card-art img {
  transform: scale(1.06);
  filter: brightness(0.7);
}

/* Play overlay */
.playlist-card-art-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-med);
}
.playlist-card:hover .playlist-card-art-overlay { opacity: 1; }

.play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.play-btn:hover { transform: scale(1.1); }
.play-btn svg { width: 22px; height: 22px; fill: #1DB954; margin-left: 2px; }

/* Placeholder cover art */
.art-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-raise) 0%, #1a1a24 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-placeholder-inner {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-placeholder-inner svg {
  width: 24px; height: 24px;
  color: var(--text-dim);
}

/* Dynamic color gradient (set via JS from image) */
.playlist-card-art::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(13,13,15,0.8), transparent);
  pointer-events: none;
}

/* Tags on art */
.art-tags {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.tag {
  padding: 0.25rem 0.6rem;
  background: rgba(13,13,15,0.75);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.playlist-card-body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.playlist-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: 0;
}
.playlist-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.card-date {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 500;
}
.spotify-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #1DB954;
  letter-spacing: 0.04em;
  transition: opacity var(--t-fast);
}
.spotify-link:hover { opacity: 0.75; }
.spotify-link svg { width: 14px; height: 14px; }

/* Guest List badge */
.guest-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.06em;
}

/* ============================================================
   SECTION PAGES — HERO BANNER
   ============================================================ */
.section-hero {
  padding-top: calc(64px + clamp(4rem, 6vw, 6rem));
  padding-bottom: clamp(3rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}
.section-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 80% 10%, rgba(251,58,100,0.08) 0%, transparent 60%);
}
.section-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: var(--white);
}
.section-hero p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  margin-top: 1.25rem;
  line-height: 1.7;
}
.section-hero .section-label { margin-bottom: 1.5rem; }

/* ============================================================
   HOME SECTIONS PREVIEW
   ============================================================ */
.home-section {
  padding-block: clamp(2rem, 3vw, 3rem);
  position: relative;
  max-height: 540px;
  overflow: hidden;
}

/* Alternating section backgrounds */
#section-noteworthy,
#section-curated,
#section-guestlist {
  background: var(--bg-raise);
}

/* Bottom fade — colour matches each section's background */
#section-noteworthy::after,
#section-curated::after,
#section-guestlist::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5rem;
  background: linear-gradient(to bottom, transparent, var(--bg-raise));
  pointer-events: none;
  z-index: 2;
}
.featured-video::after,
.featured-album::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5rem;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 2;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  gap: 1rem;
  flex-wrap: wrap;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--white);
}
.section-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 45ch;
  line-height: 1.6;
  margin-top: 0.6rem;
}

/* Featured hero card (first card large) */
.featured-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--gap);
}
.featured-grid .playlist-card:first-child {
  grid-row: span 2;
}
.featured-grid .playlist-card:first-child .playlist-card-art {
  aspect-ratio: 3 / 4;
}
.featured-grid .playlist-card:first-child .playlist-card-body h3 {
  font-size: 1.35rem;
}

@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }
  .featured-grid .playlist-card:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
  .featured-grid .playlist-card:first-child .playlist-card-art {
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 550px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .featured-grid .playlist-card:first-child {
    grid-column: span 1;
  }
}

/* Noteworthy page — duo hero row */
.noteworthy-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-bottom: var(--gap);
}
.noteworthy-duo .duo-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.noteworthy-duo .duo-col .playlist-card {
  flex: 1;
}
.noteworthy-duo .playlist-card-art {
  aspect-ratio: 4 / 3;
}
@media (max-width: 600px) {
  .noteworthy-duo {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   LATEST CARD (homepage single-playlist preview)
   ============================================================ */
.latest-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
.latest-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251,58,100,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.latest-card-art {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  flex-shrink: 0;
}
.latest-card-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow), filter var(--t-slow);
}
.latest-card:hover .latest-card-art img {
  transform: scale(1.06);
  filter: brightness(0.65);
}
.latest-card-art-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-med);
}
.latest-card:hover .latest-card-art-overlay { opacity: 1; }
.latest-card-art-overlay svg {
  width: 52px; height: 52px;
  color: #fff;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.6));
}
.latest-card-body {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
.latest-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0;
  line-height: 1.2;
}
.latest-card-body > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 55ch;
}
@media (max-width: 640px) {
  .latest-card { grid-template-columns: 1fr; }
  .latest-card-art { aspect-ratio: 16 / 9; }
}

/* ============================================================
   FEATURED VIDEO
   ============================================================ */
.featured-video {
  padding-block: clamp(2rem, 3vw, 3rem);
  position: relative;
  max-height: 540px;
  overflow: hidden;
}
.featured-video-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.featured-video-meta { display: flex; flex-direction: column; gap: 1rem; }
.featured-video-meta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--white);
  letter-spacing: 0;
  line-height: 1.1;
}
.featured-video-artist {
  font-size: 0.9rem;
  color: var(--pink);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.featured-video-meta > p:last-of-type {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 45ch;
}
.featured-video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-raise);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.featured-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
@media (max-width: 820px) {
  .featured-video-inner {
    grid-template-columns: 1fr;
  }
  .featured-video-inner .featured-video-embed { order: -1; }
}

/* ============================================================
   FEATURED ALBUM
   ============================================================ */
.featured-album {
  padding-block: clamp(2rem, 3vw, 3rem);
  position: relative;
  max-height: 540px;
  overflow: hidden;
}
.featured-album-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.featured-album-art {
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: center;
  justify-self: center;
  align-self: center;
  width: fit-content;
  max-width: 100%;
  background: rgba(0,0,0,0.28);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.featured-album-art img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(54vh, 560px);
  display: block;
  object-fit: contain;
  transition: transform var(--t-slow);
}
.featured-album-art:hover img { transform: none; }
.featured-album-meta { display: flex; flex-direction: column; gap: 1rem; }
.featured-album-meta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--white);
  letter-spacing: 0;
  line-height: 1.1;
}
.featured-album-artist {
  font-size: 0.9rem;
  color: var(--pink);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.featured-album-meta > p:last-of-type {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 45ch;
}
.featured-album-meta .btn {
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  justify-content: center;
}
.featured-album-meta .btn svg {
  width: 18px; height: 18px;
  vertical-align: middle;
  margin-right: 0.4em;
}
@media (max-width: 820px) {
  .featured-album-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
  padding-block: var(--section-pad);
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
@media (max-width: 700px) {
  .about-strip-inner { grid-template-columns: 1fr; }
}

.about-strip h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}
.about-strip p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-strip p:last-of-type { margin-bottom: 1.75rem; }

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ─── Record Player (About section) ─────────────────────── */
/* Base plinth */
.turntable {
  --tt: clamp(220px, 55vw, 340px);
  width: var(--tt);
  height: calc(var(--tt) * 0.79);
  position: relative;
  background: linear-gradient(160deg, #1e1e2a 0%, #131320 60%, #0e0e16 100%);
  border-radius: calc(var(--tt) * 0.035);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 calc(var(--tt) * 0.06) calc(var(--tt) * 0.22) rgba(0,0,0,0.65);
}
/* Ambient glow behind platter */
.tt-glow {
  position: absolute;
  width: calc(var(--tt) * 0.72);
  height: calc(var(--tt) * 0.72);
  left: calc(var(--tt) * 0.01);
  top: calc(var(--tt) * 0.04);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,58,100,0.15) 0%, transparent 70%);
  pointer-events: none;
}
/* Spinning vinyl platter */
.tt-platter {
  position: absolute;
  width: calc(var(--tt) * 0.62);
  height: calc(var(--tt) * 0.62);
  left: calc(var(--tt) * 0.06);
  top: calc(var(--tt) * 0.085);
  border-radius: 50%;
  background:
    /* Sweeping shimmer — asymmetric so rotation is visually obvious */
    conic-gradient(from 0deg at 50% 50%,
      transparent 0deg,
      rgba(255,255,255,0.07) 25deg,
      rgba(255,255,255,0.04) 55deg,
      transparent 85deg,
      transparent 360deg
    ),
    /* Groove rings */
    radial-gradient(circle at 50% 50%,
      transparent 24%,
      rgba(255,255,255,0.025) 24.5%, transparent 26%,
      rgba(255,255,255,0.018) 32%,   transparent 33.5%,
      rgba(255,255,255,0.015) 40%,   transparent 41.5%,
      rgba(255,255,255,0.012) 47%,   transparent 48.5%,
      rgba(255,255,255,0.010) 54%,   transparent 55.5%,
      rgba(255,255,255,0.008) 61%,   transparent 62.5%,
      rgba(255,255,255,0.006) 68%,   transparent 69.5%,
      rgba(255,255,255,0.005) 74%,   transparent 75.5%
    ),
    #111118;
  box-shadow:
    0 0 0 calc(var(--tt) * 0.012) rgba(255,255,255,0.04),
    inset 0 0 calc(var(--tt) * 0.06) rgba(0,0,0,0.5),
    0 calc(var(--tt) * 0.025) calc(var(--tt) * 0.05) rgba(0,0,0,0.4);
  animation: spin 5s linear infinite;
}
/* Center label */
.tt-label {
  position: absolute;
  width: 30%;
  height: 30%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(135deg, #fb3a64 0%, #c22050 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), inset 0 1px 0 rgba(255,255,255,0.15);
  overflow: hidden;
}
/* SVG fills the label circle; textPath + spindle drawn inside */
.tt-label svg {
  display: block;
  width: 100%;
  height: 100%;
}
/* Tonearm — right end is pivot, extends left to 4:30 on the record */
.tt-arm {
  position: absolute;
  width: calc(var(--tt) * 0.524);
  height: calc(var(--tt) * 0.008);
  right: calc(var(--tt) * 0.16);
  top: calc(var(--tt) * 0.136);
  transform-origin: right center;
  transform: rotate(-57deg);
  background: linear-gradient(to right, rgba(110,110,120,0.9) 0%, #aaa 50%, #bbb 100%);
  border-radius: 3px 1px 1px 3px;
  z-index: 3;
}
/* Headshell at tip */
.tt-arm::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: calc(var(--tt) * 0.038);
  height: calc(var(--tt) * 0.026);
  background: linear-gradient(135deg, #aaa 0%, #777 100%);
  border-radius: 2px 3px 3px 2px;
}
/* Counterweight at tail */
.tt-arm::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: calc(var(--tt) * 0.032);
  height: calc(var(--tt) * 0.022);
  background: linear-gradient(135deg, #888 0%, #555 100%);
  border-radius: 2px;
}
/* Shiny pivot cap */
.tt-pivot {
  position: absolute;
  width: calc(var(--tt) * 0.05);
  height: calc(var(--tt) * 0.05);
  right: calc(var(--tt) * 0.135);
  top: calc(var(--tt) * 0.115);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #888, #2a2a30);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.12);
  z-index: 4;
}

/* Power button — lower-right, green "on" glow, ⏻ symbol via ::before/::after */
.tt-power {
  position: absolute;
  width: calc(var(--tt) * 0.065);
  height: calc(var(--tt) * 0.065);
  right: calc(var(--tt) * 0.20);
  top: calc(var(--tt) * 0.69);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #3a3a46, #18181f);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 0 calc(var(--tt) * 0.018) rgba(76,255,76,0.35),
    0 2px 5px rgba(0,0,0,0.6);
  z-index: 3;
}
/* Pitch fader — vertical track on far right */
.tt-fader {
  position: absolute;
  right: calc(var(--tt) * 0.07);
  top: calc(var(--tt) * 0.557);
  width: calc(var(--tt) * 0.008);
  height: calc(var(--tt) * 0.198);
  background: rgba(255,255,255,0.10);
  border-radius: 4px;
  z-index: 3;
}
/* Fader cap centred at 50% = pitch neutral */
.tt-fader-cap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(var(--tt) * 0.065);
  height: calc(var(--tt) * 0.028);
  background: linear-gradient(160deg, #777 0%, #444 100%);
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
}
/* Centre-line detail on fader cap */
.tt-fader-cap::before {
  content: '';
  position: absolute;
  left: 15%;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background: rgba(255,255,255,0.25);
  border-radius: 1px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  padding-block: var(--section-pad);
  background: var(--bg-raise);
}
.newsletter-inner {
  max-width: 580px;
  margin-inline: auto;
  text-align: center;
}
.newsletter h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.newsletter p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.nl-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 460px;
  margin-inline: auto;
}
.nl-form-row {
  display: flex;
  gap: 0.75rem;
}
.nl-form input[type="text"],
.nl-form input[type="email"] {
  flex: 1;
  padding: 0.8rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.nl-form input[type="text"]:focus,
.nl-form input[type="email"]:focus {
  border-color: rgba(251,58,100,0.5);
  box-shadow: 0 0 0 3px var(--pink-glow);
}
.nl-form input[type="text"]::placeholder,
.nl-form input[type="email"]::placeholder { color: var(--text-dim); }
.nl-form .btn {
  align-self: center;
  justify-content: center;
  min-width: min(100%, 260px);
}

@media (max-width: 480px) {
  .nl-form-row { flex-direction: column; }
  .nl-form input[type="text"],
  .nl-form input[type="email"],
  .nl-form .btn { width: 100%; justify-content: center; }
}

.nl-privacy {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding-block: 1rem;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
  width: 100%;
  text-align: center;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 10px var(--pink); opacity: 1; }
  50%       { box-shadow: 0 0 20px var(--pink), 0 0 40px rgba(251,58,100,0.3); opacity: 0.8; }
}

@keyframes wave {
  0%   { transform: scaleY(0.2); }
  100% { transform: scaleY(1); }
}

@keyframes scroll-line {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--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.4s; }

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-dim);
}
.empty-state svg {
  width: 48px; height: 48px;
  margin-inline: auto;
  margin-bottom: 1rem;
  opacity: 0.4;
}
.empty-state p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* ============================================================
   ADD PLAYLIST TOOL (creator workflow)
   ============================================================ */
.tool-layout {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 1.5rem;
}
.tool-card {
  width: 100%;
  max-width: 680px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.tool-card h1 {
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.tool-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg-raise);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="url"]:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(251,58,100,0.5);
  box-shadow: 0 0 0 3px var(--pink-glow);
}
.form-group textarea { min-height: 90px; resize: vertical; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7a8c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option { background: var(--bg-card); }

.drop-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.drop-zone:hover, .drop-zone.drag-over {
  border-color: rgba(251,58,100,0.5);
  background: rgba(251,58,100,0.04);
}
.drop-zone p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}
.drop-zone svg {
  width: 32px; height: 32px;
  color: var(--text-dim);
  margin-inline: auto;
  margin-bottom: 0.5rem;
}
.drop-zone strong { color: var(--pink); }
#art-preview {
  display: none;
  margin-top: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-height: 200px;
  aspect-ratio: 1;
  margin-inline: auto;
  width: fit-content;
}
#art-preview img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.tool-output {
  display: none;
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--bg-raise);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.tool-output h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.tool-output pre {
  font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
  font-size: 0.78rem;
  color: #a8e6cf;
  white-space: pre-wrap;
  word-break: break-all;
  line-height: 1.55;
}
.tool-output .copy-btn {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--pink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.tool-output .copy-btn:hover { opacity: 0.75; }

.tag-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}
.tag-hint {
  padding: 0.25rem 0.65rem;
  background: var(--bg-raise);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.tag-hint:hover {
  border-color: var(--pink);
  color: var(--white);
  background: rgba(251,58,100,0.08);
}
.tag-hint.selected {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(251,58,100,0.1);
}

/* ============================================================
   SUBMISSION MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--t-med);
}
.modal-overlay.open .modal-card {
  transform: translateY(0);
}
.modal-card h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.modal-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text-dim);
  border-radius: 50%;
  transition: color var(--t-fast), background var(--t-fast);
}
.modal-close:hover {
  color: var(--white);
  background: var(--bg-raise);
}
.modal-status {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
  min-height: 1.2em;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-raise);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--t-med), transform var(--t-med), border-color var(--t-fast), color var(--t-fast);
  z-index: 90;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}
.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   PAGE-SPECIFIC ACCENT OVERRIDES
   ============================================================ */
[data-page="noteworthy"] .section-label,
[data-page="noteworthy"] .hero-eyebrow { color: #fb3a64; }

/* Let the full playlist grid show on section pages */
[data-page="noteworthy"] .home-section,
[data-page="curated"] .home-section,
[data-page="guestlist"] .home-section {
  max-height: none;
  overflow: visible;
}

[data-page="curated"] .section-label,
[data-page="curated"] .hero-eyebrow { color: #a76eff; }
[data-page="curated"] .section-label::before { background: #a76eff; }

[data-page="guestlist"] .section-label,
[data-page="guestlist"] .hero-eyebrow { color: #3ac8fb; }
[data-page="guestlist"] .section-label::before { background: #3ac8fb; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-raise); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }

/* ============================================================
   SELECTION
   ============================================================ */
::selection {
  background: rgba(251,58,100,0.25);
  color: var(--white);
}

/* ============================================================
   Premium Hi-Fi Redesign
   Concept: audiophile listening room, editorial playlist shelf
   ============================================================ */

:root {
  --pink: #ff4f73;
  --pink-dark: #d7385b;
  --pink-glow: rgba(255, 79, 115, 0.24);
  --amber: #f0bf6a;
  --amber-soft: rgba(240, 191, 106, 0.18);
  --copper: #c9895f;
  --mint: #52d6bd;
  --violet: #a66dff;
  --cyan: #46c8f4;
  --bg: #070708;
  --bg-card: #121214;
  --bg-raise: #19191d;
  --surface: rgba(255,255,255,0.055);
  --surface-strong: rgba(255,255,255,0.095);
  --border: rgba(255,255,255,0.12);
  --border-strong: rgba(255,255,255,0.22);
  --text: #f7f1e8;
  --text-muted: #aaa39a;
  --text-dim: #6f6972;
  --font-sans: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Newsreader', Georgia, serif;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --section-pad: clamp(5rem, 9vw, 9.5rem);
}

html { background: var(--bg); }
body {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 72px 72px,
    radial-gradient(circle at 12% 0%, rgba(255,79,115,0.18), transparent 32rem),
    radial-gradient(circle at 82% 14%, rgba(240,191,106,0.12), transparent 30rem),
    linear-gradient(180deg, #09090a 0%, #070708 38rem, #09090a 100%);
  color: var(--text);
  font-family: var(--font-sans);
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 0.98;
}

.container {
  max-width: 1320px;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
}

.section-label,
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--amber);
}
.section-label::before,
.hero-eyebrow::before {
  background: currentColor;
}

.nav {
  height: 76px;
  background: rgba(7,7,8,0.74);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
}
.nav.scrolled {
  background: rgba(7,7,8,0.94);
  box-shadow: 0 24px 52px rgba(0,0,0,0.32);
}
.nav-logo {
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-logo .dot {
  width: 9px;
  height: 9px;
  background: radial-gradient(circle at 32% 28%, #fff6d6, var(--pink) 44%, #7f2038 100%);
  box-shadow: 0 0 20px var(--pink), 0 0 38px rgba(240,191,106,0.14);
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  color: #9a949d;
}
.nav-links a::after {
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--amber));
}

.hero {
  min-height: 100svh;
  padding-top: clamp(8rem, 11vw, 10rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
  isolation: isolate;
}
.hero-bg {
  background:
    radial-gradient(circle at 82% 36%, rgba(240,191,106,0.18), transparent 23rem),
    radial-gradient(circle at 50% 15%, rgba(255,79,115,0.13), transparent 34rem),
    linear-gradient(180deg, rgba(255,255,255,0.025), transparent 58%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(7,7,8,0.98));
  z-index: -1;
}
.hero-wave {
  height: 180px;
  opacity: 0.10;
  mask-image: linear-gradient(to right, transparent, #000 18%, #000 82%, transparent);
}
.hero-wave span {
  width: 2px;
  background: linear-gradient(to top, var(--pink), var(--amber));
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 7rem);
}
.hero-copy {
  max-width: 720px;
  position: relative;
  z-index: 3;
}
.hero h1 {
  max-width: 10ch;
  font-size: clamp(4.75rem, 9vw, 9.8rem);
  font-weight: 650;
  line-height: 0.86;
  letter-spacing: 0;
}
.hero h1 em {
  color: transparent;
  background: linear-gradient(100deg, var(--pink) 5%, #ff986d 48%, var(--amber) 95%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-sub {
  max-width: 46ch;
  color: #b8afa6;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.82;
}
.hero-actions {
  gap: 0.85rem;
}

.btn {
  min-height: 48px;
  padding: 0.82rem 1.22rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), #cf4fd7 58%, var(--amber));
  box-shadow: 0 16px 44px var(--pink-glow), inset 0 1px 0 rgba(255,255,255,0.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ff6b89, #bb41ce 58%, #ffd58c);
  box-shadow: 0 22px 54px rgba(255,79,115,0.32), inset 0 1px 0 rgba(255,255,255,0.36);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  color: #bdb5ad;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.085);
  border-color: var(--border-strong);
  color: var(--text);
}

.hero-studio {
  position: relative;
  min-height: clamp(480px, 49vw, 690px);
  padding: clamp(1rem, 2vw, 1.45rem);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0.025) 38%, rgba(255,255,255,0.06)),
    radial-gradient(circle at 72% 24%, rgba(240,191,106,0.18), transparent 15rem),
    #111113;
  box-shadow:
    0 42px 100px rgba(0,0,0,0.62),
    inset 0 1px 0 rgba(255,255,255,0.16);
  overflow: hidden;
}
.hero-studio::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(180deg, transparent, rgba(0,0,0,0.36));
  opacity: 0.55;
  pointer-events: none;
}
.studio-meter {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  align-items: center;
  gap: 0.8rem;
  height: 34px;
  margin-bottom: 0.65rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(240,191,106,0.18);
  border-radius: 8px;
  background: rgba(0,0,0,0.34);
}
.studio-meter span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #938b83;
}
.studio-meter i {
  display: block;
  height: 8px;
  border-radius: 99px;
  background:
    linear-gradient(90deg, var(--mint) 0 var(--level), transparent var(--level)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0 12px, transparent 12px 16px);
  box-shadow: 0 0 24px rgba(82,214,189,0.14);
}
.studio-stage {
  position: relative;
  z-index: 1;
  height: min(44vw, 430px);
  min-height: 320px;
  margin-top: 1.15rem;
  border-radius: 12px;
  background:
    radial-gradient(circle at 66% 52%, rgba(255,255,255,0.08), transparent 16rem),
    linear-gradient(160deg, #242329, #111115 62%, #0a0a0b);
  border: 1px solid rgba(255,255,255,0.11);
  overflow: hidden;
}
.album-stack {
  position: absolute;
  left: clamp(1rem, 3vw, 2rem);
  top: clamp(1rem, 3vw, 2.1rem);
  width: min(38%, 210px);
  aspect-ratio: 1;
}
.album-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 28px 58px rgba(0,0,0,0.46);
}
.album-stack img:first-child {
  transform: rotate(-8deg) translate(-8%, 9%);
}
.album-stack img:last-child {
  transform: rotate(5deg) translate(14%, -2%);
}
.studio-record {
  position: absolute;
  right: clamp(-4rem, -4vw, -2rem);
  bottom: clamp(-4.5rem, -5vw, -2.5rem);
  width: min(68%, 390px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 12deg, rgba(255,255,255,0.13), transparent 36deg, rgba(255,255,255,0.06) 88deg, transparent 130deg, rgba(255,255,255,0.12) 210deg, transparent 270deg),
    repeating-radial-gradient(circle, #111 0 7px, #17171a 8px 10px);
  box-shadow: inset 0 0 0 18px #080809, inset 0 0 70px rgba(0,0,0,0.9), 0 22px 60px rgba(0,0,0,0.56);
  animation: spin 16s linear infinite;
}
.record-ring {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: radial-gradient(circle, #161619, #0e0e11);
}
.record-label {
  position: absolute;
  inset: 38%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--amber));
  color: #130b0c;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.now-playing-card {
  position: absolute;
  z-index: 2;
  left: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(7,7,8,0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.now-playing-card span {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}
.now-playing-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}
.signal-bars {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 34px;
}
.signal-bars i {
  width: 6px;
  height: var(--h, 60%);
  border-radius: 99px 99px 0 0;
  background: linear-gradient(to top, var(--pink), var(--amber));
}
.signal-bars i:nth-child(1) { --h: 42%; }
.signal-bars i:nth-child(2) { --h: 78%; }
.signal-bars i:nth-child(3) { --h: 52%; }
.signal-bars i:nth-child(4) { --h: 92%; }
.signal-bars i:nth-child(5) { --h: 64%; }
.signal-bars i:nth-child(6) { --h: 35%; }
.signal-bars i:nth-child(7) { --h: 72%; }
.signal-bars i:nth-child(8) { --h: 48%; }

.home-section,
.featured-video,
.featured-album,
.about-strip,
.newsletter {
  padding-block: var(--section-pad);
}
.home-section {
  max-height: 700px;
}
#section-noteworthy,
#section-curated,
#section-guestlist,
.newsletter {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015)),
    #101012;
  border-block: 1px solid rgba(255,255,255,0.07);
}
#section-noteworthy::after,
#section-curated::after,
#section-guestlist::after {
  height: 8rem;
  background: linear-gradient(to bottom, transparent, #101012);
}
.section-header {
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.section-header h2,
.featured-video-meta h2,
.featured-album-meta h2,
.about-strip h2,
.newsletter h2,
.section-hero h1 {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: 0;
}
.section-header h2 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}
.section-header p,
.featured-video-meta > p:last-of-type,
.featured-album-meta > p:last-of-type,
.about-strip p,
.newsletter p,
.section-hero p {
  color: var(--text-muted);
}

.latest-card {
  grid-template-columns: minmax(230px, 320px) 1fr;
  min-height: 320px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.095), rgba(255,255,255,0.02)),
    radial-gradient(circle at 88% 12%, rgba(240,191,106,0.12), transparent 16rem),
    var(--bg-card);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 28px 80px rgba(0,0,0,0.28);
}
.latest-card-art,
.playlist-card-art {
  background: #09090a;
}
.latest-card-art img,
.playlist-card-art img {
  filter: saturate(0.94) contrast(1.02);
}
.latest-card-body {
  padding: clamp(1.5rem, 4vw, 3.25rem);
}
.latest-card-body h3 {
  font-size: clamp(1.7rem, 3.5vw, 3rem);
}
.latest-card-body > p {
  font-size: 1rem;
  max-width: 58ch;
}
.playlist-card {
  border-radius: 12px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    var(--bg-card);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.playlist-card:hover,
.latest-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 28px 80px rgba(0,0,0,0.46), 0 0 42px rgba(240,191,106,0.08);
}
.playlist-card-body {
  padding: 1.35rem;
}
.playlist-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 650;
  letter-spacing: 0;
}
.tag {
  border-radius: 6px;
  background: rgba(7,7,8,0.72);
  color: #d2c9bf;
}
.play-btn {
  background: linear-gradient(135deg, #fff5dd, var(--amber));
}
.play-btn svg { fill: #171006; }
.spotify-link {
  color: var(--mint);
}

.curated-shelf {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: start;
}

.shelf-card {
  min-width: 0;
}

.shelf-card-art {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #09090a;
  box-shadow: 0 22px 56px rgba(0,0,0,0.34);
}

.shelf-card-art img,
.shelf-card-art .art-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow), filter var(--t-med);
}

.shelf-card-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.58)),
    radial-gradient(circle at 50% 45%, transparent 0 42%, rgba(0,0,0,0.26) 82%);
  opacity: 0.78;
  transition: opacity var(--t-med);
}

.shelf-card:hover .shelf-card-art img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.05);
}

.shelf-card:hover .shelf-card-art::after {
  opacity: 0.5;
}

.shelf-card-index,
.shelf-card-play {
  position: absolute;
  z-index: 2;
}

.shelf-card-index {
  top: 0.85rem;
  left: 0.85rem;
  color: rgba(255,255,255,0.62);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.shelf-card-play {
  right: 0.85rem;
  bottom: 0.85rem;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(7,7,8,0.66);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 14px 30px rgba(0,0,0,0.32);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-med), transform var(--t-med);
}

.shelf-card:hover .shelf-card-play {
  opacity: 1;
  transform: translateY(0);
}

.shelf-card-play svg {
  width: 1rem;
  height: 1rem;
  margin-left: 2px;
}

.shelf-card-meta {
  padding-top: 0.9rem;
}

.shelf-card-meta h3 {
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.shelf-card-meta p {
  margin-top: 0.25rem;
  color: var(--text-dim);
  font-size: 0.78rem;
}

.home-section,
.featured-video,
.featured-album {
  max-height: none;
  overflow: visible;
}

#section-noteworthy::after,
#section-curated::after,
#section-guestlist::after,
.featured-video::after,
.featured-album::after {
  display: none;
}

.featured-video-inner,
.featured-album-inner,
.about-strip-inner {
  position: relative;
  z-index: 1;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.018)),
    var(--bg-card);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 32px 80px rgba(0,0,0,0.26);
}
.featured-video-embed,
.featured-album-art {
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 26px 70px rgba(0,0,0,0.5);
}

.video-poster {
  display: grid;
  place-items: center;
  isolation: isolate;
}

.video-poster img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04) brightness(0.76);
  transition: transform var(--t-slow), filter var(--t-med);
}

.video-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at center, transparent 0 20%, rgba(0,0,0,0.42) 64%, rgba(0,0,0,0.66));
}

.video-poster:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.04) brightness(0.86);
}

.video-play {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(7,7,8,0.58);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.44);
  box-shadow: 0 18px 44px rgba(0,0,0,0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.video-play svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}
.featured-video-meta h2,
.featured-album-meta h2,
.about-strip h2,
.newsletter h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}
.featured-video-artist,
.featured-album-artist {
  color: var(--amber);
}
.about-strip {
  background:
    radial-gradient(circle at 75% 42%, rgba(240,191,106,0.12), transparent 24rem),
    var(--bg);
}
.turntable {
  background: linear-gradient(160deg, #2a2728 0%, #151519 60%, #0c0c0d 100%);
  border-radius: 12px;
}
.tt-label {
  background: linear-gradient(135deg, var(--pink), var(--amber));
}
.newsletter-inner {
  max-width: 720px;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.nl-form input[type="text"],
.nl-form input[type="email"],
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group textarea,
.form-group select {
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
  border-color: var(--border);
}
.footer {
  background: #060607;
}
.section-hero {
  padding-top: calc(76px + clamp(5rem, 8vw, 8rem));
  padding-bottom: clamp(4rem, 7vw, 7rem);
}
.section-hero-bg {
  background:
    radial-gradient(circle at 88% 10%, rgba(240,191,106,0.14), transparent 28rem),
    radial-gradient(circle at 12% 12%, rgba(255,79,115,0.12), transparent 24rem);
}
.section-hero h1 {
  font-size: clamp(4rem, 9vw, 8.2rem);
}
.noteworthy-duo {
  gap: clamp(1rem, 3vw, 2rem);
}
.submit-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: clamp(1.5rem, 4vw, 4rem);
  row-gap: 0.45rem;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: clamp(1.35rem, 3vw, 2.25rem) clamp(1.5rem, 4vw, 3rem);
  text-align: left;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
  background:
    radial-gradient(circle at 86% 0%, rgba(240,191,106,0.11), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.018)),
    var(--bg-card);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 30px 80px rgba(0,0,0,0.24);
}
.submit-cta .section-label {
  justify-content: flex-start;
  margin-bottom: 0.1rem;
}
.submit-cta h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: var(--text);
  line-height: 1;
}
.submit-cta p {
  max-width: none;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
}
.submit-cta .btn {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  white-space: nowrap;
}
.submit-cta > :not(.btn) {
  grid-column: 1;
}
.modal-overlay {
  background: rgba(0,0,0,0.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.modal-card {
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    var(--bg-card);
  box-shadow: 0 34px 90px rgba(0,0,0,0.54);
}
.modal-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

@media (max-width: 760px) {
  .submit-cta {
    grid-template-columns: 1fr;
    text-align: center;
    padding: clamp(1.5rem, 8vw, 2rem);
  }
  .submit-cta .section-label {
    justify-content: center;
  }
  .submit-cta .btn {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    margin-top: 0.75rem;
  }
}

[data-page="curated"] .btn-primary {
  background: linear-gradient(135deg, #b58cff, #8a52e0 58%, var(--mint));
}
[data-page="guestlist"] .btn-primary {
  background: linear-gradient(135deg, #69dcff, #37bde8 58%, var(--amber));
  color: #081014;
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-studio {
    min-height: 520px;
  }
  .featured-video-inner,
  .featured-album-inner,
  .about-strip-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav {
    height: 70px;
  }
  .nav-links {
    display: none;
  }
  .nav.open .nav-links {
    display: grid !important;
    position: fixed !important;
    top: 70px !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 101 !important;
    width: 100vw !important;
    height: calc(100svh - 70px) !important;
    place-content: center !important;
    justify-items: center !important;
    gap: 2.4rem;
    background: #070708 !important;
  }
  .nav.open .nav-links a {
    font-size: 1.08rem;
  }
  .hero {
    min-height: auto;
    padding-top: 7rem;
  }
  .hero h1 {
    font-size: clamp(4rem, 20vw, 5.7rem);
  }
  .hero-studio {
    min-height: 430px;
  }
  .studio-stage {
    min-height: 280px;
  }
  .latest-card {
    grid-template-columns: 1fr;
  }
  .latest-card-art {
    aspect-ratio: 16 / 10;
  }
  .section-header {
    align-items: flex-start;
  }
  .hero-scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(3.5rem, 18vw, 4.9rem);
  }
  .hero-studio {
    min-height: 390px;
    padding: 0.8rem;
  }
  .studio-stage {
    min-height: 240px;
  }
  .now-playing-card {
    padding: 0.85rem;
  }
  .now-playing-card strong {
    font-size: 1.25rem;
  }
  .section-header h2 {
    font-size: clamp(2.3rem, 12vw, 3.3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   Fidelity pass: closer match to the generated Hi-Fi concept
   ============================================================ */

.nav-logo {
  font-size: 1.08rem;
  letter-spacing: 0;
  text-transform: none;
}

.hero {
  min-height: clamp(720px, 100svh, 940px);
  padding-top: clamp(6.5rem, 9vw, 8.5rem);
  padding-bottom: 2.5rem;
}

.hero-content {
  position: static;
  grid-template-columns: minmax(380px, 0.68fr) minmax(560px, 1.08fr);
  gap: clamp(2rem, 3.5vw, 4.5rem);
}

.hero-wave {
  z-index: 2;
}

.hero-scroll {
  z-index: 4;
}

.hero h1 {
  font-size: clamp(4.5rem, 8vw, 8.6rem);
  max-width: 9.8ch;
}

.hero-studio {
  position: absolute;
  inset: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-studio::before {
  display: none;
}

.hero-console-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center right;
  border-radius: 0;
  filter: saturate(0.96) contrast(1.05) brightness(0.88);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.24) 13%, rgba(0,0,0,0.72) 27%, #000 43%, #000 100%);
}

.now-playing-card {
  --now-playing-art-size: clamp(6.5rem, 9vw, 8.25rem);
  left: auto;
  top: min(40rem, calc(100svh - 14rem));
  right: clamp(6rem, 14vw, 13rem);
  bottom: auto;
  width: clamp(20rem, 34vw, 430px);
  display: grid;
  grid-template-columns: var(--now-playing-art-size) minmax(0, 1fr);
  gap: 0;
  align-items: center;
  min-height: var(--now-playing-art-size);
  padding: 0;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(8,8,9,0.76);
  color: var(--text);
  box-shadow: 0 20px 44px rgba(0,0,0,0.36);
  text-decoration: none;
  overflow: hidden;
  pointer-events: auto;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}

.now-playing-card:hover {
  border-color: rgba(240,191,106,0.34);
  background: rgba(8,8,9,0.84);
  transform: translateY(-1px);
}

.now-playing-art {
  align-self: center;
  width: var(--now-playing-art-size);
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  border-right: 1px solid rgba(255,255,255,0.1);
  background: #08080a;
  box-shadow: none;
}

.now-playing-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.now-playing-meta {
  display: grid;
  align-content: center;
  min-width: 0;
  gap: 0.28rem;
  padding: 0.72rem 0.86rem 0.68rem 0.92rem;
}

.now-playing-card span {
  color: #7a7374;
  font-size: 0.58rem;
  letter-spacing: 0.17em;
}

.now-playing-card strong {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.now-playing-card small {
  color: #928b88;
  font-size: 0.72rem;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.signal-bars {
  display: flex;
  justify-content: center;
  width: min(100%, 9.8rem);
  height: 24px;
  gap: 3px;
  align-items: center;
  margin: 0.18rem auto 0;
}

.signal-bars i {
  width: 4px;
  height: var(--h, 60%);
  border-radius: 99px;
  transform-origin: center bottom;
  animation: cuePulse var(--speed, 920ms) ease-in-out infinite;
  animation-delay: var(--delay, 0ms);
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: #aaa29c;
  font-size: 0.66rem;
  margin-top: 0.08rem;
}

.control-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.72rem;
  min-width: 5.5rem;
}

.control-icons i {
  width: 9px;
  height: 9px;
  display: block;
  background: #e9e2dc;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.control-icons i:nth-child(2) {
  width: 12px;
  height: 15px;
  clip-path: polygon(0 0, 35% 0, 35% 100%, 0 100%, 0 0, 65% 0, 100% 0, 100% 100%, 65% 100%, 65% 0);
}

.control-icons i:first-child {
  transform: rotate(180deg);
}

.signal-bars i:nth-child(1) { --h: 42%; --peak: 86%; --delay: -120ms; --speed: 880ms; }
.signal-bars i:nth-child(2) { --h: 78%; --peak: 46%; --delay: -440ms; --speed: 1040ms; }
.signal-bars i:nth-child(3) { --h: 52%; --peak: 92%; --delay: -280ms; --speed: 760ms; }
.signal-bars i:nth-child(4) { --h: 92%; --peak: 58%; --delay: -620ms; --speed: 1120ms; }
.signal-bars i:nth-child(5) { --h: 64%; --peak: 100%; --delay: -360ms; --speed: 940ms; }
.signal-bars i:nth-child(6) { --h: 35%; --peak: 76%; --delay: -760ms; --speed: 820ms; }
.signal-bars i:nth-child(7) { --h: 72%; --peak: 44%; --delay: -520ms; --speed: 980ms; }
.signal-bars i:nth-child(8) { --h: 48%; --peak: 88%; --delay: -220ms; --speed: 860ms; }
.signal-bars i:nth-child(9) { --h: 82%; --peak: 54%; --delay: -680ms; --speed: 1080ms; }
.signal-bars i:nth-child(10) { --h: 50%; --peak: 94%; --delay: -160ms; --speed: 790ms; }
.signal-bars i:nth-child(11) { --h: 70%; --peak: 40%; --delay: -580ms; --speed: 910ms; }
.signal-bars i:nth-child(12) { --h: 38%; --peak: 82%; --delay: -300ms; --speed: 1020ms; }
.signal-bars i:nth-child(13) { --h: 60%; --peak: 100%; --delay: -700ms; --speed: 840ms; }
.signal-bars i:nth-child(14) { --h: 84%; --peak: 52%; --delay: -260ms; --speed: 960ms; }
.signal-bars i:nth-child(15) { --h: 46%; --peak: 90%; --delay: -500ms; --speed: 880ms; }
.signal-bars i:nth-child(16) { --h: 68%; --peak: 48%; --delay: -80ms; --speed: 1060ms; }

@keyframes cuePulse {
  0%, 100% {
    height: var(--h, 60%);
    opacity: 0.72;
  }
  48% {
    height: var(--peak, 92%);
    opacity: 1;
  }
}

#section-noteworthy .container {
  display: grid;
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

#section-noteworthy .section-header {
  display: block;
  margin-bottom: 0;
}

#section-noteworthy .section-header h2 {
  font-size: clamp(2.1rem, 3.4vw, 3.3rem);
}

#section-noteworthy .section-header .btn {
  margin-top: 1.6rem;
  color: var(--pink);
  border: 0;
  background: transparent;
  padding: 0;
  min-height: auto;
  box-shadow: none;
}

#section-noteworthy .latest-card {
  grid-template-columns: minmax(300px, 386px) minmax(0, 1fr);
  min-height: 350px;
  background: rgba(255,255,255,0.035);
}

#section-noteworthy .latest-card-art {
  aspect-ratio: 1 / 1;
  align-self: stretch;
}

#section-noteworthy .latest-card-art img {
  object-fit: contain;
  object-position: center;
}

#section-noteworthy .latest-card:hover .latest-card-art img {
  transform: none;
  filter: brightness(0.82) saturate(0.94) contrast(1.02);
}

#section-noteworthy .latest-card-body {
  padding: clamp(1.25rem, 2.4vw, 2rem);
  position: relative;
  z-index: 2;
  min-width: 0;
  background: linear-gradient(90deg, rgba(24,24,26,0.98), rgba(24,24,26,0.92));
}

#section-noteworthy .latest-card-body h3,
#section-noteworthy .latest-card-body > p {
  display: none;
}

.latest-tracklist {
  display: grid;
  gap: 0;
  counter-reset: tracks;
  list-style: none;
  margin: 0;
  padding: 0;
}

.latest-tracklist li {
  counter-increment: tracks;
  display: grid;
  grid-template-columns: 2.2rem 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  color: #d7cec7;
  border-bottom: 1px solid rgba(255,255,255,0.075);
}

.latest-tracklist li::before {
  content: counter(tracks, decimal-leading-zero);
  color: var(--text-dim);
  font-size: 0.68rem;
}

.latest-tracklist li:nth-child(2) {
  color: var(--pink);
}

.latest-tracklist span {
  font-size: 0.83rem;
  font-weight: 800;
}

.latest-tracklist em {
  color: #756f75;
  font-size: 0.75rem;
  font-style: normal;
}

.spotify-playlist-embed {
  display: block;
  width: 100%;
  min-height: 352px;
  border: 0;
  border-radius: 12px;
  background: #121212;
}

@media (max-width: 980px) {
  .hero-content,
  #section-noteworthy .container {
    grid-template-columns: 1fr;
  }

  .curated-shelf {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-studio {
    min-height: 460px;
  }

  .hero-console-image {
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    mask-image: linear-gradient(180deg, #000 0%, #000 100%);
  }
}

@media (max-width: 700px) {
  .nav-logo {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.94rem;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 18vw, 5.4rem);
  }

  .hero-studio {
    min-height: 360px;
  }

  .now-playing-card {
    width: calc(100% - 2rem);
    grid-template-columns: minmax(6.5rem, 32%) minmax(0, 1fr);
  }

  #section-noteworthy .latest-card {
    grid-template-columns: 1fr;
  }

  .curated-shelf {
    gap: 1.1rem;
  }

  .shelf-card-meta h3 {
    font-size: 0.9rem;
  }
}

/* ============================================================
   Section rhythm pass: compact, even spacing between blocks
   ============================================================ */

:root {
  --section-pad: clamp(3.5rem, 5.4vw, 6rem);
  --section-header-gap: clamp(1.35rem, 2.2vw, 2.1rem);
  --card-pad: clamp(1rem, 2vw, 1.55rem);
}

.home-section,
.featured-video,
.featured-album,
.about-strip,
.newsletter {
  padding-block: var(--section-pad);
  margin: 0;
}

.section-header {
  margin-bottom: var(--section-header-gap);
}

.section-header h2 {
  font-size: clamp(2.35rem, 4vw, 4rem);
}

.section-header p {
  margin-top: 0.45rem;
}

#section-noteworthy .container {
  gap: clamp(1.5rem, 3.4vw, 3.25rem);
}

#section-noteworthy .section-header .btn {
  margin-top: 1.15rem;
}

#section-noteworthy .latest-card {
  min-height: 300px;
}

#section-noteworthy .latest-card-body,
.featured-video-inner,
.featured-album-inner,
.about-strip-inner {
  padding: var(--card-pad);
}

.latest-tracklist li {
  padding: 0.78rem 0;
}

.featured-video-inner,
.featured-album-inner {
  gap: clamp(1.4rem, 3vw, 3rem);
}

.featured-video-meta,
.featured-album-meta {
  gap: 0.75rem;
}

.featured-video-meta h2,
.featured-album-meta h2,
.about-strip h2,
.newsletter h2 {
  font-size: clamp(2rem, 3.3vw, 3.45rem);
}

.featured-video-meta > p:last-of-type,
.featured-album-meta > p:last-of-type,
.about-strip p,
.newsletter p {
  line-height: 1.55;
}

.curated-shelf {
  gap: clamp(0.9rem, 1.7vw, 1.2rem);
}

.shelf-card-meta {
  padding-top: 0.65rem;
}

.featured-album-art img {
  aspect-ratio: auto;
  object-fit: contain;
}

.about-strip-inner {
  gap: clamp(1.5rem, 3vw, 3rem);
}

.newsletter-inner {
  padding: clamp(1.7rem, 3.8vw, 3.2rem);
}

.home-section .section-header > div {
  flex: 1 1 0;
  min-width: min(100%, 22rem);
}

.home-section .section-header p,
.featured-video-meta > p:last-of-type,
.featured-album-meta > p:last-of-type,
.about-strip p,
.newsletter p {
  max-width: 100%;
}

.footer {
  padding-block: 1rem;
}

@media (max-width: 700px) {
  :root {
    --section-pad: clamp(2.75rem, 12vw, 4rem);
    --section-header-gap: 1.25rem;
  }

  .featured-video-inner,
  .featured-album-inner,
  .about-strip-inner {
    gap: 1.1rem;
  }

  .latest-tracklist li {
    padding: 0.72rem 0;
  }
}

/* ============================================================
   Mobile hero: simplified editorial stack
   ============================================================ */

@media (max-width: 700px) {
  .hero {
    min-height: auto;
    padding-top: 6.6rem;
    padding-bottom: 2.5rem;
  }

  .hero::after {
    height: 34%;
  }

  .hero-bg {
    background:
      radial-gradient(circle at 18% 18%, rgba(251,58,100,0.17), transparent 15rem),
      radial-gradient(circle at 82% 10%, rgba(240,191,106,0.12), transparent 14rem),
      linear-gradient(180deg, rgba(255,255,255,0.028), transparent 68%);
  }

  .hero-content {
    display: block;
    position: relative;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-eyebrow {
    margin-bottom: 0.85rem;
  }

  .hero h1 {
    max-width: 7.4ch;
    font-size: clamp(3.8rem, 17vw, 5rem);
    line-height: 0.9;
  }

  .hero-sub {
    max-width: none;
    margin-top: 1.2rem;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 1.45rem;
  }

  .hero-actions .btn {
    width: fit-content;
    max-width: 100%;
    min-height: 46px;
    padding-inline: 1rem;
    font-size: 0.74rem;
  }

  .hero-studio {
    position: relative;
    inset: auto;
    min-height: 0;
    margin-top: 1rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    pointer-events: auto;
  }

  .hero-console-image {
    display: none;
  }

  .now-playing-card {
    --now-playing-art-size: 5.9rem;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 5.9rem;
    grid-template-columns: var(--now-playing-art-size) minmax(0, 1fr);
    border-color: rgba(255,255,255,0.1);
    background: rgba(10,10,12,0.82);
    box-shadow: 0 16px 34px rgba(0,0,0,0.34);
  }

  .now-playing-meta {
    padding: 0.62rem 0.78rem;
    gap: 0.18rem;
  }

  .now-playing-card span {
    font-size: 0.52rem;
    letter-spacing: 0.15em;
  }

  .now-playing-card strong {
    font-size: 0.9rem;
  }

  .now-playing-card small {
    font-size: 0.68rem;
  }

  .signal-bars {
    width: min(100%, 7.4rem);
    height: 20px;
    margin-top: 0.1rem;
  }

  .control-icons {
    min-width: 4.6rem;
    gap: 0.6rem;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(3.45rem, 16.4vw, 4.45rem);
  }

  .now-playing-card {
    --now-playing-art-size: 5.35rem;
    grid-template-columns: var(--now-playing-art-size) minmax(0, 1fr);
    min-height: 5.35rem;
  }
}

/* ============================================================
   Scroll polish pass: vintage album-wall parallax and editorial motion
   ============================================================ */

.scroll-section {
  --scroll-signed: 0;
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.home-page {
  position: relative;
  background: #070708;
}

.home-page > .hero,
.home-page > .scroll-section,
.home-page > .about-strip,
.home-page > .newsletter,
.home-page > .footer {
  position: relative;
  z-index: 1;
}

.scroll-section > .container {
  position: relative;
  z-index: 2;
}

.scroll-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7,7,8,0.56), rgba(7,7,8,0.18) 48%, rgba(7,7,8,0.56)),
    radial-gradient(circle at 50% 50%, transparent, rgba(7,7,8,0.38) 78%);
}

.album-wall-global {
  --global-wall-shift: 0px;
  position: fixed;
  inset: -14vh -8vw;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(7,7,8,0.08), rgba(7,7,8,0.2)),
    url('assets/generated/vintage-album-wallpaper.png');
  background-position: center, center calc(50% + var(--global-wall-shift));
  background-repeat: no-repeat, repeat-x;
  background-size: auto, 72% auto;
  filter: sepia(0.12) saturate(0.94) contrast(1.06) brightness(0.9);
  opacity: 0.92;
  transform:
    translateZ(0)
    scale(1.08);
  will-change: transform;
}

.album-wall-global::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,7,8,0.12), transparent 28%, transparent 72%, rgba(7,7,8,0.18)),
    repeating-linear-gradient(90deg, transparent 0 112px, rgba(255,255,255,0.035) 113px, transparent 114px);
  mix-blend-mode: screen;
  opacity: 0.28;
}

#section-noteworthy.scroll-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(255,79,115,0.22), transparent 25rem),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015)),
    rgba(16,16,18,0.42);
}

#section-curated.scroll-section {
  background:
    radial-gradient(circle at 18% 24%, rgba(166,109,255,0.2), transparent 24rem),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012)),
    rgba(15,15,19,0.42);
}

#section-guestlist.scroll-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(70,200,244,0.18), transparent 25rem),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012)),
    rgba(13,16,18,0.42);
}

.featured-video.scroll-section,
.featured-album.scroll-section {
  min-height: clamp(600px, 88svh, 820px);
  display: grid;
  align-items: center;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.featured-video.scroll-section {
  background:
    radial-gradient(circle at 18% 46%, rgba(82,214,189,0.13), transparent 24rem),
    linear-gradient(180deg, rgba(8,8,9,0.54), rgba(16,16,18,0.42));
}

.featured-album.scroll-section {
  background:
    radial-gradient(circle at 78% 44%, rgba(240,191,106,0.16), transparent 24rem),
    linear-gradient(180deg, rgba(16,16,18,0.42), rgba(8,8,9,0.54));
}

.sticky-feature .featured-video-inner,
.sticky-feature .featured-album-inner {
  --sticky-shift: 0px;
  --sticky-scale: 1;
  position: sticky;
  top: 96px;
  transform:
    translate3d(0, var(--sticky-shift), 0)
    scale(var(--sticky-scale));
  will-change: transform;
}

.featured-video-inner,
.featured-album-inner,
#section-noteworthy .latest-card {
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
}

.featured-video-embed,
.featured-album-art,
.latest-card-art,
.shelf-card-art {
  position: relative;
  transform: translateZ(0);
}

.featured-video-embed::before,
.featured-album-art::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 0 36%, rgba(255,255,255,0.13) 48%, transparent 60%);
  opacity: 0;
  transform: translateX(-55%);
  transition: opacity var(--t-med), transform 700ms var(--ease);
}

.featured-video-embed:hover::before,
.featured-album-art:hover::before {
  opacity: 1;
  transform: translateX(55%);
}

.curated-shelf {
  perspective: 1100px;
}

.shelf-card {
  --shelf-offset: 0px;
  --shelf-shift: 0px;
  transform:
    translate3d(0, var(--shelf-shift), 0)
    rotateX(0deg);
  transform-origin: center bottom;
  transition: transform var(--t-med), filter var(--t-med);
  will-change: transform;
}

.shelf-card:nth-child(1) { --shelf-offset: -18px; }
.shelf-card:nth-child(2) { --shelf-offset: 22px; }
.shelf-card:nth-child(3) { --shelf-offset: -26px; }
.shelf-card:nth-child(4) { --shelf-offset: 18px; }

.shelf-card:hover {
  transform:
    translate3d(0, -8px, 0)
    rotateX(4deg);
  filter: drop-shadow(0 26px 34px rgba(0,0,0,0.26));
}

.shelf-card-art {
  transition: transform var(--t-med), border-color var(--t-fast), box-shadow var(--t-med);
}

.shelf-card:hover .shelf-card-art {
  border-color: rgba(240,191,106,0.32);
  box-shadow: 0 30px 70px rgba(0,0,0,0.46), 0 0 42px rgba(240,191,106,0.07);
}

.shelf-card.reveal {
  transition-delay: 0ms;
}

.curated-shelf .shelf-card:nth-child(2) { transition-delay: 65ms; }
.curated-shelf .shelf-card:nth-child(3) { transition-delay: 130ms; }
.curated-shelf .shelf-card:nth-child(4) { transition-delay: 195ms; }

@media (max-width: 980px) {
  .album-wall-global {
    background-size: auto, 112% auto;
    transform:
      translateZ(0)
      scale(1.12);
  }

  .sticky-feature .featured-video-inner,
  .sticky-feature .featured-album-inner {
    position: relative;
    top: auto;
    transform: none;
  }

  .featured-video.scroll-section,
  .featured-album.scroll-section {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .scroll-section::before {
    background:
      linear-gradient(90deg, rgba(7,7,8,0.84), rgba(7,7,8,0.58)),
      radial-gradient(circle at 50% 50%, transparent, rgba(7,7,8,0.66));
  }

  .album-wall-global {
    inset: -8vh -52vw;
    opacity: 0.46;
    background-size: auto, 154% auto;
    background-position: center, center calc(50% + var(--global-wall-shift));
    transform:
      translateZ(0)
      scale(1.04);
  }

  .featured-video.scroll-section,
  .featured-album.scroll-section {
    padding-block: var(--section-pad);
  }

  .shelf-card,
  .shelf-card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .album-wall-global,
  .sticky-feature .featured-video-inner,
  .sticky-feature .featured-album-inner,
  .shelf-card,
  .shelf-card:hover {
    transform: none;
    will-change: auto;
  }
}

/* Noteworthy page: preserve square feature artwork */
[data-page="noteworthy"] .noteworthy-duo .playlist-card-art {
  aspect-ratio: 1 / 1;
}

[data-page="noteworthy"] .noteworthy-duo .playlist-card-art img {
  object-fit: cover;
  object-position: center;
}

/* Homepage Noteworthy: keep the featured cover fully visible at cramped widths. */
#section-noteworthy .latest-card-art {
  overflow: hidden;
  min-width: 0;
  width: 100%;
  align-self: center;
  box-sizing: border-box;
  padding: clamp(0.55rem, 0.9vw, 0.8rem);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.015)),
    #09090a;
}

#section-noteworthy .latest-card-art img,
#section-noteworthy .latest-card:hover .latest-card-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  transform: none;
}

#section-noteworthy .latest-card {
  column-gap: clamp(0.7rem, 1vw, 1rem);
}

@media (max-width: 1120px) {
  #section-noteworthy .latest-card {
    grid-template-columns: minmax(0, 1fr);
    max-width: min(100%, 40rem);
    margin-inline: auto;
  }

  #section-noteworthy .latest-card-art {
    width: 100%;
    aspect-ratio: 1 / 1;
    align-self: auto;
  }

  #section-noteworthy .latest-card-body {
    border-top: 1px solid rgba(255,255,255,0.08);
  }
}
