@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("http://rl-gym-web-alb-1491209595.us-east-1.elb.amazonaws.com/_next/static/media/caa3a2e1cccd8315-s.p.16t1db8_9y2o~.woff2") format("woff2");
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url("http://rl-gym-web-alb-1491209595.us-east-1.elb.amazonaws.com/_next/static/media/70bc3e132a0a741e-s.p.1409xf.ylxg8g.woff2") format("woff2");
}

:root {
  --ink: #101216;
  --ink-soft: #2a3036;
  --muted: #69717d;
  --paper: #f8f7f0;
  --surface: #eeece2;
  --surface-strong: #e4e8de;
  --line: rgba(16, 18, 22, 0.14);
  --line-soft: rgba(16, 18, 22, 0.08);
  --rule: rgba(16, 18, 22, 0.22);
  --cyan: #dbf3db;
  --teal: #4f7c56;
  --teal-soft: rgba(79, 124, 86, 0.22);
  --moss: #4f7c56;
  --moss-deep: #315c38;
  --moss-glow: rgba(79, 124, 86, 0.22);
  --coral: #cf4040;
  --violet: #d28425;
  --copper: #9b7047;
  --copper-soft: rgba(155, 112, 71, 0.14);
  --blue: #496f7e;
  --cool: #5a8fa3;
  --cool-deep: #2f6c84;
  --sun: #e9b765;
  --rose: #dc8c7f;
  --indigo: #7275cc;
  --plum: #f6f5f2;
  --shadow: 0 18px 56px rgba(24, 26, 28, 0.08);
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 4.5rem;
  --font-base: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", "Cascadia Code", "Roboto Mono", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(16, 18, 22, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 18, 22, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, #fbfaf5 0%, var(--paper) 46%, #efeee6 100%);
  background-size: 40px 40px, 40px 40px, auto;
  font-family: var(--font-base);
  font-size: var(--text-base);
  font-feature-settings: "ss01", "ss02", "cv11";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body,
button,
input,
textarea {
  font-family: var(--font-base);
}
body::before {
  content: none;
}
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.58; margin-top: 0; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { color: var(--ink); }
h1 {
  max-width: 660px;
  margin-bottom: 0;
  font-size: clamp(2.08rem, 3.2vw, 3.12rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 820;
}
h2 {
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 760;
  margin-bottom: 0;
}
h3 {
  font-size: 1.125rem;
  line-height: 1.18;
  font-weight: 680;
  margin-bottom: 8px;
}
code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  background: var(--surface-strong);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 1px 5px;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.scroll-rail {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  z-index: 40;
  background: rgba(79, 124, 86, 0.11);
  pointer-events: none;
}
.scroll-rail-fill {
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, rgba(79, 124, 86, 0.45), var(--moss));
  transition: height 80ms linear;
}

.topbar,
.footer,
.brand,
.site-nav {
  display: flex;
  align-items: center;
}
.topbar,
.footer {
  justify-content: space-between;
  gap: 18px;
}
.topbar {
  padding: 26px 0 14px;
}
.brand {
  gap: 14px;
  color: var(--ink);
  font-weight: 820;
  letter-spacing: -0.025em;
  font-size: 1.35rem;
}
.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(16, 18, 22, 0.22);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: inset 0 0 0 6px var(--ink);
}
.brand-mark::before {
  content: none;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: var(--moss);
}
.site-nav {
  gap: clamp(14px, 2vw, 24px);
  font-size: var(--text-sm);
  color: var(--muted);
  font-weight: 700;
}
.site-nav a:hover,
.toc a:hover {
  color: var(--teal);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(480px, 0.78fr) minmax(440px, 0.82fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  min-height: min(450px, calc(100svh - 96px));
  padding: clamp(28px, 5vw, 68px) 0 clamp(20px, 3vw, 36px);
}
.page-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}
.page-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.hero-slash {
  display: none;
}
.page-hero-main {
  display: block;
  padding: 0;
}
.page-hero-intro {
  max-width: 660px;
}
.page-hero-intro h1 {
  margin-bottom: 0;
}
.hero-subhead {
  max-width: 540px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 700;
  line-height: 1.42;
  white-space: normal;
  overflow-wrap: normal;
}
.kicker,
.eyebrow,
.index-label,
.thead-label,
.pill,
.tag,
.gc-idx,
.note,
.btn,
th,
.replay .ttl,
.replay .src,
.step .k,
.metric-label {
  font-family: var(--font-mono);
}
.kicker,
.eyebrow,
.index-label {
  display: inline-grid;
  grid-template-columns: 42px auto;
  gap: 12px;
  align-items: center;
  width: fit-content;
  color: var(--moss-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.kicker::before,
.eyebrow::before,
.index-label::before {
  content: "";
  height: 1px;
  background: var(--moss);
}
.hero-actions,
.actions-row,
.toc,
.tags,
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-actions {
  margin-top: 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}
.button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}
.button.secondary { background: rgba(252, 252, 249, 0.78); }
.button-compact { min-height: 40px; padding: 0 16px; }

.hero-panel-card {
  height: 100%;
  padding: 0;
}
.page-hero-panel-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 8px;
}
.graph-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
}
.graph-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.legend-line {
  display: inline-block;
  width: 24px;
  height: 3px;
  border-radius: 999px;
}
.legend-line-ml {
  background: var(--moss);
}
.legend-line-gen {
  background: var(--copper);
}
.benchmark-figure {
  margin: 8px 0 0;
  padding: 0;
}
.benchmark-figure.compact {
  margin-top: 4px;
  padding-top: 0;
}
.benchmark-figure svg {
  width: 100%;
  height: auto;
  display: block;
}
.benchmark-guide {
  fill: none;
  stroke: rgba(15, 18, 22, 0.1);
  stroke-width: 1;
}
.benchmark-axis,
.benchmark-ticks path {
  fill: none;
  stroke: rgba(16, 18, 22, 0.42);
  stroke-width: 1;
  stroke-linecap: square;
}
.benchmark-ticks path {
  stroke: rgba(16, 18, 22, 0.28);
}
.benchmark-axis-label {
  fill: var(--moss-deep);
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.benchmark-label,
.benchmark-game-index text {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  fill: var(--muted);
}
.benchmark-label-ml {
  fill: var(--muted);
}
.benchmark-path {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
}
.benchmark-path-gen {
  stroke: var(--copper);
  opacity: 0.72;
}
.benchmark-path-ml {
  stroke: var(--teal);
}
.benchmark-dots .gen-dot {
  fill: var(--copper);
}
.benchmark-dots .ml-dot {
  fill: var(--teal);
}
.benchmark-columns rect {
  fill: rgba(65, 142, 71, 0.12);
  stroke: rgba(65, 142, 71, 0.22);
}
.hero-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}
.hero-panel-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 8px;
}
.hero-panel-grid article {
  padding: 8px 0 0;
  border-top: 1px solid var(--line-soft);
  background: transparent;
}
.hero-panel-grid strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.hero-panel-grid span {
  color: var(--muted);
  font-size: 0.82rem;
}
.overview-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.84rem;
}
.overview-flow span {
  padding: 8px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}
