/* Motio demo — dark, static, no build step. */

:root {
  --bg: #0a0c0f;
  --bg-raised: #12161b;
  --bg-sunken: #0d1116;
  --line: #1f262e;
  --line-bright: #2c3742;
  --text: #e8eef4;
  --text-dim: #8695a4;
  --text-faint: #5d6b79;

  /*
   * Every accent below is rewritten by demo.js when the colour control moves.
   * The values here are the defaults, so the page is coherent before the
   * module loads.
   */
  --accent: #6ee7b7;
  --accent-2: #7dd3fc;
  --accent-3: #c4b5fd;
  --accent-text: #6ee7b7; /* accent lifted to a readable lightness for text */
  --on-accent: #06231a; /* text that sits on a solid accent fill */
  --accent-soft: rgba(110, 231, 183, 0.12);
  --accent-line: rgba(110, 231, 183, 0.45);
  --glow-1: rgba(110, 231, 183, 0.09);
  --glow-2: rgba(125, 211, 252, 0.08);

  --radius: 14px;
  --shell: 1200px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(900px 500px at 12% -8%, var(--glow-1), transparent 60%),
    radial-gradient(800px 420px at 92% 4%, var(--glow-2), transparent 62%),
    var(--bg);
  color: var(--text);
  font: 16px/1.65 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

code,
pre,
kbd {
  font-family: ui-monospace, "Cascadia Code", "SF Mono", Consolas, monospace;
}

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 24px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--on-accent);
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  font-weight: 600;
  z-index: 100;
}
.skip:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- hero ---------- */

.hero {
  padding: 72px 0 44px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  padding: 6px 14px 6px 10px;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-dim);
  font-size: 12.5px;
  letter-spacing: 0.03em;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(46px, 9vw, 84px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 680;
  background: linear-gradient(120deg, var(--text) 20%, var(--accent) 62%, var(--accent-2) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  max-width: 60ch;
  margin: 0 0 28px;
  color: var(--text-dim);
  font-size: 17.5px;
}

.lede code,
footer code,
.setting-hint code,
.section-head code {
  color: var(--accent-text);
  background: var(--accent-soft);
  padding: 1px 6px;
  border-radius: 5px;
  font-size: 0.88em;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--line-bright);
  border-radius: 10px;
  background: var(--bg-raised);
  color: var(--text);
  font: inherit;
  font-size: 14.5px;
  font-weight: 550;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.button:hover {
  border-color: var(--accent);
  color: var(--accent-text);
}
.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}
.button.primary:hover {
  filter: brightness(1.12);
  color: var(--on-accent);
}
.button kbd {
  padding: 1px 5px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.22);
  font-size: 11px;
  line-height: 1.5;
}

.chip-button {
  padding: 6px 13px;
  border: 1px solid var(--line-bright);
  border-radius: 8px;
  background: transparent;
  color: var(--text-dim);
  font: inherit;
  font-size: 12.5px;
  cursor: pointer;
  transition: border-color 0.16s, color 0.16s, background 0.16s;
}
.chip-button:hover {
  border-color: var(--accent);
  color: var(--accent-text);
}
.chip-button[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-text);
}

/* ---------- section scaffolding ---------- */

main {
  padding: 52px 0 40px;
}

.section-head {
  margin-bottom: 24px;
}
.section-head h2 {
  margin: 0 0 6px;
  font-size: 24px;
  letter-spacing: -0.025em;
  font-weight: 620;
}
.section-head p {
  margin: 0;
  max-width: 70ch;
  color: var(--text-dim);
  font-size: 14.5px;
}

/* ---------- settings ---------- */

.settings-disclosure {
  margin-bottom: 20px;
}

/*
 * The summary is visible at every width, and the panel ships open in the
 * markup. An earlier version hid the summary above the breakpoint and let
 * JavaScript drive `open`; when the two disagreed the settings vanished with
 * no control left to bring them back. Now the worst case is a panel that is
 * open when it could have been collapsed.
 */
.settings-disclosure > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raised);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}
.settings-disclosure > summary::-webkit-details-marker {
  display: none;
}
.settings-disclosure > summary::after {
  content: "Show";
  color: var(--accent-text);
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0;
  text-transform: none;
}
.settings-disclosure[open] > summary {
  margin-bottom: 12px;
}
.settings-disclosure[open] > summary::after {
  content: "Hide";
}

.settings {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.setting {
  min-width: 0;
  margin: 0;
  padding: 16px 18px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raised);
}
.setting legend {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 0 6px;
  margin-left: -6px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.setting-hint {
  margin: 12px 0 0;
  color: var(--text-faint);
  font-size: 12.5px;
  line-height: 1.55;
}

/* colour */

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px; /* room for the selected swatch's ring */
  margin-bottom: 14px;
}

/*
 * The selected ring is drawn with box-shadow rather than a border: a border
 * would sit under the swatch's own background and disappear.
 */
