@font-face {
  font-family: Newsreader;
  src: url("/assets/newsreader.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Newsreader;
  src: url("/assets/newsreader-italic.woff2") format("woff2");
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("/assets/instrument-sans.woff2") format("woff2");
  font-weight: 400 700;
  font-stretch: 75% 100%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("/assets/instrument-sans-italic.woff2") format("woff2");
  font-weight: 400 700;
  font-stretch: 75% 100%;
  font-style: italic;
  font-display: swap;
}
:root {
  color-scheme: light;
  --paper: #fbfaf7;
  --ink: #000;
  --text: #232220;
  --muted: #6a675f;
  --rule: #d9d6cc;
  --rule-light: #ebe8e0;
  --tint: #f3f1ea;
  --white: #fff;
  --red: #b8322a;
  --qb: #a8680a;
  --rb: #1c8a5a;
  --wr: #4a5fd8;
  --te: #bb2f7c;
  --serif: Newsreader, Georgia, "Times New Roman", serif;
  --sans: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --tc: #6a675f;
  --tc2: #232220;
  --on: #fff;
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  background: var(--paper);
  scroll-padding-top: 64px;
}
body {
  margin: 0;
  color: var(--text);
  font: 14px / 1.45 var(--sans);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--red);
}
p a,
.prose a,
.dek a,
.method a,
.record a,
.fine a,
.chart-table a,
.note a,
.meta a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible,
.hit:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  text-wrap: balance;
}
h1 {
  font-size: clamp(28px, 3.4vw, 36px);
}
h2 {
  font-size: 23px;
}
h3 {
  font-size: 17px;
}
p {
  margin: 0 0 12px;
}
strong,
b {
  font-weight: 600;
  color: var(--ink);
}
small,
.meta {
  font-size: 12.5px;
  color: var(--muted);
}
code {
  font:
    12px / 1.5 ui-monospace,
    Menlo,
    monospace;
  word-break: break-all;
}
hr {
  border: 0;
  border-top: 1px solid var(--rule-light);
  margin: 16px 0;
}
.wrap {
  width: min(1200px, calc(100% - 40px));
  margin: auto;
}
.preview {
  font-size: 12.5px;
  background: #1f1e1b;
  color: #f3f1ea;
  text-align: center;
  padding: 6px 15px;
}
.ic {
  flex: none;
  vertical-align: -3px;
}

/* Masthead: one bar, brand centred between the edition and the navigation */
.masthead {
  border-bottom: 1px solid var(--ink);
}
.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px 0 12px;
  border-bottom: 1px solid var(--rule);
}
.edition {
  font-size: 12.5px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.brand {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand:hover {
  color: var(--ink);
}
.topbar nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}
.topbar nav a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 3px 0;
  border-bottom: 2px solid transparent;
}
.topbar nav a[aria-current="page"] {
  border-color: var(--red);
}

/* The slate strip: every game of the week in one scrolling row */
.slate-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
}
.strip-label {
  flex: none;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.strip-scroll {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, #000 calc(100% - 40px), transparent);
  padding-right: 40px;
}
.strip-scroll::-webkit-scrollbar {
  display: none;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: none;
  padding: 5px 9px 5px 7px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.chip:hover {
  background: var(--tint);
  color: var(--ink);
}
.chip i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--tc);
  box-shadow: inset 0 0 0 1.5px var(--tc2);
}
.chip .at {
  font-weight: 400;
  color: var(--muted);
  margin: 0 1px;
}
.chip .when {
  font-weight: 400;
  color: var(--muted);
  margin-left: 4px;
}

