/* ==========================================================================
   SATRAN Catalogue Explorer — all styles. No build step, no preprocessor.

   REUSABLE CLASSES (for the explore.js and detail.js authors — use these
   rather than inventing parallel ones):

   Layout      .wrap · .view · .stack · .row · .grid .grid-2 .grid-3 .grid-4
               .card · .card-head · .card-title · .card-note · .section
               .section-head · .section-title · .section-lede · .rule
   Type        .eyebrow · .lede · .hint · .muted · .num (tabular-nums)
               .tile · .tile-num · .tile-label · .quote · .prose
   Chips       .chip + one of: .chip--confirmed .chip--probable .chip--unverified
               .chip--unknown .chip--full .chip--thin .chip--warn .chip--serious
               .chip--neutral .chip--live .chip--partial (see "Pill colour
               system" below) · removable filter chip: .chip.chip--filter with
               a nested <button class="chip-x">
   Badges      .badge + .badge--provisional .badge--warn .badge--serious
               .badge--neutral, with a nested <span class="badge-icon">
   Panels      .panel + .panel--warn .panel--serious .panel--good .panel--info,
               containing .panel-icon · .panel-title · .panel-body
   Charts      .chart (the <svg>) · .chart-wrap · .chart-legend · .legend-item
               .legend-swatch · .legend-label · .legend-value · .legend-note
               .tooltip (one shared, appended to <body> by attachTooltips)
   Tables      .table-scroll > .table · .table--dense · th.num/td.num
   Controls    .btn · .btn--ghost · .field · .field-label · .input · .select
               .facet · .facet-head · .facet-list · .facet-item · .count
   States      .loading · .error-panel · .empty · .stub · .sr-only · .nowrap

   Colour rule from SPEC: series tokens (--s1…--s8) are for data marks only;
   text and labels always use ink tokens. Status tokens (--good/--warn/
   --serious/--critical) are never reused as series colours, and every status
   colour is paired with an icon and a word.
   ========================================================================== */

:root {
  --page:#0d0d0d; --surface:#1a1a19; --border:rgba(255,255,255,.10);
  /* --muted lifted from #898781 (4.8:1 on --surface) to #94928a (~5.5:1) so
     12px hint text stays comfortably readable on cards and warn washes. */
  --ink:#ffffff; --ink-2:#c3c2b7; --muted:#94928a;
  --grid:#2c2c2a; --axis:#383835;
  /* categorical (dark-validated, fixed order, never cycled) */
  --s1:#3987e5; --s2:#d95926; --s3:#199e70; --s4:#c98500;
  --s5:#d55181; --s6:#008300; --s7:#9085e9; --s8:#e66767;
  /* status (never reused as series) */
  --good:#0ca30c; --warn:#fab219; --serious:#ec835a; --critical:#d03b3b;

  /* additions — neutral steps between --ink-2 and --grid, used only to keep
     the thin-row segments of the hero split bar distinguishable while staying
     inside the "thin is neutral" rule (no series colour on a thin segment). */
  --ink-3:#8f8d85; --ink-4:#5c5a55;

  --surface-2:#211f1e;
  --radius:10px;
  --content:1200px;
}

* { box-sizing: border-box; }

/* The UA's [hidden] → display:none loses to any author `display` (e.g. the
   .btn { display:inline-flex } on the GSD clear button). Reassert it. */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

a { color: var(--s1); text-decoration: none; }
a:hover { text-decoration: underline; }

/* One visible keyboard ring everywhere; pointer clicks stay quiet. */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--s1); outline-offset: 2px; border-radius: 2px;
}

h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.25; }

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

.num, .table td.num, .table th.num, .tile-num, .chart .axis-num {
  font-variant-numeric: tabular-nums;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.nowrap { white-space: nowrap; }
.muted { color: var(--muted); }

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

.site-header {
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, var(--page) 100%);
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(6px);
}

/* Two rows: title + catalogue meta on top, then the primary tabs — large,
   left-aligned, unmistakably "these are the two pages" (the old top-right
   pills were invisible to first-time visitors). The active tab carries an
   accent underline AND ink text, never colour alone. */
.site-header-top {
  display: flex; align-items: baseline; gap: 20px;
  padding-top: 12px; padding-bottom: 2px; flex-wrap: wrap;
}

