/* BrawlHood site styles (DESIGN.md §3 layout, §4 components). Loaded on every page after tokens.css.
   Page-specific rules live in that page's own stylesheet; those files extend, never redefine, these classes. */

/* =========================================================== base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg-0); color: var(--ink-1);
  font-family: var(--font-body); font-size: var(--text-body); line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden; min-height: 100vh;
}
main { display: block; }
img, svg, canvas, video { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--ink-1); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-color: var(--ink-3); text-underline-offset: 3px; }
a.link { color: var(--gold); }
:focus { outline: none; }
:focus-visible { outline: none; box-shadow: var(--focus); border-radius: var(--radius-1); }
::selection { background: rgba(242, 193, 78, 0.28); color: var(--ink-1); }
[hidden] { display: none !important; }
hr, .rule { border: 0; border-top: 1px solid var(--line-1); margin: var(--space-4) 0; }
code, kbd, pre, .mono { font-family: var(--font-mono); font-size: 0.92em; }
pre { margin: 0; overflow-x: auto; padding: var(--space-3) var(--space-4); background: var(--bg-2); border: 1px solid var(--line-1); border-radius: var(--radius-1); }
.num, .tabular { font-variant-numeric: tabular-nums; }
.muted { color: var(--ink-3); }
.secondary { color: var(--ink-2); }
.ok { color: var(--ok); } .warn { color: var(--warn); } .bad { color: var(--bad); } .info { color: var(--info); }
.gold { color: var(--gold); } .corner-red { color: var(--red-2); } .corner-blue { color: var(--blue-2); }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: var(--space-4); top: -60px; z-index: 200; padding: var(--space-2) var(--space-3); background: var(--gold); color: var(--gold-ink); border-radius: var(--radius-1); font-weight: 600; }
.skip-link:focus-visible { top: var(--space-2); }

/* type */
.display, h1, h2, .hero-title { font-family: var(--font-display); font-weight: 400; letter-spacing: var(--tracking-display); line-height: 0.95; margin: 0; text-transform: uppercase; }
.hero-title { font-size: var(--text-hero); }
h1, .h1 { font-size: var(--text-h1); }
h2, .h2 { font-size: var(--text-h2); }
h3, .h3 { font-family: var(--font-body); font-size: 17px; font-weight: 600; line-height: 1.3; margin: 0; letter-spacing: -0.005em; }
h4, .h4 { font-family: var(--font-body); font-size: var(--text-body); font-weight: 600; margin: 0; }
p { margin: 0 0 var(--space-3); }
p:last-child { margin-bottom: 0; }
.lede { font-size: 17px; color: var(--ink-2); max-width: 60ch; }
.small, .fine { font-size: var(--text-small); }
.micro, .eyebrow { font-size: var(--text-micro); text-transform: uppercase; letter-spacing: var(--tracking-micro); font-weight: 600; }
.eyebrow { color: var(--ink-3); margin: 0 0 var(--space-2); display: flex; align-items: center; gap: var(--space-2); }
.eyebrow::before { content: ""; width: 12px; height: 2px; background: var(--gold); border-radius: 1px; }
.eyebrow--plain::before { content: none; }
.display-num { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.02em; line-height: 1; }
.tag { display: inline-block; padding: 1px var(--space-2); border-radius: var(--radius-pill); background: var(--bg-3); color: var(--ink-2); font-size: var(--text-small); font-weight: 500; text-transform: capitalize; }
.arch { display: inline-block; padding: 1px var(--space-2); border-radius: var(--radius-pill); background: var(--bg-3); color: var(--ink-2); font-size: var(--text-small); font-weight: 500; text-transform: capitalize; }
@media (max-width: 1199px) { .hero-title { font-size: var(--text-hero-md); } }
@media (max-width: 719px) { .hero-title { font-size: var(--text-hero-sm); } h1, .h1 { font-size: 34px; } h2, .h2 { font-size: 24px; } .lede { font-size: 16px; } }

/* =========================================================== layout */
.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--grid-gap); }
.col-3 { grid-column: span 3; } .col-4 { grid-column: span 4; } .col-5 { grid-column: span 5; } .col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; } .col-8 { grid-column: span 8; } .col-9 { grid-column: span 9; } .col-12 { grid-column: span 12; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--grid-gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--grid-gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--grid-gap); }
.stack { display: flex; flex-direction: column; gap: var(--space-4); }
.stack--tight { gap: var(--space-2); }
.row { display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; }
.row--between { justify-content: space-between; }
.row--end { justify-content: flex-end; }
.spacer { flex: 1; }
.section { padding: var(--section-gap) 0; }
.section + .section { border-top: 1px solid var(--line-1); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-5); }
.section-head > div { min-width: 0; }
.section-head .lede { margin: var(--space-2) 0 0; }
.kv { display: grid; grid-template-columns: auto 1fr; gap: var(--space-2) var(--space-4); margin: 0; font-size: var(--text-small); }
.kv dt { color: var(--ink-3); font-weight: 500; white-space: nowrap; }
.kv dd { margin: 0; color: var(--ink-1); overflow-wrap: anywhere; font-variant-numeric: tabular-nums; }
.scroll-x { position: relative; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.scroll-x-wrap { position: relative; }
.scroll-x-wrap::before, .scroll-x-wrap::after { content: ""; position: absolute; top: 0; bottom: 0; width: var(--space-6); pointer-events: none; z-index: 2; opacity: 0; transition: opacity var(--dur-2) var(--ease); }
.scroll-x-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg-0), transparent); }
.scroll-x-wrap::after { right: 0; background: linear-gradient(270deg, var(--bg-0), transparent); }
.scroll-x-wrap.can-left::before, .scroll-x-wrap.can-right::after { opacity: 1; }
.scroll-x-wrap--panel::before { background: linear-gradient(90deg, var(--bg-1), transparent); }
.scroll-x-wrap--panel::after { background: linear-gradient(270deg, var(--bg-1), transparent); }
.reserve { min-height: 120px; }
@media (max-width: 1199px) {
  .grid > [class*="col-"] { grid-column: span 6; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 719px) {
  .grid > [class*="col-"], .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; grid-column: span 12; }
  .grid, .grid-2, .grid-3, .grid-4 { gap: var(--space-4); }
  .section-head { align-items: flex-start; flex-direction: column; gap: var(--space-2); }
}

