/* ==========================================================================
   HOODESKS — components
   ========================================================================== */

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

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

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, canvas, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0; }

::selection { background: var(--brand); color: #000; }

.tnum { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum' 1; }
.mono { font-family: var(--font-mono); }
.sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* -- shell ---------------------------------------------------------------- */

.shell {
  margin: 0 auto;
  display: flex;
  min-height: 100vh;
  width: 100%;
  max-width: var(--col);
  flex-direction: column;
  padding: 0 20px 96px;
}
.shell--wide { max-width: var(--col-wide); }

main { flex: 1 1 auto; padding-top: 24px; }

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

.hdr {
  display: flex;
  height: var(--header-h);
  flex-shrink: 0;
  align-items: center;
  gap: 16px;
}

.hdr__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  transition: opacity var(--t);
}
.hdr__logo:hover { opacity: 0.75; }
.hdr__mark { height: 26px; width: 26px; border-radius: 6px; }
.hdr__word {
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav {
  margin-left: auto;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav::-webkit-scrollbar { display: none; }
.nav a {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--t);
}
.nav a:hover { color: var(--ink); }
.nav a[aria-current='page'] { color: var(--ink); }

.hdr__tools { display: flex; flex-shrink: 0; align-items: center; gap: 8px; }

.icon-btn {
  display: grid;
  height: 30px;
  width: 30px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color var(--t), background var(--t);
}
.icon-btn:hover { color: var(--ink); background: var(--well); }
.icon-btn svg { height: 15px; width: 15px; }

/* -- ticker tape ---------------------------------------------------------- */

.tape {
  margin: 0 -20px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
  padding: 7px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.tape__row { display: flex; width: max-content; animation: tape 46s linear infinite; }
.tape:hover .tape__row { animation-play-state: paused; }
.tape__item {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  padding: 0 15px;
  font-size: 11.5px;
}
.tape__sym { font-weight: 700; letter-spacing: 0.02em; }
.tape__px { color: var(--muted); font-variant-numeric: tabular-nums; }
.tape__chg { font-variant-numeric: tabular-nums; font-weight: 600; }
.tape__chg.up { color: var(--brand); }
.tape__chg.down { color: var(--alert); }

@keyframes tape { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .tape__row { animation: none; } }

/* -- token mark ----------------------------------------------------------
   Each logo file is the company's own tile with its own background, so the
   chip crops rather than pads. The white ground only shows through for the
   marks that ship transparent, which keeps dark logos legible on black.
   ------------------------------------------------------------------------ */

.tlogo {
  display: block;
  flex-shrink: 0;
  border-radius: 999px;
  background: #fff;
  object-fit: cover;
  height: 16px;
  width: 16px;
}
.tlogo--xs { height: 13px; width: 13px; }
.tlogo--sm { height: 15px; width: 15px; }
.tlogo--md { height: 20px; width: 20px; }
.tlogo--lg { height: 26px; width: 26px; }

/* -- frame (the double-bordered card) ------------------------------------- */

.frame {
  border-radius: var(--radius);
  border: 1px solid var(--frame);
  background: var(--paper-2);
  padding: 5px;
  box-shadow: var(--pop);
}
.frame__in {
  border-radius: var(--radius-in);
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 14px;
}
.frame__in--flush { padding: 0; overflow: hidden; }

.frame__head {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.frame__title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink);
}
.frame__title span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.frame__cap { margin-top: 12px; font-size: 11.5px; line-height: 1.65; color: var(--muted); }

.lamp {
  height: 6px; width: 6px; flex-shrink: 0;
  border-radius: 999px; background: var(--phos);
  box-shadow: 0 0 8px -1px var(--phos);
  animation: lamp 2.4s ease-in-out infinite;
}
@keyframes lamp { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.cursor {
  display: inline-block;
  height: 10px; width: 5px; flex-shrink: 0;
  border-radius: 1px; background: var(--brand);
  animation: blink 1.1s steps(2, start) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .lamp, .cursor { animation: none; }
}

/* -- page title ----------------------------------------------------------- */

.ptitle h1 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.ptitle p {
  margin-top: 9px;
  max-width: 68ch;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--muted);
}

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

.hero h1 {
  font-size: clamp(30px, 6.4vw, 46px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.hero h1 em { font-style: normal; color: var(--brand); }
.hero p {
  margin-top: 14px;
  max-width: 56ch;
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--muted);
}
.hero__cta { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; }

/* -- buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
}
.btn:active { transform: translateY(1px); }
.btn:disabled { cursor: not-allowed; opacity: 0.4; transform: none; }

.btn--primary { background: var(--brand); border-color: var(--brand); color: #000; }
.btn--primary:hover:enabled { background: var(--brand-lit); border-color: var(--brand-lit); }

.btn--head { background: var(--head); border-color: var(--head); color: var(--head-ink); }
.btn--head:hover:enabled { background: var(--head-lit); border-color: var(--head-lit); }

.btn--ghost { background: transparent; border-color: var(--frame); color: var(--ink); }
.btn--ghost:hover:enabled { border-color: var(--brand); color: var(--brand); }

.btn--sm { height: 32px; padding: 0 14px; font-size: 11px; }
.btn--block { width: 100%; }

/* -- stats bar ------------------------------------------------------------ */

.statsbar { display: flex; align-items: stretch; overflow-x: auto; scrollbar-width: none; }
.statsbar::-webkit-scrollbar { display: none; }
.statsbar__lamp {
  display: grid; width: 34px; flex-shrink: 0; place-items: center;
  border-right: 1px solid var(--line);
}
.stat {
  min-width: 96px; flex: 1 1 0; flex-shrink: 0;
  padding: 10px 12px;
  border-left: 1px solid var(--line);
}
.stat:first-of-type { border-left: 0; }
.stat__k {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-size: 8px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--muted-2);
}
.stat__v {
  margin-top: 5px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-size: 13px; font-weight: 700; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__v--mark { display: flex; align-items: center; gap: 5px; }
.stat__v--mark > span { overflow: hidden; text-overflow: ellipsis; }
.stat__v.is-brand { color: var(--brand); }
.stat__v.is-gold  { color: var(--gold); }
.stat__v.is-head  { color: var(--head); }
.stat__v.is-alert { color: var(--alert); }

/* big stat cards */
.statgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
@media (min-width: 640px) { .statgrid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.statcard {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--well);
  padding: 12px;
}
.statcard__k {
  font-size: 9px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--muted-2);
}
.statcard__v {
  margin-top: 6px; font-size: 21px; font-weight: 700; line-height: 1.15;
  font-variant-numeric: tabular-nums; color: var(--brand);
}
.statcard__v--mark { display: flex; align-items: center; gap: 7px; }
.statcard__s { margin-top: 3px; font-size: 10.5px; color: var(--muted-2); font-variant-numeric: tabular-nums; }

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

.deskgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
@media (min-width: 560px) { .deskgrid { grid-template-columns: repeat(8, minmax(0, 1fr)); } }

.desk {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--well);
  transition: border-color var(--t), transform var(--t);
}
.desk:hover { border-color: var(--brand); transform: translateY(-2px); }
.desk canvas {
  height: auto; width: 100%;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

/* -- rows / lists --------------------------------------------------------- */

.tabs {
  display: flex; align-items: center; gap: 2px;
  padding: 6px 8px;
  border-bottom: 1px solid var(--line);
}
.tab {
  height: 28px; border: 0; border-radius: 999px; background: transparent;
  padding: 0 13px; font-size: 11.5px; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: background var(--t), color var(--t);
}
.tab:hover { color: var(--ink); background: var(--well); }
.tab[aria-selected='true'] { background: var(--brand); color: #000; }
.tabs__sep { margin: 0 6px; height: 16px; width: 1px; background: var(--line); }
.tabs__right { margin-left: auto; padding-right: 4px; font-size: 11px; color: var(--muted); }

.row {
  display: flex; align-items: center; gap: 12px;
  height: 60px; padding: 0 14px;
  border-bottom: 1px solid var(--line);
  transition: background var(--t);
}
.row:last-child { border-bottom: 0; }
a.row:hover { background: var(--well); }
.row__n {
  width: 24px; flex-shrink: 0;
  font-size: 11px; font-variant-numeric: tabular-nums; color: var(--muted-2);
}
.row__art {
  height: 36px; width: 36px; flex-shrink: 0;
  overflow: hidden; border: 1px solid var(--line); border-radius: 7px;
}
.row__art canvas { height: 100%; width: 100%; image-rendering: pixelated; }
.row__main { min-width: 0; flex: 1 1 auto; }
.row__t {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-size: 13px; font-weight: 600;
}
.row__s {
  margin-top: 2px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-size: 10.5px; color: var(--muted-2);
}
.row__v {
  flex-shrink: 0; text-align: right;
  font-size: 13px; font-weight: 700; font-variant-numeric: tabular-nums;
}
.row__v.is-brand { color: var(--brand); }
.row__v.is-alert { color: var(--alert); }

.rows__empty {
  display: grid; place-items: center;
  padding: 48px 24px; text-align: center;
  font-size: 12.5px; color: var(--muted);
}
.skel { height: 100%; width: 100%; background: var(--well); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

.pager {
  display: flex; align-items: center; justify-content: flex-end; gap: 12px;
  border-top: 1px solid var(--line);
  padding: 8px 12px;
  font-size: 11px; color: var(--muted); font-variant-numeric: tabular-nums;
}
.pager__btns { display: inline-flex; overflow: hidden; border: 1px solid var(--line); border-radius: 999px; }
.pager__btn {
  display: grid; height: 26px; width: 32px; place-items: center;
  border: 0; background: transparent; color: var(--muted); cursor: pointer;
  transition: background var(--t), color var(--t);
}
.pager__btn + .pager__btn { border-left: 1px solid var(--line); }
.pager__btn:hover:enabled { background: var(--well); color: var(--ink); }
.pager__btn:disabled { cursor: not-allowed; opacity: 0.25; }
.pager__btn svg { height: 11px; width: 11px; }

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

.tw { overflow-x: auto; }
table.t { width: 100%; min-width: 460px; border-collapse: collapse; font-size: 12.5px; }
table.t th {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--well);
  padding: 7px 10px;
  text-align: left;
  font-size: 9.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--muted);
}
table.t td { border-bottom: 1px solid var(--line); padding: 8px 10px; vertical-align: top; }
table.t td.r, table.t th.r { text-align: right; font-variant-numeric: tabular-nums; }
table.t tr:last-child td { border-bottom: 0; }
table.t .em { font-weight: 600; }

/* -- inline bits ---------------------------------------------------------- */

.addr {
  font-family: var(--font-mono); font-size: 11.5px;
  color: var(--ink);
  text-decoration: underline; text-decoration-color: var(--line-2);
  text-underline-offset: 3px;
  transition: color var(--t);
}
.addr:hover { color: var(--brand); text-decoration-color: var(--brand); }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 3px 10px;
  font-size: 10.5px; font-weight: 600; color: var(--muted);
}
.pill--brand { border-color: var(--brand-dim); color: var(--brand); background: var(--brand-ghost); }
.pill--gold  { border-color: color-mix(in srgb, var(--gold) 45%, transparent); color: var(--gold); }

.note {
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--paper-2);
  padding: 10px 12px;
  font-size: 11.5px; line-height: 1.65; color: var(--muted);
}
.note--gold  { border-color: color-mix(in srgb, var(--gold) 40%, transparent); color: var(--gold); background: color-mix(in srgb, var(--gold) 8%, transparent); }
.note--alert { border-color: color-mix(in srgb, var(--alert) 40%, transparent); color: var(--alert); background: color-mix(in srgb, var(--alert) 8%, transparent); }

