:root {
  --color-deep-space: #0A0E1A;
  --color-electric-blue: #00A8FF;
  --color-neon-green: #39FF14;
  --color-hot-red: #FF2A2A;
  --color-silver: #C0C9CF;
  --color-text: #EAEAEA;
  --color-muted: #9AA3AD;
  --color-card: #101A2B;
  --font-headline: "Oswald", "Impact", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "Roboto Mono", "Noto Sans Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --header-width: 272px;
  --content-max: 1240px;
  --shell-pad: 40px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 1025px) and (max-width: 1180px) {
  :root {
    --header-width: 240px;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-width: 0px;
    --shell-pad: 20px;
  }
}

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

* {
  margin: 0;
  padding: 0;
}

html {
  background: var(--color-deep-space);
}

body {
  background: var(--color-deep-space);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

@media (min-width: 1025px) {
  body {
    margin-left: var(--header-width);
  }
}

@media (max-width: 1024px) {
  body {
    padding-top: 60px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.18;
  color: var(--color-text);
  letter-spacing: .02em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

ul, ol {
  list-style: none;
}

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

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

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

[hidden] {
  display: none !important;
}

::selection {
  background: rgba(0, 168, 255, .35);
  color: var(--color-text);
}

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

.nav-locked {
  overflow: hidden;
}

#main-content {
  display: block;
  min-height: 60vh;
  scroll-margin-top: 24px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: calc(var(--header-width) + 14px);
  z-index: 300;
  display: inline-block;
  padding: 10px 18px;
  background: var(--color-neon-green);
  color: var(--color-deep-space);
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  transform: translateY(calc(-100% - 24px));
  transition: transform .25s var(--ease);
}

.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--color-text);
  outline-offset: 2px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: var(--header-width);
  right: 0;
  height: 3px;
  z-index: 260;
  background: linear-gradient(90deg, var(--color-electric-blue) 0%, var(--color-neon-green) 72%);
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: var(--header-width);
  height: 100vh;
  height: 100dvh;
  background:
    linear-gradient(180deg, rgba(0, 168, 255, .08), rgba(0, 168, 255, 0) 24%),
    repeating-linear-gradient(0deg, rgba(192, 201, 207, .03) 0, rgba(192, 201, 207, .03) 1px, transparent 1px, transparent 48px),
    #0C1322;
  border-right: 1px solid rgba(192, 201, 207, .12);
}

.site-header__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px 16px 18px;
}

.site-brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding: 4px 6px 16px;
  margin: 0 2px 20px;
}

.site-brand::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-electric-blue), var(--color-neon-green));
  opacity: .8;
}

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

.site-brand__mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--color-deep-space);
  border: 1px solid var(--color-electric-blue);
  color: var(--color-electric-blue);
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.site-brand__name {
  display: block;
  font-family: var(--font-headline);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .05em;
  color: var(--color-text);
}

.site-brand__tagline {
  display: block;
  margin-top: 5px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.nav-toggle {
  display: none;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-electric-blue);
  transition: transform .25s var(--ease), opacity .2s;
}

.nav-backdrop {
  display: none;
}

.site-nav {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 8px 0 0;
  scrollbar-width: thin;
}

.site-nav__list {
  flex: 1 0 auto;
  display: grid;
  gap: 2px;
}

.site-nav__item {
  display: block;
}

.site-nav__link {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 14px;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1;
  border-left: 2px solid transparent;
  transition: color .2s, background .22s, border-color .2s, padding-left .2s;
}

.site-nav__index {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-silver);
  opacity: .65;
  transition: color .2s, opacity .2s;
}

.site-nav__label {
  display: block;
}

.site-nav__link:hover {
  color: var(--color-text);
  background: linear-gradient(90deg, rgba(0, 168, 255, .13), rgba(0, 168, 255, 0) 82%);
  border-left-color: var(--color-electric-blue);
  padding-left: 18px;
}

.site-nav__link[aria-current="page"] {
  color: var(--color-text);
  background: linear-gradient(90deg, rgba(0, 168, 255, .1), rgba(0, 168, 255, 0) 80%);
  border-left-color: var(--color-neon-green);
}

