:root {
  --space-deep: #0A1733;
  --space-abyss: #050D1F;
  --neon-green: #B8FF22;
  --signal-orange: #FF5C00;
  --desert-cream: #F2E8D5;
  --ink-brown: #1E1919;
  --night-blue: #12264E;
  --steel-blue: #7A9CC6;
  --signal-yellow: #FFC700;
  --font-head: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  --font-data: "Roboto Mono", "SFMono-Regular", "Cascadia Mono", monospace;
  --text-primary: var(--desert-cream);
  --text-secondary: var(--steel-blue);
  --line-faint: rgba(184, 255, 34, 0.14);
  --line-soft: rgba(122, 156, 198, 0.22);
  --container: 1240px;
  --container-wide: 1480px;
  --header-z: 100;
  --ease: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  background-color: var(--space-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(122, 156, 198, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 156, 198, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
}

::selection {
  background: var(--neon-green);
  color: var(--space-abyss);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--space-abyss);
}

::-webkit-scrollbar-thumb {
  background: var(--night-blue);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--steel-blue);
}

a {
  color: var(--neon-green);
  text-decoration: none;
  transition: color var(--ease);
}

a:hover {
  color: var(--desert-cream);
}

ul, ol {
  list-style: none;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding: 64px 0;
}

.section--tight {
  padding: 32px 0;
}

.section__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: oblique 12deg;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--desert-cream);
  margin-bottom: 12px;
  position: relative;
}

.section__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--neon-green), var(--signal-orange));
  transform: skewX(-18deg);
}

.section__subtitle {
  color: var(--steel-blue);
  font-size: 15px;
  max-width: 680px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid transparent;
  background: transparent;
  color: var(--desert-cream);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  color: var(--desert-cream);
}

.btn--primary {
  background: var(--signal-orange);
  color: var(--space-abyss);
  border-color: var(--signal-orange);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 92, 0, 0.3);
  color: var(--space-abyss);
  filter: brightness(1.06);
}

.btn--outline {
  border-color: rgba(184, 255, 34, 0.45);
  color: var(--neon-green);
  background: rgba(184, 255, 34, 0.04);
}

.btn--outline:hover {
  background: rgba(184, 255, 34, 0.1);
  color: var(--neon-green);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--steel-blue);
  padding: 16px 0;
}

.breadcrumbs__item + .breadcrumbs__item::before {
  content: "/";
  margin-right: 6px;
  color: rgba(122, 156, 198, 0.45);
}

.breadcrumbs__item a {
  color: var(--steel-blue);
}

.breadcrumbs__item a:hover {
  color: var(--neon-green);
}

.breadcrumbs__item[aria-current="page"] {
  color: var(--desert-cream);
}

.page-hero {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--line-faint);
  position: relative;
}

.page-hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: oblique 12deg;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--desert-cream);
  margin-bottom: 14px;
}

.page-hero__title em {
  color: var(--neon-green);
  font-style: normal;
}

.page-hero__subtitle {
  font-size: 16px;
  color: var(--steel-blue);
  max-width: 640px;
  margin-bottom: 20px;
}

.page-hero::after {
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  background: linear-gradient(90deg, var(--neon-green), var(--signal-orange));
  transform: skewX(-20deg);
}

.panel {
  background: var(--night-blue);
  border: 1px solid var(--line-soft);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel--clipped {
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  background: var(--ink-brown);
  border: none;
}

.panel--dark {
  background: var(--ink-brown);
  border: none;
}

.data-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(122, 156, 198, 0.18);
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
}

.data-row:last-child {
  border-bottom: none;
}

.data-label {
  color: var(--steel-blue);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.data-value {
  color: var(--desert-cream);
  font-size: 18px;
  font-weight: 600;
}

.data-value--live {
  color: var(--neon-green);
}

.stat-card {
  background: var(--night-blue);
  padding: 20px 24px;
  border-left: 3px solid var(--signal-orange);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.stat-card__value {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: oblique 8deg;
  font-size: 32px;
  line-height: 1.1;
  color: var(--desert-cream);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.stat-card__label {
  font-size: 13px;
  color: var(--steel-blue);
  letter-spacing: 0.03em;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: rgba(184, 255, 34, 0.1);
  border: 1px solid rgba(184, 255, 34, 0.32);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--neon-green);
  white-space: nowrap;
}

.live-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-green);
  animation: live-pulse 1.6s ease-in-out infinite;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-faint);
  margin-bottom: 24px;
}

.filter-btn {
  padding: 6px 14px;
  border: 1px solid rgba(122, 156, 198, 0.3);
  background: transparent;
  color: var(--steel-blue);
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color var(--ease), color var(--ease), background-color var(--ease);
}

.filter-btn[aria-pressed="true"] {
  border-color: var(--neon-green);
  color: var(--neon-green);
  background: rgba(184, 255, 34, 0.08);
}