.kv {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.kv:last-child { border-bottom: 0; }
.kv__k { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.kv__v { font-size: 12.5px; font-variant-numeric: tabular-nums; }

.stack > * + * { margin-top: 16px; }
.stack-sm > * + * { margin-top: 8px; }

/* -- mint ----------------------------------------------------------------- */

.mint__cost { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mint__cell {
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--well); padding: 12px;
}
.mint__cell .k { font-size: 9px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted-2); }
.mint__cell .v { margin-top: 5px; font-size: 19px; font-weight: 700; font-variant-numeric: tabular-nums; }

.mint__preview { display: flex; align-items: center; gap: 14px; }
.mint__art {
  height: 84px; width: 84px; flex-shrink: 0;
  overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--well);
}
.mint__art canvas { height: 100%; width: 100%; image-rendering: pixelated; }

.steps { display: grid; gap: 10px; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.step { border: 1px solid var(--line); border-radius: 10px; background: var(--well); padding: 13px; }
.step__n { font-size: 10px; font-weight: 700; color: var(--brand); font-variant-numeric: tabular-nums; }
.step__t { margin-top: 6px; font-size: 13px; font-weight: 700; }
.step__b { margin-top: 6px; font-size: 11.5px; line-height: 1.65; color: var(--muted); }

/* -- docs ----------------------------------------------------------------- */

.docs { display: grid; gap: 20px; }
@media (min-width: 900px) { .docs { grid-template-columns: 176px minmax(0, 1fr); align-items: start; } }

.toc { position: sticky; top: 16px; display: none; }
@media (min-width: 900px) { .toc { display: block; } }
.toc ol { margin: 0; padding: 0; list-style: none; }
.toc li + li { margin-top: 2px; }
.toc a {
  display: flex; gap: 9px;
  border-left: 2px solid var(--line);
  padding: 5px 10px;
  font-size: 11.5px; color: var(--muted);
  transition: color var(--t), border-color var(--t);
}
.toc a:hover { color: var(--ink); }
.toc a.is-active { border-left-color: var(--brand); color: var(--ink); }
.toc .n { font-variant-numeric: tabular-nums; color: var(--muted-2); }

.doc h2 {
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em;
}
.doc p { margin-top: 10px; font-size: 13px; line-height: 1.75; color: var(--ink-2); }
.doc p.q { color: var(--muted); }
.doc .frame + .frame { margin-top: 14px; }
.doc section { scroll-margin-top: 20px; }

.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--line); border-radius: 7px;
  background: var(--well);
  padding: 4px 9px;
  font-size: 11px; font-weight: 600; font-family: var(--font-mono);
  color: var(--muted);
}
.chip .i { color: var(--brand); }

