:root {
  --bg: #0B1B3D;
  --bg-deep: #0A1128;
  --panel: #2E3440;
  --text: #F5F0E8;
  --muted: #9CA3AF;
  --lime: #C6FF00;
  --orange: #FF6B00;
  --green: #6A994E;
  --clay: #C67B5C;
  --line: rgba(245, 240, 232, 0.1);
  --font-display: "Space Grotesk", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --font-body: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --font-num: "JetBrains Mono", "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
  --max: 1400px;
  --radius: 22px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 85% 4%, rgba(198, 255, 0, 0.06) 0, transparent 24%),
    linear-gradient(rgba(245, 240, 232, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 232, 0.025) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

main {
  display: block;
}

#main-content {
  scroll-margin-top: 120px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul,
ol {
  margin: 0;
}

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

button {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--lime);
  color: var(--bg-deep);
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
  border-radius: 4px;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container--narrow {
  max-width: 860px;
}

.section {
  padding-block: clamp(2.5rem, 7vw, 5.5rem);
}

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

.grid--2,
.grid--3 {
  grid-template-columns: 1fr;
}

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

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

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

@media (min-width: 961px) {
  .col-span-4 {
    grid-column: span 4;
  }

  .col-span-6 {
    grid-column: span 6;
  }

  .col-span-8 {
    grid-column: span 8;
  }

  .col-span-12 {
    grid-column: span 12;
  }
}

@media (max-width: 960px) {
  .grid--12 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .col-span-4,
  .col-span-6,
  .col-span-8,
  .col-span-12 {
    grid-column: span 6;
  }
}

@media (max-width: 620px) {
  .container {
    padding-inline: 1rem;
  }

  .grid--12 {
    grid-template-columns: 1fr;
  }

  .col-span-4,
  .col-span-6,
  .col-span-8,
  .col-span-12 {
    grid-column: span 12;
  }
}

.layout-rail {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

@media (max-width: 960px) {
  .layout-rail {
    grid-template-columns: 1fr;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(11, 27, 61, 0.95) 0%, rgba(10, 17, 40, 0.9) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 58%;
  background: linear-gradient(90deg, var(--lime), transparent);
  opacity: 0.6;
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 1px;
  width: 32%;
  background: linear-gradient(90deg, transparent, var(--orange));
  opacity: 0.5;
  pointer-events: none;
}

.header-metrics {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem 1.5rem 0.35rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.header-metrics__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.02em;
}

.header-metrics__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(198, 255, 0, 0.7);
  animation: metricsPulse 2s ease-in-out infinite;
}

@keyframes metricsPulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 5px rgba(198, 255, 0, 0.4);
  }

  50% {
    opacity: 0.45;
    box-shadow: 0 0 14px rgba(198, 255, 0, 0.85);
  }
}

.header-metrics__time {
  margin-left: auto;
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

.header-metrics__hot {
  color: var(--muted);
  letter-spacing: 0.02em;
}

.header-main {
  position: relative;
  max-width: var(--max);
  margin: 0.55rem auto 0.9rem;
  padding: 0.65rem 0.75rem 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10, 17, 40, 0.86);
  border: 1px solid rgba(198, 255, 0, 0.13);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
}

.brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime) 60%, rgba(198, 255, 0, 0.35) 100%);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 12px 4px 12px 4px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  box-shadow: 0 0 24px rgba(198, 255, 0, 0.12);
}

.brand__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--text);
}

