/* ---------------------------------------------------------------------------
   SIMBA BROKERS — components.
   TECHNICAL ARCHIVE: monospace, black on white, hairline rules, dense rows
   auto-numbered by CSS counters, and a block cursor that scans text on hover.
   --------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 34px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: var(--t-base);
  font-weight: var(--fw-reg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Scanline wash over the whole page. Fixed, so it never scrolls with content. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  background-image: repeating-linear-gradient(
    transparent 0 2px, rgba(0, 0, 0, 0.022) 2px 3px
  );
}

::selection { background: var(--ink); color: var(--paper); }

a { color: inherit; text-decoration: none; }
h1, h2, h3, p, dl, dd, ol, ul { margin: 0; }
ol, ul { list-style: none; padding: 0; }
canvas { display: block; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--ink-20); }
::-webkit-scrollbar-thumb:hover { background: var(--ink-40); }

:focus-visible { outline: 1px solid var(--ink); outline-offset: 2px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--paper);
  padding: var(--s-2) var(--s-4); font-size: var(--t-xs);
}
.skip:focus { left: 0; }

.hidden { display: none !important; }
.num { text-align: right; font-variant-numeric: tabular-nums; }

/* --- The block cursor ---------------------------------------------------------
   Each character carries its own --opa; hover.js walks a lit window along the
   line. `word` never wraps mid-token, so the effect can't reflow the text. */

.hover-effect { font-kerning: none; position: relative; white-space: nowrap; }
.hover-effect .word { white-space: nowrap; }
.hover-effect .char { position: relative; --opa: 0; }
.hover-effect .char::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 1ch; height: 100%;
  background: currentcolor;
  opacity: var(--opa);
  pointer-events: none;
}

/* --- Nav ----------------------------------------------------------------------- */

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: var(--s-5);
  height: var(--nav-h);
  padding: 0 var(--gutter);
  background: var(--paper);
  border-bottom: 1px solid var(--rule-strong);
}
.mark { font-size: var(--t-xs); font-weight: var(--fw-bold); letter-spacing: var(--track-label); }
.nav__links { display: flex; gap: var(--s-5); margin-left: auto; }
.nav__link { font-size: var(--t-label); font-weight: var(--fw-mid); letter-spacing: var(--track-label); }

/* Wallet state lives in the masthead now — it is chrome, not page content. */
.nav__wallet { display: flex; align-items: center; gap: var(--s-3); }
.nav__addr {
  font-size: var(--t-micro);
  font-weight: var(--fw-bold);
  letter-spacing: var(--track-label);
  padding: 3px 7px;
  border: 1px solid var(--ink);
}
.nav__net { font-size: var(--t-micro); letter-spacing: var(--track-label); color: var(--ink-60); }
.nav__net--bad { color: var(--down); }

/* --- Ticker strip --------------------------------------------------------------- */

.strip {
  position: sticky; top: var(--nav-h); z-index: 49;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  height: 34px;
  display: flex; align-items: center;
}
.strip__track {
  display: inline-flex; gap: var(--s-6);
  padding-left: var(--gutter);
  white-space: nowrap;
  font-size: var(--t-label);
  font-weight: var(--fw-mid);
  animation: strip 64s linear infinite;
  will-change: transform;
}
.strip:hover .strip__track { animation-play-state: paused; }
.strip__track span { display: inline-flex; gap: var(--s-2); }
.strip__track b { font-weight: var(--fw-bold); }
@keyframes strip { to { transform: translateX(-50%); } }

/* --- Layout ---------------------------------------------------------------------- */

.hero, .sec { max-width: var(--shell); margin: 0 auto; padding: var(--s-8) var(--gutter); }
.sec { border-top: 1px solid var(--rule); }

/* --- Hero -----------------------------------------------------------------------
   Two columns: the offer on the left, the product on the right. Sized to land
   inside one screen on a laptop without a hard breakpoint. */

.hero { padding-top: var(--s-7); padding-bottom: var(--s-8); }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.display {
  /* Sized against viewport height as well as width — two lines of display type
     are what blow the height budget on a short laptop. */
  font-size: clamp(2.5rem, min(7vw, 9vh), 5.25rem);
  font-weight: var(--fw-bold);
  letter-spacing: -0.055em;
  line-height: 0.88;
  margin: 0;
}
.display .hover-effect { display: inline-block; }

