:root {
  --ink: #17172c;
  --muted: #657083;
  --line: #dce1ea;
  --surface: #ffffff;
  --surface-soft: #f4f6fb;
  --navy: #0f0c29;
  --purple: #6157d9;
  --purple-light: #a5b4fc;
  --cyan: #22d3ee;
  --green: #10b981;
  --orange: #f97316;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background: #fafafa;
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 5vw;
  color: #eef0ff;
  background: rgba(15, 12, 41, 0.95);
  border-bottom: 1px solid rgba(165, 180, 252, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand span {
  color: var(--purple-light);
}

.site-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-tabs a {
  padding: 7px 13px;
  border-radius: 999px;
  color: #c7c7e8;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.site-tabs a:hover {
  color: #fff;
}

.site-tabs a.active {
  color: #fff;
  background: rgba(165, 180, 252, 0.18);
  box-shadow: inset 0 0 0 1px rgba(165, 180, 252, 0.22);
}

.site-tabs a.omnimech-tab {
  color: #3ee8ff;
  background: rgba(62, 232, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(62, 232, 255, 0.28);
  text-shadow: 0 0 12px rgba(62, 232, 255, 0.25);
}

.site-tabs a.omnimech-tab:hover {
  color: #e8fcff;
  background: rgba(62, 232, 255, 0.16);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 24px 82px;
  color: #f3f4ff;
  background: linear-gradient(145deg, #0f0c29 0%, #1b1044 46%, #24243e 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(165, 180, 252, 0.5), transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: -220px;
  left: -140px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.27), transparent 68%);
}

.hero-glow-two {
  right: -120px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent 68%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1060px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin-bottom: 11px;
  color: var(--purple-light);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1020px;
  margin: 0 auto 18px;
  font-size: clamp(29px, 4vw, 48px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.hero h1 em {
  color: var(--purple-light);
  font-style: normal;
}

.hero-authors {
  max-width: 980px;
  margin: 0 auto 8px;
  color: #f1f1fb;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.hero-affiliations {
  max-width: 980px;
  margin: 0 auto 18px;
  color: #c7c7e8;
  font-size: 11px;
  line-height: 1.6;
}

.hero-authors sup,
.hero-affiliations sup {
  color: var(--purple-light);
  font-size: 0.72em;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #d9daee;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
}

.pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 10px 20px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 650;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.pill:not(.pill-disabled):hover {
  transform: translateY(-2px);
}

.pill svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.pill-paper {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #fbbf24);
  box-shadow: 0 7px 24px rgba(249, 115, 22, 0.26);
}

.pill-code {
  color: #fff;
  background: linear-gradient(135deg, #6366f1 0%, #818cf8 50%, #a5b4fc 100%);
  box-shadow: 0 3px 12px rgba(99, 102, 241, 0.35);
  cursor: pointer;
}

.pill-code:hover {
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.pill-data {
  color: #0e4e5a;
  background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 50%, #67e8f9 100%);
  box-shadow: 0 3px 12px rgba(6, 182, 212, 0.3);
  cursor: pointer;
}

.pill-data:hover {
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.48);
}

.pill-disabled {
  color: #6b7280;
  background: #e5e7eb;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.88;
  user-select: none;
}

section {
  padding: 78px 5vw;
}

.experiment-section,
.leaderboard-section {
  max-width: 1500px;
  margin: 0 auto;
}

.leaderboard-section {
  max-width: none;
  background: #fff;
  border-top: 1px solid #eef0f4;
  border-bottom: 1px solid #e5e7eb;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading h2,
.paper-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 15px;
}

.routing-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  max-width: 1180px;
  margin: 0 auto 24px;
  color: #111827;
  font-size: 12px;
  font-weight: 650;
}

.routing-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.routing-legend-swatch {
  width: 30px;
  height: 13px;
  flex: 0 0 auto;
  border: 3px solid transparent;
}

.routing-legend-board {
  background: #fff;
  border-color: #202020;
}

.routing-legend-th {
  background: radial-gradient(circle, #fff 0 24%, #7d7d7d 25% 58%, transparent 59%);
  border: 2px solid #7d7d7d;
  border-radius: 999px;
}

.routing-legend-top {
  background: #c974ae;
  border-color: #9d4b7e;
}

.routing-legend-back {
  background: #8fc3bf;
  border-color: #3aa99f;
}

.routing-legend-traces {
  position: relative;
}

.routing-legend-traces::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 3px;
  background: #cc5500;
  border-radius: 999px;
  content: "";
  transform: translateY(-50%);
}
.model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.model-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(22, 29, 54, 0.055);
}

.model-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px 10px;
}

.model-card h3 {
  font-size: 15px;
  font-weight: 650;
}

.model-tag {
  flex: 0 0 auto;
  padding: 3px 7px;
  color: #645f74;
  background: #f1f2f7;
  border-radius: 999px;
  font: 500 10px "IBM Plex Mono", monospace;
}

.trajectory {
  position: relative;
  aspect-ratio: 1080 / 3172;
  overflow: hidden;
  background: #f2f3f6;
  border-top: 1px solid #e6e8ee;
  border-bottom: 1px solid #e6e8ee;
}

.trajectory img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.trajectory img[hidden] {
  display: none;
}

.trajectory-loading {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  color: #747b8b;
  text-align: center;
  font: 500 11px "IBM Plex Mono", monospace;
  letter-spacing: 0.04em;
}
.trajectory-empty {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #a2a8b3;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.6), rgba(246,247,250,0.86)),
    repeating-linear-gradient(-45deg, #eef0f4 0, #eef0f4 1px, transparent 1px, transparent 12px);
  font: 500 11px "IBM Plex Mono", monospace;
  letter-spacing: 0.04em;
}

.model-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 14px 10px;
  color: var(--muted);
  font-size: 11.5px;
}

.status-ready {
  color: #047857;
  font-weight: 650;
}

.status-pending {
  color: #9aa1ad;
}

.metric-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px 16px;
  max-width: 1180px;
  margin: 0 auto 20px;
  color: var(--muted);
  font-size: 11.5px;
}

.metric-legend strong {
  color: #343b4a;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  background: #fff;
  border: 1px solid #ccd3df;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(23, 30, 55, 0.06);
}

table {
  width: 100%;
  min-width: 1200px;
  border-spacing: 0;
  border-collapse: separate;
  font-size: 11.5px;
  font-variant-numeric: tabular-nums;
}

th,
td {
  min-width: 64px;
  padding: 9px 7px;
  text-align: center;
  border-right: 1px solid #e1e5ec;
  border-bottom: 1px solid #e1e5ec;
}

th:last-child,
td:last-child {
  border-right: 0;
}

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

thead th {
  color: #3e4656;
  background: #f0f2f7;
  font-weight: 650;
}

thead tr:first-child th {
  background: #e9ecf4;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.model-col {
  position: sticky;
  left: 0;
  z-index: 2;
  min-width: 175px;
  text-align: left;
  background: #f0f2f7;
}

tbody .model-col {
  color: #23283b;
  background: #fff;
  font-weight: 650;
}

tbody tr:hover td {
  background: #f5f7ff;
}

tbody tr:hover .model-col {
  background: #f5f7ff;
}

td.pending {
  min-width: 64px;
  background:
    linear-gradient(135deg, transparent 49%, #eef0f4 50%, transparent 51%);
}

.model-type {
  display: block;
  margin-top: 2px;
  color: #8a91a0;
  font: 400 9px "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

.table-note {
  max-width: 1020px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 11.5px;
  text-align: center;
}

.table-block {
  max-width: 1500px;
  margin: 0 auto 54px;
}

.table-block + .table-block {
  padding-top: 8px;
}

.table-title {
  margin-bottom: 10px;
  color: #22263a;
  font-size: 17px;
  line-height: 1.35;
  text-align: center;
}

.table-caption {
  max-width: 1180px;
  margin: 0 auto 15px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}

.table-caption strong {
  color: #343b4a;
}

.table-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11.5px;
}

.leader-filter {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  background: #e9edf5;
  border: 1px solid #d6dce7;
  border-radius: 999px;
}

.filter-button {
  padding: 5px 10px;
  color: #657083;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: 650 10.5px "IBM Plex Sans", sans-serif;
}

.filter-button:hover:not(.active) {
  color: #30364a;
}

.filter-button.active {
  color: #312e81;
  background: #fff;
  box-shadow: 0 1px 4px rgba(23, 29, 51, 0.13);
}

.result-table {
  min-width: 1420px;
}

.result-table .configuration-col {
  min-width: 132px;
  color: #4a5365;
  text-align: left;
  white-space: nowrap;
}

.result-table .size-col {
  min-width: 78px;
  color: #4a5365;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}

.result-table .model-group-start td {
  border-top: 2px solid #b8c0cf;
}

.result-table tbody tr:first-child td {
  border-top: 0;
}

.nrr-rank-col {
  color: #9a3412;
  background: #fff7ed;
  font-weight: 700;
}

th.nrr-rank-col {
  color: #7c2d12;
  background: linear-gradient(180deg, #ffedd5 0%, #fed7aa 100%);
}

.rank-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  padding: 1px 6px;
  border: 1px solid;
  border-radius: 999px;
  font-size: 10px;
  line-height: 1.2;
  vertical-align: middle;
}

.rank-first {
  color: #92400e;
  background: #fef3c7;
  border-color: #fcd34d;
}

.rank-second {
  color: #374151;
  background: #f3f4f6;
  border-color: #d1d5db;
}

.rank-third {
  color: #9a3412;
  background: #ffedd5;
  border-color: #fdba74;
}

.dash {
  color: #b0b5bf;
}

.paper-section {
  background: #f4f6fb;
}

.paper-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  background: #fff;
  border: 1px solid #dfe3eb;
  border-radius: 18px;
  box-shadow: 0 14px 44px rgba(23, 29, 51, 0.08);
}

.paper-heading {
  max-width: 720px;
  margin: 0 auto 22px;
  text-align: center;
}

.paper-figure {
  max-width: 960px;
  margin: 0 auto 30px;
}

.paper-figure img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
  border: 1px solid #d8dde7;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(23, 29, 51, 0.08);
}

.paper-figure figcaption {
  max-width: 820px;
  margin: 11px auto 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
  text-align: center;
}

.abstract {
  max-width: 860px;
  margin: 0 auto 30px;
  padding: 22px 26px;
  color: #424b5c;
  background: #f8f9ff;
  border: 1px solid #e0e4f7;
  border-left: 4px solid var(--purple);
  border-radius: 0 10px 10px 0;
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 32px;
}

.stat-grid div {
  padding: 18px 10px;
  text-align: center;
  background: #fbfbfd;
  border: 1px solid #e5e7ed;
  border-radius: 10px;
}

.stat-grid strong,
.stat-grid span {
  display: block;
}

.stat-grid strong {
  color: #312e81;
  font-size: 20px;
}

.stat-grid span {
  color: var(--muted);
  font-size: 11.5px;
}

.task-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-bottom: 28px;
}