.swatch {
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 9px;
  background: var(--swatch);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: transform 0.14s, box-shadow 0.14s;
}
.swatch:hover {
  transform: translateY(-2px);
}
.swatch[aria-checked="true"] {
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.28),
    0 0 0 2px var(--bg-raised),
    0 0 0 4px var(--text);
}

.custom-color {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  border: 1px solid var(--line-bright);
  border-radius: 10px;
  cursor: pointer;
}
.custom-color:hover {
  border-color: var(--accent);
}
.custom-color:focus-within {
  outline: 2px solid var(--accent-text);
  outline-offset: 2px;
}
.custom-color input[type="color"] {
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: none;
  cursor: pointer;
}
.custom-color input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}
.custom-color input[type="color"]::-webkit-color-swatch {
  border: 1px solid var(--line-bright);
  border-radius: 8px;
}
.custom-color input[type="color"]::-moz-color-swatch {
  border: 1px solid var(--line-bright);
  border-radius: 8px;
}
.custom-color-label {
  display: flex;
  flex-direction: column;
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.35;
}
.custom-color-label b {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 12px;
  font-weight: 550;
  color: var(--accent-text);
}

/* speed */

.setting-speed output {
  padding: 2px 8px;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent-text);
  font-family: ui-monospace, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

input[type="range"] {
  width: 100%;
  height: 22px;
  margin: 4px 0 0;
  background: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -6px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--text);
}
input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--text);
}

.speed-marks {
  display: flex;
  justify-content: space-between;
  margin-top: 2px;
  color: var(--text-faint);
  font-family: ui-monospace, Consolas, monospace;
  font-size: 11px;
}

.speed-presets {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

/* motion */

.switch {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  user-select: none;
  font-size: 14.5px;
}
/*
 * Clipped rather than sized to zero: a 0x0, opacity-0 input can be dropped
 * from the accessibility tree, which would leave the switch unreachable to
 * anything that is not a mouse.
 */
.switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.switch .track {
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: var(--bg-sunken);
  border: 1px solid var(--line-bright);
  padding: 3px;
  display: block;
  transition: background 0.2s, border-color 0.2s;
}
.switch .thumb {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--text-faint);
  transition: transform 0.2s, background 0.2s;
}
.switch input:checked + .track {
  background: var(--accent-soft);
  border-color: var(--accent);
}
.switch input:checked + .track .thumb {
  transform: translateX(20px);
  background: var(--accent);
}
.switch input:focus-visible + .track {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
}

.ticker-readout {
  margin: 12px 0 0;
  color: var(--text-faint);
  font-size: 12.5px;
  font-family: ui-monospace, Consolas, monospace;
}
.ticker-readout b {
  color: var(--accent-text);
  font-weight: 600;
}

.reset-all {
  margin-top: 14px;
}

/* ---------- preview ---------- */

.preview {
  display: grid;
  grid-template-columns: 216px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.preset-rail {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raised);
}

.rail-title {
  margin: 0 0 10px;
  padding: 0 4px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.preset-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 452px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.preset-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: none;
  color: var(--text-dim);
  font: inherit;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.preset-tab:hover {
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}
.preset-tab[aria-selected="true"] {
  background: var(--accent-soft);
  border-color: var(--accent-line);
  color: var(--accent-text);
}
.preset-tab::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
  flex: none;
}
.preset-tab[aria-selected="true"]::before {
  opacity: 1;
}

.preview-main {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raised);
  overflow: hidden;
}

/*
 * Doubled up on purpose. The base `.stage` rule lives further down in the
 * gallery section, and at equal specificity the later rule would win — so a
 * single `.stage--large` here would silently lose its height to the 168px
 * card stage.
 */
.stage.stage--large {
  height: clamp(280px, 44vh, 440px);
  border-bottom: 1px solid var(--line);
}
.stage--large.is-clickable {
  cursor: pointer;
}

.preview-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 18px;
}
.preview-meta {
  min-width: 0;
}
.preview-meta h3 {
  margin: 0 0 4px;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-text);
}
.preview-meta p {
  margin: 0;
  max-width: 62ch;
  color: var(--text-dim);
  font-size: 13.5px;
}
.preview-actions {
  display: flex;
  gap: 10px;
  flex: none;
}

/* ---------- gallery ---------- */