/* =========================================================== top bar */
.topbar { position: sticky; top: 0; z-index: 60; height: var(--topbar-h); background: rgba(8, 8, 10, 0.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line-1); }
.topbar .wrap { height: 100%; display: flex; align-items: center; gap: var(--space-5); }
.brand { display: inline-flex; align-items: center; gap: var(--space-2); color: var(--ink-1); font-family: var(--font-display); font-size: 26px; letter-spacing: var(--tracking-display); line-height: 1; padding: var(--space-2) 0; min-height: var(--target); }
.brand:hover { text-decoration: none; }
.brand .icon { width: 20px; height: 20px; color: var(--gold); }
.brand em { font-style: normal; color: var(--gold); }
.topbar-links { display: flex; align-items: center; gap: var(--space-1); }
.topbar-link { display: inline-flex; align-items: center; min-height: var(--target); padding: 0 var(--space-3); color: var(--ink-2); font-weight: 500; border-radius: var(--radius-1); position: relative; }
.topbar-link:hover { color: var(--ink-1); text-decoration: none; background: var(--bg-2); }
.topbar-link[aria-current="page"] { color: var(--ink-1); }
.topbar-link[aria-current="page"]::after { content: ""; position: absolute; left: var(--space-3); right: var(--space-3); bottom: -1px; height: 2px; background: var(--gold); }
.topbar-status { display: inline-flex; align-items: center; min-height: var(--target); }
.topbar .btn { white-space: nowrap; }
@media (max-width: 719px) {
  .topbar .wrap { gap: var(--space-2); }
  .topbar-links { gap: 0; }
  .topbar-link { padding: 0 var(--space-2); font-size: var(--text-small); }
  .topbar-status { display: none; }
  .brand { font-size: 22px; gap: 6px; }
  .topbar .btn { height: 36px; padding: 0 var(--space-3); font-size: var(--text-small); }
}
@media (max-width: 479px) {
  .topbar .btn { width: 40px; height: 40px; padding: 0; }
  .topbar .btn .btn__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
  .topbar .btn .icon { width: 18px; height: 18px; }
}

/* live pill (top bar) */
.live-pill { display: inline-flex; align-items: center; gap: var(--space-2); height: 32px; padding: 0 var(--space-3) 0 var(--space-3); border: 1px solid var(--line-2); border-radius: var(--radius-pill); background: var(--bg-1); color: var(--ink-2); font-size: var(--text-small); font-weight: 500; white-space: nowrap; font-variant-numeric: tabular-nums; }
.live-pill:hover { text-decoration: none; border-color: var(--ink-3); color: var(--ink-1); }
.live-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-4); flex: none; }
.live-pill.is-live { border-color: rgba(230, 57, 70, 0.5); color: var(--ink-1); }
.live-pill.is-live .dot { background: var(--red); animation: pulse 1.6s var(--ease) infinite; }
.live-pill.is-claims .dot { background: var(--ok); }
.live-pill.is-done .dot { background: var(--gold); }
.live-pill strong { font-weight: 600; color: var(--ink-1); }

/* mode banner: slim 28px strip */
.mode-banner { display: flex; align-items: center; justify-content: center; gap: var(--space-2); min-height: var(--banner-h); padding: var(--space-1) var(--gutter); background: rgba(255, 176, 32, 0.12); border-bottom: 1px solid rgba(255, 176, 32, 0.28); color: var(--warn); font-size: var(--text-micro); font-weight: 600; letter-spacing: var(--tracking-micro); text-transform: uppercase; text-align: center; }
.mode-banner .icon { width: 12px; height: 12px; flex: none; }
.mode-banner.live { background: rgba(61, 220, 132, 0.1); border-bottom-color: rgba(61, 220, 132, 0.28); color: var(--ok); }
.mode-banner.offline { background: rgba(255, 77, 109, 0.12); border-bottom-color: rgba(255, 77, 109, 0.3); color: var(--bad); }
.mode-banner a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 719px) { .mode-banner { letter-spacing: 0.04em; font-size: 10px; padding: var(--space-1) var(--space-3); line-height: 1.3; } }

