/* SHAMEGRIN — The Stutter Boys and the ShameGrin (2026) */
:root {
  --bg: #07070b;
  --bg-elev: #0e0e14;
  --bg-card: #12121a;
  --ink: #f2f2f5;
  --muted: #9a9aad;
  --dim: #5c5c70;
  --line: rgba(255, 255, 255, 0.08);
  --lime: #d8ff2e;
  --green: #00d96a;
  --spotify: #1ed760;
  --pink: #ff4466;
  --violet: #8b7cff;
  --glow: rgba(216, 255, 46, 0.18);
  --radius: 18px;
  --radius-sm: 12px;
  --nav-h: 72px;
  --announce-h: 42px;
  --player-h: 72px;
  --max: 1180px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Syne", "Inter", system-ui, sans-serif;
  --mono: "DM Mono", ui-monospace, monospace;
  --bebas: "Bebas Neue", "Syne", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--announce-h) + 12px);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}
::selection { background: var(--lime); color: #07070b; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  padding: 10px 14px; border-radius: 10px;
  background: var(--lime); color: #07070b; font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

.grain {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 90; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vignette {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 89;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.55) 100%);
}

/* Announcement */
.announce {
  position: sticky; top: 0; z-index: 70;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  flex-wrap: wrap;
  min-height: var(--announce-h);
  padding: 10px 20px;
  background: linear-gradient(90deg, rgba(255,68,102,.16), rgba(216,255,46,.08), rgba(0,217,106,.1));
  border-bottom: 1px solid var(--line);
  font-size: 12.5px; letter-spacing: 0.02em;
}
.announce-pulse {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: var(--lime); text-transform: uppercase; letter-spacing: 0.12em;
}
.announce-pulse::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 12px var(--lime);
  animation: pulse 1.6s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.85); }
}
.announce-text { color: var(--muted); }
.announce-link {
  color: var(--ink); font-weight: 600;
  border-bottom: 1px solid rgba(216,255,46,.5);
}
.announce-link:hover { color: var(--lime); }

/* Nav */
.nav {
  position: sticky; top: var(--announce-h); z-index: 65;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  padding: 0 clamp(16px, 4vw, 48px);
  background: rgba(7, 7, 11, 0.86);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(7, 7, 11, 0.96);
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  position: relative; width: 36px; height: 36px;
  border-radius: 10px; background: #111;
  border: 1px solid var(--line);
  display: grid; place-items: center; flex-shrink: 0;
}
.brand-ring {
  position: absolute; inset: 4px; border-radius: 8px;
  border: 1px solid rgba(216,255,46,.35);
}
.brand-core {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 14px var(--lime);
}
.brand-text { display: flex; flex-direction: column; gap: 2px; }
.brand-name {
  display: block; font-family: var(--display); font-weight: 800;
  letter-spacing: 0.08em; font-size: 14px;
}
.brand-sub {
  display: block; font-family: var(--mono); font-size: 10px;
  color: var(--dim); letter-spacing: 0.04em;
}
.nav-links { display: flex; gap: 2px; }
.nav-links a {
  padding: 8px 12px; border-radius: 999px;
  font-size: 13.5px; color: var(--muted); font-weight: 500;
  transition: color .2s, background .2s;
}
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--ink);
  background: rgba(255,255,255,.05);
}
.nav-links a.is-active {
  color: var(--lime);
  background: rgba(216,255,46,.08);
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: var(--lime); color: #07070b;
  font-weight: 700; font-size: 13px;
  transition: transform .2s var(--ease), box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 28px var(--glow); }
.nav-cta b { font-weight: 800; }
.nav-toggle {
  display: none; width: 44px; height: 44px;
  border-radius: 12px; border: 1px solid var(--line);
  place-items: center; position: relative; z-index: 70;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block; width: 18px; height: 2px; background: var(--ink);
  border-radius: 2px; position: relative; transition: .25s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(7,7,11,.98);
  padding: calc(var(--nav-h) + var(--announce-h) + 16px) 28px 40px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s var(--ease), visibility .3s;
}
.mobile-menu.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.mobile-menu-cat {
  font-family: var(--mono); font-size: 11px; color: var(--dim);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px;
}
.mobile-menu a {
  font-family: var(--display); font-size: clamp(30px, 8vw, 46px);
  font-weight: 700; line-height: 1.15; padding: 6px 0;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--lime); }
