@charset "UTF-8";
/* One visual language: blue field, white paper, quiet typography. */
:root {
  --blue: #086bf5;
  --navy: #082750;
  --paper: #fff;
  --wash: #f5f7fa;
  --line: #dde3eb;
  --muted: #788497;
  --green: #00874d;
  --red: #d65350;
  --font: Arial, "Helvetica Neue", "Microsoft YaHei", "PingFang SC", sans-serif;
  --mono: "Cascadia Mono", Consolas, monospace;
  --gutter: clamp(24px, 4.5vw, 88px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--paper);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
  cursor: pointer;
}
button {
  border: 0;
  background: none;
}
button:disabled {
  cursor: default;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 5px;
}
body.is-home .site-header :focus-visible {
  outline-color: white;
}
::selection {
  color: white;
  background: var(--blue);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 650;
  letter-spacing: -0.045em;
}
p {
  line-height: 1.8;
}
svg {
  display: block;
}
button svg {
  pointer-events: none;
}
[hidden] {
  display: none !important;
}
.mono {
  font-family: var(--mono);
  letter-spacing: 0.06em;
}
.muted {
  color: var(--muted);
}
.blue {
  color: var(--blue);
}
.arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
a:hover .arrow,
button:hover .arrow {
  transform: translate(4px, -4px);
}
.arrow svg {
  width: 22px;
  height: 22px;
}
.skip-link {
  position: fixed;
  top: -60px;
  left: 20px;
  background: white;
  padding: 14px;
  z-index: 100;
}
.skip-link:focus {
  top: 14px;
}
.site-header {
  height: 94px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  background: white;
  position: relative;
  z-index: 30;
}
.wordmark {
  display: flex;
  gap: 13px;
  align-items: center;
  font-size: 21px;
  letter-spacing: -0.04em;
  font-weight: 700;
  flex-shrink: 0;
}
.brand-symbol {
  font-family: Arial, sans-serif;
  font-size: 45px;
  line-height: 1;
  font-weight: 400;
}
.brand-edition {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  margin-top: 5px;
  font-weight: 400;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 40px);
  font-size: 13px;
}
.desktop-nav a {
  position: relative;
  padding: 36px 0;
  color: #657185;
  transition: color 0.2s;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--navy);
}
.desktop-nav a[aria-current="page"]:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--blue);
  border-radius: 50%;
  left: 50%;
  bottom: 21px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.motion-toggle {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.motion-icon {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 15px;
}
.motion-icon i {
  height: 11px;
  width: 2px;
  background: currentColor;
  animation: equalizer 1.2s ease-in-out infinite alternate;
}
.motion-icon i:nth-child(2) {
  height: 17px;
  animation-delay: -0.4s;
}
.motion-icon i:nth-child(3) {
  height: 8px;
  animation-delay: -0.7s;
}
.motion-toggle[aria-pressed="true"] i {
  animation: none;
  height: 10px;
}
.menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}
.is-home .site-header {
  background: var(--blue);
  color: white;
  border-color: #ffffff26;
}
.is-home .desktop-nav a {
  color: #c5dcff;
}
.is-home .desktop-nav a:hover {
  color: white;
}
.is-home .motion-toggle {
  border-color: #ffffff50;
}
.site-footer {
  padding: 35px var(--gutter);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}