.task-grid article {
  position: relative;
  padding: 20px 20px 20px 68px;
  background: #fff;
  border: 1px solid #e0e4eb;
  border-radius: 11px;
}

.task-grid article > span {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #818cf8;
  font: 500 13px "IBM Plex Mono", monospace;
}

.task-grid h3 {
  margin-bottom: 4px;
  font-size: 14px;
}

.task-grid p {
  color: var(--muted);
  font-size: 12px;
}

.reference-section {
  padding: 64px 5vw;
  background: #fafafa;
  border-top: 1px solid #e5e7eb;
}

.reference-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.reference-section .section-kicker,
.reference-section h2 {
  text-align: center;
}

.reference-section h2 {
  margin-bottom: 22px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.025em;
}

.reference-card {
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 1px solid #dfe3eb;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(23, 29, 51, 0.07);
}

.reference-text {
  margin-bottom: 14px;
  color: #424b5c;
  font-size: 14px;
  line-height: 1.75;
}

.reference-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: #4f46e5;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.reference-link:hover {
  text-decoration: underline;
}

.bibtex-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #596275;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.copy-reference-btn {
  padding: 5px 12px;
  color: #c7d2fe;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  text-transform: none;
  background: #1a1040;
  border: 1px solid #353165;
  border-radius: 6px;
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease;
}

