/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  SilverStream V2 — Pitch-black nocturnal music platform              ║
   ║  Reference: Suno (dark studio, neon pulses, warm haze)               ║
   ║  Fonts:     Bricolage Grotesque + Onest + DM Serif Display           ║
   ║  Differentiator: huge spinning vinyl as hero icon, headline overlay  ║
   ╚══════════════════════════════════════════════════════════════════════╝ */

/* ── Reset ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; padding: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; font-family: inherit; }

/* ── Tokens ──────────────────────────────────────────────────────────── */
:root {
  /* Surface — pitch-black + slightly warmer card tones */
  --pitch:        #0A0608;
  --void:         #110A0D;
  --void-2:       #15090C;
  --smoke:        #1F1015;
  --steam:        #2C1820;

  /* Text */
  --ghost:        #F0E7D5;
  --ghost-bright: #FFFFFF;
  --ash:          #A89B89;
  --ash-deep:     #6F6358;
  --faint:        #463D34;

  /* Single warm accent system */
  --copper:       #B16E3F;
  --copper-bright:#E8B26B;
  --copper-deep:  #6E4124;
  --amber:        #F5A742;
  --ember:        #D14F6B;

  /* Gradient — the "Create" of SilverStream */
  --grad-warm:    linear-gradient(90deg, #E8B26B 0%, #F5A742 45%, #D14F6B 100%);
  --grad-warm-x:  linear-gradient(115deg, #E8B26B 0%, #F5A742 50%, #D14F6B 100%);

  /* Lines */
  --line:         rgba(240, 231, 213, 0.08);
  --line-strong:  rgba(240, 231, 213, 0.18);
  --line-bright:  rgba(240, 231, 213, 0.40);

  /* Type */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body:    "Onest", system-ui, -apple-system, sans-serif;
  --font-serif:   "DM Serif Display", "Cormorant Garamond", Georgia, serif;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.30, 1);
  --ease-out-quart:cubic-bezier(0.25, 1, 0.5, 1);

  /* Layout */
  --container:    1320px;
  --gutter:       clamp(1.25rem, 4vw, 3.5rem);
  --section-pad:  clamp(6rem, 12vw, 11rem);
  --nav-h:        72px;

  /* Tracking */
  --tracking-display: -0.045em;
  --tracking-body:    -0.005em;
}

/* ── Base ────────────────────────────────────────────────────────────── */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--pitch);
  color: var(--ghost);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.55;
  letter-spacing: var(--tracking-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-bottom: 110px;
  position: relative;
  font-variation-settings: "wght" 400;
}

::selection {
  background: var(--copper-bright);
  color: var(--pitch);
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--pitch); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(240, 231, 213, 0.18), rgba(232, 178, 107, 0.18));
  border: 2px solid var(--pitch);
  border-radius: 8px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  ATMOSPHERE — fixed-position blooms + grain (the Suno warmth)         ║
   ╚══════════════════════════════════════════════════════════════════════╝ */
.atmos {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.atmos__bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  will-change: transform;
}
.atmos__bloom--a {
  top: -25%; left: -10%;
  width: 900px; height: 900px;
  background: radial-gradient(closest-side, rgba(232, 178, 107, 0.22), transparent 70%);
  animation: float-a 24s ease-in-out infinite;
}
.atmos__bloom--b {
  top: 40%; right: -15%;
  width: 800px; height: 800px;
  background: radial-gradient(closest-side, rgba(209, 79, 107, 0.14), transparent 70%);
  animation: float-b 30s ease-in-out infinite;
}
.atmos__bloom--c {
  bottom: -20%; left: 35%;
  width: 700px; height: 700px;
  background: radial-gradient(closest-side, rgba(245, 167, 66, 0.10), transparent 70%);
  animation: float-c 28s ease-in-out infinite;
}
@keyframes float-a {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50%      { transform: translate3d(40px,30px,0) scale(1.06); }
}
@keyframes float-b {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50%      { transform: translate3d(-50px,-20px,0) scale(0.95); }
}
@keyframes float-c {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50%      { transform: translate3d(20px,-30px,0) scale(1.04); }
}
.atmos__grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 0.85 0 0 0 0 0.6 0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Foreground above the fixed atmosphere */
body > * { position: relative; z-index: 1; }

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  TYPE                                                                 ║
   ╚══════════════════════════════════════════════════════════════════════╝ */
.display, .closer__title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: var(--tracking-display);
  line-height: 0.93;
  color: var(--ghost-bright);
  font-variation-settings: "wght" 600, "wdth" 95, "opsz" 96;
  margin: 1rem 0 0;
}
.display em, .closer__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* Sit slightly larger on the line — DM Serif Display has compact em */
  vertical-align: -0.02em;
}

