.tab-shell {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg-panel);
  box-shadow: var(--shadow-soft);
}

.tab-list,
[role="tablist"] {
  padding: 8px;
  display: flex;
  gap: 7px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-deep);
  scrollbar-width: thin;
}

.tab-button,
[role="tab"] {
  min-height: 42px;
  padding: 0 16px;
  flex: 0 0 auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: var(--color-text-muted);
  background: var(--color-bg-panel);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
}

.tab-button:hover,
[role="tab"]:hover {
  color: var(--color-text);
  border-color: var(--color-border-strong);
}

.tab-button.is-active,
.tab-button[aria-selected="true"],
[role="tab"].is-active,
[role="tab"][aria-selected="true"] {
  color: var(--color-text);
  border-color: var(--color-warn);
  background: var(--color-warn-dark);
}

.tab-panel,
[role="tabpanel"] {
  padding: clamp(22px, 4vw, 38px);
}

.tab-panel[hidden],
[role="tabpanel"][hidden] {
  display: none;
}

.toc {
  position: sticky;
  z-index: 10;
  top: 12px;
  max-width: 100%;
  margin-bottom: 36px;
  padding: 8px;
  display: flex;
  gap: 7px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-panel-glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.toc a {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius-pill);
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.toc a:hover {
  color: var(--color-text);
  background: var(--color-bg-panel-2);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-panel);
}

.faq-item summary {
  min-height: 60px;
  padding: 16px 52px 16px 19px;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--color-text);
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-accent);
  background: var(--color-bg-deep);
  font-family: var(--font-mono);
}

.faq-item[open] {
  border-color: var(--color-border-strong);
  background: var(--color-bg-panel-2);
}

.faq-item[open] summary::after {
  content: "−";
}

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

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

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

.term-card {
  position: relative;
  padding: 23px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg-panel);
  box-shadow: var(--shadow-soft);
}

.term-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(var(--color-accent), var(--color-accent-dark));
}

.term-code {
  margin-bottom: 10px;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.term-card h3 {
  margin-bottom: 9px;
}

.term-card p:last-child {
  margin-bottom: 0;
}

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

.client-card {
  position: relative;
  min-width: 0;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg-panel);
  box-shadow: var(--shadow-soft);
}

.client-card.is-featured {
  border-color: var(--color-accent-dark);
  background:
    linear-gradient(135deg, var(--color-accent-soft), var(--color-transparent) 58%),
    var(--color-bg-panel);
}

.client-card-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.client-card-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}

.client-card-title {
  flex: 1;
}

.client-card-title h3 {
  margin-bottom: 4px;
}

.client-card-title p {
  margin: 0;
  font-size: 0.82rem;
}

.client-card .badge-row {
  margin-top: 13px;
}

.client-card-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.client-version:empty {
  display: none;
}

.client-version:not(:empty) {
  margin-top: 12px;
  display: inline-flex;
  color: var(--color-text-faint);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.badge-primary-pick {
  color: var(--color-bg);
  border-color: var(--color-accent);
  background: var(--color-accent);
}

.badge-recommended {
  color: var(--color-text);
  border-color: var(--color-warn);
  background: var(--color-warn-dark);
}

.badge-archived {
  color: var(--color-text-faint);
  border-color: var(--color-border);
  background: var(--color-bg-deep);
}

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

.post-card {
  min-width: 0;
  padding: 23px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg-panel);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast);
}

.post-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent-dark);
}

.post-card-meta {
  margin-bottom: 13px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: var(--color-text-faint);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.post-card h3 {
  margin-bottom: 11px;
}

.post-card h3 a:hover {
  color: var(--color-accent);
}

.post-card p {
  flex: 1;
  margin-bottom: 20px;
  font-size: 0.88rem;
}

.post-card-more {
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 750;
}

.callout {
  position: relative;
  margin: 24px 0;
  padding: 20px 22px 20px 25px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  background: var(--color-bg-panel-2);
}

.callout::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--color-accent);
}

