:root {
  --atlas-paper: var(--site-light-surface, #f9fdfe);
  --atlas-ink: #171b1a;
  --atlas-muted: #68706e;
  --atlas-faint: rgb(23 27 26 / 12%);
  --atlas-line: rgb(23 27 26 / 23%);
  color-scheme: light;
}

html {
  background: var(--atlas-paper);
  scroll-behavior: auto;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--atlas-paper);
  color: var(--atlas-ink);
}

body::selection {
  background: #d9dcdb;
}

.process-atlas,
.atlas-scroll,
.atlas-viewport {
  position: relative;
  width: 100%;
}

.process-atlas {
  background: var(--atlas-paper);
}

.atlas-scroll {
  height: 700svh;
}

.atlas-viewport {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: var(--atlas-paper);
  isolation: isolate;
}

.atlas-viewport::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 68% 36%, rgb(209 216 213 / 22%), transparent 34%),
    linear-gradient(180deg, rgb(255 255 255 / 48%), transparent 34%);
  content: "";
  pointer-events: none;
}

.atlas-viewport::after {
  position: absolute;
  z-index: 34;
  inset: 0;
  background: rgb(249 253 254 / 94%);
  backdrop-filter: blur(16px);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.process-atlas.is-overview-open .atlas-viewport::after {
  opacity: 1;
  pointer-events: auto;
}

.atlas-page-title {
  position: fixed;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.atlas-world {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 2780px;
  height: 1120px;
  transform-origin: 0 0;
  transition: transform 1450ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.process-atlas.is-overview-open .atlas-world {
  z-index: 36;
}

.atlas-map {
  position: absolute;
  inset: 0;
  width: 2780px;
  height: 1120px;
  overflow: visible;
}

.atlas-lanes,
.atlas-lane-labels,
.atlas-route-optional {
  transition: opacity 480ms ease;
}

.atlas-lanes line {
  stroke: var(--atlas-faint);
  stroke-width: 1.2;
}

.atlas-lane-labels {
  fill: var(--atlas-muted);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.atlas-route {
  fill: none;
  stroke: var(--atlas-line);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.atlas-route-main path {
  marker-end: url("#atlas-arrow");
  transition:
    stroke 360ms ease,
    stroke-width 360ms ease,
    opacity 360ms ease;
}

.atlas-route-main path.is-passed {
  stroke: rgb(23 27 26 / 62%);
}

.atlas-route-main path.is-current {
  stroke: var(--atlas-ink);
  stroke-width: 3.2;
}

#atlas-arrow path,
#atlas-arrow-optional path {
  fill: context-stroke;
}

.atlas-route-optional {
  stroke: rgb(110 100 92 / 38%);
  stroke-dasharray: 8 10;
  stroke-width: 1.6;
}

.atlas-route-optional path {
  marker-end: url("#atlas-arrow-optional");
  transition:
    stroke 260ms ease,
    stroke-width 260ms ease,
    opacity 260ms ease;
}

.atlas-route-optional .is-route-primary {
  stroke: rgb(23 27 26 / 68%);
  stroke-dasharray: none;
  stroke-width: 2.4;
  marker-end: url("#atlas-arrow");
}

.atlas-node {
  position: absolute;
  top: var(--node-y);
  left: var(--node-x);
  display: grid;
  width: 180px;
  min-height: 92px;
  align-content: center;
  padding: 16px 18px 15px;
  border: 1px solid rgb(23 27 26 / 19%);
  border-radius: 10px;
  background: rgb(249 253 254 / 84%);
  box-shadow: 0 16px 38px -32px rgb(23 27 26 / 45%);
  color: inherit;
  cursor: pointer;
  text-align: left;
  transform: translate(-50%, -50%);
  transition:
    opacity 460ms ease,
    border-color 460ms ease,
    background-color 460ms ease,
    box-shadow 460ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.atlas-node > span {
  position: absolute;
  top: 9px;
  right: 11px;
  color: rgb(23 27 26 / 43%);
  font-size: 11px;
  font-weight: 740;
  letter-spacing: 0.04em;
}

.atlas-node strong,
.atlas-node small {
  display: block;
}

.atlas-node strong {
  color: var(--atlas-ink);
  font-size: 17px;
  font-weight: 730;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.atlas-node small {
  margin-top: 8px;
  color: var(--atlas-muted);
  font-size: 12px;
  font-weight: 520;
  letter-spacing: -0.025em;
}

.atlas-node:hover,
.atlas-node:focus-visible {
  border-color: rgb(23 27 26 / 72%);
  outline: none;
  transform: translate(-50%, -50%) scale(1.05);
}

.atlas-node.is-active {
  border-color: rgb(23 27 26 / 74%);
  background: rgb(249 253 254 / 96%);
  box-shadow: 0 24px 64px -34px rgb(23 27 26 / 70%);
  transform: translate(-50%, -50%) scale(1.09);
}

.atlas-node.is-distant {
  opacity: 0.28;
}

.atlas-node-optional {
  width: 180px;
  min-height: 82px;
  border-color: rgb(110 100 92 / 32%);
  border-style: dashed;
  background: rgb(249 253 254 / 72%);
  cursor: default;
}

.atlas-node-optional:hover {
  border-color: rgb(110 100 92 / 32%);
  transform: translate(-50%, -50%);
}

.atlas-node:disabled,
.atlas-controls button:disabled {
  cursor: default;
  pointer-events: none;
}

.process-atlas:not(.is-overview-open) .atlas-node-optional {
  opacity: 0.28;
}

[data-routes].is-route-muted {
  opacity: 0.1 !important;
}

.process-atlas:not([data-state="overview"]) .atlas-lanes,
.process-atlas:not([data-state="overview"]) .atlas-route-optional {
  opacity: 0.28;
}

.process-atlas:not([data-state="overview"]) .atlas-lane-labels {
  opacity: 0.34;
}

.process-atlas:not([data-state="overview"]) .atlas-route-main path {
  opacity: 0.24;
}

.process-atlas:not([data-state="overview"]) .atlas-route-main path.is-passed {
  opacity: 0.38;
}

.process-atlas:not([data-state="overview"]) .atlas-route-main path.is-current {
  opacity: 1;
}

.atlas-copy-route {
  margin: 0 0 20px;
  color: var(--atlas-muted);
  font-size: clamp(0.68rem, 0.62vw, 1.15rem);
  font-weight: 760;
  letter-spacing: 0.16em;
}

.atlas-route-switcher {
  position: absolute;
  z-index: 22;
  top: clamp(6rem, 8vh, 10rem);
  right: clamp(1.5rem, 3vw, 5rem);
  display: flex;
  align-items: flex-end;
  gap: clamp(1rem, 1.4vw, 2.5rem);
  color: var(--atlas-muted);
  transition:
    opacity 280ms ease,
    transform 540ms cubic-bezier(0.16, 1, 0.3, 1);
}

.atlas-route-switcher > span {
  margin-right: 0.5rem;
  font-size: clamp(0.64rem, 0.5vw, 0.9rem);
  font-weight: 730;
  letter-spacing: 0.12em;
}

.atlas-route-switcher button {
  position: relative;
  padding: 0 0 9px;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  font-size: clamp(0.74rem, 0.66vw, 1.15rem);
  font-weight: 620;
  letter-spacing: -0.03em;
}

.atlas-route-switcher button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--atlas-ink);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 180ms ease,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.atlas-route-switcher button:hover,
.atlas-route-switcher button:focus-visible,
.atlas-route-switcher button[aria-checked="true"] {
  color: var(--atlas-ink);
  outline: none;
}

.atlas-route-switcher button[aria-checked="true"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.process-atlas:not([data-state="overview"]) .atlas-route-switcher {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
}

.process-atlas.is-overview-open .atlas-route-switcher {
  z-index: 42;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.atlas-map-tuner {
  position: absolute;
  z-index: 30;
  top: clamp(6.5rem, 8vh, 10rem);
  right: clamp(1.5rem, 3vw, 5rem);
  width: min(25rem, calc(100vw - 3rem));
  max-height: calc(100vh - 7.5rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 16px 18px 15px;
  border: 1px solid rgb(23 27 26 / 15%);
  border-radius: 10px;
  background: rgb(249 253 254 / 88%);
  box-shadow: 0 18px 50px -38px rgb(23 27 26 / 55%);
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  backdrop-filter: blur(14px);
  transition:
    opacity 260ms ease,
    transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

.atlas-overview-tuner {
  position: absolute;
  z-index: 44;
  top: clamp(11rem, 14vh, 18rem);
  right: clamp(1.5rem, 3vw, 5rem);
  width: min(25rem, calc(100vw - 3rem));
  padding: 16px 18px 15px;
  border: 1px solid rgb(23 27 26 / 15%);
  border-radius: 10px;
  background: rgb(249 253 254 / 90%);
  box-shadow: 0 18px 50px -38px rgb(23 27 26 / 55%);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 220ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-atlas.is-overview-open .atlas-overview-tuner {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.process-atlas[data-state="overview"] .atlas-map-tuner {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
}

.process-atlas.is-overview-open .atlas-map-tuner {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
}

.atlas-map-tuner-heading,
.atlas-map-tuner-section-heading,
.atlas-map-tuner label,
.atlas-overview-tuner label {
  display: grid;
  align-items: center;
}

.atlas-map-tuner-heading {
  grid-template-columns: 1fr auto;
  margin-bottom: 13px;
}

.atlas-map-tuner-heading strong {
  font-size: 0.82rem;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.atlas-map-tuner-section {
  margin: 0.45rem 0 0.1rem;
  color: rgb(78 84 81 / 72%);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.atlas-map-tuner-section-heading {
  grid-template-columns: 1fr auto;
  margin-top: 0.55rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgb(23 27 26 / 10%);
}

.atlas-map-tuner-section-heading .atlas-map-tuner-section {
  margin: 0;
}

.atlas-map-tuner-heading button,
.atlas-map-tuner-section-heading button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--atlas-muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
}

.atlas-map-tuner-heading button:hover,
.atlas-map-tuner-heading button:focus-visible,
.atlas-map-tuner-section-heading button:hover,
.atlas-map-tuner-section-heading button:focus-visible {
  color: var(--atlas-ink);
  outline: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.atlas-map-tuner label {
  grid-template-columns: 18px minmax(0, 1fr) 58px;
  gap: 10px;
  min-height: 30px;
  color: var(--atlas-muted);
  font-size: 0.7rem;
  font-weight: 680;
}

.atlas-map-tuner label.atlas-map-tuner-label--wide {
  grid-template-columns: 52px minmax(0, 1fr) 58px;
}

.atlas-overview-tuner label {
  grid-template-columns: 34px minmax(0, 1fr) 58px;
  gap: 10px;
  min-height: 30px;
  color: var(--atlas-muted);
  font-size: 0.7rem;
  font-weight: 680;
}

.atlas-map-tuner input[type="range"],
.atlas-overview-tuner input[type="range"] {
  width: 100%;
  margin: 0;
  accent-color: var(--atlas-ink);
  cursor: ew-resize;
}

.atlas-map-tuner output,
.atlas-overview-tuner output {
  color: var(--atlas-ink);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.process-atlas.is-map-tuning .atlas-world,
.process-atlas.is-map-tuning .atlas-particles,
.process-atlas.is-map-tuning .atlas-copy,
.process-atlas.is-overview-tuning .atlas-world {
  transition: none;
}

.atlas-scene {
  position: absolute;
  z-index: 4;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    visibility 0s linear 650ms,
    opacity 480ms ease;
}

.process-atlas:not([data-state="overview"]) .atlas-scene {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.atlas-particles {
  position: absolute;
  top: 13vh;
  width: min(61vw, 1880px);
  aspect-ratio: 3 / 2;
  opacity: 0;
  filter: none;
  transition:
    left 1450ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 820ms ease 180ms,
    transform 1450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-atlas[data-composition="copy-left"] .atlas-particles {
  left: 34vw;
}

.process-atlas[data-composition="copy-right"] .atlas-particles {
  left: 3vw;
}

.process-atlas:not([data-state="overview"]) .atlas-particles {
  opacity: 1;
}

.atlas-copy {
  position: absolute;
  z-index: 2;
  top: 32vh;
  width: min(28vw, 820px);
  transition:
    right 1280ms cubic-bezier(0.16, 1, 0.3, 1),
    left 1280ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 480ms ease,
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.atlas-copy::before {
  position: absolute;
  z-index: -1;
  inset: -5rem -6rem;
  background: radial-gradient(ellipse at center, var(--atlas-paper) 0 58%, transparent 82%);
  content: "";
  pointer-events: none;
}

.process-atlas[data-composition="copy-left"] .atlas-copy {
  right: auto;
  left: 7vw;
}

.process-atlas[data-composition="copy-right"] .atlas-copy {
  right: 7vw;
  left: auto;
}

.atlas-copy-index {
  display: flex;
  width: min(14rem, 100%);
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(1rem, 2.2vh, 2.8rem);
  color: var(--atlas-muted);
  font-size: clamp(0.72rem, 0.68vw, 1.3rem);
  font-weight: 720;
  letter-spacing: 0.08em;
}

.atlas-copy-index i {
  height: 1px;
  flex: 1;
  background: var(--atlas-line);
}

.atlas-copy-route {
  margin-bottom: 0.9rem;
}

.atlas-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 3.35vw, 7.8rem);
  font-weight: 690;
  letter-spacing: -0.07em;
  line-height: 1.05;
}

.atlas-copy-description {
  max-width: 28em;
  margin: clamp(1rem, 2.2vh, 2.8rem) 0 0;
  color: #58605e;
  font-size: clamp(1rem, 1vw, 2rem);
  font-weight: 470;
  letter-spacing: -0.035em;
  line-height: 1.72;
}

.atlas-handoff {
  position: absolute;
  z-index: 3;
  bottom: 12vh;
  display: grid;
  gap: 6px;
  margin: 0;
  opacity: 1;
  transition:
    right 720ms cubic-bezier(0.16, 1, 0.3, 1),
    left 720ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 280ms ease;
}

.atlas-handoff[hidden] {
  display: none;
}

.process-atlas[data-side="left"] .atlas-handoff {
  right: 8vw;
  left: auto;
}

.process-atlas[data-side="right"] .atlas-handoff {
  right: auto;
  left: 8vw;
}

.atlas-handoff span {
  color: var(--atlas-muted);
  font-size: clamp(0.68rem, 0.58vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.atlas-handoff strong {
  font-size: clamp(0.88rem, 0.78vw, 1.4rem);
  font-weight: 700;
}

.atlas-controls {
  position: absolute;
  z-index: 40;
  right: clamp(1.4rem, 3vw, 5rem);
  bottom: clamp(1rem, 2vh, 2.8rem);
  left: clamp(1.4rem, 3vw, 5rem);
  display: grid;
  grid-template-columns: clamp(11rem, 8.5vw, 20rem) repeat(10, minmax(0, 1fr));
  border-top: 1px solid var(--atlas-line);
}

.atlas-controls [data-atlas-overview-trigger] {
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: 1fr;
  align-items: center;
  gap: clamp(0.6rem, 0.55vw, 1rem);
  min-width: 0;
  margin: 7px clamp(1.15rem, 0.9vw, 2rem) 6px 0;
  padding: 7px clamp(0.7rem, 0.65vw, 1.2rem);
  border: 1px solid rgb(23 27 26 / 88%);
  border-radius: 3px;
  background: var(--atlas-ink);
  box-shadow: 0 10px 26px -18px rgb(23 27 26 / 72%);
  color: var(--atlas-paper);
  cursor: zoom-in;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.atlas-controls [data-atlas-overview-trigger]::before {
  display: none;
}

.atlas-controls [data-atlas-overview-trigger]:hover,
.atlas-controls [data-atlas-overview-trigger]:focus-visible {
  border-color: rgb(23 27 26 / 100%);
  background: #2b312f;
  box-shadow: 0 13px 30px -18px rgb(23 27 26 / 82%);
  color: var(--atlas-paper);
  outline: 2px solid rgb(23 27 26 / 18%);
  outline-offset: 3px;
  transform: translateY(-1px);
}

.atlas-overview-glyph {
  width: clamp(1rem, 0.8vw, 1.45rem);
  height: clamp(1rem, 0.8vw, 1.45rem);
  flex: 0 0 auto;
  border: 1px solid currentColor;
  background:
    linear-gradient(currentColor, currentColor) 50% 0 / 1px 100% no-repeat,
    linear-gradient(currentColor, currentColor) 0 50% / 100% 1px no-repeat;
  opacity: 0.82;
}

.atlas-controls .atlas-overview-label {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.atlas-controls .atlas-overview-label strong,
.atlas-controls .atlas-overview-label small {
  display: block;
  overflow: hidden;
  color: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.atlas-controls .atlas-overview-label strong {
  font-size: clamp(0.68rem, 0.58vw, 1.05rem);
  font-weight: 720;
  letter-spacing: -0.025em;
}

.atlas-controls .atlas-overview-label small {
  font-size: clamp(0.54rem, 0.4vw, 0.72rem);
  font-weight: 560;
  letter-spacing: -0.02em;
  opacity: 0.68;
}

.process-atlas.is-overview-open .atlas-controls [data-atlas-overview-trigger] {
  background: #2b312f;
  color: var(--atlas-paper);
  cursor: zoom-out;
}

.process-atlas.is-overview-open .atlas-controls [data-atlas-overview-trigger]::before {
  opacity: 1;
  transform: scaleX(1);
}

.process-atlas.is-overview-open .atlas-lanes,
.process-atlas.is-overview-open .atlas-lane-labels,
.process-atlas.is-overview-open .atlas-route-optional,
.process-atlas.is-overview-open .atlas-route-main path,
.process-atlas.is-overview-open .atlas-route-main path.is-passed,
.process-atlas.is-overview-open .atlas-route-main path.is-current,
.process-atlas.is-overview-open .atlas-node,
.process-atlas.is-overview-open .atlas-node.is-distant {
  opacity: 1;
}

.process-atlas.is-overview-open .atlas-node.is-active {
  border-color: rgb(23 27 26 / 74%);
  background: rgb(249 253 254 / 98%);
  transform: translate(-50%, -50%);
}

.atlas-controls button {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 4px;
  padding: 13px 10px 10px;
  border: 0;
  background: none;
  color: var(--atlas-muted);
  cursor: pointer;
  text-align: left;
  transition:
    color 240ms ease,
    opacity 240ms ease;
}

.atlas-controls button::before {
  position: absolute;
  top: -2px;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--atlas-ink);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 220ms ease,
    transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

.atlas-controls button:hover,
.atlas-controls button:focus-visible,
.atlas-controls button.is-active {
  color: var(--atlas-ink);
  outline: none;
}

.atlas-controls button.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.atlas-controls span,
.atlas-controls strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.atlas-controls span {
  font-size: clamp(0.58rem, 0.45vw, 0.82rem);
  font-weight: 750;
  letter-spacing: 0.08em;
}

.atlas-controls strong {
  font-size: clamp(0.66rem, 0.56vw, 1rem);
  font-weight: 650;
  letter-spacing: -0.035em;
}

.atlas-instruction {
  position: absolute;
  z-index: 20;
  bottom: clamp(5.8rem, 8vh, 9rem);
  left: clamp(1.4rem, 3vw, 5rem);
  margin: 0;
  color: var(--atlas-muted);
  font-size: clamp(0.72rem, 0.58vw, 1rem);
}

.atlas-instruction span {
  display: inline-grid;
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 8px;
  place-items: center;
  border: 1px solid var(--atlas-line);
  border-radius: 50%;
}

.atlas-status {
  position: fixed;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .atlas-viewport::before {
    background: linear-gradient(180deg, rgb(255 255 255 / 58%), transparent 46%);
  }

  .atlas-route-switcher {
    top: 6.2rem;
    right: 1.4rem;
    left: 1.4rem;
    justify-content: space-between;
    gap: 0.65rem;
  }

  .atlas-route-switcher > span {
    display: none;
  }

  .atlas-route-switcher button {
    padding-bottom: 7px;
    font-size: 0.78rem;
  }

  .atlas-map-tuner {
    display: none;
  }

  .atlas-overview-tuner {
    display: none;
  }

  .atlas-particles,
  .process-atlas[data-composition="copy-left"] .atlas-particles,
  .process-atlas[data-composition="copy-right"] .atlas-particles {
    top: 15vh;
    left: 2vw;
    width: 96vw;
    transform: none;
  }

  .process-atlas:not(.is-overview-open) .atlas-world {
    opacity: 0.16;
  }

  .atlas-copy,
  .process-atlas[data-composition="copy-left"] .atlas-copy,
  .process-atlas[data-composition="copy-right"] .atlas-copy {
    top: auto;
    right: 1.4rem;
    bottom: 7.8rem;
    left: 1.4rem;
    width: auto;
    z-index: 6;
    padding: 1rem 0 0.75rem;
    background: var(--atlas-paper);
    box-shadow:
      -1.4rem 0 0 var(--atlas-paper),
      1.4rem 0 0 var(--atlas-paper),
      0 -1.25rem 2.5rem var(--atlas-paper);
  }

  .atlas-copy-index {
    margin-bottom: 0.75rem;
  }

  .atlas-copy-route {
    margin-bottom: 0.5rem;
  }

  .atlas-copy h2 {
    font-size: clamp(2.05rem, 8.6vw, 3.05rem);
  }

  .atlas-copy-description {
    max-width: 33em;
    margin-top: 0.75rem;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .atlas-handoff {
    display: none;
  }

  .atlas-controls {
    right: 1rem;
    bottom: 0.7rem;
    left: 1rem;
    display: flex;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .atlas-controls::-webkit-scrollbar {
    display: none;
  }

  .atlas-controls button {
    min-width: 6.6rem;
    flex: 0 0 6.6rem;
    padding: 10px 8px 8px;
  }

  .atlas-controls [data-atlas-overview-trigger] {
    min-width: 9.75rem;
    flex: 0 0 9.75rem;
    margin: 5px 0.75rem 4px 0;
    padding: 6px 10px;
  }

  .atlas-controls span {
    font-size: 0.65rem;
  }

  .atlas-controls strong {
    font-size: 0.75rem;
  }

  .atlas-instruction {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .atlas-world,
  .atlas-route-switcher,
  .atlas-map-tuner,
  .atlas-overview-tuner,
  .atlas-scene,
  .atlas-particles,
  .atlas-copy,
  .atlas-handoff,
  .atlas-controls button::before {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
