/* Business Mine Reviews - trust-first record page.
   Native CSS. One accent, one radius system, one theme that follows the OS.
   Radius rule: cards 14px, pills 999px, small chips 8px. */

@font-face { font-family: 'Geist Fallback'; src: local('Helvetica Neue'), local('Arial'); size-adjust: 100%; }

:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --surface-2: #fbfbf9;
  --ink: #101312;
  --ink-2: #3d4341;
  --muted: #6c7370;
  --line: #e2e3df;
  --line-strong: #cfd1cc;
  --accent: #124734;
  --accent-ink: #ffffff;
  --accent-soft: #e9f0ec;
  --star: #d99518;
  --tp: #00996a;
  --gg: #2f6fd0;
  --shadow: 0 1px 2px rgba(16, 19, 18, .04), 0 12px 32px -18px rgba(16, 19, 18, .22);
  --r-card: 14px;
  --r-chip: 8px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0d0f0e;
    --surface: #141716;
    --surface-2: #111413;
    --ink: #f0f1ef;
    --ink-2: #c3c7c4;
    --muted: #8b918e;
    --line: #232725;
    --line-strong: #343936;
    --accent: #5cb494;
    --accent-ink: #06120d;
    --accent-soft: #17241f;
    --star: #e0ac47;
    --tp: #22c79a;
    --gg: #6fa3ea;
    --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 16px 40px -20px rgba(0, 0, 0, .7);
  }
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Geist', 'Geist Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -.022em; line-height: 1.12; }
p { margin: 0; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 24px; }
@media (max-width: 640px) { .wrap { padding-inline: 20px; } }

.mono { font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace; font-variant-numeric: tabular-nums; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent); color: var(--accent-ink);
  padding: 12px 18px; border-radius: 0 0 var(--r-chip) 0;
}
.skip:focus { left: 0; }

:where(a, button, summary, input):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- nav ---------- */

.top {
  position: sticky; top: 0; z-index: 30;
  height: 66px;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.top.stuck { border-bottom-color: var(--line); box-shadow: 0 8px 24px -20px rgba(0, 0, 0, .5); }
.top .wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 600; letter-spacing: -.01em; text-decoration: none; white-space: nowrap; }
.brand .dot { width: 9px; height: 9px; border-radius: 999px; background: var(--accent); flex: none; }
.brand span { color: var(--muted); font-weight: 450; }
.top nav { display: flex; align-items: center; gap: 26px; font-size: 14.5px; }
.top nav a { color: var(--ink-2); text-decoration: none; transition: color .18s var(--ease); }
.top nav a { position: relative; padding-block: 4px; }
.top nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.top nav a:hover, .top nav a[aria-current] { color: var(--ink); }
.top nav a:hover::after, .top nav a[aria-current]::after { transform: scaleX(1); }
@media (max-width: 880px) {
  .top nav { gap: 18px; font-size: 13.5px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .top nav::-webkit-scrollbar { display: none; }
  .brand span { display: none; }
}

/* ---------- hero ---------- */

.hero { padding: 72px 0 56px; }
@media (max-width: 900px) { .hero { padding: 44px 0 36px; } }
.hero .wrap { display: grid; grid-template-columns: 1fr; gap: 44px; }
@media (min-width: 980px) {
  .hero .wrap { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 72px; align-items: start; }
}

.updated { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); letter-spacing: .01em; }
.updated::before { content: ''; width: 22px; height: 1px; background: var(--line-strong); }

h1 { font-size: clamp(2.4rem, 5.6vw, 3.7rem); margin: 18px 0 0; }
.lead { margin-top: 18px; font-size: 1.08rem; color: var(--ink-2); max-width: 46ch; }
.lead strong { font-weight: 600; color: var(--ink); }

.hero-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 19px; border-radius: 999px;
  font-size: 14.5px; font-weight: 500; text-decoration: none; white-space: nowrap;
  border: 1px solid var(--line-strong); background: var(--surface); color: var(--ink);
  transition: transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
}
.btn:hover { border-color: var(--ink); }
.btn:active { transform: translateY(1px); }
.btn.primary { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.btn.primary:hover { background: color-mix(in srgb, var(--accent) 88%, var(--ink)); }
.btn svg { width: 15px; height: 15px; fill: currentColor; flex: none; }

/* ---------- score panel ---------- */

.panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-card); box-shadow: var(--shadow); overflow: hidden;
}
.panel-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 18px 22px; border-bottom: 1px solid var(--line); background: var(--surface-2);
}
.panel-head b { font-size: 14px; font-weight: 600; }
.panel-head span { font-size: 12.5px; color: var(--muted); }

