:root {
  color-scheme: light;
  --paper: oklch(0.975 0.008 92);
  --paper-deep: oklch(0.945 0.012 92);
  --surface: oklch(0.992 0.004 92);
  --surface-muted: oklch(0.962 0.007 92);
  --ink: oklch(0.215 0.018 250);
  --ink-soft: oklch(0.46 0.018 250);
  --ink-faint: oklch(0.48 0.014 250);
  --line: oklch(0.875 0.012 92);
  --line-strong: oklch(0.79 0.016 92);
  --spruce: oklch(0.4 0.085 158);
  --spruce-soft: oklch(0.93 0.035 158);
  --blue: oklch(0.47 0.08 247);
  --amber: oklch(0.43 0.105 72);
  --amber-soft: oklch(0.935 0.038 72);
  --danger: oklch(0.48 0.12 28);
  --danger-soft: oklch(0.94 0.032 28);
  --shadow: 0 1px 2px oklch(0.2 0.01 250 / 0.04), 0 12px 36px oklch(0.2 0.01 250 / 0.055);
  --radius-large: 22px;
  --radius-medium: 14px;
  --radius-small: 9px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 280px;
  background:
    radial-gradient(circle at 8% 0%, oklch(0.91 0.035 155 / 0.38), transparent 28rem),
    linear-gradient(180deg, var(--paper), oklch(0.96 0.007 92));
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

button,
summary {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid oklch(0.62 0.12 158 / 0.55);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateY(-160%);
  transition: transform 160ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid oklch(0.84 0.012 92 / 0.82);
  background: oklch(0.975 0.008 92 / 0.94);
  backdrop-filter: blur(16px) saturate(1.1);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand b {
  color: var(--spruce);
  font-weight: 700;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 560;
}

.primary-nav a {
  padding-block: 8px;
  text-decoration: none;
  transition: color 140ms ease;
}

.primary-nav a:hover {
  color: var(--ink);
}

main.site-shell {
  padding-block: 56px 88px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(310px, 0.86fr);
  gap: 20px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  justify-content: center;
  padding: 44px 46px 38px 4px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--spruce);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.105em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5.3vw, 4.7rem);
  font-weight: 720;
  letter-spacing: -0.064em;
  line-height: 0.98;
}

.hero-intro {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.system-spec {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin: 0;
}

.system-spec div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.system-spec dt {
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.system-spec dd {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
}

.forecast-card,
.release-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.forecast-card {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  padding: 28px 30px;
}

.forecast-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
}

.live-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--spruce);
}

.live-state::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.live-state.awaiting-state {
  color: var(--amber);
}

.forecast-value {
  margin: auto 0 0;
  font-family: var(--sans);
  font-size: clamp(4.4rem, 9vw, 7.4rem);
  font-weight: 680;
  letter-spacing: -0.09em;
  line-height: 0.94;
}

.forecast-target {
  margin: 8px 0 24px;
  color: var(--ink-soft);
  font-size: 13px;
}

.forecast-range {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
}

.forecast-range strong {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
}

.release-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(230px, 0.72fr);
  gap: 34px;
  align-items: center;
  padding: 24px 30px;
  box-shadow: 0 1px 2px oklch(0.2 0.01 250 / 0.025);
}

.release-panel h2 {
  margin-bottom: 4px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.release-panel p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(44px, 1fr));
  gap: 8px;
}

.countdown div {
  min-width: 58px;
  padding: 9px 8px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface-muted);
  text-align: center;
}

.countdown strong {
  display: block;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.2;
}