.copy-reference-btn:hover {
  color: #fff;
  background: #24243e;
}

.reference-bibtex {
  max-width: 100%;
  padding: 20px 22px;
  overflow-x: auto;
  color: #c7c7e8;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  line-height: 1.7;
  text-align: left;
  white-space: pre;
  background: var(--navy);
  border: 1px solid #2d2b55;
  border-radius: 10px;
}

footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 26px 24px;
  color: #aeb2ce;
  background: var(--navy);
  font-size: 12px;
}

footer a {
  color: #c7d2fe;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  position: relative;
  width: calc(100% - 48px);
  max-width: 520px;
  padding: 36px 40px 32px;
  text-align: left;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  animation: modal-in 0.2s cubic-bezier(0.34, 1.4, 0.64, 1);
}

@keyframes modal-in {
  from { opacity: 0; transform: scale(0.93) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  padding: 4px 8px;
  color: #9ca3af;
  font-size: 20px;
  line-height: 1;
  background: none;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease;
}

.modal-close:hover {
  color: #374151;
  background: #f3f4f6;
}

.modal-title {
  margin-bottom: 6px;
  color: #111827;
  font-size: 20px;
  font-weight: 700;
}

.modal-sub {
  margin-bottom: 28px;
  color: #6b7280;
  font-size: 13px;
}

.modal-section-label {
  margin-bottom: 12px;
  color: #9ca3af;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-dataset-card {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: box-shadow 150ms ease, border-color 150ms ease;
}

.modal-dataset-card:hover {
  border-color: #c9d1d9;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

.modal-card-left {
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.modal-card-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 60%, #67e8f9 100%);
  border-radius: 9px;
  box-shadow: 0 3px 10px rgba(6, 182, 212, 0.28);
}

.modal-card-icon svg {
  width: 20px;
  height: 20px;
  color: #0e4e5a;
}

.modal-card-icon.modal-card-icon-code {
  background: linear-gradient(135deg, #6366f1 0%, #818cf8 60%, #a5b4fc 100%);
  box-shadow: 0 3px 10px rgba(99, 102, 241, 0.28);
}

.modal-card-icon.modal-card-icon-code svg {
  color: #fff;
}

.modal-card-name {
  margin-bottom: 2px;
  color: #111827;
  font-size: 14.5px;
  font-weight: 650;
}

.modal-card-desc {
  color: #6b7280;
  font-size: 12px;
}

.modal-dl-btn {
  display: inline-flex;
  flex-shrink: 0;
  gap: 6px;
  align-items: center;
  padding: 8px 18px;
  color: #0e4e5a;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 50%, #67e8f9 100%);
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(6, 182, 212, 0.28);
  transition: transform 150ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 150ms ease;
}

.modal-dl-btn:hover {
  box-shadow: 0 6px 16px rgba(6, 182, 212, 0.42);
  transform: translateY(-2px) scale(1.04);
}

.modal-dl-btn svg {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
}

.modal-dl-btn.modal-dl-btn-code {
  color: #fff;
  background: linear-gradient(135deg, #6366f1 0%, #818cf8 50%, #a5b4fc 100%);
  box-shadow: 0 3px 10px rgba(99, 102, 241, 0.28);
}

.modal-dl-btn.modal-dl-btn-code:hover {
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.42);
}

@media (max-width: 1200px) {
  .model-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1050px) {
  .model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 720px) {
  .site-nav {
    padding: 0 14px;
  }

  .site-tabs a {
    padding: 6px 9px;
    font-size: 12px;
  }

  .hero {
    padding: 58px 18px 62px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-authors {
    font-size: 12px;
  }

  .hero-affiliations {
    font-size: 10px;
  }

  section {
    padding: 58px 18px;
  }


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

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

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

  .abstract {
    padding: 18px;
    text-align: left;
  }

  footer {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
}

@media (max-width: 560px) {
  .modal-box {
    padding: 32px 22px 24px;
  }

  .modal-dataset-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal-dl-btn {
    align-self: stretch;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