.site-nav__link[aria-current="page"] .site-nav__index {
  color: var(--color-neon-green);
  opacity: 1;
}

.site-header__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 24px 10px 18px;
  padding: 13px 18px;
  background: var(--color-electric-blue);
  color: var(--color-deep-space);
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.2;
  text-decoration: none;
  transform: skewX(-8deg);
  box-shadow: 0 0 0 rgba(0, 168, 255, 0);
  transition: background .2s, box-shadow .2s, color .2s;
}

.site-header__cta > * {
  transform: skewX(8deg);
}

.site-header__cta:hover {
  background: var(--color-neon-green);
  box-shadow: 0 0 24px rgba(57, 255, 20, .35);
}

.site-header__cta-text {
  position: relative;
  z-index: 1;
}

.site-header__cta-arrow {
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1;
}

.site-header__status {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 14px 10px 2px;
  border-top: 1px solid rgba(192, 201, 207, .12);
}

.site-header__status-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-neon-green);
  box-shadow: 0 0 10px rgba(57, 255, 20, .8);
  animation: status-pulse 2.4s ease-in-out infinite;
}

.site-header__status-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--color-muted);
  line-height: 1.4;
}

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

@media (max-width: 1024px) {
  .site-header {
    width: 100%;
    height: 60px;
    background: #0C1322;
    border-right: none;
    border-bottom: 1px solid rgba(192, 201, 207, .12);
  }

  .site-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
  }

  .site-brand {
    padding: 0 4px;
    margin: 0;
  }

  .site-brand::after {
    display: none;
  }

  .site-brand__mark {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .site-brand__name {
    font-size: 17px;
  }

  .site-brand__tagline {
    display: none;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(0, 168, 255, .04);
    border: 1px solid rgba(0, 168, 255, .38);
    transition: border-color .2s, background .2s;
  }

  .nav-toggle:hover {
    border-color: var(--color-electric-blue);
    background: rgba(0, 168, 255, .08);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 240;
    background: rgba(4, 7, 14, .74);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s var(--ease);
  }

  .nav-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav {
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
    z-index: 250;
    width: min(320px, 84vw);
    padding: 18px 10px 16px;
    background: #0B1120;
    border-right: 1px solid rgba(192, 201, 207, .14);
    box-shadow: 24px 0 40px rgba(0, 0, 0, .35);
    transform: translateX(-105%);
    visibility: hidden;
    transition: transform .3s var(--ease), visibility 0s linear .3s;
  }

  .site-nav[data-open] {
    transform: translateX(0);
    visibility: visible;
    transition: transform .3s var(--ease), visibility 0s;
  }
}

.site-footer {
  position: relative;
  padding: 72px var(--shell-pad) 30px;
  background:
    repeating-linear-gradient(90deg, rgba(0, 168, 255, .035) 0, rgba(0, 168, 255, .035) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(0deg, rgba(0, 168, 255, .035) 0, rgba(0, 168, 255, .035) 1px, transparent 1px, transparent 64px),
    linear-gradient(180deg, #0C1322 0%, #070B14 100%);
  border-top: 1px solid rgba(0, 168, 255, .22);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  height: 3px;
  width: min(720px, 100%);
  background: linear-gradient(90deg, var(--color-electric-blue), var(--color-neon-green) 65%, transparent);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, .8fr) minmax(0, 1.3fr);
  gap: 48px;
}

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

.site-footer__logo {
  font-family: var(--font-headline);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--color-text);
}

.site-footer__logo::before {
  content: "[ ";
  color: var(--color-neon-green);
}

.site-footer__logo::after {
  content: " ]";
  color: var(--color-neon-green);
}

.site-footer__tagline {
  margin-top: 10px;
  max-width: 34ch;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}

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

.site-footer__heading {
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-electric-blue);
  border-bottom: 1px solid rgba(0, 168, 255, .25);
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.site-footer__links li + li {
  margin-top: 10px;
}

.site-footer__links a {
  color: var(--color-muted);
  font-size: 14px;
  transition: color .2s, padding-left .2s;
}

.site-footer__links a:hover {
  color: var(--color-text);
  padding-left: 4px;
}