.callout-warn::before {
  background: var(--color-warn);
}

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

.callout-title {
  margin-bottom: 7px;
  color: var(--color-text);
  font-weight: 800;
}

.callout p:last-child,
.callout ul:last-child {
  margin-bottom: 0;
}

.download-cta-card {
  margin-top: 48px;
  padding: clamp(24px, 4vw, 36px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--color-accent-dark);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, var(--color-accent-soft), var(--color-transparent) 62%),
    var(--color-bg-panel);
  box-shadow: var(--shadow-soft);
}

.download-cta-card h2,
.download-cta-card h3 {
  margin-bottom: 8px;
}

.download-cta-card p {
  margin-bottom: 0;
}

.dl-fab {
  position: fixed;
  z-index: 35;
  right: max(18px, calc((100vw - var(--page-width)) / 2));
  bottom: 20px;
  max-width: calc(100vw - 32px);
  min-height: 54px;
  padding: 9px 16px 9px 10px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  overflow: hidden;
  border: 1px solid var(--color-warn);
  border-radius: var(--radius-pill);
  color: var(--color-text);
  background: var(--color-warn-dark);
  box-shadow: var(--shadow-button);
  font-size: 0.82rem;
  font-weight: 800;
}

.dl-fab:hover {
  transform: translateY(-3px);
}

.dl-fab-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-warn);
}

.dl-fab-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.preview-hero {
  position: relative;
  min-height: 822px;
  overflow-x: clip;
}

.preview-hero::before {
  content: "";
  position: absolute;
  top: 64px;
  right: -160px;
  width: 640px;
  height: 640px;
  border: 1px solid var(--color-accent-line);
  border-radius: 50%;
  opacity: 0.25;
}

.hero-canvas {
  position: relative;
  min-height: 822px;
}

.hero-copy-card {
  position: absolute;
  z-index: 8;
  top: 55px;
  left: var(--gutter);
  width: min(690px, calc(100% - (var(--gutter) * 2)));
  padding: 30px 34px 31px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-xl);
  background: var(--color-panel-glass);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(16px);
}

.hero-copy-card::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: -1px;
  left: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-transparent), var(--color-accent), var(--color-transparent));
  opacity: 0.62;
}

.hero-copy-card h1 {
  margin-bottom: 0;
  line-height: 0.98;
}

.hero-title-line {
  display: block;
}

.hero-description {
  max-width: 590px;
  margin: 20px 0 0;
  font-size: 0.94rem;
}

.hero-copy-card .button-row {
  margin-top: 22px;
}

.hero-copy-card .topic-chips {
  margin-top: 18px;
}

.hero-mini-card {
  position: absolute;
  z-index: 7;
  bottom: 48px;
  padding: 18px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg-panel);
  box-shadow: var(--shadow-soft);
}

.hero-platform-card {
  left: var(--gutter);
  width: 242px;
}

.hero-kernel-card {
  left: calc(var(--gutter) + 258px);
  width: 220px;
  background: var(--color-bg-panel-2);
}

.mini-label {
  margin-bottom: 11px;
  color: var(--color-text-faint);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mini-platforms {
  display: flex;
  gap: 7px;
}

.mini-platforms span {
  padding: 7px 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  background: var(--color-bg-deep);
  font-family: var(--font-mono);
  font-size: 0.63rem;
}

.mini-kernel {
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 800;
}

.mini-note {
  margin: 5px 0 0;
  font-size: 0.7rem;
  line-height: 1.5;
}

.document-stage {
  position: absolute;
  z-index: 4;
  top: 237px;
  right: var(--gutter);
  width: min(852px, calc(100% - (var(--gutter) * 2)));
  height: 566px;
}

.document-layer {
  position: absolute;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-bg-panel-2);
  box-shadow: var(--shadow-soft);
}

