/* ==========================================================
   michaelangelo.cc  |  dark, neon, club
   ========================================================== */
:root {
  --bg: #07060B;
  --bg-2: #120E1F;
  --bg-3: #1B1530;
  --ink: #F4EEFF;
  --muted: #9C93BD;
  --line: rgba(244, 238, 255, 0.10);
  --magenta: #FF2D95;
  --cyan: #24E4FF;
  --lime: #C8FF3D;
  --violet: #8B5CF6;
  --display: "Unbounded", "Space Grotesk", system-ui, sans-serif;
  --body: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --pad: clamp(16px, 4vw, 48px);
  --maxw: 1200px;
  --player-h: 76px;
  --r: 14px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { color-scheme: dark; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}
body.has-player { padding-bottom: calc(var(--player-h) + env(safe-area-inset-bottom)); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--cyan); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
svg { width: 1.2em; height: 1.2em; fill: currentColor; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--magenta); color: #fff; }
h1, h2, h3 { font-family: var(--display); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.3rem, 2.6vw, 1.8rem); }
.muted { color: var(--muted); }
.lede { color: var(--muted); max-width: 60ch; font-size: 1.05rem; margin: 0.8rem 0 1.6rem; }
.empty { color: var(--muted); padding: 2rem 0; }

/* ---------- ambient background ---------- */
.glow {
  position: fixed; inset: auto; z-index: -1; pointer-events: none;
  width: 60vmax; height: 60vmax; border-radius: 50%; filter: blur(90px); opacity: 0.35;
}
.glow-a { top: -25vmax; right: -20vmax; background: radial-gradient(circle, var(--magenta), transparent 60%); }
.glow-b { bottom: -30vmax; left: -25vmax; background: radial-gradient(circle, var(--violet), transparent 60%); }
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.05; mix-blend-mode: overlay;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- header ---------- */
.top {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 14px var(--pad);
  background: linear-gradient(to bottom, rgba(7, 6, 11, 0.9), rgba(7, 6, 11, 0));
}
.wordmark {
  font-family: var(--display); font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em;
  text-shadow: 0 0 18px rgba(255, 45, 149, 0.55);
}
.wordmark:hover { color: var(--ink); text-shadow: 0 0 22px var(--magenta), 0 0 44px rgba(255, 45, 149, 0.5); }
.nav { display: flex; gap: clamp(14px, 2.5vw, 34px); font-weight: 500; }
.nav a { padding: 6px 2px; border-bottom: 2px solid transparent; }
.nav a[aria-current="page"] { border-color: var(--magenta); }
.nav-toggle { display: none; width: 40px; height: 40px; }
.nav-toggle svg { width: 26px; height: 26px; }
@media (max-width: 640px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 8px var(--pad) 16px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 1.15rem; }
  .nav a[aria-current="page"] { color: var(--magenta); border-color: var(--line); }
}