/* Shared identity pieces: headshot, club mark, position, status */
.pic {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: none;
  overflow: hidden;
  border-radius: 50%;
  background: var(--tint);
}
.pic img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pic .mono {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.pic.QB .mono {
  color: var(--qb);
}
.pic.RB .mono {
  color: var(--rb);
}
.pic.WR .mono {
  color: var(--wr);
}
.pic.TE .mono {
  color: var(--te);
}
.pic-s {
  width: 32px;
  height: 32px;
}
.pic-m {
  width: 48px;
  height: 48px;
}
.pic-m .mono {
  font-size: 14px;
}
.pic-l {
  width: 168px;
  height: 130px;
  border-radius: 0;
  background: transparent;
}
.pic-l .mono {
  font-size: 34px;
  color: var(--on);
}
.pic-l img {
  object-fit: contain;
  object-position: bottom center;
}
.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  min-width: 30px;
  height: 18px;
  padding: 0 4px;
  border-radius: 3px;
  background: var(--tc);
  color: var(--on);
  box-shadow: inset 0 -3px 0 var(--tc2);
  font: 600 10.5px / 1 var(--sans);
  letter-spacing: 0.03em;
  vertical-align: middle;
}
.mark-m {
  min-width: 38px;
  height: 22px;
  font-size: 11.5px;
  box-shadow: inset 0 -3.5px 0 var(--tc2);
}
.mark-l {
  min-width: 48px;
  height: 28px;
  font-size: 13px;
  box-shadow: inset 0 -4px 0 var(--tc2);
}
.pos {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.pos.QB {
  color: var(--qb);
}
.pos.RB {
  color: var(--rb);
}
.pos.WR {
  color: var(--wr);
}
.pos.TE {
  color: var(--te);
}
.pos.FLEX {
  color: var(--ink);
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.status .ic {
  width: 14px;
  height: 14px;
}
.status-unavailable {
  color: var(--red);
}
.status-uncertain,
.status-watch {
  color: var(--muted);
}
.identity {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.identity > span {
  min-width: 0;
}
.identity strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.identity .meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin-top: 2px;
}

/* Lead: the story beside the first chart */
.lead {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 48px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink);
}
.kicker {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--red);
  margin: 0 0 8px;
}
.story {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 22px;
  align-items: start;
}
.story-pic {
  position: relative;
  height: 130px;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--tc) 0 82%, var(--tc2) 82% 100%);
  display: grid;
  place-items: center;
}
.story-text h1 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.1;
  margin-bottom: 12px;
}
.story h1 a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.dek {
  font-family: var(--serif);
  font-size: 17.5px;
  line-height: 1.45;
  color: var(--text);
  max-width: 36em;
  text-wrap: pretty;
}
.byline {
  font-size: 13px;
  color: var(--muted);
  max-width: 44em;
}
.byline b {
  color: var(--ink);
}
.story-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 14px 0 0;
}
.story-links a {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-weight: 600;
  color: var(--red);
}
.story-links a + a {
  color: var(--muted);
}