/* =========================================================== buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  height: 40px; padding: 0 var(--space-4); border-radius: var(--radius-1);
  border: 1px solid var(--line-2); background: var(--bg-2); color: var(--ink-1);
  font-weight: 600; font-size: var(--text-body); line-height: 1; cursor: pointer; white-space: nowrap;
  text-decoration: none; position: relative; user-select: none;
  transition: background var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease), color var(--dur-1) var(--ease), transform var(--dur-1) var(--ease);
}
.btn:hover { background: var(--bg-3); border-color: var(--ink-3); text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: 0.45; cursor: not-allowed; pointer-events: auto; transform: none; }
.btn .icon { width: 16px; height: 16px; flex: none; }
.btn--primary, .btn-accent { background: var(--gold); border-color: var(--gold); color: var(--gold-ink); }
.btn--primary:hover, .btn-accent:hover { background: var(--gold-2); border-color: var(--gold-2); color: var(--gold-ink); }
.btn--secondary { background: transparent; border-color: var(--line-2); color: var(--ink-1); }
.btn--secondary:hover { border-color: var(--ink-2); background: var(--bg-2); }
.btn--ghost { background: transparent; border-color: transparent; color: var(--ink-2); }
.btn--ghost:hover { background: var(--bg-2); color: var(--ink-1); border-color: transparent; }
.btn--danger { background: transparent; border-color: rgba(255, 77, 109, 0.5); color: var(--bad); }
.btn--danger:hover { background: rgba(255, 77, 109, 0.12); border-color: var(--bad); }
.btn--lg, .btn-lg { height: 48px; padding: 0 var(--space-5); font-size: 16px; }
.btn--sm, .btn-sm { height: 32px; padding: 0 var(--space-3); font-size: var(--text-small); }
.btn--block { width: 100%; }
.btn--icon { width: 40px; padding: 0; }
.btn--icon.btn--sm { width: 32px; }
.btn.is-loading { color: transparent !important; pointer-events: none; }
.btn.is-loading::after { content: ""; position: absolute; width: 16px; height: 16px; border-radius: 50%; border: 2px solid currentColor; border-right-color: transparent; color: var(--ink-1); animation: spin 0.8s linear infinite; }
.btn--primary.is-loading::after, .btn-accent.is-loading::after { color: var(--gold-ink); }
.btn-group { display: inline-flex; gap: var(--space-2); flex-wrap: wrap; }
.cta-row { display: flex; gap: var(--space-3); flex-wrap: wrap; align-items: center; }
@media (max-width: 719px) { .cta-row .btn { flex: 1 1 100%; } .btn { min-height: var(--target); } .btn--sm, .btn-sm { min-height: 36px; } }

/* =========================================================== pills & badges */
.pill { display: inline-flex; align-items: center; gap: 6px; height: 24px; padding: 0 var(--space-2); border-radius: var(--radius-pill); border: 1px solid var(--line-2); background: var(--bg-2); color: var(--ink-2); font-size: var(--text-micro); font-weight: 600; letter-spacing: var(--tracking-micro); text-transform: uppercase; white-space: nowrap; line-height: 1; }
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex: none; }
.pill--live, .pill-live { color: var(--ink-1); border-color: rgba(230, 57, 70, 0.55); background: rgba(230, 57, 70, 0.14); }
.pill--live .dot, .pill-live .dot { background: var(--red); animation: pulse 1.6s var(--ease) infinite; }
.pill--ok, .pill-ok { color: var(--ok); border-color: rgba(61, 220, 132, 0.45); background: rgba(61, 220, 132, 0.1); }
.pill--warn, .pill-warn { color: var(--warn); border-color: rgba(255, 176, 32, 0.45); background: rgba(255, 176, 32, 0.1); }
.pill--bad, .pill-bad { color: var(--bad); border-color: rgba(255, 77, 109, 0.45); background: rgba(255, 77, 109, 0.1); }
.pill--info { color: var(--info); border-color: rgba(106, 163, 255, 0.45); background: rgba(106, 163, 255, 0.1); }
.pill--gold { color: var(--gold); border-color: rgba(242, 193, 78, 0.45); background: rgba(242, 193, 78, 0.1); }
.pill--muted { color: var(--ink-3); }
a.pill:hover { text-decoration: none; border-color: var(--ink-3); color: var(--ink-1); }

.badge-tier { display: inline-flex; align-items: center; gap: 6px; height: 22px; padding: 0 var(--space-2); border-radius: var(--radius-1); background: var(--bg-3); color: var(--ink-2); font-size: var(--text-micro); font-weight: 600; letter-spacing: var(--tracking-micro); text-transform: uppercase; line-height: 1; white-space: nowrap; }
.badge-tier::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--tier-color, var(--ink-3)); }
.tier--bronze { --tier-color: var(--tier-bronze); }
.tier--silver { --tier-color: var(--tier-silver); }
.tier--gold { --tier-color: var(--tier-gold); }
.tier--platinum { --tier-color: var(--tier-platinum); }
.tier--legend { --tier-color: var(--tier-legend); }
.tier-stripe { height: 3px; background: var(--tier-color, var(--line-2)); border-radius: 2px 2px 0 0; }

.corner-badge { display: inline-flex; align-items: center; height: 20px; padding: 0 6px; border-radius: 3px; font-family: var(--font-display); font-size: 13px; letter-spacing: 0.1em; line-height: 1; color: var(--ink-1); }
.corner--red { background: var(--red); }
.corner--blue { background: var(--blue); }
.corner-bar { width: 4px; align-self: stretch; border-radius: 2px; background: var(--corner-color, var(--line-2)); flex: none; }
.corner-bar.corner--red { background: var(--red); } .corner-bar.corner--blue { background: var(--blue); }