.site-footer__address {
  display: grid;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-style: normal;
  letter-spacing: .02em;
  color: var(--color-muted);
}

.site-footer__note {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(192, 201, 207, .12);
  font-size: 13px;
  color: var(--color-muted);
}

.site-footer__support {
  max-width: 64ch;
  font-size: 13px;
  line-height: 1.7;
}

.site-footer__icp {
  font-family: var(--font-mono);
  font-size: 12px;
  white-space: nowrap;
  color: var(--color-muted);
}

@media (max-width: 1024px) {
  .site-footer {
    padding-top: 56px;
    padding-bottom: 96px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer__note {
    grid-column: 1;
    align-items: flex-start;
    flex-direction: column;
  }
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 180;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--color-electric-blue);
  color: var(--color-deep-space);
  font-family: var(--font-mono);
  font-size: 18px;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .2s, box-shadow .2s;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--color-neon-green);
  box-shadow: 0 0 20px rgba(57, 255, 20, .4);
}

.page-shell {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 56px var(--shell-pad) 96px;
}

@media (max-width: 1024px) {
  .page-shell {
    padding-top: 40px;
    padding-bottom: 72px;
  }
}

.section {
  margin-top: 64px;
}

.section:first-child {
  margin-top: 0;
}

.section--wide {
  max-width: 100%;
}

.section--narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .section {
    margin-top: 44px;
  }
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
}

.section-head__overline {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-neon-green);
}

.section-head__title {
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15;
  color: var(--color-text);
}

@media (max-width: 640px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .section-head__title {
    font-size: 24px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--color-silver);
  color: var(--color-text);
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}

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

.btn--primary {
  background: var(--color-electric-blue);
  border-color: var(--color-electric-blue);
  color: var(--color-deep-space);
}

.btn--primary:hover {
  background: var(--color-neon-green);
  border-color: var(--color-neon-green);
  color: var(--color-deep-space);
  box-shadow: 0 0 22px rgba(57, 255, 20, .3);
}

.btn--ghost {
  border-color: rgba(0, 168, 255, .45);
  color: var(--color-electric-blue);
}

.btn--ghost:hover {
  background: rgba(0, 168, 255, .07);
  border-color: var(--color-electric-blue);
  color: var(--color-text);
}

.card {
  position: relative;
  padding: 28px;
  background: var(--color-card);
  border: 1px solid rgba(192, 201, 207, .14);
  transition: border-color .22s, box-shadow .3s var(--ease), transform .3s var(--ease);
}

.card:hover {
  border-color: rgba(0, 168, 255, .45);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .35), 0 0 18px rgba(0, 168, 255, .1);
  transform: translateY(-2px);
}

.card--accent {
  border-left: 3px solid var(--color-electric-blue);
}

.card--slant::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--color-electric-blue), var(--color-neon-green));
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.card__title {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 10px;
}

.card__text {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.75;
}

.stack {
  position: relative;
  isolation: isolate;
}

.stack::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 12px;
  right: -6px;
  top: 12px;
  bottom: -6px;
  background: rgba(0, 168, 255, .05);
  border: 1px solid rgba(0, 168, 255, .22);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(0, 168, 255, .08);
  border: 1px solid rgba(0, 168, 255, .4);
  color: var(--color-electric-blue);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  line-height: 1.4;
}

.tag--new {
  background: rgba(57, 255, 20, .06);
  border-color: rgba(57, 255, 20, .5);
  color: var(--color-neon-green);
}

.tag--hot {
  background: rgba(255, 42, 42, .08);
  border-color: rgba(255, 42, 42, .5);
  color: var(--color-hot-red);
}

.data-metric {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--color-electric-blue);
}

.data-metric__suffix {
  margin-left: 4px;
  font-size: .55em;
  font-weight: 400;
  color: var(--color-neon-green);
}

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

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

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

.tabs {
  position: relative;
}

.tabs__list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 168, 255, .25);
}

.tabs__tab {
  position: relative;
  padding: 10px 18px 12px;
  background: transparent;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color .2s, background .2s, border-color .2s;
}

.tabs__tab:hover {
  color: var(--color-text);
  background: rgba(0, 168, 255, .05);
}