/* The one italic in the system — a real vendored face, not a synthetic slant. */
.hero__sub {
  font-style: italic;
  font-weight: var(--fw-reg);
  font-size: clamp(1.05rem, 2.4vw, 1.6rem);
  letter-spacing: var(--track-tight);
  color: var(--ink);
  margin: var(--s-2) 0 var(--s-5);
}

.hero__desc {
  font-size: var(--t-xs);
  line-height: 1.75;
  color: var(--ink-60);
  max-width: 46ch;
  margin-bottom: var(--s-5);
}

/* Three bordered term plates in a row, as on the reference. */
.statbox-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-3);
  margin: 0 0 var(--s-4);
  max-width: 560px;
}
.statbox {
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: center; gap: 0 6px;
  text-align: center;
  min-height: 46px;
  padding: var(--s-2) var(--s-3);
  border: 1px solid var(--rule-strong);
  font-size: var(--t-label);
  letter-spacing: var(--track-label);
}
.statbox dt { color: var(--ink-60); }
.statbox dd { margin: 0; font-weight: var(--fw-bold); }

/* MINT FLOW panel */
.flowbox {
  max-width: 560px;
  border: 1px solid var(--rule-strong);
  padding: var(--s-4);
}
.flowbox__title {
  font-size: var(--t-label);
  font-weight: var(--fw-bold);
  letter-spacing: var(--track-label);
  margin-bottom: var(--s-3);
}
.flowbox__cmd {
  display: flex; align-items: center; gap: var(--s-3);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--rule);
  margin-bottom: var(--s-3);
}
.flowbox__cmd code {
  flex: 1; min-width: 0;
  overflow-x: auto; white-space: nowrap;
  font-size: var(--t-xs);
  font-weight: var(--fw-bold);
}
.flowbox__cmd code::before { content: '$ '; color: var(--ink-40); }
.flowbox__note {
  font-size: var(--t-xs);
  line-height: 1.75;
  color: var(--ink-60);
}
.flowbox__note b { color: var(--ink); font-weight: var(--fw-bold); letter-spacing: var(--track-label); }

/* Product panel. The art is the one place colour lives — it is the thing being
   sold, not interface chrome. */
.hero__art {
  position: relative;
  margin: 0;
  border: 1px solid var(--rule-strong);
  background: var(--paper);
  aspect-ratio: 5 / 4;
  overflow: hidden;
}
.hero__art img {
  width: 100%; height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
  opacity: 0;
  transition: opacity var(--t-mid) linear;
}
.hero__art img[data-active='true'] { opacity: 1; position: absolute; inset: 0; }
.hero__art-cap {
  position: absolute; left: 0; bottom: 0; right: 0;
  display: flex; gap: var(--s-4);
  padding: var(--s-2) var(--s-3);
  background: var(--paper);
  border-top: 1px solid var(--rule-strong);
  font-size: var(--t-micro);
  font-weight: var(--fw-mid);
  letter-spacing: var(--track-label);
}

/* --- Section heads ------------------------------------------------------------------ */

.sec__head {
  display: flex; align-items: baseline; gap: var(--s-4);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--rule-strong);
  margin-bottom: var(--s-5);
}
.sec__title { font-size: var(--t-lg); font-weight: var(--fw-bold); letter-spacing: var(--track-tight); }
.sec__note { margin-left: auto; font-size: var(--t-micro); letter-spacing: var(--track-label); color: var(--ink-60); }
.sec__lede { font-size: var(--t-sm); color: var(--ink-60); max-width: 74ch; margin-bottom: var(--s-5); }

/* --- The archive list ------------------------------------------------------------
   Rows are auto-numbered with leading zeros by a CSS counter, so the markup
   never carries an index that could fall out of sync with the DOM order. */

.list { counter-reset: item; border-top: 1px solid var(--rule); }

.list__item {
  counter-increment: item;
  display: grid;
  grid-template-columns: 44px minmax(0, 200px) minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--s-4);
  min-height: var(--row-h);
  padding: var(--s-2) 0;
  border-bottom: 1px solid var(--rule);
  font-size: var(--t-xs);
  transition: background-color var(--t-fast) linear;
}
.list__item::before {
  content: counter(item, decimal-leading-zero);
  color: var(--ink-40);
  font-weight: var(--fw-mid);
  font-variant-numeric: tabular-nums;
}
.list__item:hover { background: var(--wash); }
.list__mid { color: var(--ink-60); overflow: hidden; text-overflow: ellipsis; }

.list--spec .list__item { grid-template-columns: 44px minmax(0, 160px) minmax(0, 1fr); }