/* =========================================================== cards */
.card { background: var(--bg-1); border: 1px solid var(--line-1); border-radius: var(--radius-2); padding: 20px; }
.card--raised { background: var(--bg-2); box-shadow: var(--shadow-1); }
.card--flush { padding: 0; overflow: hidden; }
.card--interactive { cursor: pointer; transition: border-color var(--dur-1) var(--ease), transform var(--dur-2) var(--ease), background var(--dur-1) var(--ease); }
.card--interactive:hover { border-color: var(--line-2); background: var(--bg-2); transform: translateY(-2px); }
.card--interactive:active { transform: translateY(0); }
.card--selected { border-color: var(--gold); }
.card__head { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); flex-wrap: wrap; margin: -20px -20px var(--space-4); padding: var(--space-3) 20px; border-bottom: 1px solid var(--line-1); }
.card__head h3 { margin: 0; }
.card__body { display: flex; flex-direction: column; gap: var(--space-3); }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); flex-wrap: wrap; margin: var(--space-4) -20px -20px; padding: var(--space-3) 20px; border-top: 1px solid var(--line-1); }
.card--flush .card__head { margin: 0; }
.card--flush .card__body { padding: 20px; }
.card--flush .card__foot { margin: 0; }
button.card { text-align: left; font: inherit; color: inherit; width: 100%; }

/* =========================================================== stat tiles */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--space-4); }
.tile { display: flex; flex-direction: column; gap: var(--space-1); padding: var(--space-4); background: var(--bg-1); border: 1px solid var(--line-1); border-radius: var(--radius-2); min-height: 96px; }
.tile__label { font-size: var(--text-micro); text-transform: uppercase; letter-spacing: var(--tracking-micro); font-weight: 600; color: var(--ink-3); }
.tile__value { font-family: var(--font-display); font-size: 40px; line-height: 1; letter-spacing: 0.02em; color: var(--ink-1); }
.tile__value small { font-family: var(--font-body); font-size: var(--text-small); letter-spacing: 0; color: var(--ink-3); margin-left: var(--space-1); }
.tile__sub { font-size: var(--text-small); color: var(--ink-2); display: flex; align-items: center; gap: 6px; }
.tile__sub .icon { width: 12px; height: 12px; }
.tile__sub.up { color: var(--ok); } .tile__sub.down { color: var(--bad); }
.tile--gold .tile__value { color: var(--gold); }
.tile--compact { min-height: 0; padding: var(--space-3); }
.tile--compact .tile__value { font-size: 28px; }

/* =========================================================== progress */
.progress { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.progress__head { display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-3); font-size: var(--text-small); color: var(--ink-2); }
.progress__head strong { color: var(--ink-1); font-variant-numeric: tabular-nums; }
.progress__bar { position: relative; height: 6px; border-radius: 3px; background: var(--bg-3); overflow: hidden; }
.progress__fill { position: absolute; inset: 0 auto 0 0; width: 0; background: var(--gold); border-radius: 3px; transition: width var(--dur-3) var(--ease); }
.progress__fill.ok { background: var(--ok); } .progress__fill.bad { background: var(--bad); } .progress__fill.blue { background: var(--blue); } .progress__fill.red { background: var(--red); }
.progress__mark { position: absolute; top: -3px; bottom: -3px; width: 2px; background: var(--ink-1); border-radius: 1px; }
.progress--thick .progress__bar { height: 10px; border-radius: 5px; }
.progress--thick .progress__fill { border-radius: 5px; }

/* =========================================================== countdown */
.countdown { display: inline-flex; align-items: flex-start; gap: var(--space-1); font-family: var(--font-display); color: var(--ink-1); }
.countdown__cell { display: flex; flex-direction: column; align-items: center; gap: 2px; min-width: 2.2em; }
.countdown__digits { font-size: 40px; line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: 0.04em; width: 2ch; text-align: center; }
.countdown__unit { font-family: var(--font-body); font-size: var(--text-micro); letter-spacing: var(--tracking-micro); text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.countdown__sep { font-size: 40px; line-height: 1; color: var(--ink-4); padding: 0 2px; }
.countdown.is-urgent .countdown__digits, .countdown.is-urgent .countdown__sep { color: var(--red-2); }
.countdown.is-done .countdown__digits { color: var(--ink-3); }
.countdown--sm .countdown__digits, .countdown--sm .countdown__sep { font-size: 24px; }
.countdown--lg .countdown__digits, .countdown--lg .countdown__sep { font-size: 56px; }
.countdown--inline { font-family: var(--font-mono); font-size: var(--text-small); font-variant-numeric: tabular-nums; color: var(--ink-2); }
@media (max-width: 719px) { .countdown--lg .countdown__digits, .countdown--lg .countdown__sep { font-size: 44px; } }

/* =========================================================== ticker */
.ticker { position: relative; height: 36px; overflow: hidden; background: var(--bg-1); border-top: 1px solid var(--line-1); border-bottom: 1px solid var(--line-1); }
.ticker::before, .ticker::after { content: ""; position: absolute; top: 0; bottom: 0; width: var(--space-7); z-index: 1; pointer-events: none; }
.ticker::before { left: 0; background: linear-gradient(90deg, var(--bg-1), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--bg-1), transparent); }
.ticker__track { display: flex; align-items: center; height: 100%; gap: var(--space-6); width: max-content; padding-left: var(--space-5); animation: ticker var(--ticker-dur, 40s) linear infinite; }
.ticker:hover .ticker__track, .ticker:focus-within .ticker__track { animation-play-state: paused; }
.ticker__item { display: inline-flex; align-items: center; gap: var(--space-2); font-size: var(--text-small); color: var(--ink-2); white-space: nowrap; font-variant-numeric: tabular-nums; }
.ticker__item .m { color: var(--ink-3); font-family: var(--font-mono); font-size: var(--text-micro); }
.ticker__item .win { color: var(--ink-1); font-weight: 600; }
.ticker__item .icon { width: 12px; height: 12px; color: var(--gold); }
.ticker__item .corner-bar { height: 14px; width: 3px; }
.ticker--static .ticker__track { animation: none; width: 100%; overflow-x: auto; scrollbar-width: none; }

