/* Hero system */
.harbor-hero {
  position: relative;
  overflow-x: clip;
  text-align: center;
}

.harbor-hero::before {
  position: absolute;
  inset: 0 0 auto;
  height: 520px;
  background-image: radial-gradient(circle, rgba(23, 71, 166, .14) 1px, transparent 1.4px);
  background-size: 26px 26px;
  content: "";
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 88%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 88%);
}

.harbor-hero::after {
  position: absolute;
  bottom: -180px;
  left: 50%;
  width: min(1180px, 110vw);
  height: 540px;
  background: radial-gradient(closest-side, rgba(23, 71, 166, .16), transparent 74%);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.harbor-content {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: var(--max-width);
  flex-direction: column;
  align-items: center;
  margin-inline: auto;
  padding: 30px var(--gutter) 0;
}

.port-sign {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  padding: 5px 15px 5px 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-paper);
  box-shadow: 0 2px 8px rgba(16, 54, 127, .06);
}

.port-sign-mark {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 7px;
  background: var(--color-accent);
  color: var(--color-paper);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
}

.port-sign-label {
  color: var(--color-accent-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
}

.harbor-title {
  max-width: 920px;
  margin: 18px 0 20px;
  font-size: clamp(52px, 5.3vw, 72px);
}

.harbor-lede {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--color-text-muted);
  font-size: 16.5px;
  line-height: 1.7;
}

.harbor-lede strong {
  color: var(--color-text);
}

.harbor-actions {
  justify-content: center;
  margin-bottom: 18px;
}

.platform-strip,
.flag-strip {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 9px 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-strip li,
.flag-strip li {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  color: var(--color-text-muted);
  font-size: 13px;
}

.platform-strip svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.flag-strip svg,
.flag-inline svg {
  width: 24px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 3px;
}

.dock-meta {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 11px 16px;
  margin: 0 0 26px;
  padding: 10px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-paper);
  box-shadow: var(--shadow-small);
}

.dock-meta-label {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
}

.dock-meta-divider {
  width: 1px;
  height: 20px;
  flex-shrink: 0;
  background: var(--color-border);
}

/* Berth dispatch window */
.berth-stage {
  position: relative;
  z-index: 3;
  width: min(1108px, calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  padding-bottom: 34px;
}

.berth-console {
  position: relative;
  overflow: visible;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-window);
  background: var(--color-paper);
  box-shadow: var(--shadow-window);
}

.berth-geo {
  position: absolute;
  z-index: 4;
  width: 0;
  height: 0;
}

.berth-geo-pink {
  top: -15px;
  left: -25px;
  border-right: 17px solid transparent;
  border-bottom: 15px solid var(--color-pink);
  transform: rotate(-18deg);
}

.berth-geo-amber {
  right: -27px;
  bottom: -13px;
  border-top: 13px solid var(--color-warning);
  border-left: 15px solid transparent;
  transform: rotate(12deg);
}

.console-chrome {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--color-border);
}

.chrome-lamp {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
}

.chrome-lamp-red {
  background: var(--color-error);
}

.chrome-lamp-yellow {
  background: var(--color-warning);
}

.chrome-lamp-green {
  background: var(--color-success);
}

.chrome-file,
.chrome-code,
.console-status {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
}

.chrome-file {
  margin-left: 10px;
  letter-spacing: .06em;
}

.chrome-code {
  margin-left: auto;
  color: var(--color-accent-dark);
  letter-spacing: .14em;
}

.console-layout {
  display: grid;
  grid-template-columns: 246px minmax(0, 1fr);
  min-width: 0;
}

.berth-registry {
  min-width: 0;
  padding: 10px 0 8px;
  border-right: 1px solid var(--color-border);
  background: var(--color-panel);
  text-align: left;
}

.registry-heading {
  margin: 0;
  padding: 3px 18px 8px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
}

