/* SnitchStats — vintage sports almanac / editorial print
   ---------------------------------------------------------- */

:root {
  --paper: #f1ead8;
  --paper-2: #ebe2c8;
  --paper-deep: #e0d4b3;
  --ink: #181311;
  --ink-soft: #3a302a;
  --rule: #1813114d;
  --orange: #c0421a;      /* basketball leather */
  --orange-dark: #8b2e10;
  --gold: #b8893e;        /* the snitch */
  --gold-deep: #8a6624;
  --maroon: #5d251a;      /* "the snitch lied" */
  --green: #2e5d3a;       /* won */
  --shadow: 2px 3px 0 var(--ink);
  --shadow-soft: 0 1px 0 #00000010, 0 8px 24px -16px #00000040;
  --serif: "Fraunces", "Iowan Old Style", "Hoefler Text", Georgia, serif;
  --display: "Big Shoulders Display", "Trade Gothic", "Arial Narrow", sans-serif;
  --mono: "JetBrains Mono", "SF Mono", ui-monospace, monospace;
}

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

html { background: var(--paper); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-feature-settings: "kern", "liga", "onum" 1;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* PAPER GRAIN — subtle noise overlay, hand-printed feel */
.paper-grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.06  0 0 0 0 0.05  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

main { padding: 0 6vw 6rem; max-width: 1320px; margin: 0 auto; }

/* MASTHEAD =================================================== */
.masthead {
  padding: 4rem 6vw 2rem;
  max-width: 1320px; margin: 0 auto;
  text-align: center;
  position: relative;
}
.masthead__top {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}
.masthead__rule { flex: 0 0 280px; height: 1px; background: var(--ink); opacity: .6; }
.masthead__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(64px, 18vw, 240px);
  line-height: .82;
  letter-spacing: -.02em;
  margin: 0;
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(.4rem, 1.5vw, 1.4rem);
  flex-wrap: nowrap;
}
.masthead__title .word { position: relative; }
.masthead__title .word::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -.12em;
  height: 4px; background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  animation: drawRule 1.2s .6s cubic-bezier(.7,0,.2,1) forwards;
}
.masthead__title .word:nth-child(3)::after { transform-origin: right; animation-delay: .8s; }
.masthead__title .ball {
  width: clamp(58px, 14vw, 170px);
  height: clamp(58px, 14vw, 170px);
  display: inline-block;
  flex: 0 0 auto;
  animation: ballDrop .8s .15s cubic-bezier(.5,1.4,.3,1) both, ballSpin 24s linear 1s infinite;
  filter: drop-shadow(3px 6px 0 var(--ink));
  position: relative;
  vertical-align: middle;
}
.ball__core {
  position: absolute;
  top: 6%; right: 6%; bottom: 6%; left: 6%;
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid var(--ink);
  box-shadow: inset 0 -10px 20px rgba(0,0,0,0.18), inset 0 10px 20px rgba(255,255,255,0.08);
  overflow: hidden;
}
.ball__seam {
  position: absolute;
  background: transparent;
}
.ball__seam--v { left: 50%; top: -5%; bottom: -5%; width: 3px; background: var(--ink); transform: translateX(-50%); }
.ball__seam--h { top: 50%; left: -5%; right: -5%; height: 3px; background: var(--ink); transform: translateY(-50%); }
.ball__seam--curveL {
  width: 80%; height: 110%; left: -55%; top: -5%;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: transparent;
}
.ball__seam--curveR {
  width: 80%; height: 110%; right: -55%; top: -5%;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: transparent;
}

.masthead__subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.6vw, 30px);
  margin: 1.4rem auto .8rem;
  max-width: 36ch;
  color: var(--ink-soft);
  letter-spacing: .005em;
}
.masthead__byline {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex; gap: 1rem; align-items: center; flex-wrap: wrap; justify-content: center;
}
.byline-strong { color: var(--orange); font-weight: 700; }
.masthead__dingbat { color: var(--gold); }
.byline-live {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--orange);
  font-weight: 600;
}
.byline-live-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 var(--orange);
  animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(192,66,26,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(192,66,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(192,66,26,0); }
}
.hero__update-note {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: -1.4rem 0 2.5rem;
  max-width: 60ch;
}
.hero__update-note span { color: var(--orange); font-weight: 700; }