.document-layer-back {
  inset: 30px 16px 4px 62px;
  transform: rotate(2.2deg);
  opacity: 0.54;
}

.document-layer-mid {
  inset: 17px 29px 15px 35px;
  transform: rotate(-1.1deg);
  background: var(--color-bg-panel-3);
  opacity: 0.76;
}

.editor-window {
  position: absolute;
  inset: 0 0 28px;
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-xl);
  background: var(--color-bg-panel);
  box-shadow: var(--shadow-panel);
}

.window-topbar {
  height: 46px;
  padding: 0 17px;
  display: grid;
  grid-template-columns: 130px 1fr 130px;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-deep);
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dot {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  border-radius: 50%;
}

.window-dot-warn {
  background: var(--color-warn);
}

.window-dot-yellow {
  background: var(--color-yellow);
}

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

.window-title {
  justify-self: center;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 0.64rem;
}

.window-state {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-success);
  font-family: var(--font-mono);
  font-size: 0.58rem;
}

.window-state::before {
  content: "";
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 10px var(--color-success);
}

.editor-ribbon {
  height: 58px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-panel-2);
}

.ribbon-group {
  display: flex;
  gap: 7px;
}

.ribbon-pill {
  height: 32px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: var(--color-text-muted);
  background: var(--color-bg-panel);
  font-size: 0.64rem;
  font-weight: 700;
}

.ribbon-pill.is-current {
  color: var(--color-text);
  border-color: var(--color-warn);
  background: var(--color-warn-dark);
}

.editor-body {
  position: relative;
  height: calc(100% - 104px);
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr) 164px;
}

.review-index {
  padding: 18px 12px;
  border-right: 1px solid var(--color-border);
  background: var(--color-bg-deep);
}

.panel-caption {
  margin: 0 7px 13px;
  color: var(--color-text-faint);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

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

.review-list li {
  min-height: 44px;
  padding: 8px;
  display: grid;
  grid-template-columns: 23px 1fr;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  font-size: 0.64rem;
}

.review-list li + li {
  margin-top: 4px;
}

.review-list li.is-current {
  color: var(--color-text);
  background: var(--color-bg-panel-2);
  box-shadow: inset 2px 0 0 var(--color-accent);
}

.review-number {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.52rem;
}

.document-page {
  position: relative;
  padding: 19px 22px;
  background:
    linear-gradient(var(--color-grid) 1px, var(--color-transparent) 1px),
    var(--color-bg-panel);
  background-size: 100% 29px, auto;
}

.document-kicker {
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
}

.document-page h2 {
  margin: 7px 0 8px;
  font-size: 1.25rem;
}

.document-intro {
  margin-bottom: 11px;
  font-size: 0.63rem;
  line-height: 1.65;
}

.client-route {
  position: relative;
  z-index: 2;
  margin-top: 7px;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: 112px 1fr 14px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-deep);
}

.client-route strong {
  font-family: var(--font-mono);
  font-size: 0.63rem;
}

.client-route span {
  color: var(--color-text-muted);
  font-size: 0.56rem;
}

.route-node {
  width: 10px;
  height: 10px;
  justify-self: center;
  flex-shrink: 0;
  border: 2px solid var(--color-bg-deep);
  border-radius: 50%;
}

.route-accent {
  background: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent);
}

.route-warn {
  background: var(--color-warn);
  box-shadow: 0 0 10px var(--color-warn);
}

.route-yellow {
  background: var(--color-yellow);
  box-shadow: 0 0 10px var(--color-yellow);
}

.config-snippet {
  margin-top: 10px;
  padding: 8px 10px;
  border-left: 2px solid var(--color-accent-dark);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  color: var(--color-text-muted);
  background: var(--color-bg-deep);
  font-family: var(--font-mono);
  font-size: 0.52rem;
  line-height: 1.6;
}

.syntax-key {
  color: var(--color-accent);
}

