:root {
  --color-bg: #F6F1E7;
  --color-paper: #FFFDF9;
  --color-ink: #1A130C;
  --color-blue: #0A1E3C;
  --color-blue-soft: #15315A;
  --color-red: #FF5A36;
  --color-orange: #FF6B00;
  --color-green: #39FF14;
  --color-grid: #B9C7D9;
  --color-teal: #3E7A76;
  --font-display: 'DIN Condensed', 'Arial Narrow', 'PingFang SC', sans-serif;
  --font-body: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
  --shell-pad: clamp(16px, 3vw, 24px);
  --status-h: 32px;
  --nav-h: 64px;
  --header-h: calc(var(--status-h) + var(--nav-h));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--color-bg);
  background-image:
    linear-gradient(to right, rgba(185, 199, 217, 0.16) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(185, 199, 217, 0.10) 1px, transparent 1px);
  background-size: 72px 72px;
  background-attachment: fixed;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--color-blue);
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

ul {
  list-style: none;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--color-red);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--color-orange);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
}

::selection {
  background: var(--color-blue);
  color: var(--color-green);
}

.shell {
  width: min(1440px, calc(100% - var(--shell-pad) * 2));
  margin-inline: auto;
}

.site-main {
  min-height: 70vh;
  padding-top: var(--header-h);
}

#main-content {
  scroll-margin-top: var(--header-h);
}

.skip-link {
  position: fixed;
  top: -3rem;
  left: 1rem;
  z-index: 1100;
  background: var(--color-blue);
  color: var(--color-paper);
  padding: 0.6rem 1rem;
  border-radius: 0 0 0.4rem 0.4rem;
  text-decoration: none;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  color: var(--color-paper);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.site-header[data-scrolled="true"] {
  background-color: var(--color-bg);
  color: var(--color-ink);
  border-bottom-color: var(--color-grid);
}

.status-strip {
  border-bottom: 1px solid rgba(255, 253, 249, 0.16);
}

.site-header[data-scrolled="true"] .status-strip {
  border-bottom-color: var(--color-grid);
}

.status-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--status-h);
}

.status-strip__signal {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--color-paper);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-header[data-scrolled="true"] .status-strip__signal {
  color: var(--color-ink);
}

.status-dot {
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 8px var(--color-green);
  animation: status-pulse 2s ease-in-out infinite;
}

.status-strip__issue {
  flex: 0 1 auto;
  max-width: 46%;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(255, 253, 249, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-header[data-scrolled="true"] .status-strip__issue {
  color: var(--color-teal);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--nav-h);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  color: inherit;
  text-decoration: none;
}

.brand__cn {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.brand__en {
  margin-top: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(185, 199, 217, 0.8);
}

.site-header[data-scrolled="true"] .brand {
  color: var(--color-ink);
}

.site-header[data-scrolled="true"] .brand__en {
  color: var(--color-teal);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.6vw, 1.75rem);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.4rem 0.15rem;
  color: inherit;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.15rem;
  height: 2px;
  background: var(--color-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"]::after {
  background: var(--color-orange);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.4rem 0.5rem;
  color: inherit;
}

.nav-toggle__box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
}

.nav-toggle__line {
  position: relative;
  display: block;
  width: 1.35rem;
  height: 2px;
  background: currentColor;
  transition: background-color 0.2s ease;
}

.nav-toggle__line::before,
.nav-toggle__line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.35rem;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.nav-toggle__line::before {
  top: -0.4rem;
}

.nav-toggle__line::after {
  top: 0.4rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line::before {
  transform: translateY(0.4rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line::after {
  transform: translateY(-0.4rem) rotate(-45deg);
}

.nav-toggle__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0;
  background: var(--color-green);
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.55);
  z-index: 20;
  pointer-events: none;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(600px, 92vh, 900px);
  margin-top: calc(-1 * var(--header-h));
  padding: calc(var(--header-h) + 6vh) var(--shell-pad) 6vh;
  overflow: hidden;
  background: var(--color-blue);
  color: var(--color-paper);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(185, 199, 217, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(185, 199, 217, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 58%, rgba(57, 255, 20, 0.12) 58%, rgba(57, 255, 20, 0.12) 59.5%, transparent 59.5%),
    linear-gradient(118deg, transparent 75%, rgba(255, 90, 54, 0.25) 75%, rgba(255, 90, 54, 0.25) 77%, transparent 77%);
  pointer-events: none;
}

.page-hero > .shell {
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-hero h1,
.page-hero h2,
.page-hero h3 {
  color: var(--color-paper);
}

.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.section--blue {
  position: relative;
  overflow: hidden;
  background: var(--color-blue);
  color: var(--color-paper);
}

.section--blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(185, 199, 217, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(185, 199, 217, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.section--blue > .shell {
  position: relative;
  z-index: 1;
}

.section--blue h1,
.section--blue h2,
.section--blue h3 {
  color: var(--color-paper);
}

.section__header {
  margin-bottom: 2.5rem;
  max-width: 58rem;
}

.section__title {
  margin: 0.3rem 0 0.6rem;
}

.section__lede {
  max-width: 35rem;
  font-size: 1.05rem;
  color: var(--color-teal);
}

.section--blue .section__lede,
.page-hero .section__lede {
  color: rgba(255, 253, 249, 0.78);
}

.chapter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--color-orange);
  text-transform: uppercase;
}

.chapter__no {
  color: currentColor;
}

.eyebrow {
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--split {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
}

.grid--half {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.grid--thirds {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.panel {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--color-paper);
  border: 1px solid var(--color-grid);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(10, 30, 60, 0.04);
}

.table-scroll {
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 0.875rem;
}

.data-table th {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--color-grid);
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
}

.data-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid rgba(185, 199, 217, 0.5);
}

.data-table tbody tr:hover td {
  background: rgba(57, 255, 20, 0.07);
}

.stat {
  display: grid;
  gap: 0.15rem;
}

.stat__value {
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1;
  color: var(--color-blue);
  font-variant-numeric: tabular-nums;
}

.stat__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal);
}

.section--blue .stat__value,
.page-hero .stat__value {
  color: var(--color-green);
}

.section--blue .stat__label,
.page-hero .stat__label {
  color: rgba(255, 253, 249, 0.72);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--color-grid);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-blue);
}