.plat { display: grid; grid-template-columns: 1fr 1fr; }
.plat.one { grid-template-columns: 1fr; }
.pcell {
  display: grid; gap: 14px; align-content: start;
  padding: 24px 22px; text-decoration: none;
  transition: background .2s var(--ease);
}
.plat:not(.one) .pcell:first-child { border-right: 1px solid var(--line); }
.pcell:hover { background: var(--surface-2); }
.pcell .src { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); font-weight: 500; }
.pcell .src svg { width: 14px; height: 14px; }
.pcell .src .tp-i { fill: var(--tp); }
.pcell .src .gg-i { fill: var(--gg); }
.pcell .big { display: flex; align-items: baseline; gap: 5px; font-size: 2.7rem; font-weight: 600; letter-spacing: -.035em; line-height: 1; }
.pcell .big i { font-size: 1rem; font-style: normal; color: var(--muted); font-weight: 450; letter-spacing: 0; }
.pcell .rate { display: flex; flex-direction: column; gap: 7px; }
.pcell .rate b { font-size: 13px; font-weight: 450; color: var(--muted); }
.pcell .cnt { font-size: 12.5px; color: var(--muted); }

/* one platform: score on the left, rating on the right, both baseline aligned */
.plat.one .pcell {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas: 'src src' 'big rate' 'cnt cnt';
  align-items: start; column-gap: 24px; gap: 12px 24px;
}
.plat.one .pcell .src { grid-area: src; }
.plat.one .pcell .big { grid-area: big; }
.plat.one .pcell .rate { grid-area: rate; align-self: center; justify-self: start; }
.plat.one .pcell .cnt { grid-area: cnt; }

@media (max-width: 560px) {
  .plat { grid-template-columns: 1fr; }
  .plat:not(.one) .pcell:first-child { border-right: 0; border-bottom: 1px solid var(--line); }
  .plat.one .pcell { grid-template-columns: 1fr; grid-template-areas: 'src' 'big' 'rate' 'cnt'; }
  .plat.one .pcell .rate { align-self: start; }
}

.dist { padding: 22px; border-top: 1px solid var(--line); display: grid; gap: 9px; }
.dist-row { display: grid; grid-template-columns: 56px 1fr 40px; align-items: center; gap: 12px; font-size: 12.5px; color: var(--muted); }
.dist-row .track { display: block; height: 7px; border-radius: 999px; background: color-mix(in srgb, var(--line) 70%, transparent); overflow: hidden; }
.dist-row .fill {
  display: block; width: 100%; height: 100%; border-radius: 999px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .9s var(--ease);
}
.panel.in .dist-row .fill { transform: scaleX(var(--v, 0)); transition-delay: calc(var(--i, 0) * 90ms + 220ms); }
.dist-row .n { color: var(--ink-2); }
.dist-row.zero .fill { background: var(--line-strong); }
.dist-row .n { text-align: right; }
.dist-cap { padding: 0 22px 20px; font-size: 12px; color: var(--muted); }

/* ---------- stars ---------- */

.stars { display: inline-flex; gap: 2.5px; }
.stars svg { width: 14px; height: 14px; }
.stars .on { fill: var(--star); }
.stars .off { fill: var(--line-strong); }
.stars.lg svg { width: 17px; height: 17px; }

/* ---------- keurmerk and broadcaster band ---------- */

.strip { border-block: 1px solid var(--line); background: var(--surface-2); }
.strip .wrap {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 18px 34px; padding-block: 18px;
}

.badge-nrto {
  display: flex; align-items: center; gap: 11px; text-decoration: none; flex: none;
  transition: transform .25s var(--ease);
}
.badge-nrto:hover { transform: translateY(-2px); }
.badge-nrto img { height: 40px; width: auto; }
.badge-nrto span { font-size: 11.5px; line-height: 1.4; color: var(--muted); }
.badge-nrto b { display: block; color: var(--ink); font-weight: 550; font-size: 12px; }

.press, .pods { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.press .lbl, .pods .lbl { font-size: 11.5px; color: var(--muted); white-space: nowrap; }
.press .lbl b { color: var(--ink-2); font-weight: 550; }

.press ul, .pods ul { display: flex; align-items: center; gap: 8px; margin: 0; padding: 0; list-style: none; }

.press li {
  display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line-strong); border-radius: 8px;
  padding: 7px 11px; height: 34px;
  opacity: 0; transform: translateY(8px) scale(.97);
}
.press li img { height: 13px; width: auto; display: block; }
.press li.mono-logo { color: #101312; }
.press li.mono-logo img { height: 11px; }
.strip .press.in li {
  opacity: 1; transform: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms + 120ms);
}