/* HERO ======================================================== */
.hero {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  padding: 5rem 0 5rem;
  border-top: 1px solid var(--ink);
  margin-top: 1rem;
}
.hero__rail {
  display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
  padding-top: .25rem;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-right: 1px solid var(--rule);
  padding-right: .6rem;
  min-height: 100%;
}
.rail-tick { color: var(--orange); font-weight: 700; }
.rail-label { writing-mode: vertical-rl; transform: rotate(180deg); color: var(--ink-soft); }

.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 1.2rem;
  max-width: 50ch;
  border-left: 3px solid var(--gold);
  padding-left: .9rem;
}
.hero__lede {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 5.4vw, 78px);
  line-height: .96;
  letter-spacing: -.018em;
  margin: 0 0 3rem;
  max-width: 16ch;
}
.hero__lede em {
  font-style: italic;
  color: var(--orange);
  font-weight: 700;
}

.hero__stat {
  display: grid;
  grid-template-columns: minmax(280px, 480px) 1fr;
  align-items: end;
  gap: 2.5rem;
  border-top: 4px double var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 1.5rem 0;
}
.hero__pct {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(120px, 22vw, 260px);
  line-height: .8;
  letter-spacing: -.04em;
  color: var(--orange);
  font-feature-settings: "tnum" 1;
  text-shadow: 4px 6px 0 var(--ink);
}
.hero__pct .pct-sign {
  font-size: .55em;
  color: var(--gold);
  text-shadow: 3px 4px 0 var(--ink);
  margin-left: -.05em;
}
.hero__stat-cap p {
  margin: 0 0 .8rem;
  font-size: clamp(15px, 1.4vw, 19px);
  max-width: 38ch;
}
.hero__stat-cap p strong { color: var(--orange); font-weight: 700; }
.hero__breakdown {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-top: 1rem !important;
}
.chip {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--paper-2);
  border: 1px solid var(--ink);
  padding: .35rem .7rem;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  font-weight: 500;
}
.chip span { font-weight: 700; color: var(--orange); font-size: 13px; }
.chip--win span { color: var(--green); }
.chip--loss span { color: var(--maroon); }

.hero__foot {
  margin-top: 1.6rem;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 56ch;
  font-size: 16px;
}
.snitch-term { color: var(--gold-deep); font-weight: 500; }

/* SECTION HEADS =============================================== */
.section-head {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  align-items: baseline;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--ink);
}
.section-head__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
}
.section-head h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 86px);
  letter-spacing: -.02em;
  line-height: .9;
  margin: 0 0 1rem;
  text-transform: uppercase;
}
.section-head__sub {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 21px);
  font-style: italic;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0;
  grid-column: 2;
}
.section-head--invert h3 { color: var(--maroon); }

/* ROUNDS ====================================================== */
.round-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-left: 1px solid var(--ink);
  border-top: 1px solid var(--ink);
}
.round-card {
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 1.8rem 1.6rem;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  transition: background .3s ease;
}
.round-card:hover { background: var(--paper-2); }
.round-card__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.round-card__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -.01em;
  line-height: .9;
  text-transform: uppercase;
  margin: 0;
}
.round-card__pct {
  font-family: var(--display);
  font-weight: 900;
  font-size: 76px;
  line-height: .85;
  letter-spacing: -.03em;
  color: var(--orange);
  font-feature-settings: "tnum" 1;
  text-shadow: 2px 3px 0 var(--ink);
  margin: 0;
}
.round-card__pct .small { font-size: .4em; color: var(--gold); }
.round-card__bar {
  height: 6px;
  background: var(--paper-deep);
  position: relative;
  border: 1px solid var(--ink);
}
.round-card__bar-fill {
  position: absolute; top: 0; bottom: 0; left: 0;
  background: var(--orange);
  transform-origin: left;
  animation: barFill 1.5s cubic-bezier(.7,0,.2,1) .3s both;
}
.round-card__legend {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-soft);
  font-feature-settings: "tnum" 1;
}