/* ---------- layout ---------- */
main { display: block; min-height: 62vh; }
.page, .sect, .single { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.page { padding-top: 2.5rem; padding-bottom: 3rem; }
.sect { padding-top: 3rem; padding-bottom: 1.5rem; }
.sect-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; }
.sect-head a { color: var(--muted); font-weight: 500; border-bottom: 1px solid var(--line); white-space: nowrap; }
.sect-head a:hover { color: var(--cyan); border-color: var(--cyan); }
.foot { border-top: 1px solid var(--line); margin-top: 3rem; color: var(--muted); font-size: 0.9rem; }
.foot-inner { max-width: var(--maxw); margin: 0 auto; padding: 1.6rem var(--pad); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.foot-links { display: flex; gap: 1.2rem; }

/* ---------- hero: the visualizer is the point ---------- */
.hero {
  position: relative; min-height: calc(100svh - 68px); display: grid; align-items: end; overflow: hidden;
  isolation: isolate;
}
.hero-viz { position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity 0.8s; }
body.is-playing .hero-viz { opacity: 1; }
.hero-ring {
  position: absolute; z-index: -2; right: -12vmin; top: 50%; width: 78vmin; height: 78vmin; transform: translateY(-55%);
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--magenta), var(--violet), var(--cyan), var(--lime), var(--magenta));
  -webkit-mask: radial-gradient(circle, transparent 58%, #000 60%, #000 66%, transparent 68%);
  mask: radial-gradient(circle, transparent 58%, #000 60%, #000 66%, transparent 68%);
  filter: blur(1px) drop-shadow(0 0 24px rgba(255, 45, 149, 0.45));
  animation: spin 40s linear infinite;
  transition: opacity 0.8s;
}
body.is-playing .hero-ring { opacity: 0.15; }
@keyframes spin { to { transform: translateY(-55%) rotate(360deg); } }
.hero-inner { max-width: var(--maxw); width: 100%; margin: 0 auto; padding: 4rem var(--pad) 3.5rem; }
.hero-heading {
  font-size: clamp(3rem, 11vw, 9.5rem); line-height: 0.92; letter-spacing: -0.045em; max-width: 9ch;
  text-shadow: 0 0 40px rgba(255, 45, 149, 0.25);
}
.hero-track { margin-top: 2.2rem; display: grid; gap: 0.6rem; }
.hero-kicker { color: var(--muted); font-weight: 500; }
.hero-track .trk { display: flex; align-items: center; gap: 1.2rem; }
.hero-play {
  flex: none; width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center;
  background: var(--magenta); color: #14020B;
  box-shadow: 0 0 0 6px rgba(255, 45, 149, 0.18), 0 0 40px rgba(255, 45, 149, 0.55), 0 0 90px rgba(255, 45, 149, 0.25);
  transition: transform 0.15s, box-shadow 0.25s;
}
.hero-play:hover { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(255, 45, 149, 0.22), 0 0 60px rgba(255, 45, 149, 0.75), 0 0 120px rgba(255, 45, 149, 0.35); }
.hero-play svg { width: 40px; height: 40px; }
.hero-title { font-family: var(--display); font-weight: 500; font-size: clamp(1.2rem, 2.6vw, 1.8rem); display: block; }
.hero-sub { color: var(--muted); display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; margin-top: 0.3rem; }
.hero-empty .hero-heading { max-width: 12ch; }
@media (max-width: 640px) {
  .hero { min-height: calc(92svh - 68px); }
  .hero-ring { right: -30vmin; width: 100vmin; height: 100vmin; }
  .hero-play { width: 68px; height: 68px; }
  .hero-play svg { width: 32px; height: 32px; }
}

/* ---------- play/pause icon pairs ---------- */
.ic-pause { display: none; }
.is-current.is-playing .ic-pause, [data-play].is-playing .ic-pause, .player.is-playing .ic-pause { display: block; }
.is-current.is-playing .ic-play, [data-play].is-playing .ic-play, .player.is-playing .ic-play { display: none; }

/* ---------- tags ---------- */
.tag {
  --c: var(--cyan);
  display: inline-flex; align-items: center; gap: 0.35em;
  font-size: 0.78rem; font-weight: 500; line-height: 1; padding: 6px 10px; border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--c) 55%, transparent);
  color: color-mix(in srgb, var(--c) 85%, white);
  background: color-mix(in srgb, var(--c) 8%, transparent);
  white-space: nowrap; transition: box-shadow 0.2s, background 0.2s, color 0.2s;
}
.tag small { color: var(--muted); font-size: 0.85em; }
.tag:hover { color: #fff; background: color-mix(in srgb, var(--c) 20%, transparent); }
.tag.is-on {
  background: var(--c); color: #0B0812; border-color: var(--c);
  box-shadow: 0 0 14px color-mix(in srgb, var(--c) 70%, transparent);
}
.tag.is-on small { color: rgba(0, 0, 0, 0.55); }
.tag-all { --c: #F4EEFF; }
.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; margin: 0.8rem 0 0; }
.tagbar { display: flex; flex-wrap: wrap; gap: 0.45rem; align-items: center; margin: 1.2rem 0 1.6rem; }
.tagbar .tag { font-size: 0.86rem; padding: 8px 13px; }
.tagbar-match { margin-left: auto; color: var(--muted); font-size: 0.9rem; display: inline-flex; gap: 0.4em; align-items: center; user-select: none; }
.tagbar-match input { accent-color: var(--magenta); }

/* ---------- track list: a set list, not a card grid ---------- */
.trklist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.trklist .trk { display: flex; align-items: center; gap: 0.9rem; padding: 0.7rem 0; border-bottom: 1px solid var(--line); transition: background 0.15s; }
.trklist .trk:hover { background: linear-gradient(90deg, rgba(255, 45, 149, 0.06), transparent 70%); }
.trklist .trk.is-current { background: linear-gradient(90deg, rgba(36, 228, 255, 0.10), transparent 70%); }
.trklist .trk.is-hidden { display: none; }
.trk-play { flex: none; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: var(--muted); position: relative; }
.trk-play > * { grid-area: 1 / 1; }
.trk-play .trk-num { font-variant-numeric: tabular-nums; font-size: 0.9rem; }
.trk-play svg { width: 22px; height: 22px; opacity: 0; color: var(--ink); }
.trk:hover .trk-play .trk-num, .trk-play:focus-visible .trk-num, .trk.is-current .trk-num { opacity: 0; }
.trk:hover .trk-play svg, .trk-play:focus-visible svg, .trk.is-current .trk-play svg { opacity: 1; }
.trk.is-current .trk-play { color: var(--cyan); }
.trk-eq { display: none; gap: 2px; align-items: flex-end; height: 16px; }
.trk-eq i { width: 3px; background: var(--cyan); height: 40%; animation: eq 0.9s ease-in-out infinite; box-shadow: 0 0 8px var(--cyan); }
.trk-eq i:nth-child(2) { animation-delay: 0.2s; }
.trk-eq i:nth-child(3) { animation-delay: 0.45s; }
@keyframes eq { 0%, 100% { height: 30%; } 50% { height: 100%; } }
.trk.is-current.is-playing:not(:hover) .trk-eq { display: flex; }
.trk.is-current.is-playing:not(:hover) .trk-play svg { opacity: 0; }
.trk-cover { flex: none; width: 48px; height: 48px; border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, var(--bg-3), var(--violet)); }
.trk-cover img { width: 100%; height: 100%; object-fit: cover; }
.trk-main { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 0.25rem; }
.trk-title { font-weight: 700; font-size: 1.05rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.trk-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.trk-tags .tag { font-size: 0.7rem; padding: 4px 8px; }
.trk-meta { flex: none; display: flex; gap: 1rem; color: var(--muted); font-variant-numeric: tabular-nums; font-size: 0.92rem; }
@media (max-width: 640px) {
  .trk-bpm { display: none; }
  .trk-cover { width: 42px; height: 42px; }
  .trklist .trk { gap: 0.6rem; }
}

/* ---------- collections ---------- */
.colgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.col {
  display: grid; grid-template-rows: auto 1fr; border-radius: var(--r); overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--line); transition: transform 0.2s, border-color 0.2s;
}
.col:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--magenta) 50%, transparent); color: var(--ink); }
.col-art { aspect-ratio: 1; background: linear-gradient(135deg, hsl(var(--hue) 80% 55% / 0.9), hsl(calc(var(--hue) + 90) 80% 45% / 0.9)); display: block; }
.col-art img { width: 100%; height: 100%; object-fit: cover; }
.col-body { padding: 0.9rem 1rem 1rem; display: grid; gap: 0.2rem; }
.col-body strong { font-family: var(--display); font-weight: 500; font-size: 1rem; }
.col-body span { color: var(--muted); font-size: 0.9rem; }
.col-head { display: grid; grid-template-columns: minmax(0, 220px) 1fr; gap: 1.6rem; align-items: end; margin-bottom: 2rem; }
.col-head-art { border-radius: var(--r); aspect-ratio: 1; object-fit: cover; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); }
.col-head .btn { margin-top: 1.2rem; }
@media (max-width: 640px) { .col-head { grid-template-columns: 1fr; } .col-head-art { max-width: 260px; } }