.syntax-value {
  color: var(--color-yellow);
}

.info-rail {
  padding: 18px 13px;
  border-left: 1px solid var(--color-border);
  background: var(--color-bg-deep);
}

.platform-target {
  position: relative;
  min-height: 48px;
  margin-bottom: 10px;
  padding: 8px 8px 8px 33px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-panel-2);
}

.platform-target::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.platform-target.target-accent::before {
  background: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent);
}

.platform-target.target-warn::before {
  background: var(--color-warn);
  box-shadow: 0 0 10px var(--color-warn);
}

.platform-target.target-yellow::before {
  background: var(--color-yellow);
  box-shadow: 0 0 10px var(--color-yellow);
}

.platform-target strong {
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.platform-target span {
  color: var(--color-text-faint);
  font-size: 0.52rem;
}

.route-lines {
  position: absolute;
  z-index: 1;
  right: 151px;
  bottom: 86px;
  width: 86px;
  height: 170px;
  pointer-events: none;
}

.route-lines path {
  fill: none;
  stroke-width: 2;
  stroke-dasharray: 4 4;
}

.line-accent {
  stroke: var(--color-accent);
}

.line-warn {
  stroke: var(--color-warn);
}

.line-yellow {
  stroke: var(--color-yellow);
}

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

.swatch {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-panel);
}

.swatch-color {
  height: 86px;
}

.swatch-info {
  padding: 11px 13px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

.type-specimen {
  display: grid;
  gap: 12px;
}

.type-row {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  border-bottom: 1px solid var(--color-border);
}

.type-label {
  color: var(--color-text-faint);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.type-display {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.05em;
}

.type-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}

.type-body {
  color: var(--color-text-muted);
}

.type-mono {
  color: var(--color-accent);
  font-family: var(--font-mono);
}

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

  .preview-hero,
  .hero-canvas {
    min-height: 1040px;
  }

  .document-stage {
    top: 460px;
  }

  .hero-mini-card {
    bottom: 28px;
  }
}

@media (max-width: 760px) {
  .glossary-grid,
  .download-grid,
  .post-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

  .type-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .toc {
    top: 7px;
    border-radius: var(--radius-md);
  }

  .tab-list,
  [role="tablist"] {
    padding: 7px;
  }

  .dl-fab {
    right: 16px;
    bottom: 16px;
  }

  .preview-hero,
  .hero-canvas {
    min-height: auto;
  }

  .hero-copy-card,
  .hero-mini-card,
  .document-stage {
    position: relative;
    inset: auto;
    width: auto;
    margin-inline: var(--gutter);
  }

  .hero-copy-card {
    margin-top: 28px;
    padding: 25px 21px;
  }

  .hero-copy-card h1 {
    font-size: clamp(2.65rem, 13vw, 3.45rem);
  }

  .hero-platform-card,
  .hero-kernel-card {
    margin-top: 12px;
  }

  .document-stage {
    height: auto;
    margin-top: 18px;
    margin-bottom: 36px;
  }

  .document-layer {
    display: none;
  }

  .editor-window {
    position: relative;
    inset: auto;
    min-height: 560px;
    border-radius: var(--radius-lg);
  }

  .window-topbar {
    grid-template-columns: 72px 1fr;
  }

  .window-title {
    justify-self: end;
  }

  .window-state {
    display: none;
  }

  .editor-ribbon {
    overflow-x: auto;
  }

  .ribbon-group:last-child {
    display: none;
  }

  .editor-body {
    height: auto;
    grid-template-columns: minmax(0, 1fr);
  }

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

  .review-list {
    display: flex;
    overflow-x: auto;
  }

  .review-list li {
    min-width: 128px;
  }

  .info-rail {
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .route-lines {
    display: none;
  }

  .client-route {
    grid-template-columns: minmax(92px, 1fr) minmax(0, 1fr) 14px;
  }

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