/* RiffList public site. Hand-authored static CSS, no build step.
   Brand tokens mirror apps/rifflist/src/shell/theme.ts (shellColors), with a
   darker accent for text so list titles pass WCAG AA on white. */

:root {
  --ink: #1a1a1a;
  --paper: #ffffff;
  --soft: #f6f6f6;
  --line: #e6e6e6;
  --muted: #6b6b6b;
  --body: #444444;
  --accent: #007aff;
  --accent-text: #0062cc;
  --accent-soft: #eef4ff;
  --turn: #5c5c5c;
  --max: 760px;
  --radius: 14px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 106.25%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}

a {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-text);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

main:focus {
  outline: none;
}

p,
li {
  overflow-wrap: break-word;
}

.skip {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 10;
}

.skip:focus {
  top: 12px;
}

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

/* Header */

.top {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.top .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  min-height: 64px;
  flex-wrap: wrap;
  padding-top: 8px;
  padding-bottom: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  min-height: 44px;
}

.brand:hover {
  color: var(--ink);
}

.mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: inline-grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1;
  flex: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 6px;
  font-size: 0.9rem;
  margin: 0 -8px;
}

.nav a {
  font-weight: 600;
  text-decoration: none;
  padding: 10px 8px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav a:hover {
  text-decoration: underline;
}

/* Sections */

section {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

section:last-of-type {
  border-bottom: 0;
}

h1 {
  font-size: clamp(2rem, 7vw, 3.05rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

h2 {
  font-size: clamp(1.5rem, 5vw, 1.9rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}

h3 {
  font-size: 1.18rem;
  margin: 26px 0 8px;
}

.wrap > h2:not(:first-child) {
  margin-top: 36px;
}

p,
li {
  color: var(--body);
}

.lede {
  font-size: clamp(1.12rem, 3.2vw, 1.3rem);
  color: var(--body);
  margin: 0 0 22px;
  max-width: 34em;
}

.kicker {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 18px 0 8px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 24px 0 8px;
}

.btn {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 12px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}

.btn:hover {
  background: #333333;
  border-color: #333333;
  color: var(--paper);
}

.btn.ghost {
  background: var(--paper);
  color: var(--ink);
}

.btn.ghost:hover {
  background: var(--soft);
  color: var(--ink);
}

/* Only the standalone About page adds this bar. The app owns its own action. */
.site-has-app-actions {
  padding-bottom: calc(69px + env(safe-area-inset-bottom, 0px));
}

.site-app-actions {
  position: fixed;
  inset: auto 0 0;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.5;
}

.site-app-actions p {
  margin: 0 auto 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
}

.site-app-action {
  min-height: 44px;
  padding: 10px 24px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}

.site-app-action:hover {
  background: #333333;
  color: var(--paper);
}

.note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 8px 0 0;
}

.note a {
  color: var(--muted);
}

/* Two column at desktop */

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 720px) {
  .split {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

figure {
  margin: 0;
}

figcaption {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  margin: 12px 0 0;
}

/* Steps */

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: var(--soft);
  border-radius: var(--radius);
}

.steps li::before {
  content: counter(step) / "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.05rem;
}

.steps strong {
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}

/* Phone illustrations: sizes stay in px because they mimic a device. */

.phone {
  --w: 330px;
  width: min(100%, var(--w));
  margin: 0 auto;
  border: 2px solid var(--ink);
  border-radius: 34px;
  padding: 14px 12px 18px;
  background: var(--paper);
  box-shadow: 0 1px 0 var(--line), 0 18px 40px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  line-height: 1.35;
}

.phone .status {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  padding: 0 8px 10px;
}

.phone .screen-title {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

.phone .handle {
  color: var(--muted);
  font-size: 12px;
  margin: 0 0 12px;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.tile {
  background: var(--soft);
  border-radius: 10px;
  padding: 10px 4px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 11px;
}

.tile b {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.tile.on {
  background: var(--accent-soft);
  border: 1px solid #cfe0ff;
  color: var(--accent-text);
}

.tile.on b {
  color: var(--accent-text);
}

.rows {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rows li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.rows li:last-child {
  border-bottom: 0;
}

.rows .t {
  color: var(--accent-text);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.2;
  display: block;
}

.rows .m {
  color: var(--muted);
  font-size: 12px;
}

.badge {
  display: inline-block;
  background: var(--turn);
  color: var(--paper);
  border-radius: 8px;
  padding: 1px 7px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 4px;
  vertical-align: 1px;
}

.badge.wait {
  background: var(--line);
  color: var(--ink);
}

.fab {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 300;
  margin: 12px 4px 0 auto;
}

/* List screen inside phone */

.turnbar {
  background: var(--soft);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--body);
  margin: 0 0 10px;
}

.turnbar b {
  color: var(--ink);
}

.feed {
  list-style: none;
  padding: 0;
  margin: 0;
}

.demo .feed {
  max-height: 330px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.feed li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.feed li:last-child {
  border-bottom: 0;
}

.feed .n {
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.feed .r {
  color: var(--ink);
  font-weight: 600;
}

.feed .who {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.feed .dupe {
  grid-template-columns: 1fr;
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
  padding-left: 38px;
}

.feed .star {
  color: var(--muted);
  font-weight: 700;
}

.feed .flag {
  display: inline-block;
  margin-left: 6px;
  padding: 0 5px;
  border-radius: 6px;
  background: var(--line);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  vertical-align: 1px;
}

.composer {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
}

.composer .send {
  color: var(--ink);
  font-weight: 700;
}

.card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  margin-top: 12px;
  background: var(--paper);
  color: var(--body);
}

.card b {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.card .row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  cursor: default;
}

.card .row span {
  flex: 1;
  text-align: center;
  padding: 8px 4px;
  border-radius: 9px;
  border: 1px solid var(--ink);
  font-weight: 700;
  font-size: 12px;
  color: var(--ink);
}

.card .row span.dark {
  background: var(--ink);
  color: var(--paper);
}

/* Interactive demo */

.demo {
  background: var(--soft);
  border-radius: var(--radius);
  padding: 18px;
}

.demo .phone {
  box-shadow: none;
}

.demo-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
}

.demo-controls button {
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 16px;
  min-height: 44px;
  border-radius: 10px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
}

.demo-controls button.ghost {
  background: var(--paper);
  color: var(--ink);
}

.demo-say {
  min-height: 3.2em;
  text-align: center;
  color: var(--body);
  font-size: 0.9rem;
  margin: 0 0 14px;
}

.demo-say strong,
.demo-say b {
  color: var(--ink);
}

.feed li.new {
  animation: pop 320ms ease-out;
}

@keyframes pop {
  from {
    background: var(--accent-soft);
  }
  to {
    background: transparent;
  }
}

/* Topics */

.topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.topics li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--paper);
}

/* Definition grid */

.facts {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin: 18px 0 0;
}

@media (min-width: 620px) {
  .facts {
    grid-template-columns: 1fr 1fr;
  }
}

.fact {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.fact h2,
.fact h3,
.fact h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--ink);
}

.fact p {
  margin: 0;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

/* FAQ */

.faq details {
  border-top: 1px solid var(--line);
}

.faq details:last-of-type {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 40px 16px 0;
  font-weight: 700;
  font-size: 1.05rem;
  position: relative;
  color: var(--ink);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+" / "";
  position: absolute;
  right: 4px;
  top: 12px;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--muted);
}

.faq details[open] summary::after {
  content: "\2212" / "";
}

.faq details > div {
  padding: 0 0 18px;
}

.faq p {
  margin: 0 0 10px;
}

/* Footer */

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 44px;
  color: var(--muted);
  font-size: 0.88rem;
}

footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: space-between;
  align-items: center;
}

footer a {
  color: var(--muted);
  font-weight: 600;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

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

/* ---------------------------------------------------------------------------
   App-faithful list screens. Values mirror the universal client:
   FeedHistoryRow.tsx, ReactionControls.tsx, ListTitleRow.tsx,
   ActiveListDraftRefresh.tsx (read 2026-09-13). Sizes stay in px on purpose.
   --------------------------------------------------------------------------- */

.phones {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 22px;
  justify-items: center;
  margin-top: 8px;
}

.screen {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  padding: 12px 0 0;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.3;
}

.screen .status {
  padding: 0 20px 6px;
}

.screen .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 20px 10px;
}

.screen .back {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.screen .avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 700;
}

.screen .title {
  margin: 4px 20px 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  letter-spacing: 0;
}

.screen .counts {
  margin: 6px 20px 10px;
  color: var(--muted);
  font-size: 15px;
}

.screen .counts .u {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.screen .feed {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 420px;
  overflow-y: auto;
  scrollbar-width: thin;
  border-top: 1px solid var(--line);
  max-height: none;
}

.screen .feed .row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.screen .feed .num {
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
  min-width: 34px;
  line-height: 25px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.screen .feed .col {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.screen .feed .riff {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  overflow-wrap: anywhere;
}

.screen .feed .meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 8px;
}

.screen .feed .player {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.screen .feed .time {
  color: var(--muted);
  font-size: 12px;
}

.screen .feed .wrong {
  background: #b42318;
  color: #ffffff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  line-height: 15px;
  padding: 3px 7px;
}

.screen .feed .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.screen .feed .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 30px;
  min-width: 44px;
  padding: 2px 8px 2px 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.screen .feed .pill img {
  width: 28px;
  height: 22px;
  display: block;
}

.screen .feed .pill .heart {
  color: #bd2436;
  font-size: 20px;
  line-height: 22px;
}

.screen .feed .pill .haha {
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 9px;
  text-align: center;
  display: inline-block;
}

.screen .feed .pill .count {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.screen .feed .event {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.screen .feed .event.dupe {
  background: #fff7f4;
}

.screen .feed .event.rewind {
  background: #faf7ff;
}

.screen .feed .kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  color: var(--muted);
}

.screen .feed .dupe .kicker {
  color: #a8492d;
}

.screen .feed .rewind .kicker {
  color: #6d4e8e;
}

.screen .feed .etext {
  color: var(--ink);
  font-size: 15px;
  line-height: 21px;
}

.screen .feed .emeta {
  color: #6f6f6f;
  font-size: 13px;
  line-height: 18px;
}

.screen .feed .reason {
  color: var(--ink);
  font-size: 14px;
  font-style: italic;
  line-height: 20px;
}

.screen .composer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.screen .composer .input {
  min-height: 60px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--muted);
  font-size: 16px;
}

.screen .composer .input.locked {
  background: #f6f4ef;
}

.screen .composer .actions {
  display: flex;
  gap: 10px;
}

.screen .composer .send,
.screen .composer .pass {
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
}

.screen .composer .pass {
  background: var(--paper);
  border-color: var(--line);
  color: var(--ink);
}


/* Ranking examples mirror the list title switch and ListRankingsPanel.
   Like the list illustrations, these are static examples, not live picks. */
.ranking-example h2#ranking-intro {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.12;
  margin-bottom: 32px;
}

.ranking-phones {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  align-items: stretch;
}

.rank-screen .rank-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 4px 20px 0;
}

.rank-screen .rank-title-row .title {
  flex: 1;
  margin: 0;
}

.rank-switch {
  display: flex;
  flex: none;
  gap: 2px;
  padding: 3px;
  border-radius: 12px;
  background: #efefef;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.rank-switch span {
  display: grid;
  place-items: center;
  min-width: 52px;
  min-height: 40px;
  padding: 0 8px;
  border-radius: 9px;
}

.rank-switch .selected {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 1px 3px #0000001f;
}

.rank-panel {
  padding: 10px 20px 24px;
}

.rank-tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.rank-tabs span {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 2px solid transparent;
}

.rank-tabs .selected {
  border-bottom-color: var(--ink);
  color: var(--ink);
}

.rank-question {
  margin: 36px 0 18px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.rank-choices {
  display: grid;
  gap: 12px;
}

.rank-choice {
  display: grid;
  place-items: center;
  min-height: 100px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
}

.rank-skip {
  margin: 0;
  min-height: 44px;
  display: grid;
  place-items: center;
  font-size: 15px;
  color: var(--muted);
}

.rank-board {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rank-columns,
.rank-board li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 48px;
  align-items: baseline;
  gap: 10px;
}

.rank-columns {
  padding: 32px 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.rank-columns span:last-child,
.rank-rating {
  text-align: right;
}

.rank-board li {
  padding: 18px 0;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
}

.rank-place {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
}

.rank-name {
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
  color: var(--ink);
}

.rank-board li:first-child .rank-place,
.rank-board li:first-child .rank-name {
  font-size: 25px;
  line-height: 32px;
  color: var(--ink);
}

.rank-rating {
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
