/* =========================================================================
   28-0 — The Grand Slam Challenge
   Mobile-first, no framework, no webfonts. Theme accent shifts per Slam.
   ========================================================================= */

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

:root {
  --bg: #0b1411;
  --bg-2: #101c18;
  --panel: #15211d;
  --panel-2: #1b2924;
  --ink: #eef5f1;
  --dim: #8ea39a;
  --dim-2: #63776e;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);

  --accent: #cdf25e;
  --accent-ink: #111c07;
  --accent-soft: rgba(205, 242, 94, 0.14);

  --win: #57d98a;
  --loss: #ef6b6b;

  --ad-h: 58px;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 640px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

/* Per-Slam theming (spec §5.1) */
[data-theme="ao"]  { --accent: #4e9ff0; --accent-ink: #04121f; --accent-soft: rgba(78,159,240,.16); }
[data-theme="rg"]  { --accent: #e08040; --accent-ink: #1c0c03; --accent-soft: rgba(224,128,64,.16); }
[data-theme="wim"] { --accent: #5ed08a; --accent-ink: #04160c; --accent-soft: rgba(94,208,138,.16); }
[data-theme="uso"] { --accent: #7d8ff5; --accent-ink: #070b22; --accent-soft: rgba(125,143,245,.16); }

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: calc(var(--ad-h) + env(safe-area-inset-bottom));
  transition: background-color .4s ease;
  background-image:
    radial-gradient(90rem 40rem at 50% -10%, var(--accent-soft), transparent 65%);
  background-attachment: fixed;
}

.app {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 16px 32px;
}

.screen { animation: rise .28s ease both; }
.screen-center { min-height: 62vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }

/* Must outrank the display rules above, or hidden screens still render. */
[hidden] { display: none !important; }

@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ------------------------------------------------------------------ type */

h1, h2, h3 { line-height: 1.1; letter-spacing: -0.02em; }

.micro { font-size: 12.5px; color: var(--dim-2); text-align: center; }

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

.hero { text-align: center; padding: 22px 0 26px; }
.hero-mark { font-size: 40px; line-height: 1; }
.hero-title {
  font-size: clamp(60px, 22vw, 104px);
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-top: 4px;
  color: var(--accent);
}
.hero-dash { opacity: .35; }
.hero-sub {
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 11px;
  font-weight: 700;
  color: var(--dim);
  margin-top: 2px;
}
.hero-blurb {
  color: var(--dim);
  font-size: 14.5px;
  max-width: 34ch;
  margin: 16px auto 0;
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 8px 0 24px;
}
.stat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
}
.stat-value { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; }
.stat-value.accent { color: var(--accent); }
.stat-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--dim-2); margin-top: 3px;
}

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

.btn {
  display: block;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background: var(--panel-2);
  color: var(--ink);
  transition: transform .12s ease, filter .15s ease, background-color .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(.975); }
.btn + .btn { margin-top: 9px; }

.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-xl { padding: 17px 20px; font-size: 17px; letter-spacing: -0.01em; }
.btn-secondary { background: transparent; border-color: var(--line-2); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--dim); border-color: var(--line); }
.btn-sm { width: auto; display: inline-block; padding: 8px 15px; font-size: 12.5px; font-weight: 600; }
.btn-sm + .btn-sm { margin-top: 0; margin-left: 6px; }
.btn-reward {
  background: transparent;
  border: 1px dashed var(--line-2);
  color: var(--dim);
  font-size: 13.5px;
  font-weight: 600;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.home-actions { margin-top: 4px; }
.home-actions .micro { margin-top: 9px; }

/* ------------------------------------------------------------------- how */

.how {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 13.5px;
  color: var(--dim);
}
.how summary { cursor: pointer; font-weight: 600; color: var(--dim); list-style: none; }
.how summary::-webkit-details-marker { display: none; }
.how summary::before { content: "＋ "; color: var(--accent); }
.how[open] summary::before { content: "－ "; }
.how ol { margin: 12px 0 0 18px; display: grid; gap: 7px; }
.how strong { color: var(--accent); }
.how .btn { margin-top: 16px; }

/* ---------------------------------------------------------- shared build */

.shared-build {
  background: var(--panel);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
  text-align: center;
}
.shared-build-label {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: .14em;
  color: var(--accent); font-weight: 700;
}
.shared-build-id { font-family: var(--mono); font-size: 20px; font-weight: 700; margin: 5px 0 10px; }
.shared-build-list { list-style: none; font-size: 12.5px; color: var(--dim); margin-bottom: 14px; }
.shared-build-list li { padding: 2px 0; }

/* ----------------------------------------------------------------- draft */

.draft-top { text-align: center; padding: 4px 0 18px; }

.pips { display: flex; gap: 6px; justify-content: center; margin-bottom: 16px; }
.pip {
  width: 26px; height: 4px; border-radius: 2px;
  background: var(--line-2);
  transition: background-color .25s ease;
}
.pip.done { background: var(--accent); }
.pip.now { background: var(--ink); }

.draft-round { font-size: 27px; font-weight: 800; }
.draft-round small {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--dim-2); margin-bottom: 6px;
}