.menu-foot {
  margin-top: auto; font-family: var(--mono); font-size: 12px; color: var(--dim);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - var(--announce-h));
  min-height: calc(100dvh - var(--nav-h) - var(--announce-h));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(36px, 6vw, 80px) clamp(20px, 5vw, 64px) clamp(48px, 7vw, 96px);
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: -20% -10% auto;
  height: 70%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(216,255,46,.12), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(139,124,255,.14), transparent 45%),
    radial-gradient(ellipse at 60% 80%, rgba(255,68,102,.08), transparent 40%);
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 2; max-width: 640px; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.03);
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.04em;
}
.badge-live { color: var(--lime); border-color: rgba(216,255,46,.25); }
.badge-live i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}
.badge-foil {
  color: #07070b; background: linear-gradient(135deg, var(--lime), #9dff6a);
  border-color: transparent; font-weight: 600;
}
.eyebrow {
  font-family: var(--mono); font-size: 12px; color: var(--dim);
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px;
}
.hero-title {
  margin: 0 0 18px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.hero-title .accent {
  background: linear-gradient(120deg, var(--lime), #fff 45%, var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-title .soft {
  display: block; margin-top: 8px;
  font-size: 0.58em; font-weight: 700; color: var(--muted);
  letter-spacing: -0.02em;
}
.subtitle {
  margin: 0 0 28px; max-width: 48ch;
  color: var(--muted); font-size: clamp(15px, 1.6vw, 18px);
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px;
}
.cta, .cta-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: 12px;
  font-weight: 700; font-size: 14.5px;
  transition: transform .2s var(--ease), box-shadow .2s, background .2s, border-color .2s;
}
.cta {
  background: var(--green); color: #04150c;
  box-shadow: 0 10px 30px rgba(0,217,106,.22);
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,217,106,.32); }
.cta b, .cta-ghost b { opacity: .75; }
.cta-icon {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(0,0,0,.15); font-size: 11px;
}
.cta-ghost {
  border: 1px solid var(--line); background: rgba(255,255,255,.03);
  color: var(--ink);
}
.cta-ghost:hover { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.cta-spotify {
  background: var(--spotify); color: #04150c;
  box-shadow: 0 10px 30px rgba(30,215,96,.25);
}
.cta-spotify:hover { box-shadow: 0 14px 36px rgba(30,215,96,.35); }
.hero-meta {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px; max-width: 420px;
}
.hero-meta div {
  display: flex; flex-direction: column; gap: 2px;
  padding-top: 10px; border-top: 1px solid var(--line);
}
.hero-meta strong {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  color: var(--dim); letter-spacing: 0.1em; text-transform: uppercase;
}
.hero-meta span { font-size: 14px; font-weight: 600; }

/* Cover stage */
.cover-stage {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  min-height: 420px;
}
.cover-orbit {
  position: absolute; width: min(92%, 480px); aspect-ratio: 1;
  border-radius: 50%; border: 1px dashed rgba(255,255,255,.08);
  animation: spin 48s linear infinite;
}
.cover-orbit-2 {
  width: min(78%, 400px); border-style: solid; border-color: rgba(216,255,46,.08);
  animation-duration: 32s; animation-direction: reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cover-card {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 1;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.08),
    0 0 60px rgba(216,255,46,.08);
  transform: rotate(-2deg);
  transition: transform .45s var(--ease);
}
.cover-card:hover { transform: rotate(0deg) scale(1.025); }
.cover-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.cover-card:hover img { transform: scale(1.04); }
.cover-play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(0,0,0,.28);
  opacity: 0;
  transition: opacity .3s;
}
.cover-card:hover .cover-play,
.cover-card:focus-visible .cover-play { opacity: 1; }
.cover-play span {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--spotify); color: #04150c;
  font-size: 18px; font-weight: 800;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
  transform: scale(.92);
  transition: transform .3s var(--ease);
}
.cover-card:hover .cover-play span { transform: scale(1); }
.cover-card-glow {
  position: absolute; inset: auto -10% -20%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(216,255,46,.35), transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.cover-float {
  position: absolute; z-index: 3;
  padding: 10px 14px; border-radius: 12px;
  background: rgba(10,10,14,.82);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--mono); font-size: 11px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.cover-float strong { display: block; color: var(--lime); font-size: 12px; margin-bottom: 2px; }
.cover-float span { color: var(--muted); }
.cover-float-a { top: 8%; left: 0; animation: floaty 5s ease-in-out infinite; }
.cover-float-b { bottom: 12%; right: 0; animation: floaty 5.5s ease-in-out infinite reverse; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Ticker */
.ticker {
  border-block: 1px solid var(--line);
  background: #0a0a10;
  overflow: hidden; white-space: nowrap;
}
.ticker-track {
  display: inline-flex; gap: 28px; padding: 14px 0;
  animation: marquee 32s linear infinite;
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.ticker-track span:nth-child(odd) { color: var(--ink); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section {
  padding: clamp(56px, 9vw, 110px) clamp(20px, 5vw, 64px);
  max-width: calc(var(--max) + 128px);
  margin: 0 auto;
}
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 20px; margin-bottom: clamp(28px, 4vw, 44px);
}
.kicker {
  font-family: var(--mono); font-size: 11px; color: var(--lime);
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 10px;
}
.section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 0.98; letter-spacing: -0.03em; font-weight: 800;
}
.all-link {
  font-size: 14px; font-weight: 600; color: var(--muted);
  white-space: nowrap; border-bottom: 1px solid transparent;
}
.all-link:hover { color: var(--lime); border-bottom-color: rgba(216,255,46,.4); }

/* Flagship */
.flagship-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 48px); align-items: center;
}
.spotify-shell {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0c12;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.spotify-shell iframe {
  display: block; width: 100%; min-height: 352px; border: 0;
}
.flagship-copy h2 { margin-bottom: 14px; }
.flagship-line {
  font-size: clamp(18px, 2.2vw, 24px); font-weight: 600;
  line-height: 1.35; margin: 0 0 14px; color: var(--ink);
}
.flagship-body {
  margin: 0 0 22px; color: var(--muted); max-width: 48ch;
}
.album-links { display: flex; flex-wrap: wrap; gap: 10px; }
.release-facts {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px; margin: 22px 0 26px;
}
.fact {
  padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--line);
}
.fact span {
  display: block; font-family: var(--mono); font-size: 10px;
  color: var(--dim); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 4px;
}
.fact strong { font-size: 15px; }