.pods li a {
  display: inline-block; font-size: 12.5px; color: var(--ink-2); text-decoration: none;
  padding: 6px 11px; border: 1px solid var(--line-strong); border-radius: 999px;
  transition: border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.pods li a:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }

@media (max-width: 900px) {
  .strip .wrap { gap: 14px 20px; }
  .badge-nrto span { display: none; }
}

/* ---------- sections ---------- */

section { padding: 68px 0; }
@media (max-width: 900px) { section { padding: 48px 0; } }
section > .wrap > h2 { font-size: clamp(1.6rem, 3.4vw, 2.15rem); max-width: 22ch; }
.sec-lead { margin-top: 14px; font-size: 1.02rem; color: var(--ink-2); max-width: 62ch; }

/* ---------- themes (bento) ---------- */

.themes { display: grid; gap: 14px; margin-top: 34px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .themes { grid-template-columns: repeat(6, 1fr); } }
.theme {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px;
}
@media (min-width: 760px) {
  .theme:nth-child(1) { grid-column: span 3; }
  .theme:nth-child(2) { grid-column: span 3; }
  .theme:nth-child(3) { grid-column: span 2; }
  .theme:nth-child(4) { grid-column: span 2; }
  .theme:nth-child(5) { grid-column: span 2; }
}
.theme.tint { background: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 22%, transparent); }
.theme .k { display: flex; align-items: baseline; gap: 9px; }
.theme .k b { font-size: 1.9rem; font-weight: 600; letter-spacing: -.035em; line-height: 1; }
.theme .k span { font-size: 13px; color: var(--muted); }
.theme h3 { font-size: 1.02rem; }
.theme blockquote { margin: 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
.theme cite { font-style: normal; font-size: 12.5px; color: var(--muted); }

/* ---------- filters ---------- */

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0 26px; }
.filters button {
  font: inherit; font-size: 14px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: var(--surface); color: var(--ink-2);
  transition: border-color .18s var(--ease), color .18s var(--ease), background .18s var(--ease), transform .18s var(--ease);
}
.filters button:hover { border-color: var(--ink); color: var(--ink); }
.filters button:active { transform: translateY(1px); }
.filters button[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.filters button i { font-style: normal; font-size: 12px; opacity: .68; font-variant-numeric: tabular-nums; }

/* ---------- review grid ---------- */

.grid { columns: 3; column-gap: 14px; }
.grid.three { columns: 3; }
.grid.two { columns: 2; }
@media (max-width: 1000px) { .grid, .grid.three { columns: 2; } }
@media (max-width: 660px) { .grid, .grid.two, .grid.three { columns: 1; } }

.card {
  break-inside: avoid; page-break-inside: avoid;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 20px 20px 18px; margin-bottom: 14px;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.card:hover { border-color: var(--line-strong); transform: translateY(-2px); box-shadow: var(--shadow); }
.card header { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.card .avatar {
  width: 34px; height: 34px; border-radius: 999px; flex: none;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
  font-size: 12px; font-weight: 600; letter-spacing: .01em;
}
.card .who { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.card .name { font-size: 14.5px; font-weight: 550; letter-spacing: -.005em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.card .who small { font-size: 12px; color: var(--muted); }
.card .tag { flex: none; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 999px; text-decoration: none; }
.card .tag svg { width: 13px; height: 13px; }
.card .tag.tp svg { fill: var(--tp); }
.card .tag.gg svg { fill: var(--gg); }
.card .tag.own svg { fill: var(--muted); }
.card .tag.bm { font-size: 10px; font-weight: 700; color: var(--accent); background: var(--accent-soft); }
.card h3 { font-size: 15px; margin: 10px 0 7px; letter-spacing: -.01em; }
.card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.58; }
.card p + p { margin-top: 9px; }
.card .prog { margin-top: 10px; font-size: 12px; color: var(--muted); }
.card .reply { margin-top: 13px; padding: 12px 13px; border-radius: var(--r-chip); background: var(--surface-2); border: 1px solid var(--line); }
.card .reply b { display: block; font-size: 11.5px; font-weight: 600; color: var(--muted); margin-bottom: 4px; letter-spacing: .01em; }
.card .reply p { font-size: 13.5px; }
.card footer { margin-top: 14px; font-size: 12px; color: var(--muted); }
.card .dim { color: var(--muted); font-style: italic; }
.card[hidden] { display: none; }

/* ---------- faq ---------- */

.faq { margin-top: 30px; max-width: 78ch; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 40px 18px 0; position: relative;
  font-size: 1.02rem; font-weight: 550; letter-spacing: -.012em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 6px; top: 50%; width: 11px; height: 11px;
  border-right: 1.6px solid var(--muted); border-bottom: 1.6px solid var(--muted);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq details p { padding: 0 0 20px; color: var(--ink-2); max-width: 68ch; }

/* ---------- record / sources ---------- */

.record { margin-top: 30px; border-top: 1px solid var(--line); }
.record-row {
  display: grid; grid-template-columns: 190px 1fr; gap: 18px;
  padding: 16px 0; border-bottom: 1px solid var(--line); align-items: baseline;
}
.record-row dt { font-size: 13.5px; color: var(--muted); }
.record-row dd { margin: 0; font-size: 15px; }
.record-row dd a { text-decoration-color: var(--line-strong); text-underline-offset: 3px; }
@media (max-width: 620px) { .record-row { grid-template-columns: 1fr; gap: 4px; } }

.note { margin-top: 22px; font-size: 13px; color: var(--muted); max-width: 78ch; }
.note a { color: var(--ink-2); }

/* ---------- more pages ---------- */

.more { display: grid; gap: 12px; margin-top: 30px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .more { grid-template-columns: 1fr 1fr; } }
.more a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--r-card);
  background: var(--surface); text-decoration: none;
  transition: border-color .18s var(--ease), transform .18s var(--ease);
}
.more a:hover { border-color: var(--ink); }
.more a:active { transform: translateY(1px); }
.more b { font-size: 15.5px; font-weight: 550; letter-spacing: -.012em; }
.more span { display: block; font-size: 13.5px; color: var(--muted); margin-top: 5px; font-weight: 400; }
.more .arrow { flex: none; color: var(--muted); font-size: 15px; }

/* ---------- breadcrumb ---------- */

.crumb { padding-top: 26px; font-size: 13px; color: var(--muted); }
.crumb a { text-decoration: none; }
.crumb a:hover { text-decoration: underline; }
.crumb span { margin-inline: 7px; opacity: .5; }

/* ---------- prose (subpages) ---------- */

.prose { max-width: 70ch; margin-top: 26px; display: grid; gap: 16px; }
.prose p { font-size: 1.02rem; color: var(--ink-2); }
.prose h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-top: 20px; }
.prose ul { margin: 0; padding-left: 20px; display: grid; gap: 8px; color: var(--ink-2); }
.prose strong { color: var(--ink); font-weight: 600; }

/* ---------- footer ---------- */

.foot { border-top: 1px solid var(--line); background: var(--surface-2); padding: 44px 0 52px; margin-top: 20px; }
.foot .cols { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 780px) { .foot .cols { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; } }
.foot h4 { margin: 0 0 12px; font-size: 12.5px; font-weight: 600; color: var(--muted); letter-spacing: .02em; }
.foot p, .foot li { font-size: 13.5px; color: var(--ink-2); line-height: 1.7; }
.foot ul { margin: 0; padding: 0; list-style: none; }
.foot a { text-decoration: none; }
.foot a:hover { text-decoration: underline; }
.foot .fine { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 6px 20px; }

/* ---------- motion ---------- */

[data-rise] { opacity: 0; transform: translateY(14px); }
[data-rise].in { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  [data-rise], [data-rise].in { opacity: 1; transform: none; transition: none; }
  .dist-row .fill { transition: none; transform: scaleX(var(--v, 0)); }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

[id] { scroll-margin-top: 84px; }


/* ---------- motion layer ---------- */

.progress {
  position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 40;
  background: var(--accent); transform: scaleX(0); transform-origin: 0 50%;
  pointer-events: none;
}
@supports (animation-timeline: scroll()) {
  .progress { animation: bar linear both; animation-timeline: scroll(root block); }
}
@keyframes bar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* hero load cascade */
@keyframes lift { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero [data-in] { opacity: 0; animation: lift .72s var(--ease) forwards; }
.hero [data-in="1"] { animation-delay: .04s; }
.hero [data-in="2"] { animation-delay: .12s; }
.hero [data-in="3"] { animation-delay: .2s; }
.hero [data-in="4"] { animation-delay: .28s; }
.hero .panel[data-rise] { animation: lift .8s var(--ease) .18s forwards; }

/* stars sweep in */
@keyframes pop { from { opacity: 0; transform: scale(.55); } to { opacity: 1; transform: none; } }
.panel.in .stars svg, .hero .stars svg, .card.in .stars svg { animation: pop .42s var(--ease) backwards; }
.stars svg:nth-child(1) { animation-delay: .30s; }
.stars svg:nth-child(2) { animation-delay: .36s; }
.stars svg:nth-child(3) { animation-delay: .42s; }
.stars svg:nth-child(4) { animation-delay: .48s; }
.stars svg:nth-child(5) { animation-delay: .54s; }

/* review cards rise as they enter */
.card { opacity: 0; transform: translateY(16px); }
.card.in { opacity: 1; transform: none; transition: opacity .55s var(--ease), transform .3s var(--ease), border-color .2s var(--ease), box-shadow .3s var(--ease); }
.card.out { opacity: 0; transform: scale(.97); transition: opacity .2s var(--ease), transform .2s var(--ease); }
.no-js .card { opacity: 1; transform: none; }

/* theme tiles lift on hover */
.theme { transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease); }
.theme:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--shadow); }

/* link cards: arrow slides */
.more .arrow { transition: transform .25s var(--ease); }
.more a:hover .arrow { transform: translateX(4px); }

/* external link icon nudges */
.btn svg { transition: transform .25s var(--ease); }
.btn:hover svg { transform: translate(1.5px, -1.5px); }

@media (prefers-reduced-motion: reduce) {
  .progress { display: none; }
  .hero [data-in], .hero .panel[data-rise] { opacity: 1; animation: none; }
  .panel.in .stars svg, .hero .stars svg { animation: none; }
  .card, .card.in, .card.out { opacity: 1; transform: none; transition: none; }
  .panel.in .dist-row .fill { transition-delay: 0s; }
  .theme:hover { transform: none; }
  .press li { opacity: 1; transform: none; }
  .badge-nrto:hover { transform: none; }
}
.no-js .press li { opacity: 1; transform: none; }
/* the band's own links must not pick up the prose underline treatment */
.strip a { background-image: none; border-bottom: 0; }

.card .disclose {
  margin-top: 11px; padding: 9px 11px; border-radius: var(--r-chip);
  background: var(--surface-2); border: 1px dashed var(--line-strong);
  font-size: 12.5px; color: var(--muted);
}

.disclosure { border-block: 1px solid color-mix(in srgb, var(--accent) 24%, transparent); background: var(--accent-soft); }
.disclosure .wrap { padding-block: 20px; }
.disclosure p { font-size: 14.5px; color: var(--ink-2); max-width: 92ch; line-height: 1.6; }
.disclosure b { color: var(--ink); font-weight: 600; }
.disclosure a { color: var(--accent); text-underline-offset: 3px; }
@media (prefers-color-scheme: dark) { .disclosure a { color: var(--accent); } }

.btn.wa { margin-top: 14px; background: var(--surface); }
.btn.wa svg { width: 15px; height: 15px; fill: #25d366; }
.btn.wa.small { margin-top: 8px; padding: 8px 14px; font-size: 13.5px; }
.foot .btn.wa { border-color: var(--line-strong); }


/* prose links underline on hover */
.prose a, .record-row dd a, .note a { text-decoration: none; background-image: linear-gradient(currentColor, currentColor); background-size: 0% 1px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size .3s var(--ease); padding-bottom: 1px; border-bottom: 1px solid var(--line-strong); }
.prose a:hover, .record-row dd a:hover, .note a:hover { background-size: 100% 1px; border-bottom-color: transparent; }

/* link cards lift */
.more a { transition: border-color .18s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease); }
.more a:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.more a:active { transform: translateY(0); }

/* the hero panel drifts a touch as it leaves, purely for depth */
@supports (animation-timeline: view()) {
  @media (min-width: 980px) and (prefers-reduced-motion: no-preference) {
    .hero .panel { animation: drift linear both; animation-timeline: view(); animation-range: exit 0% exit 100%; }
    @keyframes drift { to { transform: translateY(-26px); opacity: .82; } }
  }
}

/* FAQ opens smoothly where the browser supports it */
@supports (interpolate-size: allow-keywords) {
  .faq details { interpolate-size: allow-keywords; }
  .faq details::details-content { block-size: 0; overflow: hidden; transition: block-size .35s var(--ease), content-visibility .35s allow-discrete; }
  .faq details[open]::details-content { block-size: auto; }
}

/* filter chips give physical feedback */
.filters button { transition: border-color .18s var(--ease), color .18s var(--ease), background .18s var(--ease), transform .18s var(--ease); }
.filters button:hover { transform: translateY(-1px); }
.filters button:active { transform: translateY(1px) scale(.98); }

@media (prefers-reduced-motion: reduce) {
  .card:hover, .more a:hover, .filters button:hover { transform: none; }
  .card.in .stars svg { animation: none; }
  .hero .panel { animation: none; }
  .faq details::details-content { transition: none; }
}