.display { font-size: clamp(2.75rem, 7.5vw, 6.5rem); }
.closer__title {
  font-size: clamp(3rem, 10vw, 8rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  white-space: nowrap;
}
.kicker--quiet { color: var(--ash-deep); font-weight: 500; }
.kicker .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--copper-bright);
  border-right: 1px solid var(--line-strong);
  padding-right: 0.65rem;
  margin-right: 0.1rem;
}

.sub {
  margin: 1.25rem 0 0;
  color: var(--ash);
  max-width: 38em;
  font-size: 1.05rem;
  line-height: 1.65;
}
.sub em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--copper-bright);
}

.lede {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.5;
  color: var(--ghost);
  letter-spacing: -0.015em;
  max-width: 30em;
  font-weight: 400;
}
.lede em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--copper-bright);
}

.mono { font-family: var(--font-body); font-feature-settings: "tnum"; font-variant-numeric: tabular-nums; }
.dim { color: var(--ash-deep); }

/* Pulse dot */
.dot {
  position: relative;
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--copper-bright);
  box-shadow: 0 0 14px rgba(232, 178, 107, 0.85);
}
.dot::after {
  content: "";
  position: absolute; inset: -5px;
  border-radius: 999px;
  border: 1px solid rgba(232, 178, 107, 0.4);
  animation: pulse-soft 2.4s ease-in-out infinite;
}
.dot--bright { box-shadow: 0 0 18px rgba(232, 178, 107, 1); }
@keyframes pulse-soft {
  0%, 100% { transform: scale(1);    opacity: 0.5; }
  50%      { transform: scale(1.4);  opacity: 1; }
}

/* Reveal-on-scroll. Only kicks in when JS is running (.has-js on <html>).
   Without JS, .reveal stays visible so content can never be stuck hidden. */
.has-js .reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 1s var(--ease-out-expo) var(--reveal-delay, 0ms),
    transform 1s var(--ease-out-expo) var(--reveal-delay, 0ms);
}
.has-js .reveal.in { opacity: 1; transform: none; }
@media print { .reveal { opacity: 1 !important; transform: none !important; } }

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  CTAs                                                                 ║
   ╚══════════════════════════════════════════════════════════════════════╝ */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  transition: all 320ms var(--ease-out-expo);
  position: relative;
  isolation: isolate;
  cursor: pointer;
  white-space: nowrap;
}
.cta--sm  { padding: 0.55rem 1rem; font-size: 12px; gap: 0.5rem; }
.cta--lg  { padding: 1.05rem 1.75rem; font-size: 15px; }

/* Gradient — the "Create" of SilverStream */
.cta--gradient {
  background: var(--grad-warm);
  background-size: 200% 100%;
  color: var(--pitch);
  box-shadow:
    0 0 0 1px rgba(232, 178, 107, 0.3),
    0 25px 60px -25px rgba(232, 178, 107, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.cta--gradient:hover {
  background-position: 100% 0;
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(232, 178, 107, 0.5),
    0 32px 70px -25px rgba(232, 178, 107, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.cta--gradient::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--grad-warm);
  filter: blur(18px);
  opacity: 0.5;
  z-index: -1;
  transition: opacity 320ms;
}
.cta--gradient:hover::before { opacity: 0.85; }

.cta--ghost {
  background: transparent;
  color: var(--ghost);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}
.cta--ghost:hover {
  color: var(--copper-bright);
  box-shadow: inset 0 0 0 1px var(--copper-bright);
  transform: translateY(-1px);
}

/* Play icon swap */
.cta__icon { position: relative; display: inline-grid; place-items: center; width: 18px; height: 18px; }
.cta__icon--pause { position: absolute; opacity: 0; }
.cta.is-playing .cta__icon--play  { opacity: 0; }
.cta.is-playing .cta__icon--pause { opacity: 1; }
.cta__dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--pitch);
  box-shadow: 0 0 0 2px rgba(10, 6, 8, 0.4);
}

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  NAV                                                                  ║
   ╚══════════════════════════════════════════════════════════════════════╝ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 6, 8, 0.65);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--nav-h);
  gap: 2rem;
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ghost-bright);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.035em;
}
.brand__pulse {
  position: relative;
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 999px;
  background: var(--grad-warm);
  box-shadow: 0 0 12px rgba(232, 178, 107, 0.8);
}
.brand__pulse::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 999px;
  border: 1px solid rgba(232, 178, 107, 0.5);
  animation: pulse-soft 2.4s ease-in-out infinite;
}

.nav__links {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--ash);
}
.nav__links > a {
  position: relative;
  padding: 0.3rem 0;
  transition: color 220ms var(--ease-out-expo);
}
.nav__links > a:hover { color: var(--ghost-bright); }
.nav__links > a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--grad-warm);
  transition: right 320ms var(--ease-out-expo);
}
.nav__links > a:hover::after { right: 0; }
@media (max-width: 760px) {
  .nav__links { display: none; }
}

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  HERO — vinyl-centric                                                 ║
   ╚══════════════════════════════════════════════════════════════════════╝ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 5vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}

