:root {
  color-scheme: dark;
  --ink: #f6fbff;
  --muted: #9fb6d7;
  --deep: #07152c;
  --panel: rgba(10, 31, 63, 0.86);
  --panel-strong: rgba(14, 42, 82, 0.96);
  --line: rgba(145, 205, 255, 0.28);
  --cyan: #3fd7ff;
  --teal: #35e1c8;
  --amber: #ffd166;
  --coral: #ff6f61;
  --mint: #74df8b;
  --violet: #b18cff;
  --blue: #5a9cff;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(0, 8, 28, 0.36);
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(8, 20, 43, 0.94), rgba(5, 13, 29, 0.98)),
    #07152c;
  color: var(--ink);
}

body {
  overflow-x: hidden;
}

button,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.app {
  min-height: 100vh;
}

.home-stage {
  min-height: 100vh;
  padding: 18px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(8, 20, 43, 0.3), rgba(3, 10, 24, 0.92)),
    #07152c;
}

.cover-frame {
  position: relative;
  width: min(100%, 1680px);
  aspect-ratio: 1672 / 941;
  border: 1px solid rgba(126, 201, 255, 0.35);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 10, 35, 0.56);
  background: #06132a;
}

.cover-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-controls {
  position: absolute;
  left: 2.2%;
  right: 2.2%;
  bottom: 2.4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  pointer-events: none;
}

.home-controls > * {
  pointer-events: auto;
}

.size-strip,
.glass-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(130, 209, 255, 0.36);
  background: rgba(5, 20, 47, 0.76);
  box-shadow: 0 12px 28px rgba(0, 10, 35, 0.28);
  backdrop-filter: blur(14px);
  border-radius: 999px;
}

.glass-pill {
  padding: 11px 16px;
  color: #d8ecff;
  white-space: nowrap;
}

.size-strip span {
  color: #d8ecff;
  padding-left: 8px;
  white-space: nowrap;
}