/* LEDGER (TEAMS TABLE) ======================================== */
.table-wrap { overflow-x: auto; }
.ledger {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--serif);
  margin-bottom: 2rem;
}
.ledger thead th {
  text-align: left;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: .8rem .9rem;
  border-bottom: 2px solid var(--ink);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: color .2s;
}
.ledger thead th:hover { color: var(--orange); }
.ledger thead th.is-sorted { color: var(--orange); }
.ledger thead th.is-sorted::after {
  content: " ▾";
  color: var(--gold);
}
.ledger thead th.is-sorted.asc::after { content: " ▴"; }
.ledger thead th.num,
.ledger tbody td.num { text-align: right; font-feature-settings: "tnum" 1; font-variant-numeric: tabular-nums; }
.ledger tbody td {
  padding: .9rem .9rem;
  border-bottom: 1px dotted var(--rule);
  vertical-align: middle;
  font-size: 16px;
}
.ledger tbody tr { transition: background .2s; }
.ledger tbody tr:hover { background: var(--paper-2); }
.team-cell {
  display: flex; align-items: center; gap: .8rem;
}
.team-cell__sw {
  width: 28px; height: 28px;
  background: var(--ink);
  flex: 0 0 28px;
  border: 1.5px solid var(--ink);
  position: relative;
}
.team-cell__sw::before {
  content: "";
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 50%;
  background: var(--orange);
}
.team-cell__abbr {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .02em;
  line-height: 1;
}
.team-cell__name {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
}
.ledger td.num.is-pct { color: var(--orange); font-weight: 700; }
.ledger td.zero { color: var(--ink-soft); opacity: .55; }

/* UPSETS ====================================================== */
.upsets { padding-bottom: 1rem; }
.upset-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 0;
  border-left: 1px solid var(--maroon);
  border-top: 1px solid var(--maroon);
}
.upset-card {
  border-right: 1px solid var(--maroon);
  border-bottom: 1px solid var(--maroon);
  padding: 1.6rem 1.5rem 1.4rem;
  background: var(--paper);
  position: relative;
}
.upset-card::before {
  content: "✦";
  position: absolute;
  top: .8rem; right: 1rem;
  color: var(--maroon);
  font-size: 13px;
}
.upset-card__meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: .8rem;
  display: flex; gap: .6rem; align-items: baseline;
}
.upset-card__round { font-weight: 700; }
.upset-card__matchup {
  font-family: var(--display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.005em;
  margin: 0 0 .9rem;
  text-transform: uppercase;
}
.upset-card__matchup .loser-team { color: var(--maroon); text-decoration: line-through; text-decoration-thickness: 2px; text-decoration-color: var(--ink); }
.upset-card__matchup .winner-team { color: var(--green); }
.upset-card__matchup .sep {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--ink-soft);
  padding: 0 .35rem;
  letter-spacing: 0;
  text-transform: none;
}
.upset-card__score {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1rem;
  font-feature-settings: "tnum" 1;
}
.upset-card__moment {
  border-top: 1px dashed var(--rule);
  padding-top: .9rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.upset-card__moment::before {
  content: "“";
  font-family: var(--serif);
  font-size: 30px;
  color: var(--maroon);
  vertical-align: -.2em;
  margin-right: .15em;
}
.upset-card__moment-when {
  display: block;
  margin-top: .4rem;
  font-style: normal;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--maroon);
}

/* FILTER PILLS ================================================ */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: .45rem; align-items: center;
  padding: 1.2rem 0 1.8rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 1.4rem;
}
.filter-bar__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-right: .4rem;
}
.filter-bar__divider {
  color: var(--rule);
  margin: 0 .4rem;
}
.filter-bar__count {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pill {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: .45rem .75rem;
  cursor: pointer;
  font-weight: 500;
  transition: transform .12s, box-shadow .12s, background .2s;
  box-shadow: 2px 2px 0 var(--ink);
}
.pill:hover { transform: translate(-1px, -1px); box-shadow: 3px 3px 0 var(--ink); }
.pill:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--ink); }
.pill.is-active {
  background: var(--ink);
  color: var(--paper);
}