/* Corner chrome */
.hero__edge {
  position: absolute;
  z-index: 4;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
}
.hero__edge em {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  color: var(--copper-bright);
}
.hero__edge .dim { color: var(--ash-deep); margin: 0 0.3em; }
.hero__edge--tl { top: clamp(1.2rem, 2.5vw, 2.25rem); left: var(--gutter); }
.hero__edge--tr { top: clamp(1.2rem, 2.5vw, 2.25rem); right: var(--gutter); }

/* Centered vinyl stage — sits BEHIND the headline (z-index 0), not in front.
   Smaller + dimmer so the type stays the lead. */
.vinyl-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.vinyl {
  position: relative;
  width: clamp(360px, 48vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 50%,
      transparent 0, transparent 2.5px,
      rgba(240, 231, 213, 0.022) 3px, rgba(240, 231, 213, 0.022) 3.5px
    ),
    radial-gradient(circle at 50% 50%,
      #1F1115 0%,
      #110608 50%,
      #050202 100%
    );
  box-shadow:
    inset 0 0 80px rgba(0,0,0,0.8),
    0 80px 160px -40px rgba(0,0,0,0.95),
    0 0 0 1px rgba(240, 231, 213, 0.06);
  /* Always spinning, slowly, in the background. Speeds up when playing. */
  animation: spin 45s linear infinite;
  will-change: transform;
}
body.is-playing .vinyl { animation-duration: 14s; }
@keyframes spin { to { transform: rotate(360deg); } }

.vinyl__sheen {
  position: absolute; inset: 0;
  border-radius: 50%;
  pointer-events: none;
  background:
    conic-gradient(
      from 0deg,
      transparent 0deg,
      rgba(232, 178, 107, 0.10) 30deg,
      transparent 90deg,
      transparent 180deg,
      rgba(232, 178, 107, 0.08) 220deg,
      transparent 280deg,
      transparent 360deg
    );
}
.vinyl__rings {
  position: absolute; inset: 0;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, transparent 27%, rgba(240, 231, 213, 0.05) 27.5%, transparent 28%),
    radial-gradient(circle at 50% 50%, transparent 35%, rgba(240, 231, 213, 0.05) 35.5%, transparent 36%),
    radial-gradient(circle at 50% 50%, transparent 43%, rgba(240, 231, 213, 0.05) 43.5%, transparent 44%);
}
.vinyl__label {
  position: absolute;
  inset: 42%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--copper-deep), #2A1410 80%);
  color: var(--copper-bright);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.10),
    inset 0 -2px 6px rgba(0,0,0,0.5);
}
.vinyl__label-top {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.85;
}
.vinyl__label-em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  margin: 0.1em 0;
}
.vinyl__label-bot {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.7;
}
.vinyl__spindle {
  position: absolute;
  inset: 48.5%;
  border-radius: 50%;
  background: var(--pitch);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.9);
}

/* Hero portrait — Darin in the studio, anchored bottom-right */
.hero__portrait {
  position: absolute;
  bottom: 4%;
  right: -6%;
  width: clamp(280px, 28vw, 440px);
  aspect-ratio: 16 / 10;
  margin: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 60px 120px -30px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(240, 231, 213, 0.10);
  border: 1px solid var(--line-strong);
  transform: rotate(-2deg);
  opacity: 0.92;
}
.hero__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 6, 8, 0.4) 100%);
  pointer-events: none;
}
@media (max-width: 980px) {
  .hero__portrait { display: none; }
}