/* -- collection ----------------------------------------------------------- */

.col { display: grid; gap: 16px; }
@media (min-width: 940px) { .col { grid-template-columns: 236px minmax(0, 1fr); align-items: start; } }

.filters { position: sticky; top: 16px; }
.filters__grp + .filters__grp { margin-top: 14px; border-top: 1px solid var(--line); padding-top: 12px; }
.filters__h {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 9.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--muted-2);
}
.filters__list { margin-top: 8px; display: grid; gap: 3px; }
.fopt {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; border-radius: 6px; padding: 4px 6px;
  font-size: 11.5px; color: var(--muted);
  transition: background var(--t), color var(--t);
}
.fopt:hover { background: var(--well); color: var(--ink); }
.fopt input { accent-color: var(--brand); margin: 0; }
.fopt .c { margin-left: auto; font-size: 10px; color: var(--muted-2); font-variant-numeric: tabular-nums; }
.fopt.is-on { color: var(--brand); }

.colgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
@media (min-width: 520px) { .colgrid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 760px) { .colgrid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .colgrid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }

.card {
  overflow: hidden;
  border: 1px solid var(--line); border-radius: 11px;
  background: var(--paper-2);
  transition: border-color var(--t), transform var(--t);
}
.card:hover { border-color: var(--brand); transform: translateY(-2px); }
.card canvas { width: 100%; height: auto; image-rendering: pixelated; background: var(--well); }
.card__f {
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
  border-top: 1px solid var(--line);
  padding: 7px 9px;
}
.card__id { font-size: 11.5px; font-weight: 700; font-variant-numeric: tabular-nums; }
.card__r { font-size: 9.5px; color: var(--muted-2); font-variant-numeric: tabular-nums; }

.toolbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.input {
  height: 34px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--paper-2);
  padding: 0 14px;
  font-size: 12.5px; color: var(--ink);
  outline: none;
  transition: border-color var(--t);
}
.input:focus { border-color: var(--brand); }
.input::placeholder { color: var(--muted-2); }
select.input { padding-right: 10px; cursor: pointer; }

/* -- desk detail ---------------------------------------------------------- */

.detail { display: grid; gap: 16px; }
@media (min-width: 760px) { .detail { grid-template-columns: 300px minmax(0, 1fr); align-items: start; } }
.detail__art {
  overflow: hidden; border-radius: var(--radius-in);
  border: 1px solid var(--line); background: var(--well);
}
.detail__art canvas { width: 100%; height: auto; image-rendering: pixelated; }

.traits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
@media (min-width: 520px) { .traits { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.trait {
  border: 1px solid var(--line); border-radius: 9px;
  background: var(--well); padding: 9px 10px;
}
.trait__k { font-size: 8.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.13em; color: var(--muted-2); }
.trait__v { margin-top: 4px; font-size: 12px; font-weight: 600; }
.trait__p { margin-top: 3px; font-size: 10px; color: var(--brand); font-variant-numeric: tabular-nums; }

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

.ftr {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  font-size: 11.5px; color: var(--muted-2);
}
.ftr a { color: var(--muted); transition: color var(--t); }
.ftr a:hover { color: var(--brand); }
.ftr__spacer { margin-left: auto; }

/* -- misc ----------------------------------------------------------------- */

.hr { height: 1px; background: var(--line); border: 0; margin: 0; }
.center { text-align: center; }
.muted { color: var(--muted); }
.dim { color: var(--muted-2); }
.brand { color: var(--brand); }
.alert { color: var(--alert); }
.gold { color: var(--gold); }
.up { color: var(--brand); }
.down { color: var(--alert); }

.grid2 { display: grid; gap: 10px; }
@media (min-width: 640px) { .grid2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