.registry-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.registry-row {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  padding: 8px 15px;
  border-left: 3px solid transparent;
  color: var(--color-text);
  font-size: 13px;
}

.registry-row.is-current {
  border-left-color: var(--color-accent);
  background: var(--color-accent-tint);
}

.registry-name {
  overflow-wrap: anywhere;
}

.registry-code {
  margin-left: auto;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
}

.registry-status {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-success);
  animation: berth-pulse 2.4s ease-in-out infinite;
}

.registry-row:nth-child(2) .registry-status {
  animation-delay: .45s;
}

.registry-row:nth-child(3) .registry-status {
  animation-delay: .9s;
}

.registry-row:nth-child(4) .registry-status {
  animation-delay: 1.35s;
}

.registry-row:nth-child(5) .registry-status {
  animation-delay: 1.8s;
}

.registry-foot {
  margin: 7px 18px 2px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
}

.berth-map {
  min-width: 0;
  padding: 6px 8px 2px;
  overflow: hidden;
}

.berth-map svg {
  width: 100%;
  height: auto;
  min-height: 228px;
}

.map-dot {
  fill: var(--color-panel-strong);
}

.map-contour {
  fill: none;
  stroke: var(--color-panel-strong);
  stroke-width: 1.4;
}

.map-slot {
  fill: var(--color-panel);
  stroke: var(--color-border);
  stroke-width: 1;
}

.map-slot-hot {
  fill: var(--color-accent-tint);
  stroke: var(--color-accent);
  stroke-width: 1.5;
}

.map-label {
  fill: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.map-label-hot {
  fill: var(--color-accent-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.map-state {
  fill: var(--color-success);
  font-family: var(--font-mono);
  font-size: 10px;
}

.map-route {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 2.4;
  stroke-dasharray: 8 6;
  stroke-linecap: round;
  animation: berth-drift 5s linear infinite;
}

.map-end {
  fill: var(--color-accent);
}

.map-ring {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.6;
  opacity: .45;
}

.map-note {
  fill: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
}

.console-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 9px 18px;
  border-top: 1px solid var(--color-border);
  letter-spacing: .06em;
  text-align: left;
}

.console-status strong {
  color: var(--color-accent-dark);
}

.console-status-last {
  margin-left: auto;
}

/* Tabs */
.tabs {
  min-width: 0;
}

.tab-list {
  display: flex;
  max-width: 100%;
  gap: 6px;
  margin-bottom: 24px;
  padding: 6px;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-panel-strong);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.tab-list [role="tab"] {
  min-width: max-content;
  min-height: 42px;
  padding: 8px 17px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  background: transparent;
  color: var(--color-text-muted);
  font-weight: 700;
}

.tab-list [role="tab"][aria-selected="true"] {
  border-color: var(--color-border);
  background: var(--color-paper);
  color: var(--color-accent-dark);
  box-shadow: var(--shadow-small);
}

[role="tabpanel"][hidden] {
  display: none;
}

/* Long-page toc */
.toc-tabs {
  position: sticky;
  z-index: 35;
  top: calc(var(--header-height) + 10px);
  display: flex;
  max-width: 100%;
  gap: 6px;
  margin-bottom: 34px;
  padding: 7px;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-paper);
  box-shadow: var(--shadow-small);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.toc-tabs.is-static {
  position: static;
}

.toc-tabs a {
  display: inline-flex;
  min-width: max-content;
  min-height: 38px;
  align-items: center;
  padding: 7px 13px;
  border-radius: var(--radius-control);
  color: var(--color-text-muted);
  font-size: 14px;
  text-decoration: none;
}

.toc-tabs a:hover,
.toc-tabs a.is-current,
.toc-tabs a[aria-current="location"] {
  background: var(--color-panel-strong);
  color: var(--color-accent-dark);
}

body:has(.toc-tabs) section[id] {
  scroll-margin-top: calc(var(--header-height) + 82px);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  min-width: 0;
  overflow: clip;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-panel);
}

.faq-item summary {
  position: relative;
  min-height: 56px;
  padding: 16px 52px 16px 18px;
  color: var(--color-text);
  font-weight: 750;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 19px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-answer {
  padding: 0 18px 18px;
  color: var(--color-text-muted);
}

.faq-answer > :last-child {
  margin-bottom: 0;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-panel);
}

.price-card.is-featured {
  border-color: var(--color-accent);
  background: var(--color-paper);
  box-shadow: var(--shadow-window);
}

.price-badge {
  position: absolute;
  top: -14px;
  right: 18px;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  color: var(--color-paper);
  font-size: 12px;
  font-weight: 750;
}

.price-name {
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .12em;
}

.price-line {
  margin: 8px 0 16px;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.price-line small {
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
}

.price-features {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: var(--color-text-muted);
}

.price-features li {
  position: relative;
  padding: 7px 0 7px 19px;
}

.price-features li::before {
  position: absolute;
  top: 16px;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  content: "";
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

/* Tables */
.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-paper);
  -webkit-overflow-scrolling: touch;
}

.data-table,
.route-table,
.compare-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: var(--color-text);
  font-size: 14px;
}