/* Catalog */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 16px;
}
.catalog-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 10px; border-radius: 16px;
  background: var(--bg-card); border: 1px solid var(--line);
  transition: transform .25s var(--ease), border-color .2s, box-shadow .2s;
}
.catalog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216,255,46,.25);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.catalog-card.is-featured {
  border-color: rgba(216,255,46,.3);
  background: linear-gradient(180deg, rgba(216,255,46,.08), var(--bg-card));
}
.catalog-art {
  aspect-ratio: 1; border-radius: 12px; overflow: hidden;
  background: #1a1a22; position: relative;
}
.catalog-art img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s var(--ease);
}
.catalog-card:hover .catalog-art img { transform: scale(1.05); }
.catalog-meta { padding: 0 4px 4px; }
.catalog-meta .tag {
  font-family: var(--mono); font-size: 10px; color: var(--lime);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.catalog-meta h3 {
  margin: 4px 0 2px; font-size: 14px; font-weight: 700; line-height: 1.25;
}
.catalog-meta p {
  margin: 0; font-size: 12px; color: var(--dim);
}

/* Platforms */
.platforms {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.platform-card {
  display: flex; align-items: center; gap: 14px;
  padding: 18px; border-radius: 16px;
  background: var(--bg-card); border: 1px solid var(--line);
  transition: border-color .2s, transform .2s var(--ease), background .2s;
}
.platform-card:hover {
  border-color: rgba(255,255,255,.16);
  transform: translateY(-2px);
  background: #16161f;
}
.platform-num {
  font-family: var(--mono); font-size: 12px; color: var(--dim);
  min-width: 28px;
}
.platform-card h3 { margin: 0 0 2px; font-size: 16px; }
.platform-card p { margin: 0; font-size: 13px; color: var(--muted); }
.platform-go {
  margin-left: auto; font-size: 13px; font-weight: 600; color: var(--lime);
  opacity: .7; transition: opacity .2s, transform .2s;
}
.platform-card:hover .platform-go { opacity: 1; transform: translateX(2px); }

/* Bio */
.bio-layout {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 64px); margin-bottom: 40px;
}
.bio-copy p {
  margin: 0 0 16px; color: var(--muted); font-size: 16.5px; max-width: 58ch;
}
.bio-copy p.lead { color: var(--ink); font-size: 18px; font-weight: 500; }
.bio-sign {
  margin-top: 20px !important;
  font-family: var(--mono); font-size: 13px; color: var(--lime) !important;
}
.pillars {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.pillar {
  padding: 20px; border-radius: 16px;
  background: var(--bg-elev); border: 1px solid var(--line);
  transition: border-color .2s, transform .2s;
}
.pillar:hover {
  border-color: rgba(216,255,46,.18);
  transform: translateY(-2px);
}
.pillar-icon {
  display: block; color: var(--lime); font-size: 18px; margin-bottom: 12px;
}
.pillar h3 { margin: 0 0 8px; font-size: 15px; }
.pillar p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.45; }

/* FAQ */
.faq-list { display: grid; gap: 10px; max-width: 820px; }
.faq-item {
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--bg-card); overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(216,255,46,.22); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 18px 20px; font-weight: 600; font-size: 15.5px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--mono); color: var(--lime); font-size: 18px;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer {
  padding: 0 20px 18px; color: var(--muted); font-size: 14.5px;
}
.faq-answer p { margin: 0; }
.faq-answer a { color: var(--lime); border-bottom: 1px solid rgba(216,255,46,.35); }