/* --- Table variants ---------------------------------------------------------------- */

.table-wrap { overflow-x: auto; }

.thead {
  display: grid; gap: var(--s-4);
  padding: 0 0 var(--s-2);
  border-bottom: 1px solid var(--rule-strong);
  font-size: var(--t-micro);
  font-weight: var(--fw-mid);
  letter-spacing: var(--track-label);
  color: var(--ink-60);
}
.thead > span:first-child { padding-left: 60px; }

.thead--mkt,   .list--mkt   .list__item { grid-template-columns: 90px minmax(0,1fr) 92px 92px 76px 108px 96px; }
.thead--seats, .list--seats .list__item { grid-template-columns: 90px 96px 84px 128px 108px 108px 92px; }
.thead--stake, .list--stake .list__item { grid-template-columns: 90px 84px 112px 118px 92px minmax(0,1fr); }

.list--mkt .list__item,
.list--seats .list__item,
.list--stake .list__item { min-width: 720px; position: relative; padding-left: 60px; }

.list--mkt .list__item::before,
.list--seats .list__item::before,
.list--stake .list__item::before { position: absolute; left: 0; }

.sym { font-weight: var(--fw-bold); }

/* Ticker marks.
   Deliberately monograms rather than the real company logos: those are
   registered trademarks, and putting them on a page that pays out "shares" of
   the same tickers would imply an affiliation that does not exist. Two letters
   in a ruled box is also the only mark that fits a monospace archive. */
.symcell { display: flex; align-items: center; gap: var(--s-2); }
.logo {
  flex: none;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border: 1px solid var(--ink);
  font-size: 9px;
  font-weight: var(--fw-bold);
  letter-spacing: 0;
}
.list__item:hover .logo { background: var(--ink); color: var(--paper); }
.up { color: var(--up); }
.down { color: var(--down); }
.spark { width: 90px; height: 22px; }

.state {
  font-size: var(--t-micro);
  letter-spacing: var(--track-label);
  padding: 2px 6px;
  border: 1px solid var(--ink-20);
  justify-self: start;
}
.state--on { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* --- Rows / forms -------------------------------------------------------------------- */

.kv-row {
  display: flex; justify-content: space-between; gap: var(--s-4);
  padding: var(--s-2) 0;
  border-bottom: 1px solid var(--rule);
  font-size: var(--t-xs);
}
.kv-row span:first-child { color: var(--ink-60); letter-spacing: var(--track-label); }
.kv-row--foot { border-bottom: none; border-top: 1px solid var(--rule); color: var(--ink-60); font-size: var(--t-micro); }

.cmd {
  display: flex; align-items: center; gap: var(--s-3);
  margin-top: var(--s-5);
  padding: var(--s-3) var(--s-4);
  border: 1px solid var(--rule-strong);
  background: var(--ink);
  color: var(--paper);
}
.cmd code { flex: 1; min-width: 0; overflow-x: auto; white-space: nowrap; font-size: var(--t-xs); }
.cmd code::before { content: '$ '; color: rgba(255,255,255,0.45); }
.cmd .btn { border-color: rgba(255,255,255,0.35); color: var(--paper); }
.cmd .btn:hover { background: var(--paper); color: var(--ink); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 30px;
  padding: 0 var(--s-3);
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--mono); font-size: var(--t-micro);
  font-weight: var(--fw-mid); letter-spacing: var(--track-label);
  cursor: pointer;
  transition: background-color var(--t-fast) linear, color var(--t-fast) linear;
}
.btn:hover:not(:disabled) { background: var(--ink); color: var(--paper); }
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover:not(:disabled) { background: var(--paper); color: var(--ink); }
.btn--ghost { border-color: var(--ink-20); color: var(--ink-60); }
.btn:disabled { border-color: var(--ink-20); color: var(--ink-20); cursor: not-allowed; }
.btn--danger:hover:not(:disabled) { background: var(--down); border-color: var(--down); color: var(--paper); }
.btn[data-armed='true'] { background: var(--down); border-color: var(--down); color: var(--paper); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-3); }
.btn-row--wide { margin-bottom: var(--s-4); }

.fld__help { font-size: var(--t-micro); color: var(--ink-40); letter-spacing: var(--track-label); margin-top: var(--s-2); }

/* --- Mint progress ---------------------------------------------------------------------
   A ruled bar, not a rounded pill. Reads as a gauge on a datasheet. */