.overview-flow i {
  width: 16px;
  height: 1px;
  background: var(--line);
}

.metrics-block {
  margin-top: 6px;
}
.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 247, 240, 0.48);
}
.metric {
  min-height: 126px;
  padding: 20px 22px 18px;
  border-right: 1px solid var(--line-soft);
  background: transparent;
  box-shadow: none;
}
.metric:last-child {
  border-right: 0;
}
.metric-viz {
  display: block;
  width: 100%;
  max-width: 132px;
  height: 76px;
  margin: 2px 0 8px;
}
.metric-viz .soft-stroke,
.metric-viz .stroke {
  fill: none;
  stroke: rgba(15, 18, 22, 0.28);
  stroke-width: 1.5;
}
.metric-viz .fill {
  fill: rgba(65, 142, 71, 0.14);
  stroke: none;
}
.metric-viz .strong-fill {
  fill: var(--teal);
}
.metric-viz .faint-fill {
  fill: rgba(65, 142, 71, 0.22);
}
.metric-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}
.metric-copy strong {
  font-size: clamp(1.6rem, 2vw, 2.15rem);
  line-height: 1;
}
.metric-label {
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--moss-deep);
}

.section {
  margin-top: 54px;
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 16px 24px;
  align-items: end;
  margin-bottom: 22px;
}
.section-heading .index-label {
  margin-bottom: 12px;
}