.data-table th,
.data-table td,
.route-table th,
.route-table td,
.compare-table th,
.compare-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: middle;
}

.data-table th,
.route-table th,
.compare-table th {
  background: var(--color-panel-strong);
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .07em;
}

.data-table td:first-child,
.route-table td:first-child,
.compare-table td:first-child {
  color: var(--color-text);
  font-weight: 700;
}

.data-table tbody tr:last-child td,
.route-table tbody tr:last-child td,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.route-group td {
  background: var(--color-panel);
  color: var(--color-accent-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
}

.prose > .data-table {
  display: block;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Platform cards */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.platform-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-panel);
}

.platform-card h3 {
  margin: 15px 0 6px;
  font-family: var(--font-body);
  font-size: 17px;
}

.platform-card p {
  color: var(--color-text-muted);
  font-size: 13px;
}

.platform-card .btn {
  width: 100%;
  margin-top: auto;
  padding-inline: 10px;
}

/* Articles */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-panel);
  color: var(--color-text);
  text-decoration: none;
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.article-card:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 15px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
}

.article-card h3 {
  font-size: 25px;
}

.article-card p {
  color: var(--color-text-muted);
}

.article-link {
  margin-top: auto;
  color: var(--color-accent-dark);
  font-weight: 700;
}

/* Callouts and promo */
.callout {
  position: relative;
  margin: 28px 0;
  padding: 20px 22px 20px 25px;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  background: var(--color-panel-strong);
  color: var(--color-text);
}

.callout > :last-child {
  margin-bottom: 0;
}

.end-promo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 48px;
  padding: clamp(24px, 5vw, 48px);
  overflow: clip;
  border-radius: var(--radius-window);
  background: var(--color-accent-dark);
  color: var(--color-paper);
  box-shadow: var(--shadow-window);
}

.end-promo::after {
  position: absolute;
  right: 18%;
  bottom: -90px;
  width: 260px;
  height: 180px;
  border: 1px dashed var(--color-border);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: rotate(-8deg);
}

.end-promo h2,
.end-promo h3 {
  color: var(--color-paper);
}

.end-promo p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--color-panel-strong);
}

.end-promo .btn {
  position: relative;
  z-index: 1;
  border-color: var(--color-paper);
  background: var(--color-paper);
  color: var(--color-accent-dark);
}

/* Feature ledger */
.feature-ledger {
  display: grid;
  grid-template-columns: minmax(190px, .38fr) minmax(0, 1fr);
  gap: 22px;
}

.feature-index {
  display: grid;
  align-content: start;
  gap: 4px;
}

.feature-index button {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 58px;
  align-items: center;
  padding: 9px 12px;
  border: 0;
  border-left: 3px solid transparent;
  background: transparent;
  color: var(--color-text-muted);
  text-align: left;
}