.filter-btn:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-data);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.data-table th {
  text-align: left;
  padding: 10px 12px;
  color: var(--steel-blue);
  font-weight: 500;
  border-bottom: 1px solid var(--line-faint);
  white-space: nowrap;
  cursor: default;
}

.data-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(122, 156, 198, 0.12);
  color: var(--desert-cream);
}

.data-table tbody tr:hover {
  background: rgba(184, 255, 34, 0.04);
}

.accordion {
  border-top: 1px solid var(--line-soft);
}

.accordion__item {
  border-bottom: 1px solid var(--line-soft);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  background: transparent;
  border: none;
  color: var(--desert-cream);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  transition: color var(--ease);
}

.accordion__trigger:hover {
  color: var(--neon-green);
}

.accordion__trigger::after {
  content: "+";
  font-family: var(--font-data);
  font-size: 20px;
  color: var(--neon-green);
  transition: transform 200ms ease;
  flex-shrink: 0;
}

.accordion__trigger[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
}

.accordion__panel-inner {
  padding: 0 4px 18px;
  color: var(--text-secondary);
  font-size: 15px;
}

.ticker {
  overflow: hidden;
  background: var(--ink-brown);
  border: 1px solid var(--line-soft);
  padding: 10px 0;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: ticker-scroll 36s linear infinite;
}

.ticker__item {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--steel-blue);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ticker__item::before {
  content: "◆";
  font-size: 6px;
  color: var(--neon-green);
  opacity: 0.7;
}

.image-holder {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(rgba(122, 156, 198, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 156, 198, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, var(--night-blue), var(--ink-brown));
  background-size: 20px 20px, 20px 20px, cover;
  border: 1px solid var(--line-soft);
  overflow: hidden;
}

.image-holder::after {
  content: "IMG";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(122, 156, 198, 0.5);
}

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

.image-holder--square {
  aspect-ratio: 1 / 1;
}

/* ===== Header ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--header-z);
}

.site-header__progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--neon-green), var(--signal-orange));
  transition: width 80ms linear;
}

.site-header__top {
  background: var(--space-abyss);
  border-bottom: 1px solid var(--line-faint);
  color: var(--steel-blue);
  font-size: 12px;
}

.site-header__top-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 5px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header__notice {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.02em;
}

.site-header__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: var(--desert-cream);
  font-size: 12px;
}

.site-header__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 8px rgba(184, 255, 34, 0.7);
  animation: live-pulse 1.8s ease-in-out infinite;
}

.site-header__main {
  background: rgba(10, 23, 51, 0.97);
  border-bottom: 1px solid var(--line-faint);
}

.site-header__main-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  padding: 8px 0;
}

.brand:hover {
  color: var(--desert-cream);
}

.brand__wordmark {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  font-style: oblique 12deg;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--desert-cream);
}

.brand__suffix {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  color: var(--neon-green);
  border-left: 2px solid var(--neon-green);
  padding-left: 10px;
  transform: skewX(-8deg);
  display: inline-block;
}

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

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.site-nav__link {
  display: inline-block;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--desert-cream);
  text-decoration: none;
  border-radius: 2px;
  position: relative;
  transition: background-color var(--ease), color var(--ease);
}

.site-nav__link:hover {
  background: rgba(184, 255, 34, 0.08);
  color: var(--desert-cream);
}

.site-nav__link[aria-current="page"] {
  color: var(--neon-green);
  background: rgba(184, 255, 34, 0.06);
}

.site-nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--neon-green);
  transform: skewX(-20deg);
}

.site-nav__brand {
  display: none;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--signal-orange);
  color: var(--space-abyss);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease, color 160ms ease;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.site-header__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.28) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 400ms ease;
}

.site-header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 92, 0, 0.32);
  filter: brightness(1.06);
  color: var(--space-abyss);
}

.site-header__cta:hover::before {
  transform: translateX(120%);
}

.site-header__cta-icon {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--space-abyss);
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(242, 232, 213, 0.22);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color var(--ease);
}

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

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--desert-cream);
  margin: 4px auto;
  transition: transform 220ms ease, opacity 200ms ease, background-color 220ms ease;
}

.nav-toggle[aria-expanded="true"] {
  border-color: var(--neon-green);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar {
  background: var(--neon-green);
}

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

.skip-link {
  position: fixed;
  top: -56px;
  left: 16px;
  z-index: 200;
  background: var(--neon-green);
  color: var(--space-abyss);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 12px;
  color: var(--space-abyss);
}

@media (max-width: 919px) {
  .site-header__main-inner {
    min-height: 56px;
    gap: 10px;
  }

  .brand__wordmark {
    font-size: 22px;
  }

  .brand__suffix {
    font-size: 13px;
    padding-left: 8px;
  }

  .site-header__cta {
    padding: 8px 14px;
    font-size: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--space-abyss);
    padding: 76px 24px 32px;
    overflow-y: auto;
    z-index: 1;
    transform: translateX(105%);
    transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
    border-left: 1px solid var(--line-faint);
    margin-left: 0;
  }

  .site-nav[data-open="true"] {
    transform: translateX(0);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.5);
  }

  .site-nav__brand {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--line-faint);
  }

  .site-nav__brand-word {
    font-family: var(--font-head);
    font-weight: 900;
    font-style: oblique 12deg;
    font-size: 24px;
    line-height: 1;
    color: var(--desert-cream);
  }

  .site-nav__brand-tag {
    font-family: var(--font-data);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--neon-green);
  }

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

  .site-nav__link {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    border-bottom: 1px solid rgba(122, 156, 198, 0.1);
    border-radius: 0;
  }

  .site-nav__link[aria-current="page"]::after {
    left: 16px;
    right: 16px;
    bottom: 6px;
  }

  .site-header__main {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 560px) {
  .site-header__top-inner {
    padding: 4px 16px;
    font-size: 11px;
  }

  .site-header__live-sync {
    display: none;
  }

  .site-header__main-inner {
    padding: 0 16px;
  }

  .site-header__cta-text {
    display: none;
  }

  .site-header__cta {
    width: 36px;
    height: 36px;
    padding: 0;
    justify-content: center;
  }

  .site-header__cta-icon {
    border-top-width: 5px;
    border-bottom-width: 5px;
    border-left-width: 7px;
  }
}

/* ===== Footer ===== */

.site-footer {
  background: var(--space-abyss);
  border-top: 1px solid var(--line-faint);
  margin-top: auto;
}

.site-footer__ticker {
  overflow: hidden;
  background: var(--ink-brown);
  border-bottom: 1px solid var(--line-faint);
}

.site-footer__ticker-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  padding: 10px 0;
  padding-right: 48px;
  animation: footer-ticker-scroll 38s linear infinite;
  will-change: transform;
}