/* =========================================================== tables */
.table-scroll { position: relative; overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line-1); border-radius: var(--radius-2); background: var(--bg-1); scrollbar-width: thin; }
.table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: var(--text-small); min-width: 640px; }
.table th, .table td { padding: 10px var(--space-3); text-align: left; border-bottom: 1px solid var(--line-1); white-space: nowrap; vertical-align: middle; }
.table th { position: sticky; top: 0; z-index: 2; background: var(--bg-2); color: var(--ink-3); font-size: var(--text-micro); letter-spacing: var(--tracking-micro); text-transform: uppercase; font-weight: 600; }
.table th.sortable { cursor: pointer; user-select: none; }
.table th.sortable:hover { color: var(--ink-1); }
.table th.sortable:focus-visible { box-shadow: inset var(--focus); }
.table th .dir { display: inline-block; width: 1em; margin-left: 2px; color: var(--gold); }
.table th.active { color: var(--ink-1); }
.table tbody tr { transition: background var(--dur-1) var(--ease); }
.table tbody tr:hover td { background: var(--bg-2); }
.table tbody tr:last-child td { border-bottom: 0; }
.table tbody tr.link-row { cursor: pointer; }
.table tbody tr.is-selected td { background: rgba(242, 193, 78, 0.08); }
.table td.num, .table th.num { text-align: right; font-variant-numeric: tabular-nums; }
.table td.name { font-weight: 600; color: var(--ink-1); }
.table td.name a { color: inherit; }
.table td.dim { color: var(--ink-3); }
.table td.empty { text-align: center; padding: var(--space-6); color: var(--ink-3); white-space: normal; }
.table .mini { display: inline-block; width: 40px; height: 4px; background: var(--bg-3); border-radius: 2px; vertical-align: middle; margin-right: 6px; overflow: hidden; }
.table .mini i { display: block; height: 100%; background: var(--ink-3); }
.table--sticky-first th:first-child, .table--sticky-first td:first-child { position: sticky; left: 0; z-index: 1; background: var(--bg-1); }
.table--sticky-first th:first-child { z-index: 3; background: var(--bg-2); }
.table--sticky-first tbody tr:hover td:first-child { background: var(--bg-2); }
.table--compact th, .table--compact td { padding: 6px var(--space-2); }
.table .better { color: var(--gold); font-weight: 600; }

/* =========================================================== forms */
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.label { font-size: var(--text-small); font-weight: 500; color: var(--ink-2); }
.help { font-size: var(--text-small); color: var(--ink-3); }
.help.bad { color: var(--bad); }
.input { height: 40px; padding: 0 var(--space-3); background: var(--bg-1); border: 1px solid var(--line-2); border-radius: var(--radius-1); color: var(--ink-1); min-width: 0; width: 100%; transition: border-color var(--dur-1) var(--ease); }
.input::placeholder { color: var(--ink-4); }
.input:hover { border-color: var(--ink-3); }
.input:focus-visible { border-color: var(--gold); box-shadow: var(--focus); }
.input:disabled { opacity: 0.45; cursor: not-allowed; }
.input[aria-invalid="true"] { border-color: var(--bad); }
textarea.input { height: auto; min-height: 96px; padding: var(--space-2) var(--space-3); resize: vertical; }
select.input { appearance: none; -webkit-appearance: none; padding-right: 32px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%237f7f8c' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.input-group { display: flex; align-items: center; gap: var(--space-2); }
.input-icon { position: relative; }
.input-icon .icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--ink-3); pointer-events: none; }
.input-icon .input { padding-left: 36px; }
.toolbar { display: flex; gap: var(--space-2); align-items: center; flex-wrap: wrap; margin-bottom: var(--space-4); }
.toolbar .input { width: auto; }
.toolbar input[type="search"] { flex: 1 1 200px; }
.toolbar-count { margin-left: auto; font-size: var(--text-small); color: var(--ink-3); font-variant-numeric: tabular-nums; }

/* chips (filters) */
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: 6px; height: 32px; padding: 0 var(--space-3); border-radius: var(--radius-pill); border: 1px solid var(--line-2); background: transparent; color: var(--ink-2); font-size: var(--text-small); font-weight: 500; cursor: pointer; white-space: nowrap; transition: background var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease), color var(--dur-1) var(--ease); }
.chip:hover { border-color: var(--ink-3); color: var(--ink-1); text-decoration: none; }
.chip[aria-pressed="true"], .chip.is-on { background: var(--ink-1); border-color: var(--ink-1); color: var(--bg-0); }
.chip:disabled { opacity: 0.45; cursor: not-allowed; }
.chip .swatch { width: 8px; height: 8px; border-radius: 2px; background: var(--chip-color, var(--ink-3)); }
.chip[aria-pressed="true"] .swatch { outline: 1px solid var(--bg-0); }
.chip a { color: inherit; }
.chip-x { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; margin-right: -6px; border: 0; border-radius: 50%; background: transparent; color: var(--ink-3); cursor: pointer; }
.chip-x:hover { color: var(--bad); background: rgba(255, 77, 109, 0.12); }
.chip-x .icon { width: 12px; height: 12px; }