.tablecard {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(252, 252, 249, 0.82);
  box-shadow: var(--shadow);
}
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  padding: 14px 15px;
  border-bottom: 1px solid var(--line-soft);
  text-align: right;
  vertical-align: top;
}
th:first-child,
td:first-child,
th:last-child,
td:last-child {
  text-align: left;
}
th {
  background: var(--surface-strong);
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
tbody tr:hover { background: rgba(65, 142, 71, 0.04); }
tfoot td {
  background: var(--surface-strong);
  color: var(--muted);
  font-size: 0.92rem;
}
.game small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.73rem;
}
td.game {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 760;
}
td.game small {
  letter-spacing: 0;
  font-weight: 500;
}
.num { font-family: var(--font-mono); }
.scgen { color: var(--copper); }
.scml { color: var(--teal); }
.dirtag {
  font-size: 0.76rem;
  color: var(--muted);
}
.badge {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}
.badge.ml {
  color: var(--teal);
  background: var(--teal-soft);
  border-color: rgba(65, 142, 71, 0.3);
}
.badge.gen {
  color: var(--copper);
  background: var(--copper-soft);
  border-color: rgba(155, 112, 71, 0.3);
}
.gapbar {
  width: min(180px, 100%);
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-strong);
}
.gapbar > i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

.actions-row {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.toc {
  margin-bottom: 18px;
}
.toc a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(252, 252, 249, 0.74);
  color: var(--muted);
  font-size: 0.82rem;
}