/* Floating track cards around the vinyl */
.float-cards { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.float-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.95rem 1.15rem;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(240, 231, 213, 0.08) 0%, rgba(240, 231, 213, 0.03) 100%),
    rgba(20, 10, 14, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--line-strong);
  box-shadow:
    0 30px 70px -30px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: var(--ghost);
  font-size: 12.5px;
  min-width: 180px;
  pointer-events: auto;
  transition: transform 600ms var(--ease-out-expo);
  animation: float 9s ease-in-out infinite;
}
.float-card:hover { transform: rotate(0deg) translateY(-4px) scale(1.03); }
.float-card__pulse {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--copper-bright);
  box-shadow: 0 0 10px var(--copper-bright);
  position: absolute;
  top: 12px; right: 12px;
  animation: pulse-soft 2.4s ease-in-out infinite;
}
.float-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-bright);
}
.float-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.025em;
  color: var(--ghost-bright);
  line-height: 1.1;
}
.float-card__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.float-card__meta {
  color: var(--ash-deep);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes float {
  0%, 100% { transform: rotate(var(--rot, -4deg)) translateY(0); }
  50%      { transform: rotate(var(--rot, -4deg)) translateY(-6px); }
}

.float-card--a {
  --rot: -8deg;
  top: 18%;
  left: 5%;
  animation-delay: -1s;
}
.float-card--b {
  --rot: 6deg;
  top: 8%;
  right: 6%;
  animation-delay: -3s;
}
.float-card--c {
  --rot: -3deg;
  bottom: 18%;
  right: 12%;
  animation-delay: -5s;
}
@media (max-width: 980px) {
  .float-card { display: none; }
}

/* Hero content overlays the vinyl */
.hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) 0;
  min-height: inherit;
  justify-content: center;
  gap: 1rem;
  isolation: isolate;
}
/* Soft black wash behind the headline so the vinyl doesn't poke through the letterforms */
.hero__inner::before {
  content: "";
  position: absolute;
  inset: 8% 10%;
  z-index: -1;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(10, 6, 8, 0.75), transparent 75%);
  pointer-events: none;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 1rem;
  background: rgba(20, 10, 14, 0.65);
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
}
.hero__kicker .dim { color: var(--faint); }

.hero__title {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 11vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  color: var(--ghost-bright);
  font-variation-settings: "wght" 700, "wdth" 95, "opsz" 96;
  text-shadow: 0 0 80px rgba(245, 167, 66, 0.20);
}
.hero__title .line { display: block; }
.hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.025em;
  background: var(--grad-warm-x);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__title .line--mirror em {
  background: linear-gradient(115deg, #D14F6B 0%, #F5A742 50%, #E8B26B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lede {
  margin: 1.5rem 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ash);
  max-width: 36em;
  line-height: 1.6;
}

.hero__cta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  TICKER strip                                                         ║
   ╚══════════════════════════════════════════════════════════════════════╝ */
.ticker {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(20, 10, 14, 0.4);
}
.ticker::before, .ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  pointer-events: none;
  z-index: 2;
}
.ticker::before { left: 0;  background: linear-gradient(90deg, var(--pitch), transparent); }
.ticker::after  { right: 0; background: linear-gradient(270deg, var(--pitch), transparent); }

.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  animation: ticker 44s linear infinite;
  will-change: transform;
}
.ticker__item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
  color: var(--ghost);
  font-variation-settings: "wght" 700, "wdth" 95;
}
.ticker__item em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: var(--grad-warm-x);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ticker__sep {
  color: var(--copper);
  font-size: 0.65rem;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  SECTION SHELL                                                        ║
   ╚══════════════════════════════════════════════════════════════════════╝ */
.section {
  position: relative;
  padding: var(--section-pad) 0;
  isolation: isolate;
}
.head { max-width: 38rem; margin-bottom: clamp(3rem, 6vw, 5rem); }
.head--center { max-width: 48rem; margin: 0 auto clamp(3.5rem, 7vw, 5rem); text-align: center; }
.head .display { margin-top: 1.25rem; }

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  PLAYER  (Listen Live)                                                ║
   ╚══════════════════════════════════════════════════════════════════════╝ */
.player {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(240, 231, 213, 0.04) 0%, rgba(240, 231, 213, 0.015) 100%), var(--void-2);
  border: 1px solid var(--line-strong);
  box-shadow:
    0 50px 100px -40px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(240, 231, 213, 0.06);
}
@media (min-width: 900px) {
  .player { grid-template-columns: 1fr 1.1fr; }
}

.player__art {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 3rem;
  background:
    radial-gradient(ellipse 70% 50% at 30% 80%, rgba(232, 178, 107, 0.30), transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(209, 79, 107, 0.20), transparent 70%),
    linear-gradient(135deg, #1F1015 0%, #110608 80%);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) {
  .player__art {
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }
}
.player__shine {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 30% at 50% 0%, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 2;
}

/* Real photo fills the art panel */
.player__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.1) contrast(1.05);
}

/* Editorial overlay on top of the photo */
.player__photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 2rem;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(10, 6, 8, 0.0) 30%, rgba(10, 6, 8, 0.85) 100%),
    linear-gradient(135deg, rgba(10, 6, 8, 0.5) 0%, transparent 50%);
}
.player__photo-overlay .player__sleeve-corner {
  position: absolute;
  top: 1.25rem; left: 1.5rem;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper-bright);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.player__photo-overlay .player__sleeve-corner--br {
  top: auto; left: auto;
  right: 1.5rem; bottom: 1.25rem;
  color: var(--ghost);
}
.player__photo-overlay .player__sleeve-title {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--ghost-bright);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
  align-self: flex-start;
}
.player__photo-overlay .player__sleeve-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: var(--grad-warm-x);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.player__photo-overlay .player__sleeve-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 0.5rem;
  align-self: flex-start;
}