/* toggle switch */
.toggle { display: inline-flex; align-items: center; gap: var(--space-2); cursor: pointer; font-size: var(--text-small); color: var(--ink-2); min-height: var(--target); user-select: none; }
.toggle input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.toggle__track { position: relative; width: 36px; height: 20px; border-radius: 10px; background: var(--bg-3); border: 1px solid var(--line-2); transition: background var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease); flex: none; }
.toggle__track::after { content: ""; position: absolute; top: 2px; left: 2px; width: 14px; height: 14px; border-radius: 50%; background: var(--ink-2); transition: transform var(--dur-2) var(--ease), background var(--dur-2) var(--ease); }
.toggle input:checked + .toggle__track { background: var(--gold); border-color: var(--gold); }
.toggle input:checked + .toggle__track::after { transform: translateX(16px); background: var(--gold-ink); }
.toggle input:focus-visible + .toggle__track { box-shadow: var(--focus); }
.toggle input:disabled + .toggle__track { opacity: 0.45; }
.toggle.is-disabled { cursor: not-allowed; }

/* =========================================================== dialog */
.dialog { width: min(960px, calc(100vw - 2 * var(--gutter))); max-height: calc(100vh - 2 * var(--space-5)); margin: auto; padding: 0; border: 1px solid var(--line-2); border-radius: var(--radius-3); background: var(--bg-1); color: var(--ink-1); box-shadow: var(--shadow-1); overflow: hidden; display: none; flex-direction: column; }
.dialog[open] { display: flex; animation: dialog-in var(--dur-2) var(--ease); }
.dialog::backdrop { background: rgba(8, 8, 10, 0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.dialog__head { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); padding: var(--space-4) var(--space-5); border-bottom: 1px solid var(--line-1); flex: none; }
.dialog__head h2, .dialog__head h3 { margin: 0; }
.dialog__body { padding: var(--space-5); overflow: auto; flex: 1 1 auto; min-height: 0; }
.dialog__foot { display: flex; justify-content: flex-end; gap: var(--space-2); padding: var(--space-3) var(--space-5); border-top: 1px solid var(--line-1); flex: none; }
.dialog--sm { width: min(520px, calc(100vw - 2 * var(--gutter))); }
@media (max-width: 719px) { .dialog { max-height: 100vh; width: 100vw; border-radius: var(--radius-3) var(--radius-3) 0 0; margin: auto 0 0; } .dialog__body { padding: var(--space-4); } }

/* =========================================================== tabs */
.tabs__list { display: flex; gap: var(--space-1); border-bottom: 1px solid var(--line-1); overflow-x: auto; scrollbar-width: none; }
.tab { display: inline-flex; align-items: center; gap: var(--space-2); min-height: var(--target); padding: 0 var(--space-3); border: 0; border-bottom: 2px solid transparent; margin-bottom: -1px; background: transparent; color: var(--ink-2); font-weight: 500; cursor: pointer; white-space: nowrap; border-radius: var(--radius-1) var(--radius-1) 0 0; transition: color var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease); }
.tab:hover { color: var(--ink-1); background: var(--bg-1); }
.tab[aria-selected="true"] { color: var(--ink-1); border-bottom-color: var(--gold); }
.tab:disabled { opacity: 0.45; cursor: not-allowed; }
.tab .pill { height: 18px; }
.tabpanel { padding-top: var(--space-4); }
.tabpanel[hidden] { display: none; }

/* =========================================================== tooltip */
.tooltip { position: fixed; z-index: 120; max-width: 280px; padding: var(--space-2) var(--space-3); background: var(--bg-3); border: 1px solid var(--line-2); border-radius: var(--radius-1); color: var(--ink-1); font-size: var(--text-small); line-height: 1.4; box-shadow: var(--shadow-1); pointer-events: none; opacity: 0; transform: translateY(2px); transition: opacity var(--dur-1) var(--ease), transform var(--dur-1) var(--ease); }
.tooltip.is-open { opacity: 1; transform: none; }
.tooltip strong { font-weight: 600; font-variant-numeric: tabular-nums; }
.tooltip .tt-row { display: flex; justify-content: space-between; gap: var(--space-3); }
.tooltip .tt-row + .tt-row { margin-top: 2px; }
.tooltip .tt-key { display: inline-block; width: 10px; height: 2px; border-radius: 1px; margin-right: 6px; vertical-align: middle; background: var(--tt-color, var(--ink-3)); }
.tooltip .tt-label { color: var(--ink-2); }

/* =========================================================== toast */
.toasts { position: fixed; right: var(--space-5); bottom: var(--space-5); z-index: 130; display: flex; flex-direction: column; gap: var(--space-2); max-width: min(360px, calc(100vw - 2 * var(--gutter))); }
.toast { display: flex; align-items: flex-start; gap: var(--space-2); padding: var(--space-3) var(--space-4); background: var(--bg-2); border: 1px solid var(--line-2); border-left: 3px solid var(--ink-3); border-radius: var(--radius-1); color: var(--ink-1); font-size: var(--text-small); box-shadow: var(--shadow-1); animation: toast-in var(--dur-2) var(--ease); }
.toast .icon { width: 16px; height: 16px; flex: none; margin-top: 1px; }
.toast--ok { border-left-color: var(--ok); } .toast--ok .icon { color: var(--ok); }
.toast--bad { border-left-color: var(--bad); } .toast--bad .icon { color: var(--bad); }
.toast--warn { border-left-color: var(--warn); } .toast--warn .icon { color: var(--warn); }
.toast--info { border-left-color: var(--info); } .toast--info .icon { color: var(--info); }
.toast.is-leaving { opacity: 0; transform: translateY(6px); transition: opacity var(--dur-2) var(--ease), transform var(--dur-2) var(--ease); }
@media (max-width: 719px) { .toasts { right: var(--gutter); left: var(--gutter); bottom: var(--gutter); max-width: none; } }