.site-footer > div {
  display: flex;
  gap: 26px;
  align-items: center;
}
.footer-sign {
  color: var(--navy);
  font-weight: 600;
}
.footer-edition {
  font: 10px var(--mono);
}
main {
  min-height: calc(100svh - 181px);
  outline: none;
}
.loading {
  min-height: 65vh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 20px;
  color: var(--blue);
}
.loading p {
  font-size: 14px;
}
.page {
  max-width: 1600px;
  margin: auto;
  padding: 72px var(--gutter) 100px;
  animation: page-in 0.65s var(--ease) both;
}
.page-head {
  margin-bottom: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.eyebrow {
  font: 10px var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 25px;
}
.page-head h1 {
  font-size: clamp(40px, 4.7vw, 72px);
  line-height: 1.19;
  font-weight: 650;
}
.page-head .intro {
  font-size: 14px;
  line-height: 1.9;
  color: #748092;
  margin-top: 22px;
  max-width: 550px;
}
.page-head .side-note {
  font: 11px/1.9 var(--mono);
  color: var(--muted);
  text-align: right;
  padding-bottom: 7px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--blue);
  font-size: 13px;
  line-height: 1.6;
}
.text-link .arrow svg {
  width: 16px;
  height: 16px;
}
.breadcrumb {
  display: flex;
  gap: 13px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 35px;
}
.breadcrumb a:hover {
  color: var(--blue);
}
.round-arrow {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.round-arrow svg {
  width: 18px;
  height: 18px;
}
.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 13px;
  transition:
    background 0.2s,
    color 0.2s;
}
.pill-button:hover {
  background: #eef4ff;
  border-color: #c7dafa;
}
.pill-button.primary {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.pill-button svg {
  width: 16px;
  height: 16px;
}
.top-line {
  border-top: 1px solid var(--line);
}
/* Opening: a single, spacious composition. */
.hero {
  position: relative;
  height: min(740px, calc(100svh - 190px));
  min-height: 550px;
  background: var(--blue);
  color: white;
  overflow: hidden;
  padding: 0 var(--gutter);
}
.hero-copy {
  position: absolute;
  left: var(--gutter);
  top: 50%;
  transform: translateY(-48%);
  z-index: 2;
  pointer-events: none;
}
.hero .eyebrow {
  color: #b9d5ff;
  font-size: 10px;
  letter-spacing: 0.19em;
  margin-bottom: 30px;
}
.hero h1 {
  font-size: clamp(64px, 6.7vw, 116px);
  line-height: 1.17;
  letter-spacing: -0.065em;
  font-weight: 650;
}
.hero h1 .hello {
  font-weight: 400;
  display: block;
  margin-bottom: 9px;
}
.hero h1 .last {
  display: block;
}
.hero-caption {
  margin-top: 35px;
  color: #c7dfff;
  font-size: 13px;
  letter-spacing: 0.015em;
}
.hero-art {
  position: absolute;
  right: 2%;
  top: 3%;
  width: 49%;
  height: 87%;
  opacity: 1;
}
.ascii-canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.logo-switch {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  border-radius: 12px;
}
.logo-switch:focus-visible {
  outline: 1px solid #ffffff95;
  outline-offset: -18px;
}
.logo-hint {
  color: #d7e8ff;
  letter-spacing: 0.08em;
}
.hero-foot {
  position: absolute;
  bottom: 27px;
  right: var(--gutter);
  display: flex;
  gap: 18px;
  align-items: center;
  color: #b9d5ff;
  font: 9px var(--mono);
  letter-spacing: 0.1em;
}
.art-play {
  border: 1px solid #ffffff60;
  border-radius: 50%;
  height: 28px;
  width: 28px;
  display: grid;
  place-items: center;
  color: #e6f0ff;
  font-size: 10px;
}
.hero-corner {
  position: absolute;
  bottom: 28px;
  left: var(--gutter);
  font: 9px var(--mono);
  color: #b9d5ff;
  letter-spacing: 0.12em;
}
.home-gateways {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1800px;
  margin: 0 auto;
}
.gateway {
  padding: 44px 0 42px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}
.gateway + .gateway {
  padding-left: 38px;
}
.gateway + .gateway:before {
  position: absolute;
  content: "";
  height: 46px;
  width: 1px;
  background: var(--line);
  left: 0;
  top: 45px;
}
.gateway .index {
  font: 10px var(--mono);
  color: #8b96a6;
  align-self: flex-start;
  margin-top: 7px;
}
.gateway strong {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.025em;
  display: block;
}
.gateway small {
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-top: 9px;
}
.gateway .arrow {
  margin-left: auto;
  margin-right: 36px;
}
.gateway:hover {
  color: var(--blue);
}
.home-statement {
  max-width: 1500px;
  margin: auto;
  padding: 110px var(--gutter) 115px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 100px;
}
.home-statement h2 {
  font-size: clamp(30px, 3.3vw, 50px);
  line-height: 1.35;
  letter-spacing: -0.05em;
}
.home-statement .eyebrow {
  margin-bottom: 22px;
}
.home-task {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  gap: 25px;
}
.home-task:first-child {
  padding-top: 0;
}
.home-task:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.home-task strong {
  font-size: 22px;
  font-weight: 500;
}
.home-task p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 9px;
}
.home-task .mini-canvas {
  width: 110px;
  height: 80px;
  flex-shrink: 0;
}
.home-task:hover .round-arrow {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
/* Prompt index and readable documents. */
.task-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.task-card {
  background: #f4f7fb;
  position: relative;
  overflow: hidden;
  padding: 38px 38px 0;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}
.task-card .card-kicker {
  font: 10px var(--mono);
  letter-spacing: 0.1em;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}
.task-card h2 {
  font-size: 38px;
  line-height: 1.3;
}
.task-card p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}
.task-art {
  height: 260px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.task-card-actions {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid #d6e1ef;
  margin-top: auto;
}
.task-card-actions a {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.task-card-actions a:hover {
  color: var(--blue);
}
.task-card:nth-child(2) {
  background: #edf3fc;
}
.prompt-hint {
  margin-top: 35px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
}
.prompt-hint a {
  color: var(--blue);
}
.document-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 780px);
  gap: 85px;
  align-items: start;
}
.document-aside {
  position: sticky;
  top: 38px;
}
.aside-label {
  font: 10px var(--mono);
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 18px;
}
.aside-link {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.aside-link.active {
  color: var(--blue);
}
.aside-foot {
  margin-top: 40px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}
.document-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}
.segmented {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: #f1f4f8;
  border-radius: 5px;
  width: max-content;
}
.segmented button,
.segmented a {
  padding: 10px 18px;
  border-radius: 3px;
  font-size: 12px;
  color: #7a8594;
  white-space: nowrap;
}
.segmented .active {
  background: white;
  color: var(--navy);
  box-shadow: 0 1px 4px #0020500b;
}
.toolbar-actions {
  display: flex;
  gap: 14px;
}
.icon-text {
  font-size: 12px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #6d7b8f;
  padding: 5px;
}
.icon-text svg {
  height: 15px;
  width: 15px;
}
.icon-text:hover {
  color: var(--blue);
}
.prose {
  font-size: 16px;
  line-height: 1.95;
  color: #344961;
  overflow-wrap: anywhere;
}
.prose p {
  margin: 0 0 22px;
  line-height: 1.95;
}
.prose h2 {
  font-size: 26px;
  margin: 42px 0 18px;
  color: var(--navy);
  font-weight: 600;
}
.prose h3 {
  font-size: 21px;
  margin: 35px 0 14px;
  color: var(--navy);
  font-weight: 600;
}
.prose ul,
.prose ol {
  padding-left: 23px;
  margin: 14px 0 28px;
}
.prose li {
  margin-bottom: 10px;
  padding-left: 4px;
}
.prose strong {
  font-weight: 600;
  color: var(--navy);
}
.prose code {
  font: 13px var(--mono);
  background: #f1f4f8;
  padding: 2px 4px;
}
.document-meta {
  margin-top: 45px;
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}
.document-next {
  margin-top: 40px;
  padding: 30px;
  background: #f5f8fe;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: var(--blue);
}
/* Archive / honest evidence. */
.filter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}
.search-field {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
}
.search-field svg {
  width: 17px;
  height: 17px;
}
.search-field input {
  width: 270px;
  border: 0;
  background: transparent;
  outline: none;
  padding: 8px 0;
  font-size: 13px;
  color: var(--navy);
}
input::placeholder {
  color: #8b96a6;
}
.quiet-select {
  background: transparent;
  border: 0;
  color: #728097;
  padding: 9px 24px 9px 5px;
  font-size: 12px;
  max-width: 100%;
}
.result-count {
  font: 10px var(--mono);
  letter-spacing: 0.06em;
  color: var(--muted);
}
.archive-row {
  display: grid;
  grid-template-columns: 45px 1fr 180px 150px 42px;
  align-items: center;
  gap: 30px;
  padding: 29px 5px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.archive-row:hover {
  background: #f8fafe;
}
.row-number {
  font: 11px var(--mono);
  color: var(--muted);
}
.archive-name {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}
.archive-name > div {
  min-width: 0;
}
.archive-series-mobile {
  display: none;
}
.archive-video-title {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.external-video-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.external-video-card .eyebrow {
  margin-bottom: 18px;
}
.external-video-card h2 {
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.6;
  font-weight: 500;
  max-width: 900px;
}
.external-video-card p {
  color: var(--blue);
  font-size: 13px;
  margin-top: 24px;
}
.external-video-card:hover .round-arrow {
  background: var(--blue);
  color: white;
}
.vendor-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--vendor) 20%, white);
  font: 500 16px var(--mono);
  color: var(--vendor);
  border-radius: 50%;
}
.archive-name h2 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.configuration {
  font: 10px var(--mono);
  letter-spacing: 0.025em;
  color: var(--muted);
  margin-top: 9px;
}
.archive-date {
  font: 11px var(--mono);
  color: #7d8898;
  line-height: 1.8;
}
.archive-score {
  font: 500 29px var(--font);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.archive-score small {
  font: 10px var(--mono);
  color: var(--muted);
  margin-left: 5px;
}
.archive-row:hover .round-arrow {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.archive-head-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 26px;
}
.meta-tag {
  font: 11px var(--mono);
  padding: 7px 10px;
  background: #f3f5f8;
  border-radius: 3px;
  color: #6d7b8f;
}
.model-total {
  text-align: right;
  font-size: 76px;
  letter-spacing: -0.06em;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.model-total small {
  display: block;
  font: 10px var(--mono);
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 15px;
}
.work-controls {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.work-controls .quiet-select {
  margin-left: auto;
}
.work-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 45px;
  align-items: start;
}
.video-frame {
  background: #edf2f9;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  border: 1px solid #e5ebf2;
}
.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  background: #091b33;
  object-fit: contain;
}
.evidence-absent {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #7b899c;
  padding: 25px;
  text-align: center;
}
.evidence-absent svg {
  height: 35px;
  width: 35px;
  stroke-width: 1;
}
.evidence-absent strong {
  font-size: 16px;
  font-weight: 500;
  color: #465d78;
}
.evidence-absent p {
  font-size: 12px;
}
.work-aside {
  padding-top: 7px;
}
.work-aside .eyebrow {
  margin-bottom: 16px;
}
.work-score {
  font-size: 58px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--vendor, var(--navy));
  font-variant-numeric: tabular-nums;
}
.work-score span {
  font: 11px var(--mono);
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 5px;
}
.verdict {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 28px;
  color: #526279;
}
.work-aside .text-link {
  margin-top: 30px;
}
.work-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-top: 16px;
  gap: 20px;
}
.section-title {
  margin: 70px 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.section-title h2 {
  font-size: 24px;
  font-weight: 500;
}
.section-title small {
  font-size: 11px;
  color: var(--muted);
}
.paper-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  text-align: left;
}
.paper-table th {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  border-bottom: 1px solid var(--line);
  padding: 15px 16px 15px 0;
}
.paper-table td {
  padding: 20px 16px 20px 0;
  border-bottom: 1px solid var(--line);
}
.paper-table td.score-cell {
  font: 16px var(--mono);
}
.paper-table button {
  font-size: 12px;
  color: var(--blue);
  padding: 5px;
}
.video-tabs {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.video-tabs a {
  font-size: 14px;
  padding: 16px 0;
  border-bottom: 2px solid transparent;
  color: var(--muted);
}
.video-tabs a.active {
  color: var(--blue);
  border-color: var(--blue);
}
.film-wrap {
  max-width: 1050px;
  margin: auto;
}
.film-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 23px;
  gap: 20px;
}
.film-meta h2 {
  font-size: 22px;
  font-weight: 500;
}
.film-meta p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}
/* Tables: restrained controls, precise geometry. */
.data-tabs {
  display: flex;
  gap: 34px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.data-tabs a,
.data-tabs button {
  font-size: 15px;
  padding: 18px 0;
  position: relative;
  color: var(--muted);
}
.data-tabs .active {
  color: var(--navy);
}
.data-tabs .active:after {
  content: "";
  height: 2px;
  background: var(--blue);
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}
.data-tabs .text-link {
  margin-left: auto;
  font-size: 12px;
  padding: 0;
  color: var(--blue);
}
.data-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 0;
  gap: 24px;
  min-height: 82px;
}
.data-controls > div {
  display: flex;
  align-items: center;
  gap: 20px;
}
.check-label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
  cursor: pointer;
}
.check-label input {
  accent-color: var(--blue);
}
.table-scroll {
  overflow-x: auto;
  overscroll-behavior-x: contain;
}
.leaderboard {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.leaderboard th {
  font: 10px var(--mono);
  color: var(--muted);
  letter-spacing: 0.04em;
  font-weight: 400;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.leaderboard th:last-child {
  text-align: right;
}
.leaderboard td {
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.leaderboard .rank {
  width: 7%;
  color: #8d97a5;
  font: 11px var(--mono);
}
.leaderboard .model-column {
  width: 33%;
  padding-right: 24px;
}
.model-cell {
  display: flex;
  align-items: center;
  gap: 14px;
}
.model-cell .dot {
  width: 6px;
  height: 6px;
  background: var(--vendor);
  border-radius: 50%;
  flex: none;
}
.model-cell a {
  font-size: 18px;
  letter-spacing: -0.025em;
  font-weight: 500;
}
.model-cell a:hover {
  color: var(--blue);
}
.model-cell .configuration {
  font-size: 10px;
  margin-top: 7px;
}
.bar-cell {
  width: 44%;
  padding-right: 50px !important;
}
.score-track {
  position: relative;
  height: 8px;
  background-image: radial-gradient(circle, #dce5f0 0.9px, transparent 1.1px);
  background-size: 5px 5px;
}
.score-fill {
  height: 100%;
  background: var(--vendor, var(--blue));
  width: var(--size);
  max-width: 100%;
  transform-origin: left;
  animation: bar-in 0.9s var(--ease) both;
  animation-delay: var(--delay, 0ms);
}
.leaderboard .score-value {
  text-align: right;
  font-size: 26px;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: var(--navy);
  width: 16%;
}
.round-legend {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 6px 0 20px;
  color: var(--muted);
  font-size: 11px;
}
.round-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.round-legend i {
  width: 16px;
  height: 5px;
  background: #617890;
}
.round-legend i.first {
  background: #d0d7de;
}
.round-legend .round-sort {
  margin-left: auto;
}
.dual-leaderboard .rank {
  width: 7%;
}
.dual-leaderboard .model-column {
  width: 33%;
}
.dual-bar-cell {
  width: 60%;
}
.dual-scale {
  display: flex;
  justify-content: space-between;
  margin-right: 90px;
}
.round-score {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 66px;
  gap: 24px;
  align-items: center;
  min-height: 21px;
}
.round-score + .round-score {
  margin-top: 9px;
}
.round-score .score-track {
  height: 7px;
}
.round-score.oneshot .score-fill {
  background: color-mix(in srgb, var(--vendor) 30%, white);
}
.round-value {
  font-size: 21px;
  line-height: 1;
  text-align: right;
  letter-spacing: -0.025em;
  color: var(--vendor);
}
.oneshot .round-value {
  color: #8290a0;
  font-size: 17px;
}
.score-reference {
  position: absolute;
  top: -4px;
  bottom: -4px;
  border-left: 1px dashed #08275065;
}
.range-mark {
  position: absolute;
  top: -9px;
  height: 10px;
  left: var(--low);
  width: var(--range);
  border: 1px solid var(--vendor);
  border-bottom: 0;
  pointer-events: none;
}
.range-label {
  position: absolute;
  left: var(--low);
  top: -25px;
  font: 9px var(--mono);
  color: #607084;
  white-space: nowrap;
}
.with-ranges .leaderboard td {
  padding-top: 31px;
  padding-bottom: 25px;
}
.table-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.9;
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
.table-note a {
  color: var(--blue);
}
.empty-state {
  padding: 60px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.empty-state button {
  display: block;
  color: var(--blue);
  font-size: 13px;
  margin: 18px auto 0;
}
.method-details {
  margin-top: 44px;
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.method-details summary {
  cursor: pointer;
  font-size: 13px;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.method-details summary:after {
  content: "＋";
  color: var(--muted);
}
.method-details[open] summary:after {
  content: "－";
}
.method-details .method-body {
  padding-top: 25px;
  color: var(--muted);
  font-size: 13px;
  max-width: 830px;
  line-height: 1.9;
}
.method-body p + p {
  margin-top: 12px;
}
.download-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
}
.download-link svg {
  width: 15px;
  height: 15px;
}
.gain-heading {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: end;
}
.gain-heading .intro {
  max-width: 380px;
}
.gain-heading h1 {
  font-size: clamp(40px, 4.3vw, 66px);
}
.gain-intro-art {
  height: 170px;
  width: 260px;
  justify-self: end;
}
.gain-legend {
  display: flex;
  gap: 20px;
  font-size: 11px;
  color: var(--muted);
  align-items: center;
}
.gain-legend span {
  display: flex;
  gap: 7px;
  align-items: center;
}
.gain-legend i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: block;
  background: var(--green);
}
.gain-legend i.negative {
  background: var(--red);
}
.gain-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.gain-table th {
  font: 10px var(--mono);
  font-weight: 400;
  color: var(--muted);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.gain-table th:last-child {
  text-align: right;
}
.gain-table td {
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}
.gain-table .model-column {
  width: 32%;
  padding-right: 24px;
}
.gain-table .gain-bar-cell {
  width: 47%;
  padding-right: 45px;
}
.gain-table .score-track {
  height: 9px;
}
.gain-table .score-fill {
  background: var(--gain-color);
}
.gain-value {
  font-size: 24px;
  letter-spacing: -0.04em;
  text-align: right;
  color: var(--gain-color);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  width: 21%;
}
.gain-value button {
  font: inherit;
  color: inherit;
  padding: 4px 0;
}
.gain-detail td {
  padding: 20px 28px;
  background: #f6f8fb;
  font-size: 12px;
  color: #708095;
}
.gain-detail-content {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.gain-detail-content strong {
  font: 18px var(--mono);
  color: var(--navy);
  display: block;
  margin-top: 9px;
}
.gain-row {
  cursor: pointer;
}
.gain-row:hover {
  background: #fafbfd;
}
.gain-scale {
  display: flex;
  justify-content: space-between;
  padding-right: 45px;
}
.gain-description {
  max-width: 550px;
}
.gain-tools {
  padding: 0 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Chronicle: exact axes, inspectable points. */
.history-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 25px;
  gap: 20px;
}
.history-date {
  font: 11px var(--mono);
  color: var(--muted);
}
.history-plot {
  background: #f7f9fc;
  position: relative;
  padding: 24px 15px 6px;
  border: 1px solid #edf0f5;
  overflow-x: auto;
}
.history-plot svg {
  width: 100%;
  min-width: 680px;
  height: auto;
  overflow: visible;
}
.history-plot text {
  font-family: var(--font);
  fill: #7d8ba0;
  font-size: 11px;
}
.history-plot .model-label {
  font-size: 12px;
  fill: var(--vendor);
  font-weight: 500;
}
.history-point {
  cursor: pointer;
  outline: none;
}
.history-point circle {
  transition:
    opacity 0.2s,
    stroke-width 0.2s;
}
.history-point:hover .point-halo,
.history-point:focus-visible .point-halo,
.history-point.selected .point-halo {
  opacity: 0.17;
}
.point-halo {
  opacity: 0;
  fill: var(--vendor);
}
.history-point.selected .model-label {
  font-weight: 700;
}
.history-point .point-core {
  fill: var(--vendor);
  stroke: white;
  stroke-width: 2;
}
.history-selection {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.history-selection h2 {
  font-size: 23px;
  font-weight: 500;
}
.history-selection .configuration {
  font-size: 10px;
}
.history-fact > small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 10px;
}
.history-fact strong {
  font: 20px var(--mono);
  letter-spacing: -0.03em;
  font-weight: 400;
}
.source-details {
  font-size: 12px;
  color: var(--muted);
  margin-top: 22px;
  line-height: 1.9;
}
.source-details summary {
  cursor: pointer;
  display: inline-block;
  color: #63738a;
}
.source-details .source-content {
  padding-top: 16px;
  overflow-wrap: anywhere;
  max-width: 1000px;
}
.source-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.history-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.9;
  margin-top: 24px;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
}
.about-title {
  font-size: 58px;
  line-height: 1.2;
  position: sticky;
  top: 50px;
}
.about-layout .prose {
  font-size: 15px;
}
.about-layout .prose h2:first-child {
  margin-top: 0;
}
.about-layout .prose h2 {
  font-size: 25px;
}
.about-metric {
  font: 48px var(--mono);
  color: var(--blue);
  padding: 20px 0;
}
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--navy);
  color: white;
  padding: 13px 22px;
  border-radius: 5px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s,
    transform 0.25s;
  z-index: 90;
  max-width: calc(100% - 40px);
  text-align: center;
}
.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.noscript {
  padding: 40px;
}
.not-found {
  padding: 100px var(--gutter);
  text-align: center;
}
.not-found h1 {
  font-size: 60px;
  margin-bottom: 25px;
}
.not-found p {
  color: var(--muted);
  margin-bottom: 30px;
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.range-toggle-row {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  margin: 0 0 13px;
  min-height: 18px;
}
.range-toggle-row > span {
  font-size: 10px;
  color: var(--muted);
}
.prose pre {
  overflow: auto;
  padding: 20px;
  background: #f3f6fa;
  border-radius: 4px;
}
.history-point {
  pointer-events: bounding-box;
}
.headline-chunk {
  display: inline-block;
}
.skip-link {
  top: 10px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link:focus {
  top: 10px;
  width: auto;
  height: auto;
  clip-path: none;
  padding: 14px;
}
@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bar-in {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes equalizer {
  to {
    transform: scaleY(0.4);
  }
}
@media (min-width: 1800px) {
  .hero-copy {
    left: calc((100vw - 1630px) / 2);
  }
  .hero {
    max-height: 850px;
    height: calc(100svh - 230px);
  }
  .hero-art {
    right: 3%;
    width: 49%;
  }
  .hero h1 {
    font-size: 124px;
  }
}
@media (max-width: 1100px) {
  .site-header {
    height: 80px;
    gap: 18px;
  }
  .desktop-nav {
    gap: 21px;
    font-size: 12px;
  }
  .wordmark {
    font-size: 18px;
    gap: 9px;
  }
  .brand-symbol {
    font-size: 38px;
  }
  .brand-edition {
    font-size: 8px;
  }
  .desktop-nav a {
    padding: 28px 0;
  }
  .hero {
    height: 620px;
    min-height: 550px;
  }
  .hero h1 {
    font-size: 76px;
  }
  .hero-art {
    width: 48%;
    right: 1%;
    top: 8%;
  }
  .hero-caption {
    font-size: 12px;
  }
  .page {
    padding-top: 55px;
  }
  .gateway + .gateway {
    padding-left: 22px;
  }
  .gateway .index {
    display: none;
  }
  .gateway strong {
    font-size: 18px;
  }
  .gateway .arrow {
    margin-right: 15px;
  }
  .home-statement {
    gap: 55px;
  }
  .document-layout {
    gap: 45px;
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .work-layout {
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 30px;
  }
  .archive-row {
    grid-template-columns: 30px 1fr 135px 100px 36px;
    gap: 20px;
  }
  .archive-name h2 {
    font-size: 21px;
  }
  .bar-cell {
    padding-right: 30px !important;
  }
  .model-cell a {
    font-size: 16px;
  }
  .leaderboard .score-value {
    font-size: 23px;
  }
  .about-layout {
    gap: 60px;
  }
  .about-title {
    font-size: 46px;
  }
}
@media (max-width: 780px) {
  :root {
    --gutter: 25px;
  }
  .site-header {
    height: 76px;
  }
  .desktop-nav {
    display: none;
  }
  .header-actions {
    gap: 20px;
  }
  .motion-toggle {
    width: 32px;
    height: 32px;
  }
  .menu-toggle {
    display: flex;
    gap: 14px;
    align-items: center;
    font-size: 12px;
    padding: 8px 0;
  }
  .menu-toggle span {
    font-size: 18px;
  }
  .mobile-menu:not([hidden]) {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 76px 0 auto;
    background: white;
    z-index: 29;
    padding: 16px var(--gutter) 30px;
    box-shadow: 0 24px 30px #08275010;
  }
  .mobile-menu a {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
  }
  .mobile-menu a span {
    font: 11px var(--mono);
    color: var(--muted);
  }
  .hero {
    height: 720px;
    min-height: 0;
  }
  .hero-copy {
    top: auto;
    transform: none;
    bottom: 76px;
  }
  .hero h1 {
    font-size: clamp(48px, 8.5vw, 67px);
    line-height: 1.22;
    letter-spacing: -0.065em;
  }
  .hero h1 .hello {
    margin-bottom: 8px;
  }
  .hero .eyebrow {
    font-size: 8px;
    margin-bottom: 22px;
  }
  .hero-caption {
    margin-top: 25px;
    max-width: 260px;
    font-size: 11px;
  }
  .hero-art {
    width: calc(100% - var(--gutter) * 2);
    height: 305px;
    right: var(--gutter);
    top: 10px;
  }
  .hero-foot {
    font-size: 8px;
    bottom: 24px;
  }
  .hero-corner {
    display: none;
  }
  .home-gateways {
    grid-template-columns: 1fr;
  }
  .gateway {
    padding: 25px 0 !important;
    border-bottom: 1px solid var(--line);
    gap: 23px;
  }
  .gateway + .gateway:before {
    display: none;
  }
  .gateway .index {
    display: block;
    margin-top: 4px;
    font-size: 9px;
  }
  .gateway strong {
    font-size: 18px;
  }
  .gateway small {
    font-size: 10px;
    margin-top: 6px;
  }
  .gateway .arrow {
    margin: 0 0 0 auto;
  }
  .home-statement {
    padding-top: 65px;
    padding-bottom: 65px;
    grid-template-columns: 1fr;
    gap: 45px;
    border-top: 0;
  }
  .home-statement h2 {
    font-size: 34px;
  }
  .home-task strong {
    font-size: 18px;
  }
  .home-task .mini-canvas {
    width: 75px;
    height: 62px;
  }
  .home-task {
    gap: 15px;
  }
  .home-task .round-arrow {
    display: none;
  }
  .home-task p {
    font-size: 11px;
  }
  .site-footer {
    padding-top: 30px;
    padding-bottom: 30px;
    flex-wrap: wrap;
    font-size: 10px;
    gap: 18px;
  }
  .site-footer > span {
    margin-left: auto;
  }
  .site-footer > div {
    width: 100%;
    justify-content: space-between;
    margin-top: 7px;
  }
  .page {
    padding: 44px var(--gutter) 65px;
  }
  .page-head {
    margin-bottom: 38px;
    align-items: flex-start;
    gap: 20px;
  }
  .page-head h1 {
    font-size: 39px;
  }
  .page-head .intro {
    font-size: 12px;
    margin-top: 18px;
  }
  .page-head .side-note {
    display: none;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .task-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .task-card {
    min-height: 405px;
    padding: 27px 27px 0;
  }
  .task-card h2 {
    font-size: 33px;
  }
  .task-art {
    height: 230px;
  }
  .task-card p {
    font-size: 12px;
  }
  .task-card .card-kicker {
    font-size: 9px;
  }
  .document-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .document-aside {
    position: static;
    display: flex;
    gap: 25px;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }
  .document-aside .aside-label,
  .document-aside .aside-foot {
    display: none;
  }
  .aside-link {
    border: 0;
    font-size: 12px;
    padding: 0 0 15px;
  }
  .document-toolbar {
    gap: 8px;
    margin-bottom: 28px;
  }
  .segmented button,
  .segmented a {
    padding: 9px 12px;
    font-size: 11px;
  }
  .toolbar-actions {
    gap: 6px;
  }
  .icon-text {
    font-size: 11px;
    gap: 5px;
  }
  .prose {
    font-size: 15px;
  }
  .prose h3 {
    font-size: 20px;
  }
  .document-next {
    font-size: 14px;
    padding: 23px;
  }
  .document-meta {
    font-size: 10px;
    flex-wrap: wrap;
  }
  .breadcrumb {
    font-size: 11px;
    margin-bottom: 28px;
  }
  .search-field input {
    width: 175px;
    font-size: 12px;
  }
  .archive-row {
    grid-template-columns: 1fr 82px 25px;
    gap: 12px;
    padding: 25px 0;
  }
  .archive-row > .row-number,
  .archive-date {
    display: none;
  }
  .archive-name {
    gap: 12px;
  }
  .archive-name h2 {
    font-size: 18px;
  }
  .archive-series-mobile {
    display: inline;
  }
  .vendor-mark {
    width: 29px;
    height: 29px;
    font-size: 13px;
  }
  .archive-score {
    font-size: 25px;
  }
  .archive-score small {
    font-size: 9px;
    display: block;
    margin: 5px 0 0;
  }
  .archive-row .round-arrow {
    border: 0;
    width: 24px;
    height: 30px;
  }
  .configuration {
    font-size: 9px;
    margin-top: 7px;
  }
  .model-total {
    font-size: 45px;
  }
  .model-total small {
    font-size: 8px;
    max-width: 120px;
    line-height: 1.6;
    margin-top: 9px;
  }
  .archive-detail .page-head h1 {
    font-size: 33px;
  }
  .archive-head-meta {
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 19px;
  }
  .meta-tag {
    font-size: 9px;
    padding: 6px 7px;
  }
  .work-controls {
    gap: 15px;
    justify-content: space-between;
  }
  .work-controls .quiet-select {
    margin-left: 0;
    font-size: 11px;
  }
  .work-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .work-aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: center;
  }
  .work-aside .eyebrow {
    display: none;
  }
  .work-score {
    font-size: 41px;
    grid-row: 1/3;
  }
  .verdict {
    font-size: 12px;
    line-height: 1.8;
    margin-top: 0;
  }
  .work-aside .text-link {
    margin: 0;
    font-size: 11px;
  }
  .work-meta {
    font-size: 10px;
    line-height: 1.7;
  }
  .section-title {
    margin-top: 48px;
  }
  .section-title h2 {
    font-size: 21px;
  }
  .paper-table th {
    font-size: 10px;
    white-space: nowrap;
  }
  .paper-table {
    font-size: 12px;
  }
  .paper-table td,
  .paper-table th {
    padding-right: 8px;
  }
  .paper-table td.score-cell {
    font-size: 13px;
  }
  .data-tabs {
    gap: 23px;
  }
  .data-tabs button,
  .data-tabs a {
    font-size: 13px;
    padding: 15px 0;
  }
  .data-tabs .text-link {
    display: none;
  }
  .data-controls {
    padding: 18px 0;
    gap: 12px;
    flex-wrap: wrap;
    min-height: 75px;
  }
  .data-controls > div {
    gap: 10px;
  }
  .check-label {
    font-size: 10px;
  }
  .download-link {
    font-size: 10px;
  }
  .leaderboard {
    min-width: 570px;
  }
  .leaderboard td {
    padding: 20px 0;
  }
  .leaderboard .model-column {
    width: 43%;
  }
  .leaderboard .bar-cell {
    width: 30%;
    padding-right: 24px !important;
  }
  .leaderboard th {
    font-size: 9px;
  }
  .leaderboard .score-value {
    font-size: 22px;
  }
  .model-cell a {
    font-size: 15px;
  }
  .model-cell {
    gap: 9px;
  }
  .model-cell .configuration {
    font-size: 9px;
  }
  .table-note {
    font-size: 10px;
    flex-direction: column;
    gap: 6px;
  }
  .method-details {
    margin-top: 30px;
  }
  .gain-heading {
    display: block;
  }
  .gain-intro-art {
    display: none;
  }
  .gain-table {
    min-width: 555px;
  }
  .gain-table .model-column {
    width: 42%;
    padding-right: 18px;
  }
  .gain-table .gain-bar-cell {
    width: 34%;
    padding-right: 20px;
  }
  .gain-scale {
    padding-right: 20px;
  }
  .gain-value {
    font-size: 21px;
  }
  .gain-table td {
    padding: 19px 0;
  }
  .gain-legend {
    font-size: 10px;
    gap: 13px;
  }
  .gain-tools {
    gap: 12px;
  }
  .gain-detail-content {
    gap: 18px;
  }
  .gain-detail-content strong {
    font-size: 15px;
  }
  .history-tools {
    gap: 12px;
    align-items: flex-start;
  }
  .history-date {
    font-size: 9px;
    line-height: 1.8;
    padding-top: 8px;
  }
  .history-plot {
    margin: 0 calc(-1 * var(--gutter));
    padding: 20px 10px 0;
    border: 0;
  }
  .history-selection {
    grid-template-columns: 1fr 1fr;
    padding: 25px 0;
    gap: 25px;
  }
  .history-selection > div:first-child {
    grid-column: 1/-1;
  }
  .history-selection h2 {
    font-size: 22px;
  }
  .history-fact strong {
    font-size: 19px;
  }
  .history-note {
    font-size: 10px;
  }
  .source-details {
    font-size: 11px;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-title {
    position: static;
    font-size: 40px;
  }
  .about-layout .prose {
    font-size: 14px;
  }
  .video-tabs {
    gap: 25px;
    overflow-x: auto;
  }
  .video-tabs a {
    white-space: nowrap;
    font-size: 12px;
  }
  .film-meta {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .film-meta h2 {
    font-size: 20px;
  }
  .film-meta p {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
body.reduced-motion * {
  animation: none !important;
  transition: none !important;
}
body.reduced-motion {
  scroll-behavior: auto;
}
@media (max-width: 780px) {
  .leaderboard {
    min-width: 0;
    white-space: normal;
  }
  .leaderboard th:nth-child(3),
  .leaderboard .bar-cell {
    display: none;
  }
  .leaderboard .model-column {
    width: auto;
    padding-right: 12px;
  }
  .leaderboard .rank {
    width: 30px;
  }
  .leaderboard .score-value {
    white-space: nowrap;
    width: 80px;
  }
  .leaderboard .model-cell a {
    font-size: 15px;
  }
  .round-legend {
    gap: 16px;
    font-size: 10px;
    flex-wrap: wrap;
  }
  .round-legend .round-sort {
    margin-left: 0;
  }
  .dual-leaderboard,
  .dual-leaderboard thead,
  .dual-leaderboard tbody {
    display: block;
  }
  .dual-leaderboard tr {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
  }
  .dual-leaderboard tbody tr {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
  }
  .dual-leaderboard td {
    border: 0;
    padding: 0;
  }
  .dual-leaderboard .rank {
    padding-top: 4px;
  }
  .dual-leaderboard .model-column {
    width: auto;
    padding: 0;
  }
  .dual-leaderboard .dual-bar-cell {
    width: auto;
    grid-column: 2;
    padding-top: 19px;
  }
  .dual-leaderboard .model-cell .dot {
    display: none;
  }
  .round-score {
    grid-template-columns: minmax(0, 1fr) 52px;
    gap: 16px;
  }
  .round-value {
    font-size: 18px;
  }
  .oneshot .round-value {
    font-size: 15px;
  }
  .range-toggle-row {
    display: none;
  }
  .gain-table {
    min-width: 0;
  }
  .gain-table .model-column {
    width: 60%;
    padding-right: 10px;
  }
  .gain-table .gain-bar-cell,
  .gain-table th:nth-child(2) {
    display: none;
  }
  .gain-table .gain-value {
    width: 40%;
    font-size: 21px;
  }
  .gain-table .model-cell .dot {
    display: none;
  }
  .gain-table .model-cell a {
    font-size: 14px;
  }
  .gain-detail-content {
    font-size: 11px;
  }
  .gain-detail-content > div:nth-child(3) {
    display: none;
  }
  .history-selection {
    min-height: 195px;
  }
}