/* Sleeve */
.player__sleeve {
  position: relative;
  width: clamp(240px, 60%, 340px);
  aspect-ratio: 1;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, var(--copper-bright), var(--copper) 55%, var(--copper-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  color: var(--pitch);
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.8),
    inset 0 2px 4px rgba(255,255,255,0.4),
    inset 0 -3px 12px rgba(0,0,0,0.35);
}
.player__sleeve-corner {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.7;
}
.player__sleeve-corner--br {
  top: auto; left: auto;
  right: 1rem; bottom: 1rem;
}
.player__sleeve-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-align: center;
}
.player__sleeve-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.player__sleeve-sub {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.7;
  white-space: nowrap;
}

.player__copy {
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.player__title {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.055em;
  line-height: 0.92;
  color: var(--ghost-bright);
  font-variation-settings: "wght" 700, "wdth" 95;
}
.player__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: var(--grad-warm-x);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.player__sub {
  margin: 0.5rem 0 0;
  color: var(--ash);
  font-size: 1.04rem;
  line-height: 1.6;
  max-width: 32em;
}

/* EQ */
.eq {
  margin-top: 1.25rem;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 56px;
}
.eq > span {
  display: block;
  flex: 1;
  border-radius: 2px;
  background: var(--grad-warm);
  transform-origin: bottom;
  transform: scaleY(0.18);
  opacity: 0.85;
  transition: transform 200ms var(--ease-out-expo);
}
body.is-playing .eq > span {
  animation: bounce var(--bd, 0.9s) ease-in-out infinite alternate;
}
.eq > span:nth-child(1)  { --bd: 0.7s; animation-delay: -0.10s; }
.eq > span:nth-child(2)  { --bd: 0.9s; animation-delay: -0.30s; }
.eq > span:nth-child(3)  { --bd: 0.5s; animation-delay: -0.20s; }
.eq > span:nth-child(4)  { --bd: 1.1s; animation-delay: -0.40s; }
.eq > span:nth-child(5)  { --bd: 0.65s;animation-delay: -0.15s; }
.eq > span:nth-child(6)  { --bd: 0.8s; animation-delay: -0.05s; }
.eq > span:nth-child(7)  { --bd: 1.0s; animation-delay: -0.50s; }
.eq > span:nth-child(8)  { --bd: 0.55s;animation-delay: -0.25s; }
.eq > span:nth-child(9)  { --bd: 0.95s;animation-delay: -0.35s; }
.eq > span:nth-child(10) { --bd: 0.7s; animation-delay: -0.45s; }
.eq > span:nth-child(11) { --bd: 1.05s;animation-delay: -0.15s; }
.eq > span:nth-child(12) { --bd: 0.6s; animation-delay: -0.55s; }
.eq > span:nth-child(13) { --bd: 0.85s;animation-delay: -0.05s; }
.eq > span:nth-child(14) { --bd: 0.5s; animation-delay: -0.30s; }
.eq > span:nth-child(15) { --bd: 0.95s;animation-delay: -0.20s; }
.eq > span:nth-child(16) { --bd: 1.0s; animation-delay: -0.40s; }
.eq > span:nth-child(17) { --bd: 0.55s;animation-delay: -0.50s; }
.eq > span:nth-child(18) { --bd: 0.7s; animation-delay: -0.15s; }
.eq > span:nth-child(19) { --bd: 0.9s; animation-delay: -0.35s; }
.eq > span:nth-child(20) { --bd: 0.65s;animation-delay: -0.25s; }
@keyframes bounce {
  from { transform: scaleY(0.20); opacity: 0.7; }
  to   { transform: scaleY(1.0);  opacity: 1; }
}

/* Scrubber */
.scrub { margin-top: 1.25rem; }
.scrub__bar {
  position: relative;
  height: 2px;
  background: rgba(240, 231, 213, 0.12);
  border-radius: 2px;
}
.scrub__fill {
  display: block;
  height: 100%;
  width: 24%;
  background: var(--grad-warm);
  border-radius: 2px;
  transition: width 600ms linear;
  box-shadow: 0 0 12px rgba(232, 178, 107, 0.6);
}
.scrub__dot {
  position: absolute;
  top: 50%; left: 24%;
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--copper-bright);
  box-shadow: 0 0 10px rgba(232, 178, 107, 0.8);
  transition: left 600ms linear;
}
.scrub__meta {
  display: flex; justify-content: space-between;
  margin-top: 0.6rem;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ghost);
}