.progress { max-width: 560px; margin-bottom: var(--s-5); }
.progress__head,
.progress__foot {
  display: flex; justify-content: space-between; gap: var(--s-3);
  font-size: var(--t-micro);
  letter-spacing: var(--track-label);
}
.progress__head { color: var(--ink-60); margin-bottom: var(--s-2); }
.progress__head span:last-child { color: var(--ink); font-weight: var(--fw-bold); }
.progress__foot { color: var(--ink-40); margin-top: var(--s-2); }

.progress__track {
  height: 10px;
  border: 1px solid var(--ink);
  padding: 1px;
}
.progress__fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--ink);
  transition: width var(--t-mid) var(--ease);
}

/* --- Stake terms ----------------------------------------------------------------------- */

.terms { margin-bottom: var(--s-5); }
.terms__row { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-2); }

.term-btn {
  display: flex; flex-direction: column; gap: 2px;
  padding: var(--s-2) var(--s-3);
  background: var(--paper);
  border: 1px solid var(--ink-20);
  color: var(--ink);
  font-family: var(--mono);
  cursor: pointer;
  text-align: left;
  transition: border-color var(--t-fast) linear, background-color var(--t-fast) linear;
}
.term-btn:hover { border-color: var(--ink); }
.term-btn b { font-size: var(--t-micro); letter-spacing: var(--track-label); font-weight: var(--fw-bold); }
.term-btn span { font-size: var(--t-micro); color: var(--ink-50); }
.term-btn[aria-checked='true'] { background: var(--ink); border-color: var(--ink); }
.term-btn[aria-checked='true'] b,
.term-btn[aria-checked='true'] span { color: var(--paper); }

.lock {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: var(--t-micro);
  letter-spacing: var(--track-label);
  color: var(--ink-50);
}
.lock--on { color: var(--ink); }
.lock--on::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--ink);
}

/* --- Rarity ------------------------------------------------------------------------------
   One stacked bar showing the whole 3,333 split. The page is monochrome, so
   rarity is carried by ink density: the rarer the tier, the darker the block.
   That reads as a gradient rather than as five arbitrary greys. */

.dist {
  display: flex;
  height: 40px;
  border: 1px solid var(--ink);
  margin-bottom: var(--s-3);
  overflow: hidden;
}
.dist__seg {
  position: relative;
  border-right: 1px solid var(--ink);
  transition: filter var(--t-fast) linear;
}
.dist__seg:last-child { border-right: none; }
.dist__seg:hover { filter: invert(1); }

.dist__key {
  display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-5);
  font-size: var(--t-micro);
  letter-spacing: var(--track-label);
  color: var(--ink-60);
  margin-bottom: var(--s-5);
}
.dist__key span { display: inline-flex; align-items: center; gap: 6px; }
.dist__key i { width: 10px; height: 10px; border: 1px solid var(--ink); display: block; }

.thead--rar, .list--rar .list__item {
  grid-template-columns: 130px 88px 84px 96px 116px minmax(0, 1fr);
}
.list--rar .list__item { min-width: 640px; position: relative; padding-left: 58px; }
.list--rar .list__item::before { position: absolute; left: 0; }
.rar-name { font-weight: var(--fw-bold); }

/* --- Wallet checker ---------------------------------------------------------------------- */

.checker { margin-bottom: var(--s-5); max-width: 720px; }
.checker__row { display: flex; gap: var(--s-2); flex-wrap: wrap; }
.checker__row .fld { flex: 1; min-width: 240px; }

.fld {
  padding: var(--s-3);
  background: var(--paper);
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--mono);
  font-size: var(--t-xs);
  word-break: break-all;
}
.fld::placeholder { color: var(--ink-20); }
.fld:focus { outline: none; box-shadow: inset 0 0 0 1px var(--ink); }
.fld--bad { border-color: var(--down); box-shadow: inset 0 0 0 1px var(--down); }

.fld__label { display: block; font-size: var(--t-micro); letter-spacing: var(--track-label); color: var(--ink-60); margin-bottom: var(--s-2); }

/* --- My cats ------------------------------------------------------------------------------
   A plate per seat: framed art, ruled caption. Same treatment as the hero
   product panel, repeated at contact-sheet size. */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: var(--s-4);
}

.cat {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rule-strong);
  background: var(--paper);
  transition: box-shadow var(--t-fast) linear, transform var(--t-fast) linear;
}
/* A plate lifting off the sheet — one hairline of depth, nothing more. */
.cat:hover { transform: translateY(-2px); box-shadow: 0 2px 0 0 var(--ink); }

