/* Trenyx — inner-page stylesheet v6 (2026-09-24). Static, one file, no JS.
   Same system as the homepage (which carries its own inline CSS): neutral paper, one ultramarine accent,
   Geist + Geist Mono, hairline rules, soft shadow-borders, a dark run log. Every class name the inner pages
   and their generators use is kept (book_public_view.rb, the audit and notes templates), and the v3–v5
   variable names stay defined as aliases, so no page markup or inline style has to change.
   The old header mark (svg.mark-d) is hidden and the T-seal mark is drawn by .brand::before. */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400..700&family=Geist+Mono:wght@400..600&display=swap');

:root {
  color-scheme: light;

  /* homepage tokens */
  --paper: #FAFAFA;
  --surface: #FFFFFF;
  --sunken: #F4F4F5;
  --ink: #121419;
  --ink-2: #4A4D54;
  --ink-3: #616369;
  --line: rgb(9 9 11 / 0.09);
  --line-2: rgb(9 9 11 / 0.15);
  --accent: #213BE3;
  --accent-hover: #182BBB;
  --accent-soft: #E3EBFF;
  --holds: #21763C;
  --holds-soft: #DCF7E1;
  --breaks: #BE2323;
  --breaks-soft: #FDE9E7;
  --unclear: #945F0E;
  --unclear-soft: #FDECD1;
  --night: #101116;
  --night-2: #1B1D23;
  --on-night: #E9E8E4;
  --on-night-2: #A9ABB0;
  --ok-night: #6ED889;
  --bad-night: #FB8276;
  --accent-night: #80A1F6;
  --focus: var(--accent);
  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --shadow-border: 0 0 0 1px rgb(0 0 0 / 0.06), 0 1px 2px -1px rgb(0 0 0 / 0.06), 0 2px 4px 0 rgb(0 0 0 / 0.04);
  --shadow-border-hover: 0 0 0 1px rgb(0 0 0 / 0.08), 0 1px 2px -1px rgb(0 0 0 / 0.08), 0 4px 8px 0 rgb(0 0 0 / 0.06);
  --shadow-float: 0 0 0 1px rgb(0 0 0 / 0.06), 0 2px 4px -2px rgb(0 0 0 / 0.06), 0 16px 32px -12px rgb(0 0 0 / 0.14), 0 48px 96px -32px rgb(0 0 0 / 0.18);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --gutter: 48px;

  /* legacy aliases (pages, inline styles and generators use these names) */
  --bg: var(--paper);
  --surface-2: var(--sunken);
  --inset: var(--sunken);
  --border: var(--line);
  --border-strong: var(--line-2);
  --text: var(--ink);
  --muted: var(--ink-2);
  --faint: var(--ink-3);
  --accent-strong: var(--accent-hover);
  --accent-ink: #FFFFFF;
  --accent-dim: var(--accent-soft);
  --green: var(--holds);
  --up: var(--holds);
  --red: var(--breaks);
  --hold: var(--unclear);
  --hold-dim: var(--unclear-soft);
  --red-dim: var(--breaks-soft);
  --sans: var(--font-sans);
  --display: var(--font-sans);
  --mono: var(--font-mono);
  --r: 14px;
}

/* ---- base ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  background: var(--paper); color: var(--ink);
  font: 400 1rem/1.6 var(--font-sans);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
::selection { background: var(--accent-soft); color: var(--ink); }
b, strong { font-weight: 600; }
img, svg { max-width: 100%; }
p { text-wrap: pretty; }
[id] { scroll-margin-top: 88px; }

a {
  color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px;
  text-decoration-color: rgb(33 59 227 / 0.35);
  transition: color 150ms ease, text-decoration-color 150ms ease;
}
@media (hover: hover) and (pointer: fine) { a:hover { color: var(--accent-hover); text-decoration-color: currentColor; } }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }

.wrap { width: 100%; max-width: 1248px; margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: 1248px; }
/* malformed pages can nest one .wrap inside another; the inner one must not add a second gutter */
.wrap .wrap:not(table) { padding-inline: 0; max-width: none; }
/* reading measure: text stays near 68ch; wide objects get more room */
.narrow > *, .narrow > .prose > * { max-width: 43rem; }
.narrow > .pieces, .narrow > .cards, .narrow > .tblwrap, .narrow > .term, .narrow > .fig, .narrow > .chart,
.narrow > .board:not(.wrap), .narrow > table:not(.board),
.narrow > .prose > .tblwrap, .narrow > .prose > .term, .narrow > .prose > .fig, .narrow > .prose > .chart { max-width: 60rem; }