/* Share */
.share-panel {
  padding: clamp(22px, 3vw, 32px);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(216,255,46,.08), rgba(139,124,255,.06));
  border: 1px solid var(--line);
}
.share-lead { margin: 0 0 18px; color: var(--muted); }
.share-preview {
  display: flex; gap: 16px; align-items: center;
  padding: 14px; border-radius: 14px; background: rgba(0,0,0,.28);
  margin-bottom: 16px;
}
.share-preview img {
  width: 84px; height: 84px; border-radius: 12px; object-fit: cover; flex-shrink: 0;
}
.share-preview strong { display: block; margin-bottom: 4px; }
.share-preview span { display: block; color: var(--muted); font-size: 13.5px; margin-bottom: 6px; }
.share-url {
  font-family: var(--mono); font-size: 12px; color: var(--lime);
  background: transparent;
}
.share-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.share-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 14px; border-radius: 10px;
  border: 1px solid var(--line); background: rgba(255,255,255,.04);
  font-size: 13px; font-weight: 600;
  transition: background .2s, border-color .2s, transform .15s;
}
.share-btn:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-1px);
}
.share-primary { background: var(--lime); color: #07070b; border-color: transparent; }
.share-primary:hover { background: #e8ff6a; }
.share-toast {
  margin: 12px 0 0; font-size: 13px; color: var(--green);
  min-height: 1.2em;
}

/* Sticky player */
.player-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80;
  display: flex; align-items: center; gap: 12px;
  max-width: 520px; margin: 0 auto;
  padding: 10px 12px 10px 10px;
  border-radius: 18px;
  background: rgba(12,12,18,.92);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform .4s var(--ease), opacity .4s;
}
.player-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.player-art {
  width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0;
}
.player-meta { min-width: 0; flex: 1; }
.player-meta strong {
  display: block; font-size: 13px; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.player-meta span {
  display: block; font-size: 11.5px; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.player-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 999px;
  background: var(--spotify); color: #04150c;
  font-size: 12.5px; font-weight: 800; flex-shrink: 0;
  transition: transform .2s, box-shadow .2s;
}
.player-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(30,215,96,.3);
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px clamp(20px, 5vw, 64px) calc(56px + var(--player-h));
  display: grid; grid-template-columns: 1.2fr 2fr;
  gap: 32px;
  max-width: calc(var(--max) + 128px);
  margin: 0 auto;
}
.footer-brand {
  display: flex; gap: 14px; align-items: flex-start;
}
.footer-logo {
  width: 40px; height: 40px; border-radius: 12px;
  border: 1px solid var(--line); display: grid; place-items: center;
}
.footer-ring {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 12px var(--lime);
}
.footer-brand strong { display: block; letter-spacing: 0.08em; }
.footer-brand span { color: var(--dim); font-size: 13px; }
.footer-cols {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px;
}
.footer-h {
  display: block; font-family: var(--mono); font-size: 11px;
  color: var(--dim); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-cols a {
  display: block; color: var(--muted); font-size: 14px; margin-bottom: 8px;
  transition: color .2s;
}
.footer-cols a:hover { color: var(--lime); }
.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--dim);
}

/* Reveal */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .cover-card, .catalog-card, .platform-card, .player-bar,
  .cover-card img, .catalog-art img, .nav-cta, .cta {
    transition: none !important;
  }
  .cover-orbit, .cover-float-a, .cover-float-b,
  .ticker-track, .announce-pulse::before {
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .cover-stage { order: -1; min-height: 360px; margin-bottom: 8px; }
  .cover-card { width: min(100%, 300px); }
  .cover-play { opacity: 1; background: rgba(0,0,0,.18); }
  .flagship-grid, .bio-layout { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: grid; }
  .footer { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .release-facts { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .share-preview { flex-direction: column; align-items: flex-start; }
  .cover-float-a, .cover-float-b { display: none; }
  .announce-text { text-align: center; }
  .player-bar { left: 10px; right: 10px; bottom: 10px; }
  .player-cta span { display: none; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
}