.cat__img {
  display: block;
  width: 100%;
  /* `height: auto` is load-bearing: the img carries width/height attributes so
     the browser can reserve space, and those apply as a presentational
     `height: 400px`, which silently defeats aspect-ratio. */
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  image-rendering: pixelated;
  border-bottom: 1px solid var(--rule-strong);
}

/* Fixed two-column grid, not flex-wrap: a long tier like UNCOMMON must not
   reflow the row and leave cards misaligned at different heights. */
.cat__cap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: start;
  gap: var(--s-1) var(--s-2);
  padding: var(--s-3);
  font-size: var(--t-micro);
  letter-spacing: var(--track-label);
  flex: 1;
}

.cat__seat { grid-column: 1; font-weight: var(--fw-bold); }
.cat__sym {
  grid-column: 2;
  justify-self: end;
  font-weight: var(--fw-bold);
  padding: 1px 5px;
  border: 1px solid var(--ink);
}
.cat__tier { grid-column: 1 / -1; color: var(--ink-50); }

/* Same figure as the VALUE column in Holdings, per seat. */
.cat__val {
  grid-column: 1 / -1;
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-2);
  margin-top: var(--s-1);
}
.cat__val em { font-style: normal; color: var(--ink-50); }
.cat__val b { font-weight: var(--fw-bold); font-variant-numeric: tabular-nums; }

.cat__state {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 6px;
  margin-top: var(--s-2);
  padding-top: var(--s-2);
  border-top: 1px solid var(--rule);
  color: var(--ink-40);
}
/* A filled square reads as "on" faster than a word does. */
.cat__state::before {
  content: '';
  width: 6px; height: 6px;
  border: 1px solid var(--ink-40);
}
.cat__state--on { color: var(--ink); font-weight: var(--fw-bold); }
.cat__state--on::before { background: var(--ink); border-color: var(--ink); }

/* --- Stats ------------------------------------------------------------------------------- */

.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--rule-strong); margin-bottom: var(--s-5); }
.stats > div { padding: var(--s-3) var(--s-4) var(--s-3) 0; border-bottom: 1px solid var(--rule); }
.stats dt { font-size: var(--t-micro); letter-spacing: var(--track-label); color: var(--ink-60); }
.stats dd { font-size: var(--t-md); font-weight: var(--fw-bold); font-variant-numeric: tabular-nums; margin-top: var(--s-1); }

.empty {
  border: 1px dashed var(--ink-20);
  padding: var(--s-7) var(--s-4);
  text-align: center;
  font-size: var(--t-xs);
  color: var(--ink-60);
}
.empty p { margin-bottom: var(--s-3); letter-spacing: var(--track-label); }

/* --- Footer -------------------------------------------------------------------------------- */

.foot {
  display: flex; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap;
  max-width: var(--shell); margin: 0 auto;
  padding: var(--s-5) var(--gutter) var(--s-7);
  border-top: 1px solid var(--rule-strong);
  font-size: var(--t-micro);
  letter-spacing: var(--track-label);
  color: var(--ink-60);
}

/* --- Responsive ------------------------------------------------------------------------------ */

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); gap: var(--s-5); }
  .hero__art { order: -1; aspect-ratio: 16 / 10; }
  .grid2 { grid-template-columns: minmax(0, 1fr); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .nav { gap: var(--s-2); padding: 0 var(--s-3); }
  .nav__links { display: none; }
  /* Brand + address + two buttons will not fit a phone. The network label is
     the one piece that is also stated inside the page, so it goes first. */
  .nav__net { display: none !important; }
  .nav__wallet { gap: var(--s-2); min-width: 0; }
  .nav__addr { padding: 3px 5px; }
  .mark { font-size: var(--t-micro); }
  .nav .btn { padding: 0 var(--s-2); }
  .list__item { grid-template-columns: 34px minmax(0, 1fr); row-gap: var(--s-1); }
  .list--spec .list__item { grid-template-columns: 34px minmax(0, 1fr); }
  .hero, .sec { padding-top: var(--s-7); padding-bottom: var(--s-7); }
  .stats { grid-template-columns: minmax(0, 1fr); }
  .statbox-row { grid-template-columns: minmax(0, 1fr); }
  .statbox { justify-content: flex-start; text-align: left; min-height: 0; }
}

/* --- Reduced motion --------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .strip__track { animation: none; }
  .hover-effect .char::after { display: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