/* Controls */
.player__ctl {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.ctl {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(240, 231, 213, 0.05);
  border: 1px solid var(--line-strong);
  color: var(--ghost);
  transition: all 220ms var(--ease-out-expo);
}
.ctl:hover:not(:disabled) {
  border-color: var(--copper-bright);
  color: var(--copper-bright);
}
.ctl:disabled { opacity: 0.4; cursor: not-allowed; }
.ctl--primary {
  width: 56px; height: 56px;
  background: var(--grad-warm);
  color: var(--pitch);
  border-color: transparent;
  box-shadow: 0 12px 30px -8px rgba(232, 178, 107, 0.6);
}
.ctl--primary:hover:not(:disabled) {
  transform: scale(1.06);
}
.ctl__pause { display: none; }
.is-playing .ctl--primary .ctl__play  { display: none; }
.is-playing .ctl--primary .ctl__pause { display: block; }
.vol {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  color: var(--ash);
}
.vol__bar {
  width: 80px; height: 2px;
  background: rgba(240, 231, 213, 0.12);
  border-radius: 2px;
}
.vol__fill {
  display: block; height: 100%;
  width: 64%;
  background: var(--ghost);
  border-radius: 2px;
}

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  SERVICES — floating dark cards                                        ║
   ╚══════════════════════════════════════════════════════════════════════╝ */
.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px)  { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1180px) { .card-grid { grid-template-columns: repeat(4, 1fr); } }

.card {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(240, 231, 213, 0.04) 0%, rgba(240, 231, 213, 0.015) 100%), var(--void-2);
  border: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 320ms var(--ease-out-expo);
  overflow: hidden;
  isolation: isolate;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(232, 178, 107, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 320ms;
  z-index: -1;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 178, 107, 0.4);
}
.card:hover::before { opacity: 1; }

.card__num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--copper-bright);
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
.card__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

/* Service card photo — top strip, breaks out of card padding to hug the edge */
.card { padding: 0 0 2rem 0; gap: 1.25rem; }
.card__photo {
  position: relative;
  margin: 0 0 0.5rem 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  background: var(--void);
  border-bottom: 1px solid var(--line);
}
.card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease-out-expo);
}
.card:hover .card__photo img { transform: scale(1.05); }
.card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 6, 8, 0.55) 100%);
  pointer-events: none;
}
/* Re-apply side padding to text content since card no longer has it */
.card__head,
.card__body,
.card__arrow { padding-left: 1.75rem; padding-right: 1.75rem; }
.card__head { padding-top: 0.5rem; }
.card__arrow { margin-left: 1.75rem; margin-right: 1.75rem; padding-left: 0; padding-right: 0; }
.card__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ghost-bright);
  font-variation-settings: "wght" 700, "wdth" 95;
}
.card__body {
  color: var(--ash);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ghost);
  transition: color 220ms, gap 220ms var(--ease-out-expo);
}
.card__arrow:hover { color: var(--copper-bright); gap: 0.7rem; }

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  MUSIC                                                                ║
   ╚══════════════════════════════════════════════════════════════════════╝ */
.music-grid {
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 980px) {
  .music-grid { grid-template-columns: 1fr 1fr; }
}
.music-grid__left { max-width: 32rem; }

.ep-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ep-meta > div { display: flex; flex-direction: column; gap: 0.4rem; }
.ep-meta strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--ghost-bright);
}

/* EP cover — real artwork, full-bleed */
.ep-cover {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow:
    0 60px 120px -40px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: rotate(-1deg);
  transition: transform 600ms var(--ease-out-expo);
}
.ep-cover:hover { transform: rotate(0deg) translateY(-4px); }
.ep-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.tracklist {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.track {
  position: relative;
  display: grid;
  grid-template-columns: 36px 28px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 0.5rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ghost);
  transition: background 220ms ease;
  cursor: pointer;
}
.track:hover { background: rgba(240, 231, 213, 0.025); }
.track.is-playing {
  background: linear-gradient(90deg, rgba(232, 178, 107, 0.08), rgba(232, 178, 107, 0.02));
}

/* Play / pause button */
.track__play {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(240, 231, 213, 0.06);
  border: 1px solid var(--line-strong);
  color: var(--ghost-bright);
  transition: all 200ms var(--ease-out-expo);
  cursor: pointer;
}
.track:hover .track__play {
  background: var(--grad-warm);
  border-color: transparent;
  color: var(--pitch);
}
.track.is-playing .track__play {
  background: var(--grad-warm);
  border-color: transparent;
  color: var(--pitch);
  box-shadow: 0 0 0 4px rgba(232, 178, 107, 0.15);
}
.track__play:disabled { opacity: 0.4; cursor: not-allowed; }
.track__play-icon--pause { display: none; }
.track.is-playing .track__play-icon--play  { display: none; }
.track.is-playing .track__play-icon--pause { display: block; }

/* "Soon" rows */
.track--soon { opacity: 0.6; }
.track--soon:hover { background: transparent; cursor: default; }
.track--soon .track__time {
  color: var(--copper);
  text-transform: uppercase;
}

