/* iomega · disk.css — /disk/, the page a tap lands on.
   Loaded after main.css; inherits the page-album (clay) tokens. */

.page-disk { min-height: 100vh; min-height: 100dvh; }
.page-disk section { display: block; }            /* this page is not a state machine */
.page-disk.state-splash .record,
.page-disk.state-splash .mini,
.page-disk.state-splash .nudge { display: none; }
.page-disk.state-record .disk-splash { display: none; }

/* ---------- splash: the drive spins up, the chain stamps in ---------- */
/* NB: must out-specify `.page-disk section { display: block }` above, which in
   turn undoes main.css's `.page-album section { display: none }`. */
.page-disk .disk-splash {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: var(--paper);
}
.splash-mark { position: relative; width: min(46vw, 180px); aspect-ratio: 1; }
.splash-disk {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #1b1c20;
  box-shadow: var(--shadow-2);
  animation: disk-spin 2.6s cubic-bezier(.2, .6, .2, 1) infinite;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.splash-disk::after {                              /* spindle hole */
  content: "";
  position: absolute;
  width: 17%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(25, 26, 29, .2);
}
.splash-disk img { width: 74%; height: 74%; object-fit: contain; border-radius: 50%; }
@keyframes disk-spin { to { transform: rotate(360deg); } }

.splash-line {
  margin: 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.splash-chain {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.splash-chain[hidden] { display: none; }
.splash-copy {
  font-family: var(--f-mono);
  font-size: clamp(20px, 6vw, 26px);
  letter-spacing: .16em;
  color: var(--cobalt);
}
.splash-hands {
  font-family: var(--f-mono);
  font-size: clamp(13px, 4vw, 16px);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
/* each stat SLAMS down in sequence (disk.js adds .is-slam one by one);
   reduced motion gets .is-instant — same stats, no movement */
.splash-stat { opacity: 0; }
.splash-stat.is-slam { animation: slam 320ms cubic-bezier(0.16, 1.1, 0.3, 1) both; }
.splash-stat.is-instant { opacity: 1; }
@keyframes slam {
  from { opacity: 0; transform: scale(2.4); filter: blur(3px); }
  62%  { opacity: 1; transform: scale(0.94); filter: blur(0); }
  to   { opacity: 1; transform: scale(1); }
}
/* your number, on a star — with the word "position" beneath */
.splash-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.splash-badge[hidden] { display: none; }
.badge-star {
  display: grid;
  place-items: center;
  width: 116px;
  aspect-ratio: 1;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background: var(--cobalt);
}
.splash-badge-n {
  font-weight: 750;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #fff;
  transform: translateY(14%);   /* optical center of a five-point star sits low */
}
.badge-word {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
@keyframes stamp {
  from { opacity: 0; transform: scale(1.25); filter: blur(2px); }
  to   { opacity: 1; transform: scale(1); filter: blur(0); }
}

/* ---------- the record: THE DIGITAL SHELF ----------
   One screen when it fits; the PAGE SCROLLS when it doesn't (small phones —
   locking height clipped the layout there, 2026-09-05). Panels overlay and
   scroll internally; the mini player stays docked. */
.page-disk.state-record { min-height: 100vh; min-height: 100dvh; }
.record {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(14px, 3vh, 28px) clamp(16px, 5vw, 28px) 0;
}
.shelf-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(10px, 2.4vh, 22px);
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 128px);  /* room for the drive bay */
}

/* the shelf grid */
.shelf {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: clamp(8px, 1.8vh, 14px);
  min-height: 0;
}
.cubby {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  padding: clamp(10px, 2vh, 18px) clamp(12px, 3vw, 18px);
  text-align: left;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--card);
  box-shadow: inset 0 2px 6px rgba(23, 24, 27, 0.05), var(--shadow-1);  /* compartment depth */
  cursor: pointer;
  transition: transform 200ms var(--spring), border-color 150ms ease, box-shadow 200ms ease;
  min-height: 0;
  overflow: hidden;
}
.cubby:hover { transform: translateY(-2px); border-color: var(--cobalt); }
.cubby:active { transform: translateY(0); }
.cubby-glyph { font-size: clamp(15px, 2.6vh, 20px); color: var(--cobalt); line-height: 1; }
.cubby-name {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.cubby-status {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.cubby.is-empty { opacity: 0.45; pointer-events: none; box-shadow: inset 0 2px 8px rgba(23, 24, 27, 0.08); }
.cubby-link {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 0;
  max-height: 64px;
}
.cubby-link .cubby-status { margin-left: auto; }
.cubby.is-live .cubby-status { color: var(--teal-deep); }
.cubby.is-playing .cubby-glyph { color: var(--teal); }

.util-row {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}
.util-row .pill { padding: 10px 16px; text-decoration: none; cursor: pointer; }

/* panels — a cubby, opened */
.panel {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;          /* hover where you pushed, not the bottom */
  justify-content: center;
  padding: 18px;
  background: rgba(228, 228, 230, 0.7);
  backdrop-filter: blur(10px);
}
.panel[hidden] { display: none; }
.panel-inner {
  --ox: 50%;
  --oy: 50%;
  width: min(560px, 100%);
  max-height: 80vh;
  max-height: 80dvh;
  overflow-y: auto;
  padding: 22px 22px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  transform-origin: var(--ox) var(--oy);
  animation: panel-grow 0.34s var(--spring) both;
}
@keyframes panel-grow { from { transform: scale(0.55); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.panel .panel-close { display: block; margin: 18px auto 0; }
@media (prefers-reduced-motion: reduce) { .panel-inner { animation: none; } }
.record-head {
  display: grid;
  grid-template-columns: minmax(72px, 104px) 1fr;
  gap: clamp(14px, 4vw, 22px);
  align-items: center;
}
/* the star lives INSIDE the stat line: DISK 01/50 · [★N position] · N hold… */
.chain-pos {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.chain-star {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background: var(--cobalt);
}
.chain-star span {
  font-weight: 750;
  font-size: 13px;
  letter-spacing: -0.02em;
  color: #fff;
  transform: translateY(14%);
}
.chain-word {
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--ink-faint);
}
.disk-name {
  display: block;
  margin: 7px 0 0;
  padding: 0;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--ink-soft);
}
.disk-name.is-unnamed { color: var(--ink-faint); text-decoration: underline dotted; text-underline-offset: 3px; }
.disk-name:disabled { cursor: default; }
.disk-name[hidden] { display: none; }
.record-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-md);
  background: var(--card);
  box-shadow: var(--shadow-2);
}
.record-cat, .record-artist, .record-chain {
  margin: 0;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.record-cat { color: var(--ink-faint); }
.record-title {
  margin: 6px 0 6px;
  font-size: clamp(22px, 6vw, 32px);
  font-weight: 650;
  letter-spacing: -.03em;
  line-height: 1.02;
}
.record-artist { color: var(--ink-soft); }
.record-artist::after { content: " · " attr(data-year); color: var(--ink-faint); }
.record-chain {
  margin-top: 10px;
  color: var(--cobalt);
  letter-spacing: .14em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
/* arrived on a copied link: the record still plays, but the chain stays shut */
.is-shared .record-chain { color: var(--ink-faint); }
.is-shared .splash-copy { color: var(--ink-soft); font-size: clamp(12px, 4vw, 15px); }

.credits-top {
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: none;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  cursor: pointer;
  transition: color 150ms ease;
}
.credits-top:hover { color: var(--cobalt); }
.credits-top[hidden] { display: none; }

/* cloud destinations in the files panel */
.cloud-label {
  margin: 20px 0 10px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.cloud-row { display: flex; gap: 10px; flex-wrap: wrap; }
.cloud-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--card);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: transform 200ms var(--spring), border-color 150ms ease;
}
.cloud-btn:hover { transform: translateY(-2px); border-color: var(--cobalt); }
.cloud-btn svg { display: block; }

/* ---------- sections ---------- */
.sec { padding: clamp(18px, 5vw, 26px) 0; border-top: 1px solid var(--line); }
.sec-title {
  margin: 0 0 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink);
}
.sec-note { color: var(--ink-faint); letter-spacing: .14em; margin-left: 8px; }
.sec-copy { margin: 0 0 16px; font-size: 13px; line-height: 1.7; color: var(--ink-soft); }
.sec-fine {
  margin: 12px 0 0;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--ink-faint);
}
.sec-fine[hidden] { display: none; }

/* tracks */
.tracklist { list-style: none; margin: 0; padding: 0; }
.track {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding: 11px 10px;
  margin: 0 -10px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}
.track:hover { background: rgba(86, 97, 224, .06); }
.track-num, .track-time { font-family: var(--f-mono); font-size: 10px; color: var(--ink-faint); letter-spacing: .1em; }
.track-title { font-size: 14px; }
.track.is-current { color: var(--cobalt); }
.track.is-current .track-num { color: var(--cobalt); }
.track.is-current .track-title::after { content: " ●"; font-size: 8px; vertical-align: 3px; color: var(--teal); }

.route-btn { margin-top: 16px; padding: 11px 18px; cursor: pointer; }
.route-btn[hidden] { display: none; }

/* files */
.files-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.files-row .download-btn { margin: 0; }
.files-row .pill { padding: 12px 18px; cursor: pointer; }

/* video */
.video-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.video-list.has-featured {   /* the others shrink to a row of small cards */
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  background: #1b1c20;
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-card .video-title {
  position: absolute;
  left: 10px;
  bottom: 8px;
  margin: 0;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.65);
  pointer-events: none;
}
.video-stage { margin-bottom: 14px; }
.video-stage video {
  width: 100%;
  border-radius: var(--r-md);
  background: #000;
  display: block;
}
.video-pending {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  background: var(--paper-2);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.video-title {
  display: block;
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* credits */
.credits { margin: 0; }
.credit-row {
  display: grid;
  grid-template-columns: minmax(96px, 34%) 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dotted var(--line);
}
.credit-row dt {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.credit-row dd { margin: 0; font-size: 13px; line-height: 1.6; }
.credits a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.credits-legal {
  margin: 16px 0 0;
  font-size: 11px;
  line-height: 1.7;
  color: var(--ink-faint);
}

/* guest book */
.book { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 10px; }
.book:empty::before {
  content: "no notes on this record yet";
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.book-btn { padding: 12px 20px; cursor: pointer; }

/* notes */
.note {
  position: relative;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--card);
}
.note.is-mine { border-color: var(--cobalt); }
.note-head { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 6px; }
.note-name {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
}
.note-at { font-family: var(--f-mono); font-size: 10px; color: var(--ink-faint); letter-spacing: .1em; }
.note-body { margin: 0 0 10px; font-size: 13px; line-height: 1.6; color: var(--ink-soft); }
.note-heart {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: none;
  color: var(--ink-faint);
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease, transform 200ms var(--spring);
}
.note-heart:hover { transform: translateY(-1px); color: var(--magenta); border-color: var(--magenta); }
.note-heart.is-on { color: var(--magenta); border-color: var(--magenta); }
.note-heart[disabled] { opacity: .45; cursor: default; }
.note-msg-btn { margin-top: 2px; padding: 8px 14px; cursor: pointer; }

/* composer */
.book-form { display: grid; gap: 10px; margin-bottom: 16px; }
.book-form[hidden] { display: none; }
.book-name, .book-body {
  text-transform: none;
  text-align: left;
  letter-spacing: .03em;
  font-size: 13px;
  width: 100%;
}
.book-body { resize: vertical; font-family: var(--f-sans); line-height: 1.6; }
.book-form-row { display: flex; gap: 12px; align-items: center; }
.book-form-row .unlock-msg { margin: 0; }

/* inbox */
.inbox-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.inbox-head .pill { text-decoration: none; padding: 10px 16px; }
.inbox .record-title { font-size: clamp(24px, 7vw, 34px); margin: 0; }
.pm-panel { text-align: left; }
.pm-msgs {
  list-style: none;
  margin: 0 0 14px;
  padding: 4px 0;
  max-height: 44vh;
  overflow-y: auto;
  display: grid;
  gap: 8px;
}
.pm-m span {
  display: inline-block;
  max-width: 85%;
  padding: 9px 13px;
  border-radius: var(--r-md);
  font-size: 13px;
  line-height: 1.5;
}
.pm-m.is-me { text-align: right; }
.pm-m.is-me span { background: var(--cobalt); color: #fff; border-bottom-right-radius: 4px; }
.pm-m.is-them span { background: var(--paper); color: var(--ink); border-bottom-left-radius: 4px; }
.pm-m.is-none { font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; color: var(--ink-faint); text-transform: uppercase; }
.pm-form { justify-content: flex-start; margin-bottom: 6px; }
.pm-input { flex: 1 1 160px; min-width: 0; text-transform: none; text-align: left; letter-spacing: .02em; font-size: 13px; }
.pm-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.pm-block {
  border: 0;
  background: none;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #d43c2e;
  cursor: pointer;
}

.record-foot {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.record-foot .pill { padding: 11px 18px; text-decoration: none; cursor: pointer; }
.is-saved .save-pill { color: var(--teal-deep); border-color: var(--teal); }

/* ---------- docked mini player ---------- */
.mini {
  --progress: 0%;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  z-index: 60;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  grid-template-areas: "art meta play" "bar bar bar";
  gap: 10px;
  align-items: center;
  max-width: 616px;
  margin: 0 auto;
  padding: 10px 12px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(246, 246, 247, .92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-2);
}
.mini[hidden] { display: none; }
.mini-art { grid-area: art; width: 42px; height: 42px; border-radius: 50%; object-fit: cover; background: #1b1c20; }
.is-playing .mini-art { animation: disk-spin 3.4s linear infinite; }
.mini-meta { grid-area: meta; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.mini-title { font-size: 13px; font-weight: 600; }
.mini-track {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-play {
  grid-area: play;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: var(--cobalt);
  box-shadow: 0 8px 20px rgba(86, 97, 224, .34);
  cursor: pointer;
  position: relative;
}
.mini-play::before {                                /* glyph is CSS — never put text in the button */
  content: "▶\FE0E";   /* FE0E = text presentation — iOS renders bare U+25B6 as a blue emoji */
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  padding-left: 2px;
}
.is-playing .mini-play::before { content: "❚❚"; font-size: 11px; padding-left: 0; }
.mini-bar {
  grid-area: bar;
  height: 3px;
  border-radius: 99px;
  background: rgba(25, 26, 29, .12);
  cursor: pointer;
  overflow: hidden;
}
.mini-fill { width: var(--progress); height: 100%; background: var(--cobalt); border-radius: inherit; }

/* ---------- SAVE PROGRESS ---------- */
.save-panel { text-align: left; }
.save-list {
  margin: 0 0 20px;
  padding-left: 18px;
  display: grid;
  gap: 7px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.save-list li::marker { color: var(--teal); }
.save-form { justify-content: flex-start; margin-bottom: 12px; }
.save-form[hidden] { display: none; }
.save-email {
  flex: 1 1 190px;
  min-width: 0;
  text-transform: none;
  text-align: left;
  letter-spacing: .03em;
  font-size: 13px;
}
.save-optin {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-soft);
  cursor: pointer;
}
.save-optin[hidden] { display: none; }
.save-optin input { accent-color: var(--cobalt); margin-top: 1px; }
.save-fine {
  margin: 12px 0 18px;
  font-family: var(--f-mono);
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: .08em;
  color: var(--ink-faint);
}
.save-panel .memcard-btn { display: block; margin: 0 auto; }

/* the 20-second nudge */
.nudge {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 86px);
  z-index: 70;
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 616px;
  margin: 0 auto;
  padding: 12px 14px;
  border: 1px solid var(--cobalt);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-2);
  animation: nudge-in .45s var(--spring) both;
}
.nudge[hidden] { display: none; }
.nudge span { flex: 1; font-size: 12px; line-height: 1.4; color: var(--ink-soft); }
.nudge .pill { padding: 9px 14px; cursor: pointer; color: #fff; background: var(--cobalt); border-color: var(--cobalt); }
.nudge-x { border: 0; background: none; color: var(--ink-faint); font-size: 13px; cursor: pointer; padding: 4px; }
@keyframes nudge-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .splash-disk, .is-playing .mini-art { animation: none; }
  .nudge, .splash-chain { animation: none; }
}