.segmented {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.segment {
  border: 0;
  min-width: 58px;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #dceeff;
  background: rgba(110, 166, 255, 0.17);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.segment:hover,
.segment:focus-visible {
  transform: translateY(-1px);
  outline: 2px solid rgba(63, 215, 255, 0.42);
  outline-offset: 2px;
}

.segment.is-active {
  color: #06152c;
  background: linear-gradient(180deg, #a9f5ff, #4bd8ff);
  font-weight: 800;
}

.primary-action,
.secondary-action,
.quiet-action,
.danger-action {
  border: 0;
  border-radius: var(--radius);
  min-height: 42px;
  padding: 10px 16px;
  color: #07152c;
  background: linear-gradient(180deg, #baf8ff, #44d8ff);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(26, 180, 255, 0.22);
  transition: transform 160ms ease, filter 160ms ease;
}

.primary-action:hover,
.secondary-action:hover,
.quiet-action:hover,
.danger-action:hover,
.primary-action:focus-visible,
.secondary-action:focus-visible,
.quiet-action:focus-visible,
.danger-action:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.secondary-action {
  color: #06152c;
  background: linear-gradient(180deg, #fff0a8, #ffc857);
  box-shadow: 0 10px 24px rgba(255, 200, 87, 0.18);
}

.quiet-action {
  color: #e7f5ff;
  background: rgba(112, 166, 255, 0.16);
  border: 1px solid rgba(135, 208, 255, 0.34);
  box-shadow: none;
}

.danger-action {
  color: #fff8f6;
  background: linear-gradient(180deg, #ff8b7d, #f05246);
  box-shadow: 0 10px 24px rgba(255, 111, 97, 0.16);
}

.hotspot {
  position: absolute;
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
  color: transparent;
}

.hotspot::after {
  content: attr(aria-label);
  position: absolute;
  left: 14px;
  top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #eafdff;
  background: rgba(5, 20, 47, 0.62);
  border: 1px solid rgba(115, 210, 255, 0.28);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.hotspot:hover,
.hotspot:focus-visible {
  border-color: rgba(150, 230, 255, 0.72);
  background: rgba(77, 215, 255, 0.08);
  box-shadow: inset 0 0 36px rgba(70, 210, 255, 0.2), 0 0 28px rgba(70, 210, 255, 0.2);
  outline: none;
}

.hotspot:hover::after,
.hotspot:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.hotspot-collect {
  left: 1.8%;
  top: 17.2%;
  width: 27.5%;
  height: 23.8%;
}

.hotspot-label {
  left: 1.8%;
  top: 42.2%;
  width: 27.5%;
  height: 24.2%;
}

.hotspot-clean {
  left: 1.8%;
  top: 69.2%;
  width: 27.5%;
  height: 20.4%;
}

.hotspot-train {
  left: 31.2%;
  top: 16%;
  width: 27%;
  height: 50%;
}

.hotspot-growth {
  left: 60.4%;
  top: 17%;
  width: 17.4%;
  height: 47.5%;
}

.hotspot-test {
  left: 79.3%;
  top: 14.5%;
  width: 19%;
  height: 51.5%;
}

.shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  background:
    linear-gradient(180deg, rgba(7, 22, 48, 0.92), rgba(5, 12, 29, 0.98)),
    #07152c;
}

.rail {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 20px 16px;
  border-right: 1px solid rgba(135, 208, 255, 0.22);
  background: rgba(6, 17, 38, 0.86);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand-button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  text-align: left;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  margin-bottom: 10px;
  color: #07152c;
  background: linear-gradient(135deg, #5fe8ff, #ffe07a);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.22;
}

.brand-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.nav-list {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.nav-item {
  width: 100%;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 9px;
  color: #d7ebff;
  background: transparent;
  text-align: left;
}

.nav-item:hover,
.nav-item:focus-visible {
  border-color: rgba(118, 204, 255, 0.3);
  background: rgba(80, 154, 255, 0.1);
  outline: none;
}

.nav-item.is-active {
  color: #06152c;
  background: linear-gradient(180deg, #9cf2ff, #54d7ff);
  font-weight: 900;
}

.nav-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

.nav-copy {
  min-width: 0;
}

.nav-title {
  display: block;
  font-size: 15px;
}

.nav-desc {
  display: block;
  margin-top: 2px;
  color: rgba(210, 232, 255, 0.72);
  font-size: 12px;
}

.nav-item.is-active .nav-desc {
  color: rgba(5, 21, 44, 0.72);
}

.rail-note {
  margin-top: auto;
  padding: 12px;
  border: 1px solid rgba(117, 213, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(80, 154, 255, 0.1);
  color: #c8def6;
  font-size: 12px;
  line-height: 1.5;
}

.stage {
  min-width: 0;
  padding: 22px 28px 32px;
}

.stage-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.stage-kicker {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.stage-title {
  margin: 6px 0 0;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.08;
}

.stage-copy {
  max-width: 850px;
  margin: 10px 0 0;
  color: #c4d8f1;
  line-height: 1.7;
}

.stage-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.panel-pad {
  padding: 18px;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.two {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

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

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

.section-title {
  margin: 0 0 12px;
  font-size: 20px;
}

.tiny-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

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

.metric {
  padding: 14px;
  border: 1px solid rgba(130, 209, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(13, 42, 82, 0.64);
}

.metric strong {
  display: block;
  margin-top: 6px;
  font-size: 25px;
}

.folder-card {
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(130, 209, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(9, 31, 63, 0.72);
}

.folder-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.folder-title {
  font-weight: 900;
  font-size: 18px;
}

.folder-count {
  color: #d2e9ff;
  font-size: 12px;
}

.thumb-row,
.thumb-grid {
  display: grid;
  gap: 8px;
}

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

.thumb-grid {
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
}

.thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(210, 236, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(8, 25, 52, 0.8);
}

.thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.thumb.missing::after {
  content: "样本读取中";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #bad8f6;
  font-size: 12px;
}

.thumb-label {
  position: absolute;
  left: 6px;
  bottom: 6px;
  max-width: calc(100% - 12px);
  padding: 4px 7px;
  border-radius: 999px;
  color: #05152d;
  background: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rule-list {
  display: grid;
  gap: 10px;
}

.rule-item {
  padding: 11px 12px;
  border: 1px solid rgba(130, 209, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(8, 28, 58, 0.72);
}

.rule-item strong {
  color: var(--ink);
}

.rule-item span {
  display: block;
  margin-top: 4px;
  color: #bfd5ee;
  font-size: 13px;
  line-height: 1.5;
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag,
.status-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #dff5ff;
  background: rgba(96, 166, 255, 0.17);
  border: 1px solid rgba(127, 210, 255, 0.24);
  font-size: 12px;
  font-weight: 800;
}

.status-tag.good {
  color: #041b12;
  background: #8ff0a8;
}

.status-tag.warn {
  color: #2a1e00;
  background: #ffdf80;
}

.status-tag.bad {
  color: #310c08;
  background: #ff9a8f;
}

.label-board,
.clean-board {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.sample-card {
  border: 1px solid rgba(130, 209, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(9, 31, 63, 0.78);
  overflow: hidden;
}

.sample-card .thumb {
  border: 0;
  border-radius: 0;
}

.sample-body {
  padding: 10px;
}

.sample-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 900;
}

.label-options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.label-chip {
  border: 1px solid rgba(145, 214, 255, 0.2);
  border-radius: 999px;
  padding: 5px 8px;
  color: #d9edff;
  background: rgba(117, 170, 255, 0.12);
  font-size: 12px;
}

.label-chip.is-active {
  color: #07152c;
  background: #9eefff;
  font-weight: 900;
}

.training-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(420px, 1.35fr) minmax(320px, 0.95fr);
  gap: 16px;
  align-items: stretch;
}

.training-core {
  min-height: 510px;
  position: relative;
  overflow: hidden;
  padding: 16px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.conveyor {
  position: relative;
  min-height: 152px;
  margin: 12px 0;
  border: 1px solid rgba(135, 208, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(71, 190, 255, 0.1), rgba(255, 209, 102, 0.08)),
    rgba(4, 18, 41, 0.76);
  overflow: hidden;
}

.conveyor-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(102, 225, 255, 0.9), transparent);
}

.moving-card {
  position: absolute;
  left: 18px;
  top: 22px;
  width: 108px;
  border: 1px solid rgba(220, 245, 255, 0.45);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(8, 28, 58, 0.92);
  box-shadow: 0 12px 28px rgba(0, 10, 35, 0.3);
  animation: slideToCore 900ms ease both;
}

.moving-card img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
}

.moving-card span {
  display: block;
  padding: 5px 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

@keyframes slideToCore {
  from {
    transform: translateX(0) scale(0.92);
    opacity: 0.62;
  }
  to {
    transform: translateX(calc(50vw - 430px)) scale(1);
    opacity: 1;
  }
}

.core-box {
  align-self: center;
  justify-self: center;
  width: min(86%, 360px);
  aspect-ratio: 1.55;
  display: grid;
  place-items: center;
  border: 1px solid rgba(157, 232, 255, 0.72);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(92, 225, 255, 0.28), rgba(42, 122, 255, 0.16)),
    rgba(5, 20, 47, 0.9);
  box-shadow:
    inset 0 0 30px rgba(80, 215, 255, 0.28),
    0 20px 50px rgba(19, 174, 255, 0.18);
}

.core-box strong {
  display: block;
  font-size: 50px;
  letter-spacing: 0;
  color: #c9f7ff;
  text-shadow: 0 0 18px rgba(75, 215, 255, 0.55);
}

.core-box span {
  display: block;
  margin-top: 6px;
  color: #d3efff;
  font-weight: 900;
  text-align: center;
}

.training-info {
  display: grid;
  gap: 8px;
}

.progress-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(138, 192, 255, 0.16);
}

.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #35e1c8, #ffd166);
  transition: width 220ms ease;
}

.bar-list {
  display: grid;
  gap: 10px;
}

.bar-line {
  display: grid;
  grid-template-columns: 52px 1fr 42px;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.bar-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(138, 192, 255, 0.16);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--bar-color, #3fd7ff);
  transition: width 220ms ease;
}

.event-feed {
  display: grid;
  gap: 8px;
  max-height: 260px;
  overflow: auto;
  padding-right: 4px;
}

.event-item {
  border-left: 4px solid var(--cyan);
  padding: 9px 10px;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(10, 33, 70, 0.72);
  color: #d6ecff;
  font-size: 13px;
  line-height: 1.45;
}

.model-formula {
  display: grid;
  gap: 10px;
}

.formula {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 209, 102, 0.3);
  background: rgba(255, 209, 102, 0.08);
}

.formula strong {
  color: #fff0b0;
}

.score-board {
  display: grid;
  place-items: center;
  min-height: 252px;
  text-align: center;
}

.score-number {
  font-size: clamp(58px, 9vw, 112px);
  line-height: 1;
  font-weight: 900;
  color: #86efac;
  text-shadow: 0 0 22px rgba(116, 223, 139, 0.25);
}

.score-number small {
  font-size: 0.34em;
  color: #e7f5ff;
}

.camera-frame,
.camera-capture-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(130, 209, 255, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 30%, rgba(63, 215, 255, 0.2), transparent 42%),
    rgba(4, 18, 41, 0.88);
}

.camera-frame {
  min-height: 420px;
  display: grid;
  place-items: center;
}

.camera-video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  transform: scaleX(-1);
}

.camera-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(8, 25, 52, 0.84), rgba(4, 14, 32, 0.94)),
    rgba(4, 18, 41, 0.88);
}

.camera-placeholder strong {
  display: block;
  font-size: 26px;
}

.camera-placeholder span {
  display: block;
  max-width: 360px;
  margin-top: 10px;
  color: #c6dcf4;
  line-height: 1.6;
}

.camera-placeholder.is-hidden {
  display: none;
}

.camera-labels {
  margin-bottom: 14px;
}

.camera-capture-card {
  min-height: 310px;
  display: grid;
  place-items: center;
}

.camera-capture-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  display: block;
  object-fit: cover;
  transform: scaleX(-1);
}

.camera-result {
  display: grid;
  place-items: center;
  min-height: 310px;
  text-align: center;
}

.camera-score {
  font-size: clamp(52px, 7vw, 96px);
}

.expression-bars {
  display: grid;
  gap: 10px;
}

.expression-line {
  grid-template-columns: 48px 1fr 44px;
}

.test-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
  gap: 8px;
}

.test-mini {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(130, 209, 255, 0.22);
  aspect-ratio: 1;
  background: rgba(7, 24, 52, 0.8);
}

.test-mini img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.test-mini::after {
  content: attr(data-result);
  position: absolute;
  right: 4px;
  bottom: 4px;
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06152c;
  background: #8ff0a8;
  font-size: 12px;
  font-weight: 900;
}

.test-mini[data-result=""]::after {
  display: none;
}

.test-mini.is-wrong::after {
  background: #ff9a8f;
}

.chart {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  min-height: 230px;
  padding-top: 12px;
}

.chart-col {
  display: grid;
  gap: 8px;
  text-align: center;
  color: #d6ebff;
  font-size: 12px;
}

.chart-bar {
  height: 172px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(138, 192, 255, 0.12);
  overflow: hidden;
}

.chart-fill {
  width: 100%;
  min-height: 12%;
  display: grid;
  place-items: start center;
  padding-top: 8px;
  color: #06152c;
  background: linear-gradient(180deg, #fff0a8, #43dcff);
  font-weight: 900;
}

.privacy-bar {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: #d7ecff;
  background: rgba(42, 110, 204, 0.2);
  border: 1px solid rgba(120, 205, 255, 0.24);
}

.empty-state {
  min-height: 160px;
  display: grid;
  place-items: center;
  color: #b9d5f2;
  text-align: center;
  border: 1px dashed rgba(140, 210, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(12, 34, 69, 0.45);
}

@media (max-width: 1180px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .rail {
    position: static;
    height: auto;
  }

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

  .grid.two,
  .training-layout {
    grid-template-columns: 1fr;
  }

  .grid.five,
  .grid.three,
  .metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .home-stage {
    padding: 8px;
  }

  .cover-frame {
    width: 100%;
    min-height: 76vh;
    aspect-ratio: auto;
  }

  .cover-frame img {
    height: 100%;
  }

  .hotspot::after {
    display: none;
  }

  .home-controls {
    position: static;
    margin-top: 12px;
    flex-direction: column;
  }

  .stage {
    padding: 18px 14px 26px;
  }

  .stage-header {
    display: grid;
  }

  .nav-list,
  .grid.five,
  .grid.three,
  .metric-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}