/* ruled-document margins, as on the homepage */
@media (min-width: 1320px) {
  body::before {
    content: ""; position: fixed; inset: 0; margin-inline: auto; max-width: 1248px;
    border-inline: 1px solid var(--line); pointer-events: none; z-index: 0;
  }
}
header, .hero, .section, footer { position: relative; z-index: 1; }

/* ---- header ---- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgb(250 250 250 / 0.82);
  -webkit-backdrop-filter: blur(16px) saturate(180%); backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 0 var(--line);
}
@media (prefers-reduced-transparency: reduce) { header { background: var(--paper); -webkit-backdrop-filter: none; backdrop-filter: none; } }
.nav { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 40px; min-height: 68px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none;
  font-weight: 600; font-size: 1.1875rem; letter-spacing: -0.02em;
}
.brand::before {
  content: ""; width: 26px; height: 26px; flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect x='4' y='5' width='24' height='8' rx='2' fill='%23213BE3'/%3E%3Crect x='12' y='16' width='8' height='12' rx='2' fill='%23121419'/%3E%3C/svg%3E") center / contain no-repeat;
}
.brand:hover { color: var(--ink); }
.brand .mark-d { display: none; }
.brand .word { font: 600 1.1875rem/1 var(--font-sans); letter-spacing: -0.02em; text-transform: lowercase; }
.brand .word::first-letter { text-transform: uppercase; }
.brand .yx { color: inherit; }
.nav .links { display: flex; flex-wrap: wrap; gap: 4px; margin-left: auto; }
.nav .links a {
  display: inline-flex; align-items: center; min-height: 40px; padding: 0 12px; border-radius: 8px;
  font-size: 0.9375rem; font-weight: 500; color: var(--ink-2); text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease;
}
@media (hover: hover) and (pointer: fine) { .nav .links a:hover { color: var(--ink); background: rgb(9 9 11 / 0.05); } }
.nav .links a.active { color: var(--ink); background: rgb(9 9 11 / 0.05); }

/* ---- hero ---- */
.hero { padding-top: clamp(48px, 6vw, 88px); }
.hero > .wrap { position: relative; padding-bottom: clamp(40px, 5vw, 56px); }
/* hairline under the hero, with + marks at the content edges when the page frame shows */
.hero > .wrap::after {
  content: ""; position: absolute; left: calc(var(--gutter) - 5px); right: calc(var(--gutter) - 5px); bottom: -4px; height: 9px;
  background: linear-gradient(var(--line), var(--line)) center / calc(100% - 10px) 1px no-repeat;
  pointer-events: none;
}
@media (min-width: 1320px) {
  .hero > .wrap::after {
    background:
      linear-gradient(var(--ink-3), var(--ink-3)) 4px 0 / 1px 9px no-repeat,
      linear-gradient(var(--ink-3), var(--ink-3)) 0 4px / 9px 1px no-repeat,
      linear-gradient(var(--ink-3), var(--ink-3)) calc(100% - 4px) 0 / 1px 9px no-repeat,
      linear-gradient(var(--ink-3), var(--ink-3)) 100% 4px / 9px 1px no-repeat,
      linear-gradient(var(--line), var(--line)) center / calc(100% - 10px) 1px no-repeat;
  }
}
.hero + .section { padding-top: clamp(40px, 5vw, 64px); }
.eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
  font: 500 0.75rem/1.4 var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; flex: none; background: currentColor; border-radius: 1px; }