.hint-bar {
  margin-top: 10px;
  font-size: 12px;
  color: var(--dim-2);
  display: flex; gap: 2px 7px; justify-content: center; flex-direction: column;
}
.hint-bar strong { color: var(--dim); font-weight: 700; }
/* The separator only makes sense when both hints sit on one line. */
.hint-dot { display: none; opacity: .4; }

@media (min-width: 460px) {
  .hint-bar { flex-direction: row; }
  .hint-dot { display: inline; }
}

.cards { display: grid; gap: 12px; }

.card {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 18px;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  overflow: hidden;
  transition: transform .12s ease, border-color .15s ease, background-color .15s ease;
  -webkit-tap-highlight-color: transparent;
  animation: rise .3s ease both;
}
.card::before {
  content: "";
  position: absolute; inset: 0 auto 0 0; width: 3px;
  background: var(--accent);
  opacity: .55;
}
.card:nth-child(2) { animation-delay: .05s; }
.card:active { transform: scale(.985); }
.card:hover { border-color: var(--line-2); background: var(--panel-2); }
.card:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.card.picked { border-color: var(--accent); background: var(--panel-2); }

.card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.card-name { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; }
.card-era { font-size: 12px; color: var(--dim-2); margin-top: 2px; }
.card-era .era-tag {
  display: inline-block;
  font-size: 9.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 2px 6px; border-radius: 4px; margin-left: 6px;
  background: var(--line); color: var(--dim);
}
.card-era .era-tag.prime { background: var(--accent-soft); color: var(--accent); }

.card-rating { text-align: right; flex-shrink: 0; }
.card-rating b { display: block; font-size: 27px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.card-rating span {
  font-size: 9px; text-transform: uppercase; letter-spacing: .12em; color: var(--dim-2);
}

.attrs { margin-top: 15px; display: grid; gap: 9px; }
.attr-row { display: grid; grid-template-columns: 96px 1fr 30px; align-items: center; gap: 10px; }
.attr-name { font-size: 10.5px; color: var(--dim-2); text-transform: uppercase; letter-spacing: .05em; }
.attr-track { height: 6px; border-radius: 3px; background: var(--line); overflow: hidden; }
.attr-fill { height: 100%; border-radius: 3px; background: var(--accent); }
.attr-fill.low { background: var(--loss); }
.attr-val { font-size: 13px; font-weight: 700; text-align: right; font-variant-numeric: tabular-nums; }

.clutch-chip {
  display: inline-block; margin-top: 13px;
  font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: 999px;
  background: var(--line); color: var(--dim);
}
.clutch-chip.pos { background: rgba(87,217,138,.14); color: var(--win); }
.clutch-chip.neg { background: rgba(239,107,107,.14); color: var(--loss); }

.draft-foot { margin-top: 16px; }

/* ------------------------------------------------------------------- sim */

.sim-ball { font-size: 46px; animation: bounce .7s ease-in-out infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(180deg); }
}
.sim-text {
  margin-top: 20px; font-size: 19px; font-weight: 700;
  color: var(--accent); transition: color .3s ease;
}
.sim-track {
  margin-top: 18px; width: 200px; height: 3px;
  background: var(--line); border-radius: 2px; overflow: hidden;
}
.sim-fill { height: 100%; width: 0; background: var(--accent); transition: width .3s linear; }

/* --------------------------------------------------------------- results */

.result-head { text-align: center; padding: 10px 0 22px; }
.result-label {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: .2em;
  color: var(--dim-2); font-weight: 700;
}
.result-record {
  font-size: clamp(62px, 20vw, 92px);
  font-weight: 800; letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
  margin: 2px 0 10px;
}
.result-record.sweep { color: var(--accent); }

/* Explains why W+L rarely adds up to 28: matches after an exit never happen. */
.result-played {
  font-size: 12px;
  color: var(--dim-2);
  margin: -4px 0 12px;
  font-variant-numeric: tabular-nums;
}
.result-played b { color: var(--dim); font-weight: 700; }

.medal {
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  border: 1px solid var(--accent);
}
.medal.tier-1, .medal.tier-2 { background: var(--line); color: var(--dim); border-color: var(--line-2); }