/* =========================================================== skeleton */
.skeleton { position: relative; overflow: hidden; background: var(--bg-2); border-radius: var(--radius-1); color: transparent; }
.skeleton::after { content: ""; position: absolute; inset: 0; transform: translateX(-100%); background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent); animation: shimmer 1.4s var(--ease) infinite; }
.skeleton--text { height: 14px; width: 100%; margin: 4px 0; }
.skeleton--text.w-60 { width: 60%; } .skeleton--text.w-40 { width: 40%; } .skeleton--text.w-80 { width: 80%; }
.skeleton--title { height: 28px; width: 50%; }
.skeleton--tile { height: 96px; border-radius: var(--radius-2); }
.skeleton--card { height: 180px; border-radius: var(--radius-2); }
.skeleton--row { height: 40px; border-radius: 0; }
.skeleton--ring { width: 96px; height: 96px; border-radius: 50%; }
.skeleton--pill { height: 24px; width: 80px; border-radius: var(--radius-pill); }
.skeleton--portrait { aspect-ratio: 3 / 4; border-radius: var(--radius-1); }
.skeleton-stack { display: flex; flex-direction: column; gap: var(--space-2); }
.is-refetching { opacity: 0.6; transition: opacity var(--dur-2) var(--ease); }

/* =========================================================== empty / error states */
.empty { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-3); padding: var(--space-6) var(--space-4); text-align: center; color: var(--ink-2); border: 1px dashed var(--line-2); border-radius: var(--radius-2); min-height: 160px; }
.empty__icon { width: 32px; height: 32px; color: var(--ink-3); }
.empty__title { font-weight: 600; color: var(--ink-1); }
.empty p { max-width: 44ch; margin: 0; }
.empty--error { border-color: rgba(255, 77, 109, 0.4); }
.empty--error .empty__icon { color: var(--bad); }
.callout { display: flex; gap: var(--space-3); align-items: flex-start; padding: var(--space-3) var(--space-4); border: 1px solid var(--line-2); border-left: 3px solid var(--info); border-radius: var(--radius-1); background: var(--bg-2); font-size: var(--text-small); color: var(--ink-2); }
.callout .icon { width: 16px; height: 16px; flex: none; color: var(--info); margin-top: 2px; }
.callout--warn { border-left-color: var(--warn); } .callout--warn .icon { color: var(--warn); }
.callout--ok { border-left-color: var(--ok); } .callout--ok .icon { color: var(--ok); }
.callout--bad { border-left-color: var(--bad); } .callout--bad .icon { color: var(--bad); }

/* =========================================================== nameplate */
.nameplate { display: grid; grid-template-columns: 4px auto 1fr; gap: 0 var(--space-3); align-items: center; min-width: 0; }
.nameplate .corner-bar { grid-row: 1 / 3; height: 100%; min-height: 40px; }
.nameplate__id { grid-row: 1 / 3; font-family: var(--font-display); font-size: 32px; line-height: 1; letter-spacing: 0.04em; color: var(--ink-3); align-self: center; }
.nameplate__top { display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap; min-width: 0; }
.nameplate__name { font-family: var(--font-display); font-size: 24px; line-height: 1; letter-spacing: 0.04em; color: var(--ink-1); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-transform: uppercase; }
.nameplate__meta { font-size: var(--text-small); color: var(--ink-2); display: flex; gap: var(--space-2); align-items: center; flex-wrap: wrap; }
.nameplate__meta .sep { color: var(--ink-4); }
.nameplate--lg .nameplate__name { font-size: 36px; }
.nameplate--lg .nameplate__id { font-size: 44px; }
.nameplate--sm { grid-template-columns: 3px auto 1fr; gap: 0 var(--space-2); }
.nameplate--sm .nameplate__name { font-size: 18px; }
.nameplate--sm .nameplate__id { font-size: 22px; }
.nameplate--sm .nameplate__meta { font-size: var(--text-micro); }
.nameplate--overlay { padding: var(--space-3) var(--space-4); background: rgba(8, 8, 10, 0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border: 1px solid var(--line-1); border-radius: var(--radius-2); }
.nameplate--red { --corner-color: var(--red); }
.nameplate--blue { --corner-color: var(--blue); }
.nameplate--gold { --corner-color: var(--gold); }

/* compact stat rows (statBars in common.js): label · bar · value */
.stat { display: grid; grid-template-columns: 36px 1fr 30px; align-items: center; gap: var(--space-2); font-size: var(--text-small); }
.stat .lbl { color: var(--ink-3); font-size: var(--text-micro); font-weight: 600; letter-spacing: var(--tracking-micro); }
.stat .bar { height: 4px; background: var(--bg-3); border-radius: 2px; overflow: hidden; }
.stat .bar i { display: block; height: 100%; background: var(--gold); border-radius: 2px; }
.stat .val { text-align: right; font-family: var(--font-mono); color: var(--ink-2); font-size: var(--text-micro); }
.stat-rows { display: flex; flex-direction: column; gap: 6px; }

/* result dots (last 5) */
.result-dots { display: inline-flex; gap: 4px; align-items: center; }
.result-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-4); display: inline-block; }
.result-dots i.w { background: var(--ok); } .result-dots i.l { background: var(--bad); }

/* =========================================================== icons */
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.15em; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.icon--fill { fill: currentColor; stroke: none; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border: 0; border-radius: var(--radius-1); background: transparent; color: var(--ink-3); cursor: pointer; }
.icon-btn:hover { background: var(--bg-3); color: var(--ink-1); }
.icon-btn .icon { width: 16px; height: 16px; }