.feature-index button[aria-selected="true"] {
  border-left-color: var(--color-accent);
  background: var(--color-panel-strong);
  color: var(--color-text);
}

.feature-number {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 24px;
}

.feature-detail {
  min-height: 260px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-paper);
  box-shadow: var(--shadow-soft);
}

.feature-footnote {
  margin-top: 24px;
  padding-top: 15px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

/* Preview-only layout, backed by the shared tokens */
.preview-section {
  padding-top: 80px;
  padding-bottom: 80px;
  overflow-x: clip;
}

.preview-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.preview-heading p {
  color: var(--color-text-muted);
  font-size: 18px;
}

.preview-nav {
  position: relative;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.preview-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.swatch {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-paper);
}

.swatch-color {
  height: 82px;
  border-bottom: 1px solid var(--color-border);
}

.swatch-color-bg {
  background: var(--color-bg);
}

.swatch-color-panel {
  background: var(--color-panel);
}

.swatch-color-panel-strong {
  background: var(--color-panel-strong);
}

.swatch-color-border {
  background: var(--color-border);
}

.swatch-color-accent {
  background: var(--color-accent);
}

.swatch-color-accent-dark {
  background: var(--color-accent-dark);
}

.swatch-color-text {
  background: var(--color-text);
}

.swatch-color-muted {
  background: var(--color-text-muted);
}

.swatch-color-success {
  background: var(--color-success);
}

.swatch-color-warning {
  background: var(--color-warning);
}

.swatch-color-error {
  background: var(--color-error);
}

.swatch-color-paper {
  background: var(--color-paper);
}

.swatch-meta {
  padding: 12px;
}

.swatch-meta strong,
.swatch-meta code {
  display: block;
}

.type-sample {
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-panel);
}

.type-display {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
}

.type-body {
  font-family: var(--font-body);
  font-size: 18px;
}

.type-mono {
  color: var(--color-accent-dark);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .08em;
}

.state-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button-disabled {
  opacity: .48;
  pointer-events: none;
}

.static-footer {
  margin-top: 80px;
}

@keyframes berth-pulse {
  0%,
  100% {
    opacity: .4;
    transform: scale(.8);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes berth-drift {
  to {
    stroke-dashoffset: -70;
  }
}

@media (max-width: 1020px) {
  .pricing-grid,
  .article-grid,
  .preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .console-layout {
    grid-template-columns: 1fr;
  }

  .berth-registry {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .berth-geo-pink {
    left: 4px;
  }

  .berth-geo-amber {
    right: 4px;
  }
}

@media (max-width: 768px) {
  .harbor-title {
    font-size: clamp(32px, 9.5vw, 40px);
  }

  .dock-meta {
    border-radius: var(--radius-card);
  }

  .dock-meta-divider {
    display: none;
  }

  .feature-ledger {
    grid-template-columns: 1fr;
  }

  .feature-index {
    display: flex;
    max-width: 100%;
    overflow-x: auto;
  }

  .feature-index button {
    min-width: 160px;
  }

  .end-promo,
  .preview-two {
    grid-template-columns: 1fr;
  }

  .end-promo .btn {
    justify-self: start;
  }

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

  .map-note {
    display: none;
  }
}

@media (max-width: 640px) {
  .pricing-grid,
  .article-grid,
  .preview-grid,
  .platform-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .price-card,
  .platform-card,
  .article-card {
    transform: none;
  }

  .berth-stage {
    width: calc(100% - 32px);
  }

  .berth-map {
    padding-inline: 0;
  }

  .berth-map svg {
    min-width: 620px;
  }

  .berth-map {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .console-status-last {
    width: 100%;
    margin-left: 0;
  }

  .platform-strip,
  .flag-strip {
    row-gap: 12px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .registry-status,
  .map-route {
    animation: none;
  }
}