/* Charts */
.chart {
  margin: 0;
  min-width: 0;
}
.chart h2 {
  font-size: 21px;
  margin-bottom: 6px;
}
.chart figcaption p {
  font-size: 13px;
  color: var(--muted);
  max-width: 62em;
  text-wrap: pretty;
}
.chart svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.chart svg.narrow {
  display: none;
}
.chart.strip {
  margin: 12px 0 6px;
}
.chart.strip svg {
  max-width: 420px;
}
.rangebar {
  display: block;
  overflow: visible;
}
.show-all {
  display: none;
}
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 12px;
  color: var(--text);
  margin: 4px 0 10px;
}
.legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.swatch {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.key-dot {
  background: var(--muted);
}
.key-bar {
  width: 18px;
  height: 6px;
  border-radius: 3px;
  background: #cfccc2;
}
.key-tick {
  width: 2px;
  height: 12px;
  border-radius: 0;
  background: var(--ink);
}
.hit {
  cursor: default;
  outline-offset: -2px;
}
.tip {
  position: fixed;
  z-index: 10;
  max-width: 280px;
  padding: 8px 11px;
  background: #1f1e1b;
  color: #f3f1ea;
  font-size: 12.5px;
  line-height: 1.45;
  border-radius: 4px;
  pointer-events: none;
}
.chart-table {
  margin-top: 6px;
  font-size: 12.5px;
}
.chart-table summary {
  cursor: pointer;
  color: var(--muted);
  font-weight: 600;
}
.chart-table table {
  margin-top: 8px;
}
.analysis {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}

/* Sections: the file and the games */
.file,
.slate {
  padding: 26px 0 22px;
  border-bottom: 1px solid var(--rule);
}
.sectionbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 8px 22px;
  margin-bottom: 12px;
}
.sectionbar h2 {
  font-size: 26px;
  margin: 0;
}
.file-summary {
  font-family: var(--serif);
  font-size: 15.5px;
  color: var(--muted);
  margin: 0 0 3px;
  text-wrap: pretty;
}
.search {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 240px;
}
.search .ic {
  position: absolute;
  left: 8px;
  color: var(--muted);
}
.search input {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 6px 10px 6px 30px;
  font-size: 13.5px;
  color: var(--ink);
}
.search input::placeholder {
  color: #9a978e;
}
.filters {
  display: inline-flex;
  gap: 0;
  margin-bottom: 10px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
}
.filters button {
  background: transparent;
  border: 0;
  border-right: 1px solid var(--rule);
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
}
.filters button:last-child {
  border-right: 0;
}
.filters button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
}
.briefs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  column-gap: 28px;
}
.brief {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 0 16px;
  border-top: 1px solid var(--rule);
  color: var(--text);
}
.brief:hover {
  color: var(--text);
}
.brief:hover p {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.brief p {
  font-family: var(--serif);
  font-size: 16.5px;
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
.brief-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  font-size: 12px;
  color: var(--muted);
}
.empty {
  padding: 20px 0;
  color: var(--muted);
}
.games {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(262px, 1fr));
  gap: 14px;
}
.game {
  border: 1px solid var(--rule);
  border-radius: 5px;
  background: var(--white);
  overflow: hidden;
}
.game-band {
  height: 4px;
  background: linear-gradient(90deg, var(--a) 0 50%, var(--h) 50% 100%);
}
.game header {
  padding: 10px 12px 8px;
  border-bottom: 1px solid var(--rule-light);
}
.game .teams {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.game .at {
  color: var(--muted);
  font-size: 12px;
  margin: 0 2px;
}
.game .when {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: none;
  font-size: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.game-top {
  list-style: none;
  margin: 0;
  padding: 4px 12px;
}
.game-top li {
  border-bottom: 1px solid var(--rule-light);
}
.game-top li:last-child {
  border-bottom: 0;
}
.game-top a,
.game-top > li > span {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
}
.game-top .who {
  min-width: 0;
}
.game-top .who strong {
  display: block;
  font-size: 13.5px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-top .who .meta {
  display: block;
  font-size: 11.5px;
}
.game-top b {
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}
.game footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px 9px;
  font-size: 11.5px;
  border-top: 1px solid var(--rule-light);
}
.game footer .when {
  color: var(--ink);
  font-weight: 600;
  font-size: 12.5px;
}

/* The record strip */
.record {
  padding: 26px 0 28px;
  border-bottom: 1px solid var(--ink);
  max-width: 64em;
}
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 36px;
  margin: 6px 0 14px;
}
.stats > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12.5px;
  color: var(--muted);
}
.figure {
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.record p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
}

/* Signup and footer */
.signup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
}
.signup h2 {
  font-size: 24px;
}
.signup > div > p {
  font-family: var(--serif);
  font-size: 16px;
}
.fine {
  font-size: 12px;
  color: var(--muted);
}
.signup label {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 4px;
}
.fields {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.fields input {
  flex: 1 1 220px;
  padding: 9px 12px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}
.fields button {
  padding: 9px 16px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
}
.form-message {
  min-height: 1.4em;
  font-size: 13px;
  margin: 6px 0;
}
.sitefooter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 30px;
  padding: 18px 0 34px;
  font-size: 12.5px;
  color: var(--muted);
}
.sitefooter a {
  margin-left: 20px;
  color: var(--text);
}

/* Inner pages */
.page {
  padding: 24px 0 32px;
  border-bottom: 1px solid var(--rule);
}
.pagehead {
  margin-bottom: 14px;
}
.pagehead .kicker {
  color: var(--muted);
  margin-bottom: 4px;
}
.pagehead .dek {
  font-size: 16.5px;
  max-width: 48em;
  margin: 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 16px;
}
.breadcrumb .ic {
  width: 12px;
  height: 12px;
}
.breadcrumb a {
  color: var(--text);
}
.profile-head {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 22px;
  align-items: end;
  margin-bottom: 18px;
}
.profile-pic {
  height: 130px;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--tc) 0 82%, var(--tc2) 82% 100%);
  display: grid;
  place-items: center;
}
.profile-id {
  padding-bottom: 4px;
}
.club {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 6px;
}
.profile-id h1 {
  font-size: clamp(30px, 3.6vw, 40px);
  margin: 0 0 6px;
}
.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 6px;
}
.roster {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--red);
  font-weight: 600;
}
.matchup {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
}
.matchup .ic {
  color: var(--muted);
}
.caution {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 13.5px;
  padding: 10px 12px;
  border-left: 3px solid var(--red);
  background: var(--tint);
  margin-bottom: 18px;
}
.caution .ic {
  color: var(--red);
  margin-top: 2px;
}
.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 48px;
  align-items: start;
}
.research .lead {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.28;
  color: var(--ink);
  padding: 6px 0 4px;
  border: 0;
}
.research h2.lead {
  margin-bottom: 8px;
}
.prose {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  max-width: 40em;
}
.read-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin: 14px 0 3px;
}
.cite {
  font-size: 10.5px;
  font-weight: 600;
  vertical-align: super;
  margin-left: 3px;
  color: var(--red);
}
.watch {
  margin: 18px 0;
  padding: 12px 14px;
  border-left: 3px solid var(--ink);
  background: var(--tint);
}
.watch strong {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  margin-bottom: 4px;
}
.watch p {
  font-family: var(--serif);
  font-size: 16px;
  margin: 0;
}
.sources {
  margin-top: 20px;
  border-top: 1px solid var(--rule);
  padding-top: 14px;
}
.sources h3 {
  font-size: 15px;
  margin-bottom: 6px;
}
.source {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: start;
  padding: 9px 0;
  border-bottom: 1px solid var(--rule-light);
  font-size: 13.5px;
  line-height: 1.4;
}
.source .publisher {
  display: block;
  font-weight: 600;
  color: var(--ink);
}
.source .meta {
  display: block;
  margin-top: 2px;
}
.source .ic {
  color: var(--muted);
  margin-top: 2px;
}
.forecast {
  padding: 16px 0 0;
  border-top: 2px solid var(--ink);
}
.number {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 6px 0 8px;
  font-variant-numeric: tabular-nums;
}
.number small {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}
.range {
  font-size: 19px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.range .meta {
  font-weight: 400;
  font-size: 12.5px;
  margin-left: 6px;
}
.rank-line {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--text);
}
.note {
  font-size: 13.5px;
  color: var(--text);
  margin-top: 8px;
}
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 6px;
}