.result-blurb { font-size: 13.5px; color: var(--dim); margin-top: 11px; }
.pb-flag { margin-top: 10px; font-size: 12.5px; font-weight: 700; color: var(--accent); }

.breakdown { list-style: none; display: grid; gap: 7px; margin-bottom: 20px; }
.row {
  display: flex; align-items: center; gap: 11px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--slam, var(--line-2));
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.row[data-theme="ao"]  { --slam: #4e9ff0; }
.row[data-theme="rg"]  { --slam: #e08040; }
.row[data-theme="wim"] { --slam: #5ed08a; }
.row[data-theme="uso"] { --slam: #7d8ff5; }
.row-icon { font-size: 15px; }
.row-name { font-weight: 700; font-size: 14.5px; flex: 1; }
.row-outcome { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--dim); }
.row.won .row-outcome { color: var(--win); }
.row-score { display: block; font-size: 11px; color: var(--dim-2); font-weight: 500; letter-spacing: 0; text-transform: none; }

.insights { display: grid; gap: 8px; margin-bottom: 20px; }
.insight {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 11px 14px;
  font-size: 13.5px;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 14px;
}
.panel-title {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: .16em;
  color: var(--dim-2); font-weight: 800; margin-bottom: 13px;
}

.statbars { display: grid; gap: 8px; margin-bottom: 15px; }
.statbar { display: grid; grid-template-columns: 84px 1fr 30px; align-items: center; gap: 9px; }
.statbar-name { font-size: 11px; color: var(--dim-2); text-transform: uppercase; letter-spacing: .07em; }

.build-list { list-style: none; border-top: 1px solid var(--line); padding-top: 13px; display: grid; gap: 6px; }
.build-list li { display: flex; justify-content: space-between; gap: 10px; font-size: 13px; }
.build-list .bl-skill { color: var(--dim-2); text-transform: uppercase; font-size: 10.5px; letter-spacing: .08em; align-self: center; }
.build-list .bl-who { text-align: right; }
.build-list .bl-who b { font-weight: 700; }
.build-list .bl-who span { color: var(--dim-2); font-size: 11.5px; }

.share-block { border-top: 1px solid var(--line); padding-top: 13px; margin-top: 13px; }
.share-block:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.share-tag {
  font-size: 10px; text-transform: uppercase; letter-spacing: .12em;
  color: var(--dim-2); font-weight: 700; margin-bottom: 7px;
}
.share-text { font-size: 13.5px; color: var(--ink); margin-bottom: 10px; }
.share-short { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.build-id {
  font-family: var(--mono); font-size: 24px; font-weight: 700;
  letter-spacing: .06em; color: var(--accent); margin-bottom: 10px;
  word-break: break-all;
}

.result-actions { margin-top: 20px; }
.result-actions .btn-ghost.btn-sm { width: 100%; margin-top: 14px; }

/* -------------------------------------------------------------- identity */

.identity {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 8px 7px 15px;
  margin-bottom: 6px;
}
.identity-who { min-width: 0; }
.identity-label {
  display: block;
  font-size: 9.5px; text-transform: uppercase; letter-spacing: .14em;
  color: var(--dim-2); font-weight: 700;
}
.identity-name {
  display: block; font-size: 13.5px; font-weight: 700;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.identity-name.is-guest { color: var(--dim); font-family: var(--mono); font-size: 12.5px; }
.identity-actions { display: flex; gap: 6px; flex-shrink: 0; }
.identity-actions .btn { margin-top: 0; }

.btn-google {
  display: inline-flex; align-items: center; gap: 7px;
  width: auto; padding: 8px 14px; font-size: 12.5px;
  background: var(--ink); color: #16211c; border-radius: 999px; font-weight: 700;
}
.btn-google svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ----------------------------------------------------------- leaderboard */

.board-head { text-align: center; padding: 6px 0 18px; }
.board-title { font-size: 30px; font-weight: 800; }
.board-sub { font-size: 12.5px; color: var(--dim-2); margin-top: 7px; }

.tabs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 999px; padding: 4px; margin-bottom: 14px;
}
.tab {
  border: 0; border-radius: 999px; padding: 9px 12px;
  background: transparent; color: var(--dim);
  font: inherit; font-size: 13px; font-weight: 700; cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}
.tab.is-active { background: var(--accent); color: var(--accent-ink); }

.board-blurb { font-size: 12px; color: var(--dim-2); text-align: center; margin-bottom: 14px; }

.board-list { list-style: none; display: grid; gap: 6px; }
.board-row {
  display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 11px;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 11px 13px;
}
.board-row.is-me { border-color: var(--accent); background: var(--panel-2); }
.board-rank {
  font-size: 13px; font-weight: 800; color: var(--dim-2);
  font-variant-numeric: tabular-nums; text-align: center;
}
.board-row:nth-child(1) .board-rank { color: var(--accent); }
.board-name { font-size: 14px; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.board-name.is-guest { font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--dim); }
.board-meta { font-size: 10.5px; color: var(--dim-2); margin-top: 1px; }
.board-score { font-size: 15px; font-weight: 800; font-variant-numeric: tabular-nums; text-align: right; }
.board-score small { display: block; font-size: 10px; font-weight: 600; color: var(--dim-2); }

.board-empty {
  text-align: center; color: var(--dim-2); font-size: 13.5px;
  padding: 34px 16px; border: 1px dashed var(--line-2); border-radius: var(--radius);
}
.board-actions { margin-top: 22px; }

.board-status {
  border-radius: var(--radius-sm);
  padding: 11px 14px; margin-top: 16px;
  font-size: 12.5px;
  background: var(--panel); border: 1px solid var(--line); color: var(--dim);
}
.board-status.ok { border-color: var(--accent); color: var(--ink); }
.board-status b { color: var(--accent); }

/* ----------------------------------------------------------------- modal */

.modal {
  position: fixed; inset: 0; z-index: 90;
  display: flex; align-items: center; justify-content: center; padding: 22px;
  background: rgba(5, 11, 9, .82);
}
.modal-card {
  width: 100%; max-width: 380px;
  background: var(--panel); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 22px;
}
.modal-title { font-size: 21px; font-weight: 800; }
.modal-text { font-size: 13px; color: var(--dim); margin: 9px 0 15px; }
.modal-input {
  width: 100%; font: inherit; font-size: 16px; font-weight: 600;
  background: var(--bg); color: var(--ink);
  border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  padding: 12px 14px; margin-bottom: 12px;
}
.modal-input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.modal-error { font-size: 12.5px; color: var(--loss); margin-bottom: 12px; }

/* -------------------------------------------------------------- ad + ui */

.ad-slot {
  position: fixed; left: 0; right: 0; bottom: 0;
  height: calc(var(--ad-h) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  z-index: 40;
}
.ad-inner {
  width: 320px; height: 50px;
  border: 1px dashed var(--line-2);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.ad-inner span {
  font-size: 9.5px; text-transform: uppercase; letter-spacing: .22em; color: var(--dim-2);
}

.toast {
  position: fixed; left: 50%; bottom: calc(var(--ad-h) + 18px + env(safe-area-inset-bottom));
  transform: translate(-50%, 14px);
  background: var(--ink); color: var(--bg);
  font-size: 13px; font-weight: 700;
  padding: 9px 18px; border-radius: 999px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 50;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------------------------------------------------------- wider screens */

@media (min-width: 680px) {
  :root { --ad-h: 100px; --maxw: 720px; }
  .app { padding: 32px 24px 48px; }
  .cards { grid-template-columns: 1fr 1fr; gap: 14px; }
  .card { padding: 20px; }
  .ad-inner { width: 728px; height: 90px; }
  .result-actions { max-width: 420px; margin-left: auto; margin-right: auto; }
  .home-actions { max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* -------------------------------------------------------------- legal-foot */

.legal-foot {
  text-align: center;
  margin-top: 22px;
  font-size: 11.5px;
  color: var(--dim-2);
}
.legal-foot a { color: var(--dim-2); text-decoration: underline; text-underline-offset: 2px; }
.legal-foot a:hover { color: var(--dim); }
.legal-foot span { margin: 0 8px; }

/* ---------------------------------------------------------------- legal.html */
/* Shared prose layout for privacy.html and terms.html. */

.legal {
  max-width: 640px;
  margin: 0 auto;
  padding: 28px 18px 60px;
}
.legal-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--dim);
  text-decoration: none; margin-bottom: 22px;
}
.legal-back:hover { color: var(--accent); }
.legal-mark { font-size: 26px; }
.legal h1 {
  font-size: 30px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 6px;
}
.legal .legal-meta {
  font-size: 12.5px; color: var(--dim-2); margin-bottom: 30px;
}
.legal h2 {
  font-size: 17px; font-weight: 800; color: var(--accent);
  margin: 34px 0 10px;
}
.legal h2:first-of-type { margin-top: 6px; }
.legal p, .legal li { font-size: 14.5px; color: var(--dim); line-height: 1.65; }
.legal p { margin-bottom: 12px; }
.legal ul, .legal ol { padding-left: 20px; margin-bottom: 12px; }
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--ink); font-weight: 700; }
.legal a { color: var(--accent); }
.legal .legal-callout {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  margin: 18px 0;
  font-size: 13.5px;
  color: var(--dim);
}
.legal .legal-callout strong { display: block; margin-bottom: 3px; color: var(--ink); }