/* =========================================================== charts chrome */
.chart { display: flex; flex-direction: column; gap: var(--space-2); min-width: 0; }
.chart__head { display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-3); flex-wrap: wrap; }
.chart__title { font-weight: 600; font-size: var(--text-body); color: var(--ink-1); }
.chart__unit { font-size: var(--text-small); color: var(--ink-3); }
.chart__note { font-size: var(--text-micro); color: var(--ink-3); letter-spacing: 0.02em; }
.chart__body { position: relative; min-width: 0; }
.chart__body svg { width: 100%; height: auto; display: block; overflow: visible; }
.chart__legend { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-4); font-size: var(--text-small); color: var(--ink-2); }
.chart__legend li { display: inline-flex; align-items: center; gap: 6px; list-style: none; }
.chart__legend ul { display: contents; }
.chart__legend .sw { width: 10px; height: 10px; border-radius: 2px; background: var(--sw, var(--ink-3)); flex: none; }
.chart__legend .sw--line { height: 2px; width: 14px; border-radius: 1px; }
.chart__legend .v { color: var(--ink-3); font-variant-numeric: tabular-nums; }
.chart-table { font-size: var(--text-small); }
.chart-table table { width: 100%; border-collapse: collapse; }
.chart-table th, .chart-table td { padding: 4px var(--space-2); border-bottom: 1px solid var(--line-1); text-align: left; }
.chart-table td.num, .chart-table th.num { text-align: right; font-variant-numeric: tabular-nums; }
.chart-table summary { cursor: pointer; color: var(--ink-3); font-size: var(--text-micro); text-transform: uppercase; letter-spacing: var(--tracking-micro); font-weight: 600; }
.chart .mark { transition: opacity var(--dur-1) var(--ease); }
.chart .mark.is-dim { opacity: 0.35; }
.chart .hit { fill: transparent; stroke: none; cursor: pointer; }
.chart .hit:focus-visible { outline: none; stroke: var(--gold); stroke-width: 2; }
.chart text { font-family: var(--font-body); }
.chart .axis-text { fill: var(--ink-3); font-size: 11px; }
.chart .axis-text--caps { text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.chart .label-text { fill: var(--ink-2); font-size: 11px; }
.chart .label-strong { fill: var(--ink-1); font-size: 11px; font-weight: 600; }
.chart .display-text { fill: var(--ink-1); font-family: var(--font-display); letter-spacing: 0.02em; }
.chart .grid-line { stroke: var(--line-1); stroke-width: 1; fill: none; }
.chart .baseline { stroke: var(--line-2); stroke-width: 1; }
.chart .track { stroke: var(--line-2); fill: none; }
.chart .avg-mark { stroke: var(--ink-1); stroke-width: 2; }
.chart .crosshair { stroke: var(--line-2); stroke-width: 1; }
.chart .arc-anim { transition: stroke-dashoffset var(--dur-3) var(--ease); }
.hp-bars { display: grid; gap: var(--space-2); }

/* =========================================================== footer + faq */
.faq { display: grid; gap: var(--space-2); max-width: 860px; }
.faq details { background: var(--bg-1); border: 1px solid var(--line-1); border-radius: var(--radius-2); }
.faq summary { cursor: pointer; padding: var(--space-3) var(--space-4); font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: var(--space-3); align-items: center; min-height: var(--target); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; width: 8px; height: 8px; border-right: 1.5px solid var(--ink-3); border-bottom: 1.5px solid var(--ink-3); transform: rotate(45deg); transition: transform var(--dur-2) var(--ease); flex: none; margin-right: 4px; }
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details p { padding: 0 var(--space-4) var(--space-4); margin: 0; color: var(--ink-2); }
.footer { border-top: 1px solid var(--line-1); padding: var(--space-7) 0; margin-top: var(--space-6); background: var(--bg-1); color: var(--ink-2); font-size: var(--text-small); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1.6fr 0.8fr; gap: var(--space-6); margin-bottom: var(--space-5); }
.footer .brand { font-size: 22px; }
.addr-list { display: grid; grid-template-columns: auto 1fr; gap: var(--space-2) var(--space-4); margin: 0; }
.addr-list dt { color: var(--ink-3); font-weight: 500; }
.addr-list dd { margin: 0; overflow-wrap: anywhere; font-family: var(--font-mono); }
.addr-list dd a { color: var(--ink-1); }
.addr-list dd .tag { font-family: var(--font-body); margin-left: var(--space-2); }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-2); }
.footer-links a { color: var(--ink-2); }
.footer-links a:hover { color: var(--ink-1); }
.footer-legal { color: var(--ink-3); }
@media (max-width: 1199px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 719px) { .footer-grid { grid-template-columns: 1fr; } .footer { padding: var(--space-6) 0; } }

/* =========================================================== motion */
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.55); } 70% { box-shadow: 0 0 0 6px rgba(230, 57, 70, 0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer { to { transform: translateX(100%); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes dialog-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes ko-flash { 0% { background: rgba(242, 193, 78, 0.35); } 100% { background: transparent; } }
.ko-flash { animation: ko-flash var(--dur-3) var(--ease); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .ticker__track { animation: none; width: 100%; overflow-x: auto; }
  .skeleton::after { display: none; }
  .live-pill .dot, .pill .dot { animation: none; box-shadow: none; }
  .card--interactive:hover { transform: none; }
}

/* =========================================================== print */
@media print {
  .topbar, .mode-banner, .toasts, .tooltip, .ticker { display: none !important; }
  body { background: #fff; color: #000; }
}