/* Toolbar and tables */
.toolbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  margin-bottom: 4px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.toolbar .filters {
  margin: 0;
}
.toolbar .search {
  min-width: 220px;
  max-width: 320px;
}
.count {
  margin-left: auto;
  font-size: 12.5px;
  color: var(--muted);
  white-space: nowrap;
}
.table-wrap {
  overflow-x: auto;
  margin-bottom: 12px;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  font-variant-numeric: tabular-nums;
}
th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 10px 6px 0;
  border-bottom: 1px solid var(--ink);
  vertical-align: bottom;
  white-space: nowrap;
}
th.num,
td.num {
  text-align: right;
}
td {
  padding: 7px 10px 7px 0;
  border-bottom: 1px solid var(--rule-light);
  vertical-align: middle;
}
.rankno {
  width: 56px;
  white-space: nowrap;
}
.rankno .pos {
  display: block;
  line-height: 1;
}
.rk-flex {
  display: none;
}
.rank-table.flex-ranks .rk-pos {
  display: none;
}
.rank-table.flex-ranks .rk-flex {
  display: block;
}
.rankno b {
  font-size: 14px;
}
.rank-player {
  min-width: 220px;
}
.rank-research {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 5px 0 0 42px;
  font-family: var(--serif);
  font-size: 14.5px;
  line-height: 1.3;
  color: var(--text);
}
.rank-research .status {
  font-family: var(--sans);
  flex: none;
}
.rank-research:hover span:last-child {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.rank-when {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.rank-range {
  width: 132px;
  white-space: nowrap;
}
.rank-range .meta {
  display: none;
  font-size: 12px;
}
td.num {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  width: 64px;
}
td.floor,
td.ceil {
  color: var(--muted);
}
td.plays {
  color: var(--muted);
  font-size: 12.5px;
}
.points {
  text-align: right;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
details {
  margin: 12px 0;
}
summary {
  cursor: pointer;
  font-weight: 600;
}
.unscored {
  columns: 3 220px;
  font-size: 13px;
  color: var(--text);
  margin-top: 8px;
}
.unscored div {
  break-inside: avoid;
  padding: 3px 0;
  display: flex;
  gap: 6px;
  align-items: center;
}
.show-more {
  display: block;
  width: 100%;
  margin: 4px 0 14px;
  padding: 9px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-weight: 600;
  color: var(--ink);
}
.show-more:hover {
  border-color: var(--ink);
}

/* Board: four position columns with starter tiers */
.board-tabs {
  display: none;
}
.board-note {
  font-size: 12.5px;
  color: var(--muted);
  max-width: 62em;
  margin: 0 0 10px;
}
.board-cols {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0 20px;
}
.col h2 {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 0;
  margin: 0;
  border-bottom: 1px solid var(--ink);
}
.col h2 .pos {
  font-size: 14px;
}
.col ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.col li {
  display: grid;
  grid-template-columns: 20px 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  padding: 5px 0;
  border-bottom: 1px solid var(--rule-light);
}
.col li.tier {
  display: block;
  padding: 10px 0 3px;
  border-bottom: 0;
}
.col .rk {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-align: right;
}
.col li a {
  min-width: 0;
}
.col li strong {
  display: block;
  font-size: 13px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.col li .meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  white-space: nowrap;
  overflow: hidden;
}
.col li .meta .pos {
  font-size: 10px;
}
.col .num {
  text-align: right;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.col .num small {
  display: block;
  font-size: 10.5px;
  font-weight: 400;
}

/* Archive */
.record-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 10px;
}
.receipt {
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: var(--tint);
  border-radius: 4px;
}
.downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
}
.download {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  padding: 4px 0;
  font-size: 13px;
}
.archive-table td:nth-child(3),
.archive-table td:nth-child(4) {
  font-weight: 600;
  color: var(--ink);
}

/* About */
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.method p {
  font-family: var(--serif);
  font-size: 16.5px;
  line-height: 1.55;
  max-width: 38em;
}
.method h2 {
  font-size: 20px;
  margin-top: 22px;
}
.method h2:first-child {
  margin-top: 0;
}
.intro {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  max-width: 40em;
}
.review-row {
  padding: 24px 0;
  border-top: 1px solid var(--rule);
}
.ref {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  word-break: break-all;
}

.view-switch {
  display: inline-flex;
  border: 1px solid var(--ink);
  border-radius: 4px;
  overflow: hidden;
}
.view-switch a {
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  border-right: 1px solid var(--ink);
}
.view-switch a:last-child {
  border-right: 0;
}
.view-switch a[aria-current="page"] {
  background: var(--ink);
  color: var(--paper);
}
.board-toolbar {
  position: static;
  border-bottom: 0;
  margin-bottom: 8px;
}
.research h2.lead {
  font-size: 26px;
}

/* Prototype switcher, preview builds only */
.proto-switch {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 6px 5px 12px;
  background: #1f1e1b;
  color: #cfccc2;
  border-radius: 999px;
  font-size: 12.5px;
  box-shadow: 0 6px 20px rgb(0 0 0 / 0.25);
}
.proto-switch a {
  padding: 5px 11px;
  border-radius: 999px;
  color: #f3f1ea;
  font-weight: 600;
}
.proto-switch a[aria-current="true"] {
  background: #f3f1ea;
  color: #1f1e1b;
}

@media (max-width: 1120px) {
  .board-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .lead,
  .profile-grid,
  .signup,
  .record-grid,
  .method-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .sectionbar {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .topbar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    padding: 12px 0 10px;
  }
  .topbar nav {
    justify-content: center;
    gap: 18px;
  }
  .edition {
    display: none;
  }
  .forecast {
    border-top: 1px solid var(--ink);
  }
  .board-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .chart svg.wide {
    display: none;
  }
  .chart svg.narrow {
    display: block;
  }
  .rank-table thead {
    display: none;
  }
  .rank-table tr {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    grid-template-areas:
      "rank player points"
      "rank range range";
    column-gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--rule-light);
  }
  .rank-table td {
    display: block;
    padding: 0;
    border: 0;
    width: auto;
    min-width: 0;
  }
  .rank-table td.rankno {
    grid-area: rank;
  }
  .rank-table td.rank-player {
    grid-area: player;
  }
  .rank-table td.rank-range {
    grid-area: range;
    margin-top: 5px;
  }
  .rank-table td.rank-range .meta {
    display: inline-block;
    margin-left: 8px;
    vertical-align: 2px;
  }
  .rank-table td.points {
    grid-area: points;
  }
  .rank-table td.rank-when,
  .rank-table td.floor,
  .rank-table td.ceil,
  .rank-table td.plays {
    display: none;
  }
  .rank-research {
    margin-left: 0;
    font-size: 14px;
  }
  .board-tabs {
    display: flex;
    border: 1px solid var(--rule);
    border-radius: 4px;
    overflow: hidden;
    background: var(--white);
    margin-bottom: 10px;
  }
  .board-tabs button {
    flex: 1;
    border: 0;
    border-right: 1px solid var(--rule);
    background: transparent;
    padding: 7px 0;
    font-size: 12.5px;
    font-weight: 600;
  }
  .board-tabs button:last-child {
    border-right: 0;
  }
  .board-tabs button[aria-selected="true"] {
    background: var(--ink);
    color: var(--paper);
  }
  .board-cols {
    grid-template-columns: 1fr;
  }
  .board-cols[data-active="QB"] .col:not([data-board="QB"]),
  .board-cols[data-active="RB"] .col:not([data-board="RB"]),
  .board-cols[data-active="WR"] .col:not([data-board="WR"]),
  .board-cols[data-active="TE"] .col:not([data-board="TE"]),
  .board-cols[data-active="FLEX"] .col:not([data-board="FLEX"]) {
    display: none;
  }
  .toolbar {
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 0;
  }
  .toolbar .search {
    flex: 1 1 100%;
    max-width: none;
    order: 3;
  }
  .proto-switch span {
    display: none;
  }
  .proto-switch {
    padding-left: 6px;
  }
}
@media (max-width: 560px) {
  .wrap {
    width: calc(100% - 28px);
  }
  .briefs:not(.expanded) .brief:nth-child(n + 13) {
    display: none;
  }
  .briefs:not(.expanded) + .show-all {
    display: block;
    width: 100%;
    margin: 4px 0 12px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--ink);
    border-radius: 4px;
    font-weight: 600;
    color: var(--ink);
  }
  .lead {
    padding-top: 20px;
  }
  .story {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .story-pic {
    width: 168px;
  }
  .briefs {
    grid-template-columns: 1fr;
  }
  .profile-head {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }
  .profile-pic {
    width: 168px;
  }
  .sitefooter a {
    margin-left: 0;
    margin-right: 18px;
  }
  .stats {
    gap: 12px 24px;
  }
  .figure {
    font-size: 28px;
  }
  .topbar nav a {
    font-size: 13px;
  }
  .games {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