.tag--live {
  border-color: var(--color-blue);
  color: var(--color-blue);
}

.tag--live::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 6px var(--color-green);
}

.tag--alert {
  border-color: var(--color-red);
  color: var(--color-red);
}

.tag--data {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.media-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--color-blue);
  isolation: isolate;
}

.media-frame--tall {
  aspect-ratio: 4 / 5;
}

.media-frame--wide {
  aspect-ratio: 21 / 9;
}

.media-frame::before {
  content: "图 · DATA FRAME";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--color-grid);
  background: linear-gradient(115deg, transparent 48%, rgba(57, 255, 20, 0.12) 48%, rgba(57, 255, 20, 0.12) 50%, transparent 50%);
  pointer-events: none;
}

.media-frame img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.25s linear;
}

.media-frame--loaded::before {
  opacity: 0;
}

.media-frame--loaded img {
  opacity: 1;
}

.note {
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--color-teal);
  background: rgba(62, 122, 118, 0.08);
  font-size: 0.9rem;
}

.note--warn {
  border-left-color: var(--color-red);
  background: rgba(255, 90, 54, 0.08);
}

.sideline {
  margin: 0;
  padding-left: 1rem;
  border-left: 1px solid var(--color-grid);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.index-list {
  border-top: 1px solid var(--color-grid);
}

.index-list__item {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(185, 199, 217, 0.45);
}

.index-list__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-orange);
}

.index-list__link {
  color: var(--color-ink);
  text-decoration: none;
}

.index-list__link:hover {
  color: var(--color-red);
}

.index-list__meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-teal);
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--color-blue);
  background: var(--color-blue);
  color: var(--color-paper);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-blue);
}

.btn--primary {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-paper);
}

.btn--primary:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-blue);
}

.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.btn--ghost:hover {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-paper);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  padding: 1.5rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--color-teal);
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.breadcrumbs__item + .breadcrumbs__item::before {
  content: "/";
  color: var(--color-grid);
}

.breadcrumbs__link {
  color: inherit;
  text-decoration: none;
}

.breadcrumbs__link:hover {
  color: var(--color-orange);
}

.breadcrumbs__current {
  color: var(--color-ink);
}

.site-footer {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--color-blue);
  color: var(--color-paper);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(185, 199, 217, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(185, 199, 217, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 6px;
  background: linear-gradient(90deg, transparent 0 35%, var(--color-orange) 35% 60%, var(--color-green) 60% 100%);
  pointer-events: none;
}

.site-footer > .shell {
  position: relative;
  z-index: 1;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) 0.8fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.site-footer__col {
  min-width: 0;
}

.site-footer__col--brand {
  max-width: 38rem;
}

.brand--footer .brand__cn {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--color-paper);
}

.brand--footer .brand__en {
  color: var(--color-grid);
}

.site-footer__slogan {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--color-paper);
}

.site-footer__statement {
  margin-top: 1.2rem;
  max-width: 40rem;
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 253, 249, 0.68);
}

.site-footer__heading {
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-green);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__links a {
  width: fit-content;
  color: rgba(255, 253, 249, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--color-green);
  border-bottom-color: var(--color-green);
}

.footer-meta {
  display: grid;
  gap: 0.8rem;
}

.footer-meta__item {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 0.75rem;
  font-size: 0.85rem;
}

.footer-meta__dt {
  padding-top: 0.15rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green);
}

.footer-meta__dd {
  color: rgba(255, 253, 249, 0.8);
  overflow-wrap: anywhere;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.2rem 0 1.5rem;
  border-top: 1px solid rgba(185, 199, 217, 0.2);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(255, 253, 249, 0.6);
}

@keyframes status-pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.45;
  }
}

@media (min-width: 1200px) {
  .site-nav {
    gap: 1.75rem;
  }
}

@media (max-width: 1100px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__col--brand {
    grid-column: 1 / -1;
    max-width: none;
  }

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

  .grid--thirds > *:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 510;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 1.5rem;
    background: var(--color-blue);
    color: var(--color-paper);
    border-bottom: 1px solid var(--color-blue-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 253, 249, 0.1);
    font-size: 1rem;
  }

  .site-nav a::after {
    right: auto;
    width: 2.5rem;
    bottom: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .grid--split,
  .grid--half {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .status-strip__signal {
    font-size: 0.68rem;
  }

  .status-strip__issue {
    max-width: 38%;
    font-size: 0.6rem;
  }

  .brand__cn {
    font-size: 1.15rem;
  }

  .brand__en {
    font-size: 0.52rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    padding-bottom: 2.5rem;
  }

  .site-footer__col--brand {
    grid-column: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .footer-meta__item {
    grid-template-columns: 1fr;
  }

  .index-list__item {
    grid-template-columns: 2.5rem minmax(0, 1fr);
  }

  .index-list__meta {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .status-dot {
    animation: none;
  }
}