.site-title { font-size: 16px; letter-spacing: .01em; color: var(--ink); }
.site-title a { color: inherit; }
.site-title a:hover { text-decoration: none; color: var(--ink); }

.site-meta { color: var(--muted); font-size: 12.5px; margin-left: auto; }
.site-meta .sep { opacity: .5; padding: 0 6px; }

.site-nav { display: flex; gap: 4px; }

.site-nav a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-2); font-size: 14.5px; font-weight: 600;
  padding: 10px 20px 11px;
  border-bottom: 2px solid transparent;
  border-radius: 8px 8px 0 0;
}
.site-nav a:hover { color: var(--ink); background: var(--surface-2); text-decoration: none; }
.site-nav a[aria-current="page"] {
  color: var(--ink); background: var(--surface-2);
  border-bottom-color: var(--s1);
}
.site-nav-icon { font-size: 15px; color: var(--muted); line-height: 1; }
.site-nav a:hover .site-nav-icon { color: var(--ink-2); }
.site-nav a[aria-current="page"] .site-nav-icon { color: var(--s1); }

/* --------------------------------------------------------------- structure */

.view { padding: 28px 0 8px; }
.stack > * + * { margin-top: 14px; }
.section { margin: 40px 0; }
.section-head { margin-bottom: 16px; }
.section-head .eyebrow { margin-bottom: 5px; }
.section-title { font-size: 18px; }
.section-lede, .card-note { color: var(--ink-2); font-size: 13.5px; margin-top: 6px; max-width: 78ch; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .10em; font-size: 11px;
  color: var(--muted); font-weight: 600;
}
.lede { color: var(--ink-2); font-size: 15px; max-width: 78ch; }
.hint { color: var(--muted); font-size: 12.5px; }
.rule { border: 0; border-top: 1px solid var(--border); margin: 28px 0; }
.prose { color: var(--ink-2); font-size: 13.5px; max-width: 78ch; }
.prose code, code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .92em; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 4px; padding: 0 4px;
}

.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
}
.card-head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.card-title { font-size: 14px; }

.grid { display: grid; gap: 14px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* ------------------------------------------------------------------- tiles */

.tile {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
}
.tile-num { font-size: 26px; font-weight: 600; line-height: 1.1; letter-spacing: -.01em; color: var(--ink); }
.tile-label { color: var(--muted); font-size: 12px; margin-top: 4px; }
.tile-sub { color: var(--ink-2); font-size: 12.5px; margin-top: 6px; }
a.tile { transition: border-color .15s ease, background-color .15s ease; }
a.tile:hover { border-color: rgba(255,255,255,.28); background: var(--surface-2); text-decoration: none; }

/* ------------------------------------------------------------------- chips */

/* ---------------------------- Pill colour system ---------------------------
   ONE semantic system governs every coloured pill on the site. A pill's colour
   never carries meaning on its own — the word is always inside it — but the
   colour must never say something the word does not.

     GREEN  (--good)     alive / positive.
                         .chip--confirmed  confidence band "Confirmed"
                         .chip--live       operational status: operational
     AMBER  (--warn)     caution: partial, degraded, or a claim to distrust.
                         .chip--partial    operational status: partially
                                           operational, extended mission,
                                           backup/standby, spare — a caution
                                           about capability, so amber text and
                                           border, no wash
                         .chip--warn       an actual warning — registry_only
                                           ("read as unknown"),
                                           unknown_possible_collector, the
                                           refused/batch/disputed flags,
                                           confidence band "Unverified" (as
                                           .chip--unverified) — amber PLUS a
                                           tinted wash, so a warning is always
                                           louder than a partial state
     BLUE   (--s1)       the confidence band "Probable" (.chip--probable), and
                         nothing else. It is the site's accent, so it reads as
                         "notable", not as good or bad — which is exactly what a
                         probable-but-unconfirmed source claim is.
     ORANGE (--s2)       reserved, exclusively, for record_type "may collect"
                         (.chip--full). Nothing else may take this colour: it
                         is the site's answer to its own headline question.
     RED    (--serious/--critical)  a finding nobody resolved — refused cells,
                         allocation_unresolved, errors.
     GRAY   (--ink-2 / --muted)  neutral: dead or unknown, and everything the
                         system has no opinion about.
                         .chip--neutral    operational status: nonoperational
                                           and any unmapped status value; thin
                                           verdict bases that are not warnings
                         .chip--thin       record_type "cannot collect"
                         .chip--unknown    confidence band "Unknown"

   Green and amber status pills are their OWN classes rather than reuses of
   .chip--confirmed / .chip--warn: those two are bound to different vocabularies
   (source confidence, and active warnings), and a class that means two things
   is a class that will eventually be styled for one of them.
   -------------------------------------------------------------------------- */

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; line-height: 1; padding: 5px 9px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--surface-2); color: var(--ink-2);
  white-space: nowrap;
}
.chip--confirmed { color: var(--good); border-color: color-mix(in srgb, var(--good) 45%, transparent); }
.chip--probable  { color: var(--s1);   border-color: color-mix(in srgb, var(--s1) 45%, transparent); }
.chip--unverified{ color: var(--warn); border-color: color-mix(in srgb, var(--warn) 45%, transparent); }
.chip--unknown   { color: var(--muted); }
.chip--full { color: var(--s2); border-color: color-mix(in srgb, var(--s2) 50%, transparent); }
.chip--thin { color: var(--ink-2); }
.chip--warn {
  color: var(--warn); border-color: color-mix(in srgb, var(--warn) 55%, transparent);
  background: color-mix(in srgb, var(--warn) 12%, var(--surface-2));
}
.chip--serious {
  color: var(--serious); border-color: color-mix(in srgb, var(--serious) 55%, transparent);
  background: color-mix(in srgb, var(--serious) 12%, var(--surface-2));
}
.chip--neutral { color: var(--ink-2); }
/* Status pills — see "Pill colour system" above. --live is green like
   .chip--confirmed and --partial amber like .chip--warn without its wash. */