.countdown span {
  display: block;
  margin-top: 3px;
  color: var(--ink-faint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lock-note {
  justify-self: end;
  max-width: 250px;
  text-align: right;
}

.lock-note strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
}

.content-section {
  margin-top: 74px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: 0 1px 2px oklch(0.2 0.01 250 / 0.025);
}

.section-heading {
  display: flex;
  min-height: 116px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px 24px;
}

.section-heading h2 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 710;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.section-heading p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.round-label {
  flex: 0 0 auto;
  padding-top: 12px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 11px;
}

.data-region {
  border-top: 1px solid var(--line);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.leader-table col.rank-column {
  width: 72px;
}

.leader-table col.forecaster-column {
  width: auto;
}

.leader-table col.forecast-column {
  width: 176px;
}

.leader-table col.record-column {
  width: 118px;
}

.leader-table col.rounds-column {
  width: 88px;
}

.leader-table col.status-column {
  width: 108px;
}

th {
  height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-muted);
  color: var(--ink-faint);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.055em;
  text-align: left;
  text-transform: uppercase;
}

td {
  height: 66px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr {
  transition: background-color 140ms ease;
}

tbody tr:hover {
  background: oklch(0.975 0.009 92);
}

tbody tr.is-agent {
  background: var(--spruce-soft);
}

tbody tr.is-agent:hover {
  background: oklch(0.91 0.042 158);
}

.rank-cell {
  text-align: center;
}

.rank {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-muted);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
}

.leader-name {
  display: block;
  min-width: 0;
}

.leader-name strong,
.leader-name span {
  display: block;
}

.leader-name strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 680;
  letter-spacing: -0.015em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.leader-name span {
  overflow: hidden;
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-cell,
.rounds-cell,
.status-cell {
  text-align: right;
}

.metric {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 680;
  font-variant-numeric: tabular-nums;
}

.pending {
  color: var(--ink-soft);
  font-weight: 520;
}

.status-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 680;
}

.status-text::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.status-text.live,
.status-text.captured,
.status-text.winner {
  color: var(--spruce);
}

.status-text.awaiting {
  color: var(--amber);
}

.loading-row,
.empty-state {
  padding: 30px 28px;
  color: var(--ink-soft);
  font-size: 13px;
}

.method-strip {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 38px;
  margin-top: 74px;
  padding: 10px 4px;
}

.method-heading h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.method-strip ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-strip li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
}

.method-strip li > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--spruce);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
}

.method-strip strong {
  display: block;
  margin-top: 3px;
  font-size: 13px;
}

.method-strip li p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
}

.section-toolbar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 28px;
  border-top: 1px solid var(--line);
  background: var(--surface-muted);
}

.range-tabs {
  display: inline-flex;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-deep);
}

.range-tabs button {
  min-height: 32px;
  padding: 5px 12px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 11px;
  font-weight: 570;
  transition: background-color 140ms ease, color 140ms ease, transform 120ms var(--ease-out), box-shadow 140ms ease;
}

.range-tabs button:hover {
  color: var(--ink);
}

.range-tabs button[aria-pressed="true"] {
  background: var(--surface);
  box-shadow: 0 1px 2px oklch(0.2 0.01 250 / 0.08);
  color: var(--ink);
}

.range-tabs button:active {
  transform: scale(0.97);
}

.record-count {
  color: var(--ink-faint);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-align: right;
  text-transform: uppercase;
}

.disclosure-list {
  border-top: 1px solid var(--line);
}

.disclosure-list details {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.disclosure-list details:last-child {
  border-bottom: 0;
}

.disclosure-list summary {
  position: relative;
  display: grid;
  min-height: 78px;
  align-items: center;
  gap: 20px;
  padding: 15px 52px 15px 28px;
  cursor: pointer;
  list-style: none;
  transition: background-color 140ms ease;
}

.disclosure-list summary::-webkit-details-marker {
  display: none;
}

.disclosure-list summary:hover {
  background: oklch(0.975 0.009 92);
}

.disclosure-list summary::after {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--ink-soft);
  border-bottom: 1.5px solid var(--ink-soft);
  content: "";
  transform: translateY(-68%) rotate(45deg);
  transition: transform 180ms var(--ease-out);
}

.disclosure-list details[open] > summary::after {
  transform: translateY(-25%) rotate(225deg);
}

.disclosure-list details[open] > summary {
  background: var(--surface-muted);
}

.audit-summary {
  grid-template-columns: 116px minmax(0, 1fr) 76px;
}

.summary-date {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 650;
}

.summary-copy {
  min-width: 0;
}