.brand__name small {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.site-nav {
  margin-left: auto;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.site-nav__item {
  margin: 0;
}

.site-nav__list a {
  display: block;
  padding: 0.5rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.88rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.site-nav__list a:hover {
  color: var(--text);
  background: rgba(198, 255, 0, 0.08);
  border-color: rgba(198, 255, 0, 0.12);
}

.site-nav__list a[aria-current="page"] {
  color: var(--bg-deep);
  background: var(--lime);
  border-color: var(--lime);
  font-weight: 700;
  box-shadow: 0 0 0 3px rgba(198, 255, 0, 0.16);
}

.header-cta {
  flex: 0 0 auto;
  margin-left: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.28);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  color: var(--bg-deep);
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(245, 240, 232, 0.18);
  border-radius: 999px;
  color: var(--text);
  cursor: pointer;
  padding: 0;
}

.nav-toggle:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.nav-toggle__icon {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav-toggle__icon::before {
  top: -6px;
}

.nav-toggle__icon::after {
  top: 6px;
}

.header-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--lime) 0%, var(--orange) 100%);
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 960px) {
  .header-main {
    margin: 0.55rem 0.75rem 0.9rem;
    border-radius: 28px;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 0.75rem;
    background: rgba(10, 17, 40, 0.98);
    border: 1px solid rgba(198, 255, 0, 0.18);
    border-radius: 24px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
  }

  .site-nav[data-open="true"] {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .site-nav__list a {
    display: block;
    padding: 0.75rem 0.95rem;
    border-radius: 16px;
    font-size: 1rem;
  }

  .header-cta {
    margin-left: auto;
  }

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

@media (max-width: 720px) {
  .header-metrics {
    padding-inline: 1rem;
    gap: 0.75rem;
  }

  .header-metrics__hot {
    display: none;
  }
}

.site-footer {
  position: relative;
  margin-top: 5rem;
  background: var(--bg-deep);
  border-top: 1px solid rgba(198, 255, 0, 0.1);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--lime) 0%, var(--orange) 45%, transparent 80%);
  opacity: 0.5;
  pointer-events: none;
}

.footer-primary {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}

.footer-brand {
  display: block;
}

.brand--footer {
  margin-bottom: 0.75rem;
}

.brand--footer .brand__mark {
  width: 40px;
  height: 40px;
  font-size: 1rem;
}

.brand--footer .brand__name {
  font-size: 1.2rem;
}