.chip--live { color: var(--good); border-color: color-mix(in srgb, var(--good) 45%, transparent); }
.chip--partial { color: var(--warn); border-color: color-mix(in srgb, var(--warn) 45%, transparent); }
.chip--filter { color: var(--ink); }
.chip-x {
  border: 0; background: none; color: var(--muted); cursor: pointer;
  font-size: 13px; line-height: 1; padding: 0 0 0 2px;
}
.chip-x:hover { color: var(--ink); }

/* ------------------------------------------------------------------ badges */

.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; line-height: 1; padding: 4px 8px; border-radius: 6px;
  border: 1px solid var(--border); background: var(--surface-2); color: var(--ink-2);
  white-space: nowrap;
}
.badge-icon { font-size: 12px; }
.badge--provisional { color: var(--muted); }
.badge--warn { color: var(--warn); border-color: color-mix(in srgb, var(--warn) 50%, transparent); }
.badge--serious { color: var(--serious); border-color: color-mix(in srgb, var(--serious) 50%, transparent); }
.badge--neutral { color: var(--ink-2); }

/* ------------------------------------------------------------------ panels */

.panel {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--axis); border-radius: var(--radius);
  padding: 16px 18px;
}
.panel-icon { font-size: 16px; line-height: 1.4; flex: none; }
.panel-title { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.panel-body { color: var(--ink-2); font-size: 13.5px; margin-top: 5px; max-width: 82ch; }
.panel-body p { margin: 6px 0 0; }
.panel--warn { border-left-color: var(--warn); background: color-mix(in srgb, var(--warn) 7%, var(--surface)); }
.panel--warn .panel-icon, .panel--warn .panel-title { color: var(--warn); }
.panel--serious { border-left-color: var(--serious); background: color-mix(in srgb, var(--serious) 7%, var(--surface)); }
.panel--serious .panel-icon, .panel--serious .panel-title { color: var(--serious); }
.panel--good { border-left-color: var(--good); }
.panel--good .panel-icon, .panel--good .panel-title { color: var(--good); }
.panel--info { border-left-color: var(--s1); }
.panel--info .panel-icon, .panel--info .panel-title { color: var(--s1); }

/* ------------------------------------------------------------------ charts */

.chart-wrap { position: relative; }
.chart { display: block; width: 100%; height: auto; overflow: visible; }
.chart text { font-family: inherit; }
.chart .mark, .chart path[data-tip], .chart rect[data-tip] { cursor: default; }
.chart a.mark-link { cursor: pointer; }
.chart a.mark-link:hover path,
.chart .mark:hover path,
.chart path[data-tip]:hover { filter: brightness(1.18); }
.chart [data-tip]:focus { outline: 1px solid var(--ink); outline-offset: 1px; }

.chart-legend { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 12px; }
.legend-item {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: var(--ink-2);
}
a.legend-item:hover { color: var(--ink); text-decoration: none; }
.legend-swatch { width: 10px; height: 10px; border-radius: 3px; flex: none; }
.legend-value { color: var(--ink); font-variant-numeric: tabular-nums; }
.legend-note { color: var(--muted); font-size: 12px; }

.tooltip {
  position: absolute; z-index: 60; pointer-events: none;
  background: #000; color: var(--ink);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 6px 9px; font-size: 12px; max-width: 300px;
  box-shadow: 0 6px 20px rgba(0,0,0,.5);
  font-variant-numeric: tabular-nums;
}
.tooltip[hidden] { display: none; }

/* ------------------------------------------------------------------ tables */

.table-scroll { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: 13px; }
.table th, .table td {
  text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.table th { color: var(--muted); font-weight: 600; font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; }
.table td.num, .table th.num { text-align: right; white-space: nowrap; }
.table tbody tr:hover { background: var(--surface-2); }
.table--dense th, .table--dense td { padding: 6px 10px; }
.table caption { text-align: left; color: var(--muted); font-size: 12.5px; padding-bottom: 8px; }

/* ---------------------------------------------------------------- controls */

.btn {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border); background: var(--surface-2); color: var(--ink);
  border-radius: 8px; padding: 7px 12px; font-size: 13px; cursor: pointer;
  font-family: inherit; transition: border-color .15s ease;
}
.btn:hover { border-color: rgba(255,255,255,.28); text-decoration: none; }
.btn--ghost { background: none; color: var(--ink-2); }

.field { display: flex; flex-direction: column; gap: 5px; }
.field-label { color: var(--muted); font-size: 12px; }
.input, .select {
  background: var(--surface-2); border: 1px solid var(--border); color: var(--ink);
  border-radius: 8px; padding: 7px 10px; font-size: 13px; font-family: inherit;
}
.input:focus, .select:focus { border-color: var(--s1); }

.facet { border-top: 1px solid var(--border); padding: 12px 0; }
.facet-head {
  display: flex; align-items: baseline; gap: 8px; font-size: 12px; color: var(--ink);
  font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
}
.facet-list { list-style: none; margin: 8px 0 0; padding: 0; display: grid; gap: 5px; }
/* Grid items default to min-width:auto, which let long labels shove the
   counts past the rail's clipped edge. */
.facet-list > li { min-width: 0; }
.facet-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-2); }
.count { margin-left: auto; color: var(--muted); font-variant-numeric: tabular-nums; }