/* GAME LIST =================================================== */
.game-list {
  list-style: none;
  margin: 0; padding: 0;
  counter-reset: game;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--ink);
}
.game-row {
  counter-increment: game;
  display: grid;
  grid-template-columns: 64px 110px 1fr 1fr 1.4fr 90px;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px dotted var(--rule);
  transition: background .2s;
}
.game-row:hover { background: var(--paper-2); }
.game-row__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--ink-soft);
  font-feature-settings: "tnum" 1;
}
.game-row__num::before { content: "№" counter(game, decimal-leading-zero); }
.game-row__date {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
  font-feature-settings: "tnum" 1;
}
.game-row__date small {
  display: block;
  font-size: 10px;
  color: var(--ink-soft);
  letter-spacing: .1em;
  margin-top: .15em;
  text-transform: uppercase;
}
.game-row__teams {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -.005em;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .35rem;
}
.game-row__teams .at {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--ink-soft);
  text-transform: none;
  margin: 0 .15rem;
}
.game-row__score {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
  font-feature-settings: "tnum" 1;
  color: var(--ink-soft);
}
.game-row__score .win { color: var(--ink); font-weight: 700; }
.game-row__snitch {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.35;
}
.game-row__snitch .team {
  font-style: normal;
  font-family: var(--display);
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: .01em;
}
.game-row__snitch .when {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--ink-soft);
  text-transform: uppercase;
  display: block;
  margin-top: .25rem;
}
.game-row__verdict {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: right;
}
.game-row__verdict.is-won { color: var(--green); }
.game-row__verdict.is-lost { color: var(--maroon); }
.game-row__verdict.is-neither { color: var(--ink-soft); }
.game-row__verdict .ot {
  display: inline-block;
  margin-left: .35rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0 .35rem;
  font-weight: 700;
}

/* COLOPHON ==================================================== */
.colophon {
  margin-top: 5rem;
  padding-top: 2rem;
}
.colophon__rule {
  height: 6px;
  background: var(--ink);
  position: relative;
  margin-bottom: 2rem;
}
.colophon__rule::after {
  content: "✦";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--paper);
  padding: 0 1.2rem;
  color: var(--gold);
  font-size: 18px;
}
.colophon__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.colophon__head {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 .6rem;
  font-weight: 700;
}
.colophon p:not(.colophon__head) {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
}
.colophon__base {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; align-items: center;
}
.colophon__dingbat { color: var(--gold); }

/* MOTION ====================================================== */
@keyframes drawRule { to { transform: scaleX(1); } }
@keyframes ballDrop {
  0% { transform: translateY(-200%) rotate(-60deg); }
  60% { transform: translateY(20%) rotate(20deg); }
  80% { transform: translateY(-8%) rotate(-10deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
@keyframes ballSpin {
  to { transform: rotate(360deg); }
}
@keyframes barFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(var(--w, 1)); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.fade-in { animation: fadeUp .8s cubic-bezier(.4,0,.2,1) both; }
.fade-in:nth-child(2) { animation-delay: .05s; }
.fade-in:nth-child(3) { animation-delay: .1s; }
.fade-in:nth-child(4) { animation-delay: .15s; }
.fade-in:nth-child(5) { animation-delay: .2s; }
.fade-in:nth-child(6) { animation-delay: .25s; }
.fade-in:nth-child(7) { animation-delay: .3s; }
.fade-in:nth-child(8) { animation-delay: .35s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }
  .masthead__title .word::after { transform: scaleX(1); }
}

/* RESPONSIVE ================================================== */
@media (max-width: 860px) {
  .masthead { padding-top: 2.5rem; }
  .masthead__rule { flex-basis: 60px; }
  .hero, .section-head { grid-template-columns: 1fr; gap: 1rem; padding-top: 3rem; padding-bottom: 3rem; }
  .hero__rail { flex-direction: row; border-right: none; border-bottom: 1px solid var(--rule); padding: 0 0 .8rem; }
  .rail-label { writing-mode: horizontal-tb; transform: none; }
  .section-head__sub { grid-column: 1; }
  .hero__stat { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero__pct { text-align: center; }
  .game-row {
    grid-template-columns: 70px 1fr;
    grid-template-areas:
      "num    date"
      "teams  teams"
      "score  score"
      "snitch snitch"
      "verdict verdict";
    row-gap: .4rem;
    padding: 1.2rem 0;
  }
  .game-row__num { grid-area: num; }
  .game-row__date { grid-area: date; text-align: right; }
  .game-row__teams { grid-area: teams; font-size: 26px; }
  .game-row__score { grid-area: score; }
  .game-row__snitch { grid-area: snitch; }
  .game-row__verdict { grid-area: verdict; text-align: left; }
  body { font-size: 16px; }
}