.tabs__tab[aria-selected="true"] {
  color: var(--color-text);
  background: rgba(0, 168, 255, .06);
  border-bottom-color: var(--color-neon-green);
}

.tabs__tab:focus-visible {
  outline-offset: -2px;
}

.tabs__panel {
  padding: 24px 2px 10px;
  animation: tab-fade .3s var(--ease);
}

@keyframes tab-fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline {
  position: relative;
  padding-left: 26px;
  border-left: 2px solid rgba(0, 168, 255, .25);
}

.timeline__item {
  position: relative;
  padding: 0 0 28px 16px;
}

.timeline__item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -33px;
  width: 10px;
  height: 10px;
  background: var(--color-deep-space);
  border: 2px solid var(--color-neon-green);
  transform: rotate(45deg);
}

.timeline__date {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--color-electric-blue);
}

.timeline__title {
  font-family: var(--font-headline);
  font-size: 18px;
  margin: 6px 0 4px;
  color: var(--color-text);
}

.timeline__text {
  max-width: 62ch;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.75;
}

.media-frame {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 168, 255, .08), rgba(57, 255, 20, .04)),
    var(--color-card);
  border: 1px solid rgba(192, 201, 207, .14);
}

.media-frame::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.media-frame--4x3::before {
  padding-top: 75%;
}

.media-frame--1x1::before {
  padding-top: 100%;
}

.media-frame--3x4::before {
  padding-top: 133.33%;
}

.media-frame > img,
.media-frame > picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: rgba(192, 201, 207, .6);
  text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(0, 168, 255, .05) 0, rgba(0, 168, 255, .05) 1px, transparent 1px, transparent 12px),
    linear-gradient(180deg, #101A2B, #0C1524);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 6px 0 26px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--color-muted);
}

.breadcrumbs a {
  color: var(--color-muted);
  text-decoration: none;
  transition: color .2s;
}

.breadcrumbs a:hover {
  color: var(--color-electric-blue);
}

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

.breadcrumbs__sep {
  color: var(--color-electric-blue);
  opacity: .5;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(192, 201, 207, .14);
  background: var(--color-card);
}

.table-wrap table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
}

.table-wrap th,
.table-wrap td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(192, 201, 207, .1);
}

.table-wrap th {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-electric-blue);
  background: rgba(0, 168, 255, .05);
  white-space: nowrap;
}

.table-wrap td {
  color: var(--color-muted);
}

.table-wrap tbody tr:last-child td {
  border-bottom: none;
}

.table-wrap tbody tr:hover td {
  background: rgba(0, 168, 255, .03);
}

.text-container {
  max-width: 74ch;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.85;
}

.text-container h2,
.text-container h3,
.text-container h4 {
  margin-top: 1.6em;
  margin-bottom: .5em;
  color: var(--color-text);
}

.text-container p {
  margin-bottom: 1em;
}

.text-container ul,
.text-container ol {
  margin-bottom: 1em;
  padding-left: 1.4em;
}

.text-container ul {
  list-style: square;
}

.text-container li {
  margin-bottom: .4em;
}

.text-container a {
  color: var(--color-electric-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.text-container blockquote {
  margin: 1.5em 0;
  padding: 12px 18px;
  border-left: 3px solid var(--color-electric-blue);
  background: rgba(0, 168, 255, .05);
  color: var(--color-text);
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(0, 168, 255, .06);
  border-left: 3px solid var(--color-electric-blue);
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}

.notice--hot {
  background: rgba(255, 42, 42, .06);
  border-left-color: var(--color-hot-red);
}

.notice--ok {
  background: rgba(57, 255, 20, .05);
  border-left-color: var(--color-neon-green);
}

.notice__label {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--color-electric-blue);
}

.notice--hot .notice__label {
  color: var(--color-hot-red);
}

.notice--ok .notice__label {
  color: var(--color-neon-green);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .site-header__status-dot {
    animation: none;
  }

  .tabs__panel {
    animation: none;
  }

  .card:hover {
    transform: none;
  }

  .site-nav__link:hover {
    padding-left: 14px;
  }
}