.footer-trust {
  max-width: 320px;
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.1rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links a::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  background: var(--lime);
  transform: rotate(45deg);
  opacity: 0.65;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-heading {
  position: relative;
  margin-bottom: 0.8rem;
  padding-left: 0.8rem;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 6px;
  height: 6px;
  background: var(--lime);
  transform: rotate(45deg);
}

.footer-contact p {
  margin: 0.35rem 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-meta {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 1024px) {
  .footer-primary {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .site-footer {
    margin-top: 3rem;
  }

  .footer-primary {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
    gap: 1.75rem;
  }

  .footer-meta {
    padding-inline: 1rem;
  }
}

.panel {
  position: relative;
  background: rgba(46, 52, 64, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.panel--cut {
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.panel--glow {
  box-shadow: 0 0 0 1px rgba(198, 255, 0, 0.1), 0 20px 50px rgba(0, 0, 0, 0.3);
}

.panel--lime {
  border-top: 3px solid var(--lime);
}

.panel__title {
  margin-bottom: 0.5rem;
  color: var(--lime);
  font-family: var(--font-num);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.image-placeholder {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(46, 52, 64, 0.78), rgba(11, 27, 61, 0.78)),
    repeating-linear-gradient(135deg, rgba(198, 255, 0, 0.06) 0 1px, transparent 1px 8px);
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(198, 255, 0, 0.05), rgba(255, 107, 0, 0.04));
  mix-blend-mode: screen;
}

.image-placeholder::after {
  content: attr(data-label);
  position: absolute;
  left: 1rem;
  bottom: 0.85rem;
  color: var(--muted);
  font-family: var(--font-num);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-placeholder--ratio-wide {
  aspect-ratio: 21 / 9;
}

.image-placeholder--ratio-portrait {
  aspect-ratio: 4 / 5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.15;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(198, 255, 0, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  color: var(--bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(198, 255, 0, 0.22);
}

.btn--orange {
  background: var(--orange);
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.26);
}

.btn--orange:hover {
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.32);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(245, 240, 232, 0.28);
  color: var(--text);
  box-shadow: none;
}

.btn--ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: transparent;
  transform: none;
  box-shadow: none;
}

.btn--sm {
  padding: 0.42rem 0.8rem;
  font-size: 0.82rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  opacity: 0.45;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--lime);
}

.breadcrumb [aria-current="page"] {
  color: var(--text);
}

.coord-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.coord-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.coord-legend__swatch {
  position: relative;
  width: 10px;
  height: 10px;
  background: var(--lime);
  border-radius: 2px;
}

.coord-legend__swatch::before {
  content: "";
  position: absolute;
  right: -3px;
  top: -3px;
  width: 4px;
  height: 4px;
  background: var(--lime);
  opacity: 0.4;
}

.coord-legend__swatch--orange {
  background: var(--orange);
}

.coord-legend__swatch--orange::before {
  background: var(--orange);
}

.coord-legend__swatch--clay {
  background: var(--clay);
}

.coord-legend__swatch--clay::before {
  background: var(--clay);
}

.coord-legend__marker {
  position: relative;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid var(--lime);
}

.data-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.65rem;
  border: 1px solid rgba(198, 255, 0, 0.22);
  border-radius: 999px;
  background: rgba(198, 255, 0, 0.08);
  color: var(--lime);
  font-family: var(--font-num);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
  line-height: 1.5;
}

.data-chip::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.data-chip--orange {
  background: rgba(255, 107, 0, 0.1);
  border-color: rgba(255, 107, 0, 0.28);
  color: var(--orange);
}

.data-chip--plain {
  background: rgba(245, 240, 232, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.data-stream {
  display: flex;
  gap: 2rem;
  overflow: hidden;
  white-space: nowrap;
  padding-block: 0.25rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.data-stream__item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.data-stream__item::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--lime);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.data-stream__item strong {
  color: var(--lime);
  font-family: var(--font-num);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.coord-index {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-family: var(--font-num);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.coord-index__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 255, 0, 0.5), transparent);
}

.coord-index__mark {
  color: var(--lime);
}

.route-track {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.5rem;
  border-left: 2px solid rgba(198, 255, 0, 0.18);
}

.route-track__node {
  position: relative;
  padding-bottom: 1.5rem;
}

.route-track__node:last-child {
  padding-bottom: 0;
}

.route-track__node::before {
  content: "";
  position: absolute;
  left: -1.56rem;
  top: 0.3rem;
  width: 11px;
  height: 11px;
  background: var(--bg);
  border: 2px solid var(--lime);
  transform: rotate(45deg);
}

.route-track__time {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--orange);
  font-family: var(--font-num);
  font-size: 0.8rem;
}

.tab-list {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0 0 0.4rem;
  border-bottom: 1px solid rgba(245, 240, 232, 0.12);
}

.tab-button {
  flex: 0 0 auto;
  padding: 0.4rem 0.9rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
  white-space: nowrap;
}

.tab-button:hover {
  color: var(--text);
  border-color: rgba(245, 240, 232, 0.2);
}

.tab-button[aria-selected="true"] {
  color: var(--lime);
  background: rgba(198, 255, 0, 0.08);
  border-color: rgba(198, 255, 0, 0.25);
}

.tab-panel {
  margin-top: 1.25rem;
}

.seg-control {
  display: inline-flex;
  gap: 0.2rem;
  padding: 0.2rem;
  background: var(--bg-deep);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.seg-control__btn {
  padding: 0.35rem 0.85rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.88rem;
  line-height: 1.5;
  cursor: pointer;
}

.seg-control__btn:hover {
  color: var(--text);
}

.seg-control__btn[aria-selected="true"] {
  background: var(--lime);
  color: var(--bg-deep);
  font-weight: 700;
}

.details-group__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.details-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.details-trigger::after {
  content: "+";
  color: var(--lime);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.details-group__item[data-open="true"] .details-trigger::after {
  content: "−";
}

.details-content {
  padding: 0 1rem 1rem 0;
  color: var(--muted);
}

@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;
  }

  .header-metrics__dot {
    animation: none;
  }
}