.gallery {
  margin-top: 56px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.card:hover,
.card:focus-within {
  border-color: var(--line-bright);
}
.card.is-open {
  border-color: var(--accent-line);
}

.stage {
  position: relative;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    var(--bg-sunken);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.meta {
  padding: 16px 18px 4px;
}
.meta h3 {
  margin: 0 0 5px;
  font-size: 14.5px;
  font-family: ui-monospace, Consolas, monospace;
  font-weight: 550;
  color: var(--accent-text);
}
.meta p {
  margin: 0;
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.55;
}

.actions {
  display: flex;
  gap: 8px;
  padding: 14px 18px 16px;
  margin-top: auto;
}

/* ---------- code panel ---------- */

.code {
  position: relative;
  border-top: 1px solid var(--line);
  background: #080b0e;
}
.code[hidden] {
  display: none;
}
.code pre {
  margin: 0;
  padding: 16px 18px;
  overflow-x: auto;
  font-size: 12.5px;
  line-height: 1.7;
  color: #cbd6e2;
}
.code .copy {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #080b0e;
}

/* ---------- stage furniture ---------- */

.box {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.chip {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.row {
  display: flex;
  gap: 10px;
}

.bar {
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.bars {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 100%;
  max-width: 210px;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  width: 100%;
  max-width: 200px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tiles li {
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--bg-raised);
  border: 1px solid var(--line-bright);
  font-family: ui-monospace, Consolas, monospace;
  font-size: 13px;
  color: var(--accent-text);
}

.headline {
  margin: 0;
  font-size: 25px;
  font-weight: 620;
  letter-spacing: -0.02em;
  text-align: center;
}

.mono-text {
  margin: 0;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 19px;
  color: var(--accent-text);
  letter-spacing: 0.02em;
}

.stat {
  margin: 0;
  font-size: 38px;
  font-weight: 650;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.magnet {
  padding: 13px 26px;
  border-radius: 11px;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  color: var(--accent-text);
  font: inherit;
  font-size: 14.5px;
  font-weight: 550;
  cursor: pointer;
}

.scrub-wrap {
  width: 100%;
  max-width: 220px;
  text-align: center;
}
.scrub-track {
  height: 10px;
  border-radius: 999px;
  background: var(--bg-raised);
  border: 1px solid var(--line-bright);
  overflow: hidden;
}
.scrub-fill {
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
}
.scrub-label {
  margin: 12px 0 0;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 12px;
  color: var(--text-faint);
}

.stage svg {
  width: 108px;
  height: 108px;
}
.stage svg path,
.stage svg circle {
  fill: none;
  stroke: var(--accent);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* the same furniture, scaled up for the big preview */

.stage--large .box {
  width: 108px;
  height: 108px;
  border-radius: 24px;
}
.stage--large .chip {
  width: 74px;
  height: 74px;
  border-radius: 17px;
}
.stage--large .row {
  gap: 16px;
}
.stage--large .bars {
  max-width: 360px;
  gap: 18px;
}
.stage--large .bar {
  height: 20px;
}
.stage--large .tiles {
  max-width: 320px;
  gap: 14px;
}
.stage--large .tiles li {
  height: 64px;
  font-size: 18px;
  border-radius: 13px;
}
.stage--large .headline {
  font-size: clamp(28px, 4.4vw, 46px);
}
.stage--large .mono-text {
  font-size: clamp(22px, 3.6vw, 34px);
}
.stage--large .stat {
  font-size: clamp(44px, 7vw, 72px);
}
.stage--large .magnet {
  padding: 18px 38px;
  font-size: 17px;
  border-radius: 14px;
}
.stage--large .scrub-wrap {
  max-width: 380px;
}
.stage--large .scrub-track {
  height: 16px;
}
.stage--large .scrub-label {
  font-size: 14px;
}
.stage--large svg {
  width: clamp(150px, 26vw, 210px);
  height: clamp(150px, 26vw, 210px);
}

/* ---------- toast ---------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(14px);
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 13.5px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  z-index: 50;
}
.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

footer {
  margin-top: 56px;
  padding: 40px 24px 72px;
  border-top: 1px solid var(--line);
  color: var(--text-faint);
  font-size: 14px;
}

/* ---------- responsive ---------- */

@media (max-width: 1000px) {
  .settings {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .setting-motion {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .preview {
    grid-template-columns: minmax(0, 1fr);
  }
  .preset-rail {
    padding: 12px;
  }
  .preset-list {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }
  .preset-tab {
    flex: none;
    scroll-snap-align: start;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 52px 0 36px;
  }
  .settings {
    grid-template-columns: minmax(0, 1fr);
  }
  .setting-motion {
    grid-column: auto;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .stage {
    height: 150px;
  }
  .stage.stage--large {
    height: clamp(240px, 48vh, 340px);
  }
  .preview-actions {
    width: 100%;
  }
  .preview-actions .button {
    flex: 1;
    justify-content: center;
  }
}

/*
 * The library skips its own animations under reduced motion; these are the
 * page's own transitions, which it cannot know about.
 */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ---------- interruption ---------- */

/*
  Two lanes running the same interrupted slide, one inheriting the velocity it
  was already travelling at and one starting from rest. The comparison is the
  demo: a single redirected element looks fine on its own, and only next to the
  one that stops dead does the difference read.
*/
.lanes {
  display: flex;
  gap: 44px;
  align-items: flex-start;
}
.lane {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
/*
  A fixed-height track. The boxes are moved with transforms, which do not affect
  layout, but the labels sit under them and a track that sized itself to its
  content would still shift if anything ever changed.
*/
.lane-track {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lane-label {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 11px;
  color: var(--text-faint);
  white-space: nowrap;
}
.lane-label b {
  display: block;
  font-weight: 600;
  color: var(--text-dim);
}

.stage--large .lanes {
  gap: 84px;
}
.stage--large .lane-track {
  height: 150px;
}
.stage--large .lane-label {
  font-size: 13px;
}