/* ------------------------------------------------------------------ states */

.loading, .empty {
  color: var(--muted); font-size: 13.5px; padding: 48px 0; text-align: center;
}
.error-panel {
  background: color-mix(in srgb, var(--critical) 8%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--critical) 45%, transparent);
  border-left: 3px solid var(--critical);
  border-radius: var(--radius); padding: 18px 20px; margin: 32px 0;
}
.error-panel h2 { color: var(--critical); font-size: 15px; }
.error-panel p { color: var(--ink-2); font-size: 13.5px; max-width: 78ch; }
.error-panel pre {
  background: var(--page); border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 12px; overflow-x: auto; font-size: 12.5px; color: var(--ink-2);
}
.stub {
  border: 1px dashed var(--border); border-radius: var(--radius);
  padding: 40px 24px; text-align: center; color: var(--muted); background: var(--surface);
}
.stub h2 { color: var(--ink-2); font-size: 15px; margin-bottom: 8px; }

/* ------------------------------------------------------------------ details */

details.fine {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 18px;
}
details.fine + details.fine { margin-top: 12px; }
details.fine > summary {
  cursor: pointer; font-size: 13.5px; font-weight: 600; color: var(--ink);
  list-style: none; display: flex; align-items: center; gap: 8px; padding: 4px 0;
}
details.fine > summary::-webkit-details-marker { display: none; }
details.fine > summary::before { content: "▸"; color: var(--muted); font-size: 11px; }
details.fine[open] > summary::before { content: "▾"; }
details.fine > summary .hint { font-weight: 400; margin-left: auto; }
.fine-body { padding: 8px 0 6px; }
.list { margin: 0; padding-left: 18px; color: var(--ink-2); font-size: 13.5px; }
.list li + li { margin-top: 8px; }

