/* plaza — a quiet dark gallery so the generated fingerprints carry the colour. */
:root,
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0b0d12;
  --bg-glow: #161b26;
  --bg-90: rgba(11, 13, 18, 0.82);
  --panel: #141821;
  --panel-2: #1b202b;
  --line: #2a3342;
  --ink: #e7ecf3;
  --muted: #9aa7ba;
  --faint: #6b7787;
  --accent: #7cc4ff;
  --accent-2: #b99cff;
  --radius: 14px;
  --maxw: 1180px;
  --font-2: Georgia, "Palatino Linotype", "Times New Roman", serif; /* second-level (subtitles) */
}
:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f7fa;
  --bg-glow: #e6edf7;
  --bg-90: rgba(245, 247, 250, 0.82);
  --panel: #ffffff;
  --panel-2: #eef1f6;
  --line: #d9dfe8;
  --ink: #18212f;
  --muted: #54617a;
  --faint: #8893a4;
  --accent: #2563eb;
  --accent-2: #7c3aed;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: radial-gradient(1200px 600px at 50% -10%, var(--bg-glow) 0%, var(--bg) 60%);
  color: var(--ink);
  font: 15px/1.55 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
code, .mono { font-family: ui-monospace, "SF Mono", "Cascadia Code", Consolas, monospace; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---- header / hero ---- */
header.site {
  padding: 40px 0 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
header.site h1 { margin: 0; font-size: 30px; letter-spacing: -0.02em; }
header.site h1 .dot { color: var(--accent-2); }
header.site p.tag { margin: 6px 0 0; color: var(--muted); }
header.site .meta { margin-top: 10px; color: var(--faint); font-size: 13px; }

/* header nav + theme toggle (shared by both pages) */
.site-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.site-nav { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.site-nav a { color: var(--muted); font-size: 14px; }
.site-nav a:hover { color: var(--ink); }
.theme-toggle { background: var(--panel-2); border: 1px solid var(--line); color: var(--ink); border-radius: 9px; padding: 5px 10px; cursor: pointer; font-size: 15px; line-height: 1; }
.theme-toggle:hover { border-color: var(--faint); }

/* ---- search + filters ---- */
.controls {
  position: sticky; top: 0; z-index: 20;
  background: var(--bg-90);
  backdrop-filter: blur(6px);
  padding: 14px 0 12px; margin-bottom: 18px;
}
.searchbar {
  display: flex; gap: 10px; align-items: center;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 12px; padding: 10px 14px;
}
.searchbar input {
  flex: 1; background: transparent; border: 0; outline: none;
  color: var(--ink); font-size: 16px;
}
.searchbar .count { color: var(--faint); font-size: 13px; white-space: nowrap; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chip {
  font-size: 12.5px; color: var(--muted);
  background: var(--panel-2); border: 1px solid var(--line);
  padding: 4px 11px; border-radius: 999px; cursor: pointer; user-select: none;
}
.chip:hover { color: var(--ink); border-color: var(--faint); }
.chip.on { color: #0b0d12; background: var(--accent); border-color: var(--accent); }

/* ---- catalog grid ---- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 18px; padding-bottom: 8px; }
.cat-sec { margin-bottom: 28px; }
h2.cat { display: flex; align-items: center; gap: 10px; font-size: 16px; letter-spacing: -0.01em; color: var(--ink); margin: 22px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
h2.cat .cat-n { font-size: 12px; font-weight: 500; color: var(--faint); }
.card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-3px); border-color: var(--faint); box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.card .art { aspect-ratio: 16 / 10; background: #0a0c11; position: relative; }
.card .art img { display: block; width: 100%; height: 100%; object-fit: cover; }
.card .art .kind {
  position: absolute; top: 9px; right: 10px; font-size: 10.5px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--muted); background: var(--bg-90);
  border: 1px solid var(--line); padding: 2px 7px; border-radius: 999px; backdrop-filter: blur(3px);
}
.card .body { padding: 13px 15px 15px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.card .title { font-weight: 620; font-size: 15px; line-height: 1.3; }
.card .subtitle { font-family: var(--font-2); font-style: italic; font-size: 12.5px; color: var(--muted); line-height: 1.3; }
.card .blurb { color: var(--muted); font-size: 13px; flex: 1; }
.card .stats { color: var(--faint); font-size: 12px; display: flex; flex-wrap: wrap; gap: 4px 10px; }
.card .stats b { color: var(--muted); font-weight: 600; }
.card .stats .size b { color: var(--accent); }
.card .tags { display: flex; flex-wrap: wrap; gap: 6px; }
.card .tags span { font-size: 11px; color: var(--faint); background: var(--panel-2); padding: 2px 8px; border-radius: 999px; }
.card .tags span.facet { color: var(--accent); border: 1px solid var(--line); }
.hero-facets { display: flex; flex-wrap: wrap; gap: 7px; margin: 12px 0 4px; }
.pill.facet { color: var(--accent); }
.card.skeleton .art { animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: .5; } 50% { opacity: .85; } }

.empty { color: var(--faint); padding: 50px 0; text-align: center; }

/* ontology reference cards + modal */
.ogrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; padding-bottom: 8px; }
.ocard { display: block; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; cursor: pointer; transition: border-color .12s, transform .12s; }
.ocard:hover, .ocard:focus { border-color: var(--accent); transform: translateY(-2px); outline: none; text-decoration: none; }
.ocard .art { aspect-ratio: 16 / 10; background: #0a0c11; position: relative; }
.ocard .art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ocard .art .kind { position: absolute; top: 8px; right: 9px; font-size: 10px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); background: var(--bg-90); border: 1px solid var(--line); padding: 2px 7px; border-radius: 999px; backdrop-filter: blur(3px); }
.ocard-body { padding: 11px 13px; }
.ocard-name { font-weight: 620; font-size: 14px; }
.ocard-meta { color: var(--faint); font-size: 12px; margin-top: 3px; }

.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(0,0,0,.55); backdrop-filter: blur(3px); }
.modal[hidden] { display: none; }
.modal-card { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; max-width: 540px; width: 100%; max-height: 80vh; overflow: auto; box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.modal-x { position: absolute; top: 10px; right: 12px; background: none; border: 0; color: var(--faint); font-size: 24px; line-height: 1; cursor: pointer; }
.modal-x:hover { color: var(--ink); }
.modal-kicker { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--faint); }
.modal-card h2 { margin: 4px 0 8px; font-size: 22px; }
.modal-desc { color: var(--muted); margin: 0 0 12px; }
.modal-link { font-family: ui-monospace, Consolas, monospace; font-size: 12.5px; word-break: break-all; }
.modal-card h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--faint); margin: 18px 0 8px; }
.modal-used { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 9px; }
.modal-used a { font-size: 14px; }
.modal-terms { display: flex; flex-wrap: wrap; gap: 5px; margin: 5px 0 2px; }
.modal-terms span { font: 11px ui-monospace, Consolas, monospace; color: var(--muted); background: var(--panel-2); border: 1px solid var(--line); padding: 2px 7px; border-radius: 6px; }

/* fullscreen schema lightbox */
.fs-btn { text-transform: none; font: 12px ui-sans-serif, system-ui, sans-serif; margin-left: 10px; background: var(--panel-2); border: 1px solid var(--line); color: var(--muted); border-radius: 8px; padding: 3px 10px; cursor: pointer; }
.fs-btn:hover { color: var(--ink); border-color: var(--faint); }
.modal-wide { max-width: 95vw; width: 95vw; max-height: 92vh; height: 92vh; display: flex; flex-direction: column; padding: 16px 18px; }
.modal-schema { flex: 1; min-height: 0; align-items: stretch; }
.modal-schema .schema-graph { height: 100%; min-height: 0; }
.modal-schema .uml { height: 100%; }
.modal-schema .schema-info { height: 100%; overflow: auto; }

/* ---- detail page ---- */
.back { display: inline-block; margin: 24px 0 8px; color: var(--muted); }
.detail-hero { display: grid; grid-template-columns: 320px 1fr; gap: 26px; align-items: start; margin-bottom: 26px; }
.detail-hero .art { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 10; background: #0a0c11; }
.detail-hero .art img { width: 100%; height: 100%; display: block; object-fit: cover; }
.detail-hero .art-cap { color: var(--faint); font-size: 12px; margin-top: 8px; line-height: 1.4; }
.detail-hero .art-cap code { color: var(--muted); }
.detail-hero .hero-links { margin-top: 8px; }

/* files dropdown + copy-link (under the thumbnail) */
.files { display: flex; gap: 8px; align-items: center; margin-top: 12px; flex-wrap: wrap; }
.files-dd { position: relative; }
.files-dd > summary { list-style: none; cursor: pointer; background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 8px 14px; font-size: 13.5px; color: var(--ink); }
.files-dd > summary::-webkit-details-marker { display: none; }
.files-dd[open] > summary { border-color: var(--faint); }
.files-menu { position: absolute; z-index: 25; margin-top: 6px; min-width: 270px; background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 6px; box-shadow: 0 14px 34px rgba(0,0,0,.4); display: flex; flex-direction: column; gap: 3px; }
.file-opt { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 8px; color: var(--ink); }
.file-opt:hover { background: var(--panel-2); text-decoration: none; }
.file-opt small { color: var(--faint); }
.copy-link { background: var(--panel); border: 1px solid var(--line); color: var(--ink); border-radius: 10px; padding: 8px 14px; font-size: 13.5px; cursor: pointer; }
.copy-link:hover { border-color: var(--faint); }
.ft { font-size: 11px; font-weight: 700; letter-spacing: .03em; padding: 2px 7px; border-radius: 6px; }
.ft.rete { background: #241a2e; color: #c9a6ff; }
.ft.parquet { background: #1d2b3a; color: #8fd0ff; }
.ft.duckdb { background: #2e2718; color: #ffd479; }
.ft.sqlite { background: #16241f; color: #7fe0b0; }

/* d3 ontology/schema graph */
.schema-wrap { display: grid; grid-template-columns: 1fr 280px; gap: 16px; align-items: start; }
.schema-graph { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; min-height: 440px; }
.schema-info { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; font-size: 13px; min-height: 120px; }
.si-hint { color: var(--faint); }
.si-title { font-weight: 700; font-size: 15px; }
.si-iri { color: var(--faint); font-size: 11px; word-break: break-all; margin: 2px 0 8px; font-family: ui-monospace, Consolas, monospace; }
.si-rels { display: flex; flex-direction: column; gap: 5px; margin-top: 8px; }
.si-rel { font-size: 12px; color: var(--muted); }
.si-rel .dir { color: var(--accent); font-weight: 700; }
.si-rel .n { color: var(--faint); float: right; }
/* UML class diagram (ELK orthogonal routing) */
.uml { width: 100%; height: 560px; display: block; }
.ubox { cursor: pointer; }
.ubox-bg { fill: var(--panel-2); stroke: var(--line); stroke-width: 1; }
.ubox-hdfull { stroke: rgba(0,0,0,0.22); stroke-width: 0.5; }
.ubox-badge { fill: rgba(255,255,255,0.85); font: 600 10px ui-sans-serif, system-ui, sans-serif; pointer-events: none; }
.ubox-title { fill: #fff; font: 600 13px ui-sans-serif, system-ui, sans-serif; }
.ubox-attr { fill: var(--muted); font: 11px ui-monospace, "Cascadia Code", Consolas, monospace; }
.ubox.dim { opacity: .25; }
.ubox.hot .ubox-bg { stroke: var(--accent); stroke-width: 2; }
.uedge { fill: none; stroke: var(--faint); stroke-width: 1.4; stroke-opacity: .7; }
.uedge.hot { stroke: var(--accent); stroke-opacity: 1; stroke-width: 2; }
.uedge.dim { stroke-opacity: .1; }
.uarrow { fill: var(--faint); }
.uedge-label text { fill: var(--muted); font: 11px ui-monospace, Consolas, monospace; }
.uedge-label rect { fill: var(--panel); opacity: .85; }
.uedge-label.hot text { fill: var(--accent); }
.uedge-label.dim { opacity: .2; }
@media (max-width: 820px) { .schema-wrap { grid-template-columns: 1fr; } }
.detail-hero h1 { margin: 2px 0 2px; font-size: 26px; letter-spacing: -0.01em; }
.detail-hero .hero-subtitle { font-family: var(--font-2); font-style: italic; font-size: 17px; color: var(--muted); margin: 0 0 8px; line-height: 1.3; }
.detail-hero .desc { color: var(--muted); }
.detail-hero .facts { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 14px 0; color: var(--faint); font-size: 13px; }
.detail-hero .facts b { color: var(--ink); font-weight: 620; font-variant-numeric: tabular-nums; }
.pill { font-size: 11px; padding: 3px 9px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); }
.pill.warn { color: #ffd0d0; border-color: #5a2a2a; background: #2a1414; }
.pill.ok { color: #cdebd6; border-color: #2a4a36; background: #14241a; }

.section { margin: 26px 0; }
.section h2 { font-size: 14px; text-transform: uppercase; letter-spacing: .06em; color: var(--faint); margin: 0 0 12px; }
.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.panel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; }
.kv { display: grid; grid-template-columns: auto 1fr; gap: 4px 14px; font-size: 13.5px; }
.kv dt { color: var(--faint); }
.kv dd { margin: 0; color: var(--ink); word-break: break-word; }
.barlist { display: flex; flex-direction: column; gap: 6px; }
.barlist .row { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; font-size: 12.5px; }
.barlist .row .lbl { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); }
.barlist .row .n { color: var(--faint); font-variant-numeric: tabular-nums; }
.barlist .row .track { grid-column: 1 / -1; height: 4px; background: var(--panel-2); border-radius: 3px; overflow: hidden; }
.barlist .row .track > i { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }

/* external-provider connections */
.conns { display: flex; flex-wrap: wrap; gap: 8px; }
.conn { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink);
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; }
.conn:hover { border-color: var(--accent); text-decoration: none; }
.conn small { color: var(--faint); }
.card .conns-mini { font-size: 11.5px; color: var(--muted); }

.companions { display: flex; flex-wrap: wrap; gap: 10px; }
.companion {
  display: flex; align-items: center; gap: 8px; padding: 9px 13px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px; color: var(--ink);
}
.companion .ft { font-size: 11px; font-weight: 700; letter-spacing: .03em; padding: 2px 7px; border-radius: 6px; }
.companion .ft.rete { background: #241a2e; color: #c9a6ff; }
.companion .ft.parquet { background: #1d2b3a; color: #8fd0ff; }
.companion .ft.duckdb { background: #2e2718; color: #ffd479; }
.companion .ft.sqlite { background: #16241f; color: #7fe0b0; }
.companion small { color: var(--faint); }

/* ---- explore panel ---- */
.explore { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; }
.explore .ac { position: relative; }
.explore input.search {
  width: 100%; background: var(--panel-2); border: 1px solid var(--line); border-radius: 10px;
  color: var(--ink); font-size: 15px; padding: 11px 13px; outline: none;
}
.explore input.search:focus { border-color: var(--accent); }
.ac-list {
  position: absolute; left: 0; right: 0; top: calc(100% + 4px); z-index: 30;
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 10px;
  max-height: 280px; overflow: auto; box-shadow: 0 12px 30px rgba(0,0,0,.45);
}
.ac-list .item { padding: 8px 13px; cursor: pointer; font-size: 13.5px; display: flex; flex-direction: column; }
.ac-list .item:hover, .ac-list .item.active { background: #232a38; }
.ac-list .item .iri { color: var(--faint); font-size: 11px; }
.ac-list .empty-ac { padding: 10px 13px; color: var(--faint); font-size: 13px; }

.starter { display: flex; flex-wrap: wrap; gap: 7px; margin: 12px 0; }
.starter button {
  font-size: 12px; color: var(--muted); background: var(--panel-2);
  border: 1px solid var(--line); border-radius: 999px; padding: 4px 11px; cursor: pointer;
}
.starter button:hover { color: var(--ink); border-color: var(--faint); }
textarea.sparql {
  width: 100%; min-height: 110px; resize: vertical; margin-top: 8px;
  background: #0c0f15; color: #d7e3f2; border: 1px solid var(--line); border-radius: 10px;
  padding: 12px; font: 12.5px/1.5 ui-monospace, Consolas, monospace; outline: none;
}
textarea.sparql:focus { border-color: var(--accent); }
.run-row { display: flex; gap: 10px; align-items: center; margin-top: 10px; }
button.run {
  background: var(--accent); color: #08111b; border: 0; border-radius: 10px;
  font-weight: 650; padding: 9px 18px; cursor: pointer; font-size: 14px;
}
button.run:disabled { opacity: .5; cursor: default; }
.run-row .status { color: var(--faint); font-size: 13px; }

.results { margin-top: 14px; overflow: auto; max-height: 420px; border: 1px solid var(--line); border-radius: 10px; }
table.rs { border-collapse: collapse; width: 100%; font-size: 12.5px; }
table.rs th, table.rs td { text-align: left; padding: 7px 11px; border-bottom: 1px solid var(--line); white-space: nowrap; }
table.rs th { position: sticky; top: 0; background: var(--panel-2); color: var(--muted); }
table.rs td { color: var(--ink); }
table.rs tr:hover td { background: #161b25; }

.notice { color: var(--faint); font-size: 12.5px; margin-top: 10px; }
.warnbox { background: #241616; border: 1px solid #4a2727; color: #f3c9c9; padding: 12px 14px; border-radius: 10px; font-size: 13px; }

@media (max-width: 820px) {
  .detail-hero { grid-template-columns: 1fr; }
  .cols { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   plaza v2 — the gallery front page: top bar, hero, faceted sidebar.
   Everything here is namespaced `pz-`; the card/modal/detail styles above are
   shared with dataset.html and ontology.html and are deliberately untouched.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --side-w: 264px;
  --top-h: 60px;
  /* Gradient washes. Kept in tokens so the light theme can soften them without
     re-stating every rule that uses one. */
  --wash-1: color-mix(in oklab, var(--accent) 16%, transparent);
  --wash-2: color-mix(in oklab, var(--accent-2) 14%, transparent);
  --side-grad: linear-gradient(180deg,
      color-mix(in oklab, var(--accent-2) 7%, var(--panel)) 0%,
      var(--panel) 38%,
      var(--panel) 100%);
}
:root[data-theme="light"] {
  --wash-1: color-mix(in oklab, var(--accent) 11%, transparent);
  --wash-2: color-mix(in oklab, var(--accent-2) 9%, transparent);
}

/* ---- top bar ---- */
.pz-top {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  backdrop-filter: blur(12px) saturate(1.3);
  border-bottom: 1px solid var(--line);
}
.pz-top-in {
  max-width: 1440px; margin: 0 auto; padding: 0 22px;
  height: var(--top-h); display: flex; align-items: center; gap: 18px;
}
.pz-brand {
  font-size: 19px; font-weight: 700; letter-spacing: -.02em;
  color: var(--ink); text-decoration: none; white-space: nowrap; flex: none;
}
.pz-brand:hover { text-decoration: none; }
.pz-brand .dot { color: var(--accent-2); }
.pz-nav { margin-left: auto; display: flex; align-items: center; gap: 14px; flex: none; }
.pz-nav a { color: var(--muted); font-size: 13.5px; white-space: nowrap; }
.pz-nav a:hover { color: var(--ink); }

.pz-btn {
  display: inline-block; font: inherit; font-size: 13.5px; line-height: 1;
  padding: 8px 14px; border-radius: 9px; cursor: pointer; white-space: nowrap;
  background: var(--panel-2); border: 1px solid var(--line); color: var(--ink);
  text-decoration: none;
}
.pz-btn:hover { border-color: var(--faint); text-decoration: none; }
.pz-btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent; color: #08111d; font-weight: 640;
}
.pz-btn-accent:hover { filter: brightness(1.08); text-decoration: none; }

/* ---- search + autocomplete ---- */
.pz-search { position: relative; flex: 1; max-width: 620px; }
.pz-search-ic {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--faint); pointer-events: none;
}
.pz-search input {
  width: 100%; height: 38px; padding: 0 42px 0 38px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  color: var(--ink); font: inherit; font-size: 14px; outline: none;
}
.pz-search input::placeholder { color: var(--faint); }
.pz-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 22%, transparent);
}
.pz-search input::-webkit-search-cancel-button { filter: grayscale(1) opacity(.5); }
.pz-kbd {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  font: 11px ui-monospace, Consolas, monospace; color: var(--faint);
  border: 1px solid var(--line); border-bottom-width: 2px; border-radius: 5px;
  padding: 1px 6px; pointer-events: none;
}
.pz-search input:focus ~ .pz-kbd { opacity: 0; }

.pz-ac {
  position: absolute; top: calc(100% + 7px); left: 0; right: 0; z-index: 70;
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 22px 54px rgba(0,0,0,.42);
  max-height: min(70vh, 460px); overflow: auto; padding: 6px;
}
.pz-ac[hidden] { display: none; }
.pz-ac-group {
  font-size: 10.5px; letter-spacing: .07em; text-transform: uppercase;
  color: var(--faint); padding: 9px 10px 5px;
}
.pz-ac-item {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 7px 10px; border-radius: 8px; cursor: pointer;
  background: none; border: 0; color: var(--ink); font: inherit; text-align: left;
}
.pz-ac-item:hover, .pz-ac-item.on { background: var(--panel-2); }
.pz-ac-item.on { outline: 1px solid var(--line); }
.pz-ac-ic {
  flex: none; width: 22px; height: 22px; border-radius: 6px; display: grid;
  place-items: center; font-size: 11px; background: var(--panel-2);
  border: 1px solid var(--line); color: var(--accent);
}
.pz-ac-lab { flex: 1; font-size: 13.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pz-ac-lab b { color: var(--accent); font-weight: 640; }
.pz-ac-meta { flex: none; font-size: 11.5px; color: var(--faint); }
.pz-ac-empty { padding: 16px 12px; color: var(--faint); font-size: 13px; }

/* ---- hero ---- */
.pz-hero {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 420px at 12% -30%, var(--wash-2), transparent 70%),
    radial-gradient(760px 380px at 88% -20%, var(--wash-1), transparent 70%);
}
.pz-hero-in {
  max-width: 1440px; margin: 0 auto; padding: 46px 22px 34px;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: 46px; align-items: center;
}
.pz-hero-copy h1 {
  margin: 0 0 14px; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.1;
  letter-spacing: -.025em; font-weight: 700;
}
.pz-hero-copy h1 em {
  font-family: var(--font-2); font-style: italic; font-weight: 400;
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pz-hero-copy p { margin: 0; color: var(--muted); font-size: 15px; max-width: 46ch; }
.pz-hero-stats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pz-stat {
  background: color-mix(in oklab, var(--panel) 72%, transparent);
  border: 1px solid var(--line); border-radius: 11px; padding: 9px 14px;
  backdrop-filter: blur(4px);
}
.pz-stat b { display: block; font-size: 19px; letter-spacing: -.02em; }
.pz-stat span { font-size: 11.5px; color: var(--faint); }

/* spotlight */
.pz-spot {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.30);
}
.pz-spot-frame { aspect-ratio: 16 / 10; background: #0a0c11; position: relative; }
.pz-spot-art { position: absolute; inset: 0; }
.pz-spot-art img { width: 100%; height: 100%; object-fit: cover; display: block; animation: pz-fade .5s ease; }
@keyframes pz-fade { from { opacity: 0 } to { opacity: 1 } }
.pz-spot-body { padding: 14px 17px 17px; }
.pz-spot-kicker {
  font-size: 10.5px; letter-spacing: .09em; text-transform: uppercase;
  color: var(--accent-2); font-weight: 700;
}
.pz-spot-title { display: block; margin-top: 4px; font-size: 17px; font-weight: 640; color: var(--ink); }
.pz-spot-title:hover { color: var(--accent); text-decoration: none; }
.pz-spot-sub {
  font-family: var(--font-2); font-style: italic; color: var(--muted);
  font-size: 13px; margin-top: 2px;
}
.pz-spot-stats { display: flex; flex-wrap: wrap; gap: 5px 12px; margin-top: 10px; font-size: 12px; color: var(--faint); }
.pz-spot-stats b { color: var(--muted); font-weight: 620; }
.pz-spot-dots { position: absolute; top: 12px; right: 13px; display: flex; gap: 6px; }
.pz-spot-dot {
  width: 7px; height: 7px; border-radius: 50%; cursor: pointer; padding: 0;
  border: 1px solid color-mix(in oklab, var(--ink) 45%, transparent);
  background: transparent;
}
.pz-spot-dot.on { background: var(--accent); border-color: var(--accent); }

/* ontology rail */
.pz-rail-wrap { border-top: 1px solid var(--line); background: color-mix(in oklab, var(--panel) 40%, transparent); }
.pz-rail-in {
  max-width: 1440px; margin: 0 auto; padding: 11px 22px;
  display: flex; align-items: center; gap: 14px;
}
.pz-rail-label {
  flex: none; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--faint); font-weight: 700;
}
.pz-rail { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: thin; }
.pz-rail::-webkit-scrollbar { height: 5px; }
.pz-rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.pz-onto {
  flex: none; display: inline-flex; align-items: center; gap: 7px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 999px;
  padding: 5px 12px 5px 6px; font-size: 12.5px; color: var(--muted);
  cursor: pointer; white-space: nowrap; font-family: inherit;
}
.pz-onto:hover { color: var(--ink); border-color: var(--accent); }
.pz-onto.on { border-color: var(--accent); color: var(--ink); background: color-mix(in oklab, var(--accent) 14%, var(--panel)); }
.pz-onto i {
  font-style: normal; width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: 10px; font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #08111d;
}
.pz-onto s { text-decoration: none; color: var(--faint); font-size: 11px; }

/* ---- shell: sidebar + main ---- */
.pz-shell {
  max-width: 1440px; margin: 0 auto; padding: 24px 22px 60px;
  display: grid; grid-template-columns: var(--side-w) minmax(0, 1fr); gap: 26px;
  align-items: start;
}
.pz-side {
  position: sticky; top: calc(var(--top-h) + 16px);
  background: var(--side-grad);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 15px 16px; max-height: calc(100vh - var(--top-h) - 34px);
  overflow: auto; scrollbar-width: thin;
}
.pz-side::-webkit-scrollbar { width: 6px; }
.pz-side::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.pz-side-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--faint); font-weight: 700; margin-bottom: 8px;
}
.pz-clear {
  font: inherit; font-size: 11px; text-transform: none; letter-spacing: 0;
  background: none; border: 0; color: var(--accent); cursor: pointer; padding: 0;
}
.pz-clear:hover { text-decoration: underline; }

.pz-group { border-top: 1px solid var(--line); padding: 10px 0 4px; }
.pz-group:first-child { border-top: 0; }
.pz-group > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; font-size: 12.5px; font-weight: 620; color: var(--ink);
  padding: 3px 0;
}
.pz-group > summary::-webkit-details-marker { display: none; }
.pz-group > summary::after {
  content: "▾"; color: var(--faint); font-size: 10px; transition: transform .15s;
}
.pz-group:not([open]) > summary::after { transform: rotate(-90deg); }
.pz-opts { display: flex; flex-direction: column; gap: 1px; margin-top: 5px; }
.pz-opt {
  display: flex; align-items: center; gap: 8px; width: 100%;
  background: none; border: 0; color: var(--muted); font: inherit; font-size: 12.5px;
  padding: 4px 6px; border-radius: 7px; cursor: pointer; text-align: left;
}
.pz-opt:hover { background: color-mix(in oklab, var(--ink) 7%, transparent); color: var(--ink); }
.pz-opt .box {
  flex: none; width: 14px; height: 14px; border-radius: 4px;
  border: 1px solid var(--line); display: grid; place-items: center;
  font-size: 9px; color: #08111d; background: var(--bg);
}
.pz-opt.on { color: var(--ink); }
.pz-opt.on .box { background: var(--accent); border-color: var(--accent); }
.pz-opt .lab { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pz-opt .n { flex: none; font-size: 11px; color: var(--faint); font-variant-numeric: tabular-nums; }
.pz-opt[disabled] { opacity: .38; cursor: default; }
.pz-opt[disabled]:hover { background: none; color: var(--muted); }
.pz-more { font: inherit; font-size: 11.5px; background: none; border: 0; color: var(--accent); cursor: pointer; padding: 4px 6px; text-align: left; }
.pz-more:hover { text-decoration: underline; }

/* ---- results bar ---- */
.pz-main { min-width: 0; }
.pz-bar {
  display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap;
  margin-bottom: 16px; min-height: 30px;
}
.pz-active { display: flex; flex-wrap: wrap; gap: 7px; flex: 1; }
.pz-tok {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px;
  background: color-mix(in oklab, var(--accent) 15%, var(--panel));
  border: 1px solid color-mix(in oklab, var(--accent) 45%, var(--line));
  color: var(--ink); border-radius: 999px; padding: 3px 6px 3px 10px;
}
.pz-tok em { font-style: normal; color: var(--faint); font-size: 10.5px; text-transform: uppercase; letter-spacing: .05em; }
.pz-tok button { background: none; border: 0; color: var(--muted); cursor: pointer; font-size: 14px; line-height: 1; padding: 0 2px; }
.pz-tok button:hover { color: var(--ink); }
.pz-bar-right { display: flex; align-items: center; gap: 14px; flex: none; }
.pz-count { color: var(--faint); font-size: 12.5px; white-space: nowrap; }
.pz-sort { color: var(--faint); font-size: 12.5px; display: flex; align-items: center; gap: 6px; }
.pz-sort select {
  background: var(--panel); border: 1px solid var(--line); color: var(--ink);
  border-radius: 8px; padding: 4px 8px; font: inherit; font-size: 12.5px; cursor: pointer;
}

/* ---- footer ---- */
.pz-foot { border-top: 1px solid var(--line); background: color-mix(in oklab, var(--panel) 45%, transparent); }
.pz-foot-in {
  max-width: 1440px; margin: 0 auto; padding: 26px 22px 34px;
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between;
  color: var(--faint); font-size: 13px;
}
.pz-foot-links { display: flex; flex-direction: column; gap: 5px; }

/* ---- submit composer ---- */
.pz-submit { max-width: 580px; }
.pz-form { display: flex; flex-direction: column; gap: 11px; margin: 4px 0 16px; }
.pz-form label { display: flex; flex-direction: column; gap: 5px; font-size: 12px; color: var(--faint); }
.pz-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.pz-form input, .pz-form textarea {
  background: var(--bg); border: 1px solid var(--line); border-radius: 9px;
  color: var(--ink); font: inherit; font-size: 13.5px; padding: 8px 11px; outline: none;
  resize: vertical;
}
.pz-form input:focus, .pz-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 20%, transparent);
}
.pz-submit-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.pz-submit-note { color: var(--faint); font-size: 11.5px; margin: 11px 0 0; min-height: 1em; }

/* ---- responsive ---- */
@media (max-width: 1080px) {
  .pz-hero-in { grid-template-columns: 1fr; gap: 30px; }
  .pz-spot { max-width: 520px; }
}
@media (max-width: 900px) {
  .pz-shell { grid-template-columns: 1fr; }
  .pz-side { position: static; max-height: none; }
  .pz-top-in { flex-wrap: wrap; height: auto; padding: 10px 16px; gap: 10px; }
  .pz-search { order: 3; flex-basis: 100%; max-width: none; }
  .pz-nav { margin-left: auto; }
  .pz-nav a { display: none; }
  .pz-hero-in { padding: 30px 16px 26px; }
  .pz-shell { padding: 18px 16px 44px; }
  .pz-form-row { grid-template-columns: 1fr; }
}

/* summary badge for a group with active selections */
.pz-group > summary .n {
  font-size: 10.5px; font-weight: 700; color: #08111d; background: var(--accent);
  border-radius: 999px; padding: 1px 6px; margin-left: 6px;
}
/* an action that has nothing to send yet */
.pz-disabled { opacity: .45; cursor: not-allowed; filter: saturate(.4); }

/* ---- funding ticker ------------------------------------------------------
   A right-to-left marquee on an ORDERED-DITHER band.

   The dither is two offset dot grids — a 50%-coverage checkerboard, which is
   what a 4×4 Bayer threshold produces at mid grey — laid over the accent
   gradient and masked so the dots crowd at the edges and thin out behind the
   text. That ramp is the attention-grabber; the text stays on flat colour and
   remains readable, which a full-bleed pattern would not allow.               */
.pz-ticker {
  position: relative; z-index: 70; overflow: hidden;
  background: linear-gradient(90deg,
      color-mix(in oklab, var(--accent-2) 30%, var(--bg)) 0%,
      color-mix(in oklab, var(--accent) 22%, var(--bg)) 50%,
      color-mix(in oklab, var(--accent-2) 30%, var(--bg)) 100%);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 12.5px; line-height: 1;
}
/* the dither ramp */
.pz-ticker::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  color: var(--ink);
  background-image:
    radial-gradient(currentColor 41%, transparent 43%),
    radial-gradient(currentColor 41%, transparent 43%);
  background-size: 4px 4px, 4px 4px;
  background-position: 0 0, 2px 2px;
  opacity: .46;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 40%, transparent 60%, #000 100%);
  mask-image: linear-gradient(90deg, #000 0%, transparent 40%, transparent 60%, #000 100%);
}
/* a second, coarser grid: the ramp reads as three tones instead of two */
.pz-ticker::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  color: var(--ink);
  background-image: radial-gradient(currentColor 34%, transparent 36%);
  background-size: 8px 8px;
  opacity: .32;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 48%, transparent 52%, #000 100%);
  mask-image: linear-gradient(90deg, #000 0%, transparent 48%, transparent 52%, #000 100%);
}

.pz-ticker-track {
  display: flex; width: max-content; position: relative; z-index: 1;
  padding: 7px 0;
}
.pz-ticker.run .pz-ticker-track {
  animation: pz-marquee var(--dur, 30s) linear infinite;
}
@keyframes pz-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(var(--shift, -50%), 0, 0); }
}
.pz-ticker:hover .pz-ticker-track,
.pz-ticker:focus-within .pz-ticker-track { animation-play-state: paused; }

.pz-ticker-run { display: inline-flex; align-items: center; gap: 8px; padding-right: 26px; white-space: nowrap; }
.pz-ticker-run b { font-weight: 700; }
.pz-ticker-run a {
  color: var(--ink); text-decoration: none; font-weight: 640;
  border: 1px solid color-mix(in oklab, var(--ink) 35%, transparent);
  border-radius: 999px; padding: 3px 10px;
  background: color-mix(in oklab, var(--bg) 55%, transparent);
}
.pz-ticker-run a:hover { background: var(--ink); color: var(--bg); text-decoration: none; }
.pz-ticker-run i { font-style: normal; color: color-mix(in oklab, var(--ink) 45%, transparent); }

.pz-ticker-x {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%); z-index: 2;
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  border: 1px solid var(--line); border-radius: 6px; color: var(--muted);
  font-size: 15px; line-height: 1; width: 22px; height: 22px; cursor: pointer; padding: 0;
}
.pz-ticker-x:hover { color: var(--ink); border-color: var(--faint); }

/* Motion is decoration here; the message is not. Stop the scroll, keep one
   legible copy, and let it wrap on small screens. */
@media (prefers-reduced-motion: reduce) {
  .pz-ticker.run .pz-ticker-track { animation: none; }
  .pz-ticker-track { width: 100%; justify-content: center; padding: 7px 30px 7px 12px; }
  .pz-ticker-run:not(:first-child) { display: none; }
  .pz-ticker-run { white-space: normal; text-align: center; }
}

.pz-foot-fund { margin: 10px 0 0; }
.pz-foot-fund a { font-weight: 620; }

/* ═══════════════════════════════════════════════════════════════════════════
   plaza v3 — scrollbars, a darker ticker, and the phone layout.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ---- scrollbars ----------------------------------------------------------
   Default scrollbars are the one piece of chrome that ignores the palette: a
   bright system bar down the side of a near-black page, and a chunky one under
   the ontology rail. Styled once, globally, so every scroller — page, sidebar,
   rail, autocomplete, textarea, the detail page's panels — matches.           */
* { scrollbar-width: thin; scrollbar-color: var(--line) transparent; }
*:hover { scrollbar-color: var(--faint) transparent; }

::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  /* padding-box + a transparent border insets the thumb, so it reads as a slim
     pill rather than a full-width slab. */
  background: var(--line);
  border: 3px solid transparent;
  background-clip: padding-box;
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover { background: var(--faint); background-clip: padding-box; }
::-webkit-scrollbar-corner { background: transparent; }

/* The rail and the sidebar keep a slimmer variant — they are inside panels. */
.pz-rail::-webkit-scrollbar, .pz-side::-webkit-scrollbar,
.pz-ac::-webkit-scrollbar { width: 8px; height: 8px; }
.pz-rail::-webkit-scrollbar-thumb, .pz-side::-webkit-scrollbar-thumb,
.pz-ac::-webkit-scrollbar-thumb { border-width: 2px; }

/* ---- ticker: darker ------------------------------------------------------
   The accent wash was bright enough to compete with the hero. In dark mode the
   band now sits BELOW the page background, so it reads as a recessed strip and
   the dither and the coffee pill supply the contrast instead of the fill.      */
:root, :root[data-theme="dark"] {
  --ticker-edge: #06080d;
  --ticker-mid: #0e131c;
}
:root[data-theme="light"] {
  --ticker-edge: color-mix(in oklab, var(--accent-2) 16%, #e9edf5);
  --ticker-mid: color-mix(in oklab, var(--accent) 12%, #f2f5fa);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) { --ticker-edge: #06080d; --ticker-mid: #0e131c; }
}
.pz-ticker {
  background: linear-gradient(90deg,
      var(--ticker-edge) 0%, var(--ticker-mid) 50%, var(--ticker-edge) 100%);
}
:root[data-theme="dark"] .pz-ticker,
:root:not([data-theme="light"]) .pz-ticker { color: #dfe7f2; }
/* On the darker fill the dots need a touch more presence to still read. */
:root[data-theme="dark"] .pz-ticker::before,
:root:not([data-theme="light"]) .pz-ticker::before { opacity: .34; }
:root[data-theme="dark"] .pz-ticker::after,
:root:not([data-theme="light"]) .pz-ticker::after { opacity: .24; }
.pz-ticker-run a { border-color: color-mix(in oklab, var(--accent) 60%, transparent); }
.pz-ticker-run a:hover { background: var(--accent); color: #08111d; border-color: var(--accent); }

/* ---- mobile filters ------------------------------------------------------ */
.pz-side-toggle {
  display: none; width: 100%; align-items: center; gap: 8px;
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 9px;
  color: var(--ink); font: inherit; font-size: 13.5px; padding: 9px 12px; cursor: pointer;
}
.pz-side-toggle-lab { flex: 1; text-align: left; font-weight: 620; }
.pz-side-toggle-n {
  font-size: 11px; font-weight: 700; color: #08111d; background: var(--accent);
  border-radius: 999px; padding: 1px 7px;
}
.pz-side-toggle-ic { color: var(--faint); font-size: 11px; transition: transform .15s; }
.pz-side.open .pz-side-toggle-ic { transform: rotate(180deg); }

/* ---- phones -------------------------------------------------------------- */
@media (max-width: 900px) {
  /* Nothing may exceed the viewport: a page that scrolls sideways on a phone
     feels broken even when every element is individually fine. */
  html, body { max-width: 100%; overflow-x: hidden; }

  .pz-side-head { display: none; }
  .pz-side-toggle { display: flex; }
  .pz-side { padding: 10px; }
  .pz-side #facets { display: none; margin-top: 10px; }
  .pz-side.open #facets { display: block; }

  .pz-spot { max-width: none; }
  .pz-hero-copy h1 { font-size: 30px; }
  .pz-hero-copy p { font-size: 14.5px; }
  .pz-stat { padding: 7px 11px; }
  .pz-stat b { font-size: 17px; }

  .pz-rail-in { padding: 9px 16px; gap: 10px; }
  .pz-rail-label { display: none; }

  .pz-bar { gap: 10px; }
  .pz-bar-right { width: 100%; justify-content: space-between; }

  .pz-foot-in { padding: 22px 16px 30px; gap: 16px; }

  /* The composer is a full-height sheet rather than a floating card: on a small
     screen a centred modal with a long textarea ends up scrolling inside a box
     inside a page. */
  .modal { padding: 0; align-items: flex-end; }
  .pz-submit { max-width: none; border-radius: 14px 14px 0 0; max-height: 92vh; }
}

@media (max-width: 560px) {
  .pz-top-in { padding: 9px 12px; gap: 8px; }
  .pz-brand { font-size: 17px; }
  /* "Submit a dataset" is the only nav item worth its width here. */
  .pz-btn { padding: 7px 11px; font-size: 12.5px; }
  .pz-hero-in { padding: 24px 14px 22px; }
  .pz-shell { padding: 14px 14px 36px; gap: 16px; }
  .pz-hero-copy h1 { font-size: 26px; }
  .pz-hero-stats { gap: 7px; }
  .pz-stat { flex: 1 1 calc(50% - 7px); }
  .grid { grid-template-columns: 1fr; gap: 14px; }
  .ogrid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
  .pz-ticker { font-size: 11.5px; }
  .pz-ticker-run { gap: 6px; padding-right: 18px; }
  .pz-kbd { display: none; }
  .pz-search input { font-size: 16px; }  /* ≥16px or iOS zooms the page on focus */
  .pz-form input, .pz-form textarea { font-size: 16px; }
  .modal-card h2 { font-size: 19px; }
}

/* Coarse pointers have no hover, so a scroll the user must hover to pause is a
   scroll they can never pause — and the tap targets need to be finger-sized. */
@media (hover: none) {
  .pz-ticker-x { width: 28px; height: 28px; font-size: 17px; }
  .pz-opt { padding: 7px 6px; }
  .pz-onto { padding: 7px 13px 7px 7px; }
  .pz-spot-dot { width: 9px; height: 9px; }
}