/* Live progress bar — thin line under the row */
.track__progress {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: transparent;
  overflow: hidden;
  pointer-events: none;
}
.track__progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--grad-warm);
  box-shadow: 0 0 10px rgba(232, 178, 107, 0.6);
  transition: width 200ms linear;
}
.track__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--copper-bright);
}
.track__title {
  font-weight: 600;
  letter-spacing: -0.015em;
}
.track__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--copper-bright);
}
.track__time {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
  font-variant-numeric: tabular-nums;
}
.track__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ghost-bright);
  font-variant-numeric: tabular-nums;
  min-width: 3.5em;
  text-align: right;
}

.ep-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.ep-total__left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* Sub-note under the tracklist while Stripe isn't live */
.ep-note {
  margin: 1.25rem 0 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ash);
  font-style: italic;
}
.ep-total__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.04em;
  background: var(--grad-warm-x);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  ABOUT                                                                ║
   ╚══════════════════════════════════════════════════════════════════════╝ */
.about-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 980px) {
  .about-grid {
    grid-template-columns: auto 1fr 1.4fr;
    align-items: start;
    gap: 4rem;
  }
}
.about-grid__head { max-width: 28rem; }

/* About photo — DJ deck, slim vertical accent column */
.about-photo {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 50px 100px -30px rgba(0, 0, 0, 0.8);
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-photo figcaption {
  position: absolute;
  left: 1rem; bottom: 1rem;
  right: 1rem;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ghost-bright);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}
.about-photo figcaption em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 13px;
  color: var(--copper-bright);
}
@media (max-width: 980px) {
  .about-photo { max-width: 280px; }
}
.about-grid__body { max-width: 38em; display: grid; gap: 1.5rem; }
.about-grid__body p { color: var(--ash); font-size: 1.05rem; line-height: 1.7; }
.about-grid__body em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--copper-bright);
}
.about-grid__body .lede em {
  background: var(--grad-warm-x);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pullquote {
  margin: 2rem 0 0;
  padding: 0.5rem 0 0.5rem 2.25rem;
  border-left: 2px solid var(--copper);
  position: relative;
}
.pullquote::before {
  content: "";
  position: absolute;
  left: -1px; top: 0;
  width: 1px; height: 28%;
  background: var(--copper-bright);
}
.pullquote p {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ghost-bright);
}
.pullquote em {
  background: var(--grad-warm-x);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  APP                                                                  ║
   ╚══════════════════════════════════════════════════════════════════════╝ */
.app-grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 980px) {
  .app-grid { grid-template-columns: 1.1fr 1fr; gap: 6rem; }
}
.app-grid__copy { max-width: 36rem; }

.bullets {
  margin: 2rem 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.bullets li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ash);
  font-size: 1.02rem;
}
.bullets__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--copper-bright);
}

.stores {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.store {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.4rem;
  border-radius: 12px;
  background: var(--void-2);
  border: 1px solid var(--line-strong);
  color: var(--ghost-bright);
  transition: all 220ms var(--ease-out-expo);
}
.store:hover {
  border-color: var(--copper-bright);
  background: var(--smoke);
  transform: translateY(-2px);
}
.store__sm { display: block; font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ash); }
.store__lg { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: -0.015em; }

/* Phone */
.phone { display: grid; place-items: center; }
.phone__shell {
  position: relative;
  width: clamp(260px, 80%, 320px);
  aspect-ratio: 9 / 19;
  background: linear-gradient(180deg, var(--smoke), var(--void));
  padding: 10px;
  border-radius: 38px;
  box-shadow:
    0 60px 100px -40px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: rotate(-3deg);
}
.phone__notch {
  position: absolute;
  left: 50%; top: 16px;
  transform: translateX(-50%);
  width: 90px; height: 24px;
  border-radius: 999px;
  background: var(--pitch);
  z-index: 2;
}
.phone__screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 30px;
  background: linear-gradient(180deg, #1A0D10 0%, #2A1318 100%);
  padding: 48px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.phone__chrome {
  display: flex; justify-content: space-between;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
}
.phone__cover {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 50%, rgba(232, 178, 107, 0.30), transparent 70%),
    linear-gradient(180deg, var(--smoke), var(--pitch));
  display: grid; place-items: center;
  padding: 14px;
}
.phone__meta { color: var(--ghost); }
.phone__meta h4 {
  margin: 0.3rem 0 0.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.025em;
}
.phone__meta h4 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: var(--grad-warm-x);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.phone__meta p { margin: 0; font-size: 11px; color: var(--ash); }