/* ---------- art grid (masonry via columns) ---------- */
.artgrid { columns: 3 260px; column-gap: 1rem; }
.art { break-inside: avoid; margin: 0 0 1rem; }
.art a { display: block; border-radius: 10px; overflow: hidden; background: var(--bg-2); }
.art img { width: 100%; transition: transform 0.35s ease; }
.art a:hover img { transform: scale(1.03); }
.art figcaption { display: flex; justify-content: space-between; gap: 0.6rem; padding: 0.5rem 0.2rem 0; font-size: 0.92rem; }
.art figcaption a { font-weight: 500; }
.art figcaption span { color: var(--muted); white-space: nowrap; }
.art.is-hidden { display: none; }
.pswp { --pswp-bg: #07060B; }
.pswp__button--page { color: #fff; font: 500 0.95rem var(--body); padding: 0 12px; width: auto; }

/* ---------- single track / artwork ---------- */
.single { padding-top: 2.5rem; padding-bottom: 3rem; }
.single .sect { padding-left: 0; padding-right: 0; }
.single-head { display: grid; grid-template-columns: minmax(0, 320px) 1fr; gap: 2rem; align-items: end; }
.single-cover { border-radius: var(--r); overflow: hidden; aspect-ratio: 1; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 60px rgba(139, 92, 246, 0.2); }
.single-cover img, .single-cover-fallback { width: 100%; height: 100%; object-fit: cover; display: block; }
.single-cover-fallback { background: conic-gradient(from 200deg, var(--magenta), var(--violet), var(--cyan), var(--magenta)); }
.single-meta h1 { font-size: clamp(1.9rem, 4.5vw, 3.4rem); }
.single-sub { color: var(--muted); display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 0.6rem 0 0; }
.single-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.single-body { max-width: 68ch; margin-top: 2rem; }
.prose { color: #D8D0F0; line-height: 1.65; }
.lyrics { margin-top: 1.4rem; border-top: 1px solid var(--line); padding-top: 0.8rem; }
.lyrics summary { cursor: pointer; font-weight: 700; }
.lyrics .prose { margin-top: 1rem; white-space: pre-line; }
.wave { margin: 2rem 0 0; min-height: 96px; border-radius: 10px; }
@media (max-width: 720px) {
  .single-head { grid-template-columns: 1fr; }
  .single-cover { max-width: 260px; }
}
.artwork-stage a { display: block; }
.artwork-stage img { margin: 0 auto; max-height: 82vh; width: auto; border-radius: 8px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6); }
.artwork-meta { max-width: 68ch; margin-top: 1.8rem; }
.about-text { max-width: 60ch; font-size: 1.15rem; margin-top: 1rem; }
.about-links { list-style: none; padding: 0; margin: 2rem 0 0; display: flex; flex-wrap: wrap; gap: 0.8rem 1.6rem; font-weight: 500; }
.about-links a { border-bottom: 1px solid var(--line); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em; padding: 0.7em 1.15em; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04); font-weight: 600;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.2s;
}
.btn:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.25); color: var(--ink); }
.btn-primary { background: var(--magenta); border-color: var(--magenta); color: #14020B; box-shadow: 0 0 24px rgba(255, 45, 149, 0.45); }
.btn-primary:hover { background: #FF4DA6; border-color: #FF4DA6; color: #14020B; box-shadow: 0 0 34px rgba(255, 45, 149, 0.65); }

/* ---------- the player bar ---------- */
.player {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; height: var(--player-h);
  padding: 0 var(--pad) env(safe-area-inset-bottom);
  display: grid; grid-template-columns: 48px minmax(120px, 1fr) auto minmax(180px, 2fr) auto; align-items: center; gap: 1rem;
  background: rgba(12, 9, 20, 0.82); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-top: 1px solid var(--line);
}
.player[hidden] { display: none; }
.player-viz { position: absolute; inset: 0; z-index: -1; opacity: 0.35; pointer-events: none; overflow: hidden; }
.player-cover { width: 48px; height: 48px; border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, var(--bg-3), var(--violet)); display: block; position: relative; }
.player-cover img { width: 100%; height: 100%; object-fit: cover; }
.player-cover img[hidden] { display: none; }
.player-meta { min-width: 0; display: grid; gap: 0.1rem; }
.player-title { font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-sub { color: var(--muted); font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-controls { display: flex; align-items: center; gap: 0.3rem; }
.player-controls button { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); }
.player-controls button svg { width: 22px; height: 22px; }
.player-controls button:hover { background: rgba(255, 255, 255, 0.08); }
.player-play { background: var(--ink); color: var(--bg) !important; width: 44px !important; height: 44px !important; box-shadow: 0 0 20px rgba(244, 238, 255, 0.25); }
.player-play:hover { background: #fff !important; }
.player-progress { display: flex; align-items: center; gap: 0.7rem; }
.player-time { color: var(--muted); font-size: 0.82rem; font-variant-numeric: tabular-nums; min-width: 2.6em; text-align: center; }
.player-side { display: flex; align-items: center; gap: 0.4rem; }
.player-side button { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--muted); }
.player-side button:hover { color: var(--ink); background: rgba(255, 255, 255, 0.08); }
.player-side button svg { width: 20px; height: 20px; }
.player-vizbtn { color: var(--cyan) !important; }
.player-vizbtn.is-on { background: rgba(36, 228, 255, 0.15); box-shadow: 0 0 16px rgba(36, 228, 255, 0.4); }
.ic-mute { display: none; }
.player.is-muted .ic-mute { display: block; }
.player.is-muted .ic-vol { display: none; }
#pVol { width: 80px; }
input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 2px; background: rgba(255, 255, 255, 0.15);
  background-image: linear-gradient(var(--magenta), var(--magenta)); background-repeat: no-repeat; background-size: var(--fill, 0%) 100%;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%; background: #fff; box-shadow: 0 0 10px rgba(255, 45, 149, 0.8); }
input[type="range"]::-moz-range-thumb { width: 14px; height: 14px; border: 0; border-radius: 50%; background: #fff; box-shadow: 0 0 10px rgba(255, 45, 149, 0.8); }
@media (max-width: 760px) {
  :root { --player-h: 108px; }
  .player {
    grid-template-columns: 44px minmax(0, 1fr) auto; grid-template-rows: auto auto; row-gap: 0.2rem; padding-top: 8px; align-content: center;
  }
  .player-cover { width: 44px; height: 44px; }
  .player-progress { grid-column: 1 / -1; }
  .player-side { gap: 0.1rem; }
  #pVol, #pMute { display: none; }
  .player-controls button:not(.player-play) { width: 36px; height: 36px; }
}

/* ---------- fullscreen visualizer ---------- */
.viz { position: fixed; inset: 0; z-index: 100; background: #000; }
.viz[hidden] { display: none; }
.viz-stage { position: absolute; inset: 0; }
.viz-stage canvas { width: 100% !important; height: 100% !important; display: block; }
.viz-hud {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem var(--pad) calc(1rem + env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  transition: opacity 0.4s; opacity: 1;
}
.viz.is-idle .viz-hud { opacity: 0; }
.viz-now { display: grid; min-width: 0; }
.viz-now strong { font-family: var(--display); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.viz-now span { color: var(--muted); font-size: 0.9rem; }
.viz-modes { display: flex; gap: 0.3rem; background: rgba(255, 255, 255, 0.08); border-radius: 999px; padding: 4px; }
.viz-modes button { padding: 8px 14px; border-radius: 999px; font-weight: 600; font-size: 0.9rem; color: var(--muted); }
.viz-modes button.is-on { background: var(--ink); color: var(--bg); }
.viz-actions { display: flex; gap: 0.4rem; align-items: center; }
.viz-actions button { padding: 8px 14px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.4em; }
.viz-actions button:hover { background: rgba(255, 255, 255, 0.16); }
#vizClose { width: 40px; height: 40px; padding: 0; justify-content: center; }
@media (max-width: 640px) {
  .viz-hud { justify-content: center; }
  .viz-now { width: 100%; text-align: center; }
}

/* ---------- toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: calc(var(--player-h) + 16px); transform: translate(-50%, 20px); z-index: 70;
  background: var(--ink); color: var(--bg); padding: 0.6rem 1rem; border-radius: 999px; font-weight: 600; font-size: 0.92rem;
  opacity: 0; transition: opacity 0.2s, transform 0.2s; pointer-events: none;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ---------- motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-ring { animation: none; }
  .trk-eq i { animation: none; height: 60%; }
  * { transition-duration: 0.01ms !important; }
}