.site-footer__ticker-item {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--steel-blue);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer__ticker-item::before {
  content: "◆";
  font-size: 6px;
  color: var(--neon-green);
  opacity: 0.7;
}

.site-footer__ticker-item:nth-child(even)::before {
  color: var(--signal-orange);
}

.site-footer__body {
  background: linear-gradient(135deg, rgba(184, 255, 34, 0.025) 0%, transparent 40%);
}

.site-footer__body-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 56px 24px 44px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.site-footer__logo:hover {
  color: var(--desert-cream);
}

.site-footer__logo-word {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: oblique 12deg;
  font-size: 28px;
  line-height: 1;
  color: var(--desert-cream);
}

.site-footer__logo-suffix {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: var(--neon-green);
  border-left: 2px solid var(--neon-green);
  padding-left: 10px;
  transform: skewX(-8deg);
  display: inline-block;
}

.site-footer__about {
  font-size: 14px;
  color: var(--steel-blue);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 360px;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__contact-item {
  font-size: 13px;
  color: var(--desert-cream);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.site-footer__contact-label {
  color: var(--steel-blue);
  flex-shrink: 0;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer__col-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--desert-cream);
  letter-spacing: 0.08em;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(184, 255, 34, 0.18);
  position: relative;
}

.site-footer__col-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--neon-green);
  transform: skewX(-20deg);
}

.site-footer__col-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer__col-list a {
  display: inline-block;
  color: var(--text-secondary);
  font-size: 14px;
  transition: color var(--ease), transform 160ms ease;
  padding: 2px 0;
}

.site-footer__col-list a:hover {
  color: var(--neon-green);
  transform: translateX(4px);
}

.site-footer__cta {
  margin-top: 4px;
  align-self: flex-start;
}

.site-footer__help {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer__help-note {
  font-size: 13px;
  color: var(--steel-blue);
  line-height: 1.8;
}

.site-footer__help-version {
  font-size: 13px;
  color: var(--steel-blue);
}

.site-footer__help-tag {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--neon-green);
  border: 1px solid rgba(184, 255, 34, 0.3);
  background: rgba(184, 255, 34, 0.06);
  padding: 2px 8px;
  margin-left: 6px;
  letter-spacing: 0.03em;
}

.site-footer__bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(122, 156, 198, 0.12);
}

.site-footer__bottom-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.site-footer__trust {
  font-size: 12px;
  color: rgba(122, 156, 198, 0.65);
  max-width: 720px;
  line-height: 1.7;
}

.site-footer__meta {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--steel-blue);
  letter-spacing: 0.04em;
}

@media (max-width: 1023px) {
  .site-footer__body-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 48px 24px 40px;
  }
}

@media (max-width: 560px) {
  .site-footer__body-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 16px 32px;
  }

  .site-footer__bottom-inner {
    padding: 16px;
  }

  .site-footer__trust {
    font-size: 11px;
  }
}

/* ===== Animations ===== */

@keyframes live-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.85);
  }
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes footer-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

  html {
    scroll-behavior: auto;
  }

  .site-footer__ticker-track,
  .ticker__track {
    animation: none;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-header__live-dot,
  .live-pill__dot {
    animation: none;
  }

  .site-nav {
    transition: none;
  }
}