.phone__eq {
  margin-top: 8px;
  display: flex;
  gap: 3px;
  height: 18px;
  align-items: flex-end;
}
.phone__eq > span {
  flex: 1;
  border-radius: 2px;
  background: var(--grad-warm);
  transform-origin: bottom;
  transform: scaleY(0.3);
  animation: bounce 0.9s ease-in-out infinite alternate;
  animation-play-state: paused;
}
body.is-playing .phone__eq > span { animation-play-state: running; }
.phone__eq > span:nth-child(odd)  { animation-duration: 0.7s; }
.phone__eq > span:nth-child(even) { animation-duration: 0.55s; }

.phone__btn {
  position: absolute;
  right: 18px; bottom: 22px;
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: var(--grad-warm);
  color: var(--pitch);
  box-shadow: 0 8px 20px -6px rgba(232, 178, 107, 0.6);
}

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  CLOSER                                                               ║
   ╚══════════════════════════════════════════════════════════════════════╝ */
.section--closer {
  text-align: center;
  padding-top: clamp(7rem, 14vw, 12rem);
  padding-bottom: clamp(7rem, 14vw, 12rem);
  position: relative;
  overflow: hidden;
}
.section--closer::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(232, 178, 107, 0.25), transparent 70%),
    radial-gradient(ellipse 40% 50% at 50% 100%, rgba(209, 79, 107, 0.15), transparent 70%);
}
.closer { max-width: 800px; margin: 0 auto; }
.closer__title { text-shadow: 0 0 80px rgba(245, 167, 66, 0.30); }
.closer__sub {
  margin: 2.5rem auto 0;
  max-width: 32em;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--ghost);
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.closer .cta { margin-top: 3rem; }

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  FOOTER                                                               ║
   ╚══════════════════════════════════════════════════════════════════════╝ */
.footer {
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: rgba(20, 10, 14, 0.5);
}
.footer__grid {
  display: grid;
  gap: 3rem 2rem;
  grid-template-columns: 1fr;
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 760px) {
  .footer__grid { grid-template-columns: 2.4fr 1fr 1fr 1fr; }
}
.footer__brand { max-width: 22rem; }
.footer__line {
  margin: 1.25rem 0 0;
  color: var(--ash);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  line-height: 1.45;
}
.footer__col-label {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ash);
}
.footer__col li { padding: 0.35rem 0; color: var(--ghost); font-size: 0.95rem; }
.footer__col a { transition: color 220ms, padding-left 220ms var(--ease-out-expo); }
.footer__col a:hover { color: var(--copper-bright); padding-left: 4px; }

.footer__social { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer__social a {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--ghost);
  transition: all 220ms;
}
.footer__social a:hover {
  border-color: var(--copper-bright);
  color: var(--copper-bright);
  transform: translateY(-2px);
}

.footer__bottom {
  grid-column: 1 / -1;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
}
@media (min-width: 760px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  STICKY MINI PLAYER                                                   ║
   ╚══════════════════════════════════════════════════════════════════════╝ */
.mini {
  position: fixed;
  z-index: 60;
  bottom: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 1.1rem 0.55rem 0.55rem;
  background: rgba(15, 8, 11, 0.85);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ghost);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 30px 70px -25px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 320ms var(--ease-out-expo);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.mini.mini--show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mini.mini--show:hover { transform: translateY(-2px); }
body.is-playing .mini {
  box-shadow:
    0 30px 70px -25px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(232, 178, 107, 0.4);
}
.mini__play {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--grad-warm);
  color: var(--pitch);
  transition: transform 220ms;
}
.mini__play:hover { transform: scale(1.08); }
.mini__play .ctl__pause { display: none; }
body.is-playing .mini__play .ctl__play { display: none; }
body.is-playing .mini__play .ctl__pause { display: block; }
.mini__eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
}
.mini__eq > span {
  width: 2.5px;
  border-radius: 2px;
  background: var(--grad-warm);
  transform-origin: bottom;
  transform: scaleY(0.3);
  height: 100%;
}
body.is-playing .mini__eq > span { animation: bounce 0.7s ease-in-out infinite alternate; }
.mini__eq > span:nth-child(1) { animation-duration: 0.6s; }
.mini__eq > span:nth-child(2) { animation-duration: 0.85s; }
.mini__eq > span:nth-child(3) { animation-duration: 0.5s; }
.mini__eq > span:nth-child(4) { animation-duration: 0.9s; }
.mini__eq > span:nth-child(5) { animation-duration: 0.7s; }
.mini__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.mini__label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-bright);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.mini__track {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: var(--ghost-bright);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
.mini__track em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: var(--grad-warm-x);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Inline toast — Buy buttons surface this until Stripe lives */
.toast {
  position: fixed;
  z-index: 70;
  bottom: 90px;
  left: 50%;
  transform: translate(-50%, 12px);
  padding: 0.85rem 1.25rem;
  background: rgba(15, 8, 11, 0.96);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ghost);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: all 280ms var(--ease-out-expo);
  max-width: calc(100vw - 32px);
  text-align: center;
}
.toast--on {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}