.game-card {
  margin-bottom: 26px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(252, 252, 249, 0.8);
  box-shadow: var(--shadow);
  scroll-margin-top: 20px;
}
.scroll-game {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 420ms ease,
    transform 520ms ease,
    filter 520ms ease;
  filter: saturate(0.8);
  pointer-events: none;
}
.scroll-game.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: saturate(1);
  pointer-events: auto;
}
.gc-head {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
}
.gc-idx {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-strong);
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}
.gc-theme {
  color: var(--muted);
  font-size: 0.95rem;
}
.gc-winner { margin-left: auto; }
.tags { margin: 16px 0 10px; }
.tag {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--muted);
  font-size: 0.74rem;
}
.tag b { color: var(--ink); }
.key-term {
  padding: 0 0.16em;
  border-radius: 4px;
  background: rgba(79, 124, 86, 0.13);
  color: var(--moss-deep);
  font-weight: 700;
}
.mlprob {
  margin-top: 14px;
  padding: 16px;
  border: 1px dashed rgba(65, 142, 71, 0.32);
  border-radius: 18px;
  background: rgba(65, 142, 71, 0.05);
}
.mlprob .lbl {
  margin-bottom: 6px;
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}
.block {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf8;
}
.block.gen h4 { color: var(--copper); }
.block.ml h4 { color: var(--teal); }
.block h4 {
  margin-bottom: 8px;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.block p:last-child,
.mlprob p:last-child { margin-bottom: 0; }
.insight {
  margin-top: 16px;
  padding: 14px 16px;
  border-left: 3px solid var(--teal);
  border-radius: 0 14px 14px 0;
  background: rgba(65, 142, 71, 0.1);
  color: var(--ink);
}

.replay {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 6px 18px rgba(24, 26, 28, 0.06);
}
.rp-bar,
.verdict {
  background: var(--surface-strong);
}
.rp-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.rp-bar .ttl,
.rp-bar .src,
.btn,
.step .k,
.readout .unit,
.lane .who .agent,
.cell {
  font-size: 0.73rem;
}
.rp-bar .ttl,
.rp-bar .src {
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rp-bar .src { margin-left: auto; }
.btn {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}
.btn.play {
  background: var(--teal-soft);
  border-color: rgba(65, 142, 71, 0.35);
  color: var(--teal);
}
select.btn { padding-right: 30px; }
.lanes {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.lane {
  padding: 16px;
}
.lane.gen {
  background: linear-gradient(180deg, rgba(155, 112, 71, 0.06), transparent 120px);
}
.lane.ml {
  background: linear-gradient(180deg, rgba(65, 142, 71, 0.08), transparent 120px);
}
.lane + .lane {
  border-left: 1px solid var(--line);
  padding-left: 16px;
  margin-left: 0;
}
.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.gen { background: var(--copper); }
.dot.ml { background: var(--teal); }
.lane .who {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}
.lane.gen .who { color: var(--copper); }
.lane.ml .who { color: var(--teal); }
.lane .who .agent {
  color: var(--muted);
  font-weight: 400;
}
.readout {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 8px 0 4px;
}
.readout .big {
  font-family: var(--font-mono);
  font-size: 1.9rem;
  font-weight: 700;
}
.lane.gen .readout .big { color: var(--copper); }
.lane.ml .readout .big { color: var(--teal); }
.readout .unit { color: var(--muted); font-family: var(--font-mono); }
svg.spark {
  display: block;
  width: 100%;
  height: 62px;
  margin: 6px 0 8px;
}
.cells {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 4px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: var(--surface-strong);
  color: var(--muted);
  font-family: var(--font-mono);
  transition: transform 0.18s, background 0.25s, color 0.25s, border-color 0.25s;
}
.lane.gen .cell.on {
  background: var(--copper-soft);
  border-color: rgba(155, 112, 71, 0.45);
  color: var(--copper);
}
.lane.ml .cell.on {
  background: var(--teal-soft);
  border-color: rgba(65, 142, 71, 0.45);
  color: var(--teal);
}
.cell.cur {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 18px rgba(24, 26, 28, 0.08);
}
.cell.zero.on {
  background: rgba(207, 64, 64, 0.12);
  border-color: rgba(207, 64, 64, 0.3);
  color: var(--rose);
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 8px;
}
.step {
  display: flex;
  align-items: center;
  gap: 9px;
  opacity: 0.3;
  transform: translateX(-5px);
  transition: opacity 0.3s, transform 0.3s;
  font-size: 0.86rem;
}
.step.on {
  opacity: 1;
  transform: none;
}
.step .k {
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  color: var(--muted);
  font-family: var(--font-mono);
}
.step .v {
  color: var(--ink);
  font-family: var(--font-mono);
}
.verdict {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.win-emph { color: var(--teal); }
.lose-emph { color: var(--rose); }

.footer {
  margin-top: 62px;
  padding: 24px 0 36px;
  border-top: 1px solid var(--line);
}
.footer p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .page-hero,
  .section-heading,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .page-hero-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .graph-legend {
    justify-content: center;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .topbar,
  .footer,
  .actions-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .rp-bar .src {
    margin-left: 0;
  }

}

@media (max-width: 760px) {
  .shell { width: min(100% - 24px, 1180px); }
  .site-nav { gap: 12px; flex-wrap: wrap; }
  .gc-grid,
  .lanes,
  .hero-panel-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel-grid.compact {
    grid-template-columns: 1fr;
  }
  .lane + .lane {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    margin-left: 0;
    padding-top: 16px;
  }
  th,
  td {
    padding: 12px 10px;
    font-size: 0.86rem;
  }
}