h1 {
  font: 600 clamp(2.125rem, 1.3rem + 2.6vw, 3.5rem)/1.06 var(--font-sans); letter-spacing: -0.04em;
  color: var(--ink); max-width: 20em; text-wrap: balance;
}
.hero .lead { margin: 24px 0 0; max-width: 40em; }
.hero .lead + .hero-ctas, .hero .lead + p, .hero .lead + .metaline { margin-top: 24px; }
.lead { color: var(--ink-2); font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem); line-height: 1.55; }
.lead b, .lead strong { color: var(--ink); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 28px; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px; border-radius: 12px; border: 0;
  font: 600 0.9375rem/1 var(--font-sans); letter-spacing: -0.005em; white-space: nowrap; text-decoration: none;
  color: var(--ink); background: var(--surface); box-shadow: var(--shadow-border);
  cursor: pointer; -webkit-tap-highlight-color: transparent;
  transition: transform 160ms var(--ease-out), background-color 150ms ease, box-shadow 150ms ease, color 150ms ease;
}
.btn:active { transform: scale(0.96); }
.btn.primary { background: var(--accent); color: #fff; box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.18), 0 1px 2px rgb(0 0 0 / 0.12); }
.btn.ghost { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-border); }
@media (hover: hover) and (pointer: fine) {
  .btn:hover { color: var(--ink); box-shadow: var(--shadow-border-hover); }
  .btn.primary:hover { background: var(--accent-hover); color: #fff; box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.18), 0 1px 2px rgb(0 0 0 / 0.12); }
}
@media (prefers-reduced-motion: reduce) { .btn { transition-property: background-color, box-shadow, color; } .btn:active { transform: none; } }
/* a .btn that is not a link is a static label: it must not look pressable */
span.btn, span.btn.ghost, span.btn.primary, span.btn:hover, span.btn.ghost:hover { background: transparent; box-shadow: none; border: 1px dashed var(--line-2); color: var(--ink-3); cursor: default; }
span.btn:active { transform: none; }
/* rows of buttons written inline with &nbsp; spacers */
p:has(> .btn) { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 5px; font-size: 0; }

/* ---- stat strip (kept for the templates) ---- */
.stats { border-top: 1px solid var(--line); }
.stats .row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat { padding: 32px 28px 36px 0; display: flex; flex-direction: column; gap: 10px; }
.stat + .stat { padding-left: 28px; border-left: 1px solid var(--line); }
.stat b { font: 500 clamp(2.5rem, 1.8rem + 2vw, 3.5rem)/1 var(--font-sans); letter-spacing: -0.04em; font-variant-numeric: tabular-nums; color: var(--ink); }
.stat span { font-size: 0.9375rem; line-height: 1.45; color: var(--ink-2); max-width: 24ch; }

/* ---- sections and prose ---- */
.section { padding: 56px 0 8px; }
.section > .wrap > :first-child, .section > .wrap > .prose > :first-child { margin-top: 0; }
h2 {
  font: 600 clamp(1.5rem, 1.2rem + 1vw, 2rem)/1.15 var(--font-sans); letter-spacing: -0.035em;
  color: var(--ink); margin: 8px 0 16px; text-wrap: balance;
}
h3 { font: 600 1.125rem/1.3 var(--font-sans); letter-spacing: -0.01em; color: var(--ink); margin-bottom: 8px; text-wrap: balance; }
.section > .wrap > p, .prose p { color: var(--ink-2); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 18px; }
.section > .wrap > p { max-width: 68ch; }
.prose h2 { margin-top: 56px; }
.prose h3 { margin-top: 36px; }
.prose b, .prose strong, .section > .wrap > p b { color: var(--ink); }
.prose ul, .prose ol { padding-left: 1.25em; color: var(--ink-2); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 18px; }
.prose li { margin: 0.4em 0; padding-left: 0.25em; }
.prose li::marker { color: var(--ink-3); }

/* ---- cards ---- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin: 28px 0 8px; }
.card { background: var(--surface); border-radius: 20px; box-shadow: var(--shadow-border); padding: 28px; display: flex; flex-direction: column; }
.card .tag { display: block; margin-bottom: 12px; font: 500 0.75rem/1.4 var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.card p { color: var(--ink-2); font-size: 0.9375rem; margin: 0; }
.card a.more { margin-top: 16px; }
a.more { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }

/* ---- article list ---- */
.pieces { display: grid; gap: 12px; margin: 12px 0 32px; }
.piece {
  display: block; padding: 28px 32px; border-radius: 20px; background: var(--surface); box-shadow: var(--shadow-border);
  color: var(--ink); text-decoration: none;
  transition: box-shadow 200ms ease, transform 200ms var(--ease-out);
}
.piece h3 { font-size: 1.25rem; line-height: 1.3; letter-spacing: -0.02em; margin: 0 0 10px; }
.piece p { color: var(--ink-2); font-size: 0.9375rem; line-height: 1.6; max-width: 72ch; margin: 0; }
.piece .k { display: block; margin-bottom: 10px; font: 500 0.75rem/1.5 var(--font-mono); letter-spacing: 0.02em; color: var(--ink-3); }
@media (hover: hover) and (pointer: fine) {
  .piece:hover { color: var(--ink); box-shadow: var(--shadow-float); transform: translateY(-2px); }
}
.piece:active { transform: scale(0.995); }
@media (prefers-reduced-motion: reduce) { .piece, .piece:hover, .piece:active { transform: none; } }

/* ---- run log: dark, as on the homepage ---- */
.term {
  background: var(--night); color: var(--on-night); border-radius: 20px; box-shadow: var(--shadow-float);
  padding: 22px 28px 24px; margin: 28px 0; overflow-x: auto; white-space: pre; tab-size: 4;
  font: 400 0.8125rem/22px var(--font-mono); font-variant-numeric: tabular-nums;
  scrollbar-color: rgb(255 255 255 / 0.2) transparent;
}
.term .dim { color: var(--on-night-2); }
.term .hl { color: #fff; font-weight: 600; }
.term .ok { color: var(--ok-night); }
.term .bad, .term .halt { color: var(--bad-night); }
.term a { color: var(--accent-night); }
.term:focus-visible { outline-color: var(--accent-night); }
.ok, .up { color: var(--holds); }
.halt, .dn { color: var(--breaks); }

/* ---- callout ---- */
.rule {
  background: var(--surface); border-radius: 14px; box-shadow: var(--shadow-border);
  padding: 20px 24px; margin: 28px 0; max-width: 43rem;
  color: var(--ink-2); font-size: 0.9875rem; line-height: 1.65;
}
p.rule { font-size: 0.9875rem; line-height: 1.65; margin-bottom: 28px; }
.rule b, .rule strong { color: var(--ink); }
/* guard: a few write-ups close <div class="rule"> with </p>, so the browser keeps the callout open and it
   swallows the rest of the article. A callout that holds block content can only be one of those: drop the
   card and let everything inside read as ordinary prose. */
.rule:has(> p, > h2, > h3, > div, > table, > figure, > ul, > ol) {
  background: none; box-shadow: none; border-radius: 0; padding: 0; max-width: 43rem;
  font-size: 1.0625rem; line-height: 1.7; color: var(--ink-2);
}
.rule:has(> p, > h2, > h3, > div, > table, > figure, > ul, > ol) > :is(.tblwrap, .term, .fig, .chart, .pieces, .cards, .board:not(.wrap)) {
  width: min(60rem, calc(100vw - 2 * var(--gutter))); max-width: none;
}

/* ---- figures ---- */
.fig, .chart { margin: 32px 0; }
.fig img, .chart img {
  width: 100%; height: auto; display: block; border-radius: 14px; background: #fff;
  outline: 1px solid rgb(0 0 0 / 0.1); outline-offset: -1px;
}
.fig figcaption, .chart figcaption { color: var(--ink-3); font-size: 0.875rem; line-height: 1.5; margin-top: 12px; max-width: 68ch; text-wrap: pretty; }

/* ---- tables ---- */
table { border-collapse: collapse; width: 100%; font-size: 0.9375rem; margin: 24px 0; font-variant-numeric: tabular-nums; }
td, th { padding: 11px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
td { color: var(--ink-2); }
th { font: 500 0.75rem/1.4 var(--font-mono); letter-spacing: 0.02em; color: var(--ink-3); border-bottom-color: var(--line-2); }
td b { color: var(--ink); }
tr:last-child > td { border-bottom: 0; }
.tblwrap {
  overflow-x: auto; margin: 28px 0; border-radius: 14px; background: var(--surface); box-shadow: var(--shadow-border);
}
.tblwrap table, .tblwrap .board { margin: 0; box-shadow: none; border-radius: 0; background: transparent; }

/* scoreboard tables */
.board {
  width: 100%; margin: 28px 0; border-collapse: separate; border-spacing: 0;
  background: var(--surface); border-radius: 14px; box-shadow: var(--shadow-border); overflow: hidden;
  font: 400 0.8125rem/1.5 var(--font-mono); font-variant-numeric: tabular-nums;
}
.board th, .board td { text-align: right; padding: 11px 16px; border-bottom: 1px solid var(--line); white-space: nowrap; }
.board th:first-child, .board td:first-child { text-align: left; color: var(--ink-2); }
.board thead th { color: var(--ink-3); font-weight: 500; font-size: 0.75rem; border-bottom: 1px solid var(--line-2); }
.board:not(.wrap) tbody tr:first-child td { color: var(--ink); }
.board tbody tr:last-child td { border-bottom: 0; }
table.board.wrap { padding: 0; }  /* the layout class .wrap also lands on these tables */
.board.wrap th, .board.wrap td { white-space: normal; text-align: left; vertical-align: top; }
.board.wrap th:first-child, .board.wrap td:first-child { width: 38%; }
.board.wrap td { color: var(--ink); }
.board.wrap td:first-child { font-family: var(--font-sans); font-size: 0.875rem; color: var(--ink-2); }
tr.me td { background: var(--accent-dim); }
.pending { font: 400 0.75rem var(--font-mono); color: var(--ink-3); }

/* ---- small parts ---- */
.back { margin: 0 0 24px; }
.back a { font: 400 0.8125rem/1.4 var(--font-mono); color: var(--ink-3); text-decoration: none; }
@media (hover: hover) and (pointer: fine) { .back a:hover { color: var(--accent); } }
.metaline { font: 400 0.8125rem/1.7 var(--font-mono); color: var(--ink-3); margin: 20px 0 0; max-width: 46rem; }
.mono { font-family: var(--font-mono); font-size: 0.88em; }
code {
  font-family: var(--font-mono); font-size: 0.86em; color: var(--ink);
  background: var(--sunken); border-radius: 6px; padding: 1px 6px; box-shadow: inset 0 0 0 1px var(--line);
  overflow-wrap: anywhere;
}

/* ---- footer ---- */
footer { margin-top: 120px; }
.foot {
  position: relative; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px 32px;
  padding-top: 36px; padding-bottom: 56px; font-size: 0.875rem; line-height: 1.6; color: var(--ink-3);
}
.foot::before {
  content: ""; position: absolute; top: -4px; left: calc(var(--gutter) - 5px); right: calc(var(--gutter) - 5px); height: 9px;
  background: linear-gradient(var(--line), var(--line)) center / calc(100% - 10px) 1px no-repeat;
  pointer-events: none;
}
@media (min-width: 1320px) {
  .foot::before {
    background:
      linear-gradient(var(--ink-3), var(--ink-3)) 4px 0 / 1px 9px no-repeat,
      linear-gradient(var(--ink-3), var(--ink-3)) 0 4px / 9px 1px no-repeat,
      linear-gradient(var(--ink-3), var(--ink-3)) calc(100% - 4px) 0 / 1px 9px no-repeat,
      linear-gradient(var(--ink-3), var(--ink-3)) 100% 4px / 9px 1px no-repeat,
      linear-gradient(var(--line), var(--line)) center / calc(100% - 10px) 1px no-repeat;
  }
}
.wrap .foot::before { left: -5px; right: -5px; }
.narrow > footer { max-width: none; }  /* malformed pages leave the footer inside the reading column */
.foot > div:first-child { max-width: 52ch; }
.foot a { color: var(--ink-2); text-decoration: none; }
@media (hover: hover) and (pointer: fine) { .foot a:hover { color: var(--ink); } }
.foot .cols { display: flex; flex-wrap: wrap; gap: 8px 24px; }

/* ---- responsive ---- */
@media (max-width: 1080px) {
  :root { --gutter: 32px; }
}
@media (max-width: 760px) {
  .stats .row { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { padding-left: 0; border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 640px) {
  :root { --gutter: 16px; }
  header { position: static; }
  .nav { gap: 0; padding-block: 10px 8px; }
  .brand { min-height: 44px; font-size: 1.125rem; }
  .brand .word { font-size: 1.125rem; }
  .nav .links { flex-basis: 100%; margin-left: -10px; gap: 0; }
  .nav .links a { min-height: 40px; padding: 0 10px; font-size: 0.875rem; }
  .hero { padding-top: 40px; }
  .section { padding-top: 40px; }
  .prose h2 { margin-top: 44px; }
  .section > .wrap > p, .prose p, .prose ul, .prose ol { font-size: 1rem; }
  .piece { padding: 22px 20px; border-radius: 18px; }
  .piece h3 { font-size: 1.125rem; }
  .card { padding: 24px 20px; }
  .rule { padding: 18px 18px; }
  .term { padding-inline: 20px; font-size: 0.75rem; border-radius: 16px;
          -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent); mask-image: linear-gradient(90deg, #000 88%, transparent); }
  /* tables that sit loose in the prose scroll inside themselves instead of widening the page */
  .board:not(.wrap), .narrow > table:not(.board), .prose > table:not(.board) { display: block; overflow-x: auto; max-width: 100%; }
  /* short scoreboards: row groups laid out at full card width with shared fixed columns, scrolling below 20rem */
  .board:not(.wrap) > thead, .board:not(.wrap) > tbody { display: table; width: 100%; min-width: 20rem; table-layout: fixed; }
  .board:not(.wrap) th:first-child, .board:not(.wrap) td:first-child { width: 44%; }
  .board.wrap th:first-child, .board.wrap td:first-child { width: 42%; }
  .board th, .board td, td, th { padding: 10px 12px; }
  .stat { padding: 24px 16px 28px 0; }
  .stat + .stat { padding-left: 16px; }
  .foot .cols a { display: inline-flex; min-height: 40px; align-items: center; }
  footer { margin-top: 88px; }
}