.summary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
  color: var(--ink-faint);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.summary-copy strong {
  display: block;
  overflow: hidden;
  font-size: 13px;
  font-weight: 680;
  letter-spacing: -0.015em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.summary-copy p {
  display: -webkit-box;
  overflow: hidden;
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.summary-value {
  justify-self: end;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
}

.disclosure-body {
  padding: 22px 52px 25px 164px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.disclosure-body p {
  max-width: 72ch;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.disclosure-body ul {
  max-width: 72ch;
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 12px;
}

.disclosure-body li + li {
  margin-top: 7px;
}

.driver-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.driver {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface-muted);
}

.driver strong {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  text-transform: capitalize;
}

.driver span {
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.45;
}

.history-summary {
  grid-template-columns: 116px minmax(170px, 1fr) 88px minmax(160px, 230px);
}

.history-metric {
  justify-self: end;
  min-width: 0;
  text-align: right;
}

.history-metric span {
  display: block;
  margin-bottom: 2px;
  color: var(--ink-faint);
  font-size: 9px;
}

.history-metric strong {
  display: block;
  overflow: hidden;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 680;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.round-detail {
  padding: 0 0 22px;
  border-top: 1px solid var(--line);
}

.round-detail .round-note {
  margin: 18px 28px 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.round-table col.rank-column {
  width: 72px;
}

.round-table col.forecaster-column {
  width: auto;
}

.round-table col.forecast-column,
.round-table col.record-column {
  width: 118px;
}

.round-table col.status-column {
  width: 108px;
}

.update-summary {
  grid-template-columns: 116px minmax(0, 1fr) 90px;
}

.update-category {
  justify-self: end;
  color: var(--spruce);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.update-commit {
  display: inline-block;
  margin-top: 16px;
  color: var(--spruce);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 650;
}

.sources-section {
  margin-top: 74px;
  padding-top: 8px;
  border-top: 1px solid var(--line-strong);
}

.sources-section .section-heading {
  padding-inline: 4px;
}

.source-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.source-list a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
  text-decoration: none;
  transition: background-color 140ms ease, color 140ms ease;
}

.source-list a:nth-child(3n + 1),
.source-list a:nth-child(3n + 2) {
  border-right: 1px solid var(--line);
}

.source-list a:hover {
  background: var(--surface);
  color: var(--ink);
}

.source-list a::after {
  color: var(--ink-faint);
  content: "↗";
  font-size: 12px;
}

.status-message {
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid oklch(0.8 0.05 28);
  border-radius: var(--radius-small);
  background: var(--danger-soft);
  color: var(--danger);
  font-size: 12px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
}

.site-footer .site-shell {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
}

.site-footer span:last-child {
  display: flex;
  gap: 20px;
}

.noscript-message {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 50;
  padding: 14px;
  border: 1px solid oklch(0.8 0.05 28);
  border-radius: var(--radius-small);
  background: var(--danger-soft);
  color: var(--danger);
  text-align: center;
}

.redirect-page {
  display: grid;
  min-height: 100vh;
  place-content: center;
  padding: 28px;
  text-align: center;
}

.redirect-page img {
  margin-inline: auto;
}

.redirect-page h1 {
  margin: 20px 0 10px;
  font-size: 36px;
}

.redirect-page p {
  color: var(--ink-soft);
}

.redirect-page a {
  color: var(--spruce);
  font-weight: 650;
}

body[data-state="unavailable"] .forecast-card {
  border-color: oklch(0.8 0.05 28);
}

body[data-state="unavailable"] .live-state {
  color: var(--danger);
}

body[data-state="loading"] .forecast-value,
body[data-state="loading"] .loading-row {
  color: transparent;
  background: linear-gradient(90deg, var(--surface-muted), var(--paper-deep), var(--surface-muted));
  background-size: 200% 100%;
  animation: loading-sheen 1.3s linear infinite;
}

@keyframes loading-sheen {
  to {
    background-position: -200% 0;
  }
}

@media (max-width: 880px) {
  .primary-nav a:nth-child(2),
  .primary-nav a:nth-child(3) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
    padding: 28px 4px 14px;
  }

  .forecast-card {
    min-height: 330px;
  }

  .release-panel {
    grid-template-columns: 1fr auto;
  }

  .lock-note {
    grid-column: 1 / -1;
    justify-self: start;
    max-width: none;
    text-align: left;
  }

  .method-strip {
    grid-template-columns: 1fr;
  }

  .method-strip ol {
    gap: 18px;
  }

  .source-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .source-list a:nth-child(3n + 1),
  .source-list a:nth-child(3n + 2) {
    border-right: 0;
  }

  .source-list a:nth-child(odd) {
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand span {
    font-size: 13px;
  }

  .primary-nav {
    gap: 14px;
  }

  .primary-nav a:not(:last-child) {
    display: none;
  }

  main.site-shell {
    padding-block: 24px 62px;
  }

  h1 {
    font-size: 2.65rem;
  }

  .hero-intro {
    font-size: 15px;
  }

  .forecast-card {
    min-height: 305px;
    padding: 23px 22px;
  }

  .release-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
  }

  .countdown {
    width: 100%;
  }

  .countdown div {
    min-width: 0;
  }

  .content-section,
  .method-strip,
  .sources-section {
    margin-top: 52px;
  }

  .section-heading {
    min-height: 0;
    padding: 22px 20px;
  }

  .round-label {
    display: none;
  }

  .method-strip ol {
    grid-template-columns: 1fr;
  }

  .section-toolbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 20px;
  }

  .range-tabs {
    width: 100%;
  }

  .range-tabs button {
    flex: 1;
    padding-inline: 6px;
  }

  .record-count {
    text-align: left;
  }

  .leader-table,
  .leader-table tbody,
  .leader-table tr,
  .leader-table td {
    display: block;
    width: 100%;
  }

  .leader-table thead,
  .leader-table colgroup {
    display: none;
  }

  .leader-table tr {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    grid-template-areas:
      "rank name status"
      "rank call call"
      "rank record rounds";
    gap: 6px 12px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .leader-table tr.is-awaiting {
    grid-template-areas:
      "rank name status"
      "rank record rounds";
  }

  .leader-table tr.is-awaiting .forecast-cell {
    display: none;
  }

  .leader-table td {
    height: auto;
    padding: 0;
    border: 0;
  }

  .leader-table .rank-cell {
    grid-area: rank;
    align-self: start;
    text-align: left;
  }

  .leader-table td:nth-child(2) {
    grid-area: name;
  }

  .leader-table .forecast-cell {
    grid-area: call;
    align-self: start;
    text-align: left;
  }

  .leader-table .record-cell {
    grid-area: record;
  }

  .leader-table .rounds-cell {
    grid-area: rounds;
  }

  .leader-table .status-cell {
    grid-area: status;
    align-self: start;
    justify-self: end;
    text-align: right;
  }

  .leader-table .metric-cell,
  .leader-table .rounds-cell {
    text-align: right;
  }

  .leader-table td[data-label]::before {
    margin-right: 6px;
    color: var(--ink-faint);
    content: attr(data-label);
    font-family: var(--sans);
    font-size: 8px;
    font-weight: 650;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .leader-table .leader-name span {
    white-space: normal;
  }

  .leader-table .leader-name strong {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .disclosure-list summary {
    min-height: 88px;
    padding: 14px 46px 14px 20px;
  }

  .disclosure-list summary::after {
    right: 20px;
  }

  .audit-summary,
  .update-summary {
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
  }

  .audit-summary .summary-date,
  .update-summary .summary-date {
    grid-column: 1;
    grid-row: 1;
  }

  .audit-summary .summary-copy,
  .update-summary .summary-copy {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .audit-summary .summary-value,
  .update-summary .update-category {
    grid-column: 2;
    grid-row: 1;
  }

  .summary-copy strong {
    white-space: normal;
  }

  .disclosure-body {
    padding: 20px;
  }

  .driver-list {
    grid-template-columns: 1fr;
  }

  .history-summary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px 18px;
  }

  .history-summary .summary-date {
    grid-column: 1 / -1;
  }

  .history-summary .summary-copy {
    grid-column: 1 / -1;
  }

  .history-metric {
    justify-self: start;
    text-align: left;
  }

  .history-metric:last-of-type {
    justify-self: end;
    text-align: right;
  }

  .round-detail .round-note {
    margin-inline: 20px;
  }

  .round-table tr {
    grid-template-areas:
      "rank name status"
      "rank call record";
  }

  .round-table .status-cell {
    grid-area: status;
    text-align: right;
  }

  .source-list {
    grid-template-columns: 1fr;
  }

  .source-list a,
  .source-list a:nth-child(odd) {
    border-right: 0;
  }

  .site-footer .site-shell {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
}

@media (max-width: 360px) {
  .site-shell {
    width: calc(100% - 20px);
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  h1 {
    font-size: 2.25rem;
  }

  .forecast-value {
    font-size: 4.4rem;
  }

  .countdown strong {
    font-size: 14px;
  }

  .countdown div {
    padding-inline: 4px;
  }

  .range-tabs button {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .live-state::before,
  .status-text::before {
    border: 1px solid currentColor;
  }
}