/* ---------------------------------------------------------------- overview */

.hero { padding: 8px 0 4px; }
.hero-question { font-size: 30px; letter-spacing: -.015em; }
.hero-lede { margin-top: 10px; }
.splitbar { margin-top: 8px; }
.splitbar-heads { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 10px; }
.splitbar-head-num { font-size: 22px; font-weight: 600; }
.splitbar-head-label { color: var(--ink-2); font-size: 12.5px; max-width: 40ch; }
.splitbar-head.right { text-align: right; }
.splitbar-head.right .splitbar-head-label { margin-left: auto; }

.ladder { display: grid; gap: 10px; }
.ladder-row {
  display: grid; grid-template-columns: 190px minmax(0, 1fr) 92px;
  gap: 14px; align-items: center;
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--axis); border-radius: var(--radius); padding: 12px 16px;
}
.ladder-row.is-warn { border-left-color: var(--warn); background: color-mix(in srgb, var(--warn) 7%, var(--surface)); }
.ladder-name { font-size: 13.5px; color: var(--ink); display: flex; align-items: center; gap: 7px; }
.ladder-row.is-warn .ladder-name { color: var(--warn); }
.ladder-note { color: var(--ink-2); font-size: 12.5px; }
.ladder-count { text-align: right; font-variant-numeric: tabular-nums; font-size: 18px; font-weight: 600; color: var(--ink); }
.ladder-count small { display: block; font-size: 11px; font-weight: 400; color: var(--muted); }
a.ladder-row { transition: border-color .15s ease, background-color .15s ease; }
a.ladder-row:hover { border-color: rgba(255,255,255,.28); text-decoration: none; }
a.ladder-row:hover .ladder-name { text-decoration: underline; }

/* --------------------------------------------- overview: how it's made */

.made-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.made-step {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
}
.made-step-num {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--s1); font-weight: 600; font-size: 14px;
}
.made-step-title { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.made-step-body { color: var(--ink-2); font-size: 13px; margin-top: 4px; max-width: 82ch; }

/* ------------------------------------------------- overview: glossary */

.def-list { margin: 0; display: grid; gap: 10px; }
.def-list--dense { gap: 7px; }
.def-list + .def-group-head { margin-top: 18px; }
.def-group-head {
  font-size: 11.5px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px;
}
.def-item dt { font-size: 13px; font-weight: 600; color: var(--ink); }
.def-item dd { margin: 2px 0 0; color: var(--ink-2); font-size: 13px; max-width: 82ch; }
.def-item.is-warn dt { color: var(--warn); }
.def-item.is-warn dt::before { content: "⚠ "; }

/* goto anchors land below the sticky two-row header, not underneath it. */
[id^="def-"], #accuracy-note { scroll-margin-top: 104px; }

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

.site-footer {
  border-top: 1px solid var(--border); margin-top: 48px;
  padding: 18px 0 40px; color: var(--muted); font-size: 12.5px;
}
.site-footer .wrap { display: flex; gap: 16px; flex-wrap: wrap; align-items: baseline; }
.site-footer .accuracy-note { color: var(--warn); }

/* -------------------------------------------------------------- responsive */

@media (max-width: 900px) {
  .wrap { padding: 0 16px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-question { font-size: 24px; }
  .ladder-row { grid-template-columns: minmax(0, 1fr) 88px; }
  .ladder-note { grid-column: 1 / -1; }
  .site-header-top { gap: 10px; }
  /* On a phone the two tabs split the full width — still large targets. */
  .site-nav a { flex: 1 1 0; justify-content: center; padding: 10px 8px 11px; }
  .site-meta { margin-left: 0; width: 100%; }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
  .splitbar-heads { flex-direction: column; }
  .splitbar-head.right { text-align: left; }
}

@media (prefers-reduced-motion: no-preference) {
  .view { animation: fade .18s ease-out; }
  @keyframes fade { from { opacity: 0; } to { opacity: 1; } }
}
