:root {
  --navy: #0A1E3C;
  --navy-deep: #071830;
  --panel: #122A4A;
  --line: #1E3A5F;
  --line-soft: rgba(30, 58, 95, 0.65);
  --gold: #FFD700;
  --red: #FF2D55;
  --green: #00E5A0;
  --white: #FFFFFF;
  --dim: #A0B6C8;
  --font-headline: "Playfair Display SC", "Noto Serif SC", "Songti SC", "SimSun", Georgia, "Times New Roman", serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-data: "Roboto Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --radius-lg: 24px;
  --radius-pill: 45px;
  --shadow-panel: 0 20px 60px rgba(2, 8, 18, 0.45);
  --glow-gold: 0 0 0 1px rgba(255, 215, 0, 0.4), 0 0 28px rgba(255, 215, 0, 0.15);
  --wrap-width: 1200px;
  --header-h: 72px;
  --header-h-mobile: 64px;
  --ticker-h: 34px;
  --rail-w: 88px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scrollbar-color: var(--line) var(--navy-deep);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--white);
  background: var(--navy);
}

main {
  display: block;
  flex: 1;
  width: 100%;
}

#main-content {
  scroll-margin-top: calc(var(--header-h-mobile) + var(--ticker-h) + 16px);
  scroll-margin-bottom: 24px;
}

#main-content:focus {
  outline: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-headline);
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2.6rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 2rem); }

p + p { margin-top: 1em; }

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

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

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

ul, ol {
  list-style: none;
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

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

.wrap {
  width: 100%;
  max-width: var(--wrap-width);
  margin-inline: auto;
  padding-inline: 20px;
}

@media (min-width: 768px) {
  .wrap { padding-inline: 32px; }
}

.section {
  padding: 72px 0;
}

@media (max-width: 767px) {
  .section { padding: 48px 0; }
}

.lede {
  max-width: 680px;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  line-height: 1.7;
  color: var(--dim);
}

.chapter {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  margin-top: 40px;
}

.chapter__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
}

.chapter__num {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 32px rgba(255, 215, 0, 0.22);
}

.chapter__label {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--dim);
}

.chapter__title {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--white);
}

.chapter__body {
  max-width: 720px;
  color: var(--dim);
}

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

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

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

@media (max-width: 899px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 599px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  background: var(--gold);
  color: var(--navy);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.25);
}

.btn--ghost {
  background: rgba(18, 42, 74, 0.5);
  border-color: var(--line);
  color: var(--white);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: var(--glow-gold);
  transform: translateY(-2px);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 215, 0, 0.28);
  background: rgba(255, 215, 0, 0.06);
  color: var(--gold);
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.pill::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.pill--green {
  border-color: rgba(0, 229, 160, 0.3);
  background: rgba(0, 229, 160, 0.06);
  color: var(--green);
}

.pill--red {
  border-color: rgba(255, 45, 85, 0.3);
  background: rgba(255, 45, 85, 0.06);
  color: var(--red);
}

.card {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-panel);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.card--interactive:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: var(--glow-gold);
}

.stat {
  font-family: var(--font-data);
  font-weight: 500;
  font-size: 34px;
  line-height: 1.1;
  color: var(--white);
}

.stat small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--dim);
}

.stat--gold { color: var(--gold); }
.stat--red { color: var(--red); }
.stat--green { color: var(--green); }

.frame {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(18, 42, 74, 0.62), rgba(7, 24, 48, 0.88));
  overflow: hidden;
}

.frame::before,
.frame::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold);
  pointer-events: none;
  opacity: 0.9;
}

.frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
  border-top-left-radius: 10px;
}

.frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
  border-bottom-right-radius: 10px;
}

.frame__content {
  position: relative;
  z-index: 1;
}

.frame__media {
  display: block;
  margin-bottom: 18px;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--panel);
}

.media-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}

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

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(10, 30, 60, 0.6));
  pointer-events: none;
}

.media-frame__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
}

.media-frame__caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--dim);
}

.breadcrumb a {
  transition: color 0.2s ease;
}

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

.breadcrumb__sep {
  color: var(--line);
}

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

.tabs {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(18, 42, 74, 0.4);
  overflow: hidden;
}

.tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 24, 48, 0.7);
}

.tabs__tab {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--dim);
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tabs__tab:hover {
  color: var(--white);
  border-color: var(--line);
  box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.2);
}

.tabs__tab[aria-selected="true"] {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 0 24px rgba(255, 215, 0, 0.22);
}

.tabs__panel {
  padding: 24px;
  color: var(--dim);
}

.tabs__panel[hidden] {
  display: none;
}

.tabs__panel.is-active {
  animation: rise 0.5s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 599px) {
  .tabs__panel { padding: 16px; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.skip-link {
  position: fixed;
  top: -72px;
  left: 20px;
  z-index: 200;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 14px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 0 0 16px 16px;
  box-shadow: var(--glow-gold);
  transition: top 0.3s ease;
}

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

@media (min-width: 1024px) {
  .skip-link {
    left: calc(var(--rail-w) + 20px);
  }
}

.header-ticker {
  display: flex;
  align-items: center;
  gap: 18px;
  height: var(--ticker-h);
  padding: 0 20px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.07), rgba(10, 30, 60, 0) 32%, rgba(255, 45, 85, 0.06));
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--dim);
  white-space: nowrap;
  overflow: hidden;
}

@media (min-width: 768px) {
  .header-ticker {
    padding: 0 32px;
  }
}

.header-ticker__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.18em;
}

.header-ticker__live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: pulse 2s ease-in-out infinite;
}

.header-ticker__msg {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.08em;
}

.header-ticker__host {
  margin-left: auto;
  color: #4E6D8C;
  letter-spacing: 0.16em;
}

@media (max-width: 767px) {
  .header-ticker {
    gap: 12px;
    padding: 0 16px;
  }
  .header-ticker__host {
    display: none;
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #0B2142;
  border-bottom: 1px solid var(--line);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(255, 215, 0, 0) 24%, rgba(255, 215, 0, 0.25) 62%, var(--red) 100%);
  opacity: 0.7;
  pointer-events: none;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h-mobile);
  padding-inline: 20px;
}

@media (min-width: 768px) {
  .header-wrap {
    padding-inline: 32px;
  }
}

@media (min-width: 1024px) {
  .header-wrap {
    height: var(--header-h);
  }
  #main-content {
    scroll-margin-top: calc(var(--header-h) + var(--ticker-h) + 16px);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.12), 0 0 16px rgba(255, 215, 0, 0.5);
}

.brand__name {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--white);
  white-space: nowrap;
}

.brand__name em {
  font-style: normal;
  color: var(--gold);
  font-size: 19px;
}

.brand__name small {
  font-family: var(--font-data);
  font-weight: 500;
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.12em;
}

.brand--footer .brand__dot {
  width: 14px;
  height: 14px;
}

.brand--footer .brand__name {
  font-size: 28px;
}

.brand--footer .brand__name em {
  font-size: 25px;
}

.header-nav {
  display: none;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 1023.98px) {
  .site-header[data-open] .header-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--header-h-mobile) - var(--ticker-h) - 8px);
    overflow-y: auto;
    padding: 20px;
    background: rgba(7, 24, 48, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(2, 8, 18, 0.5);
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

@media (max-width: 1023.98px) {
  .main-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }
}

.main-nav__link {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--dim);
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.main-nav__link:hover {
  color: var(--white);
  background: rgba(255, 215, 0, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.25), 0 0 18px rgba(255, 215, 0, 0.08);
}

.main-nav__link[aria-current="page"] {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 0 22px rgba(255, 215, 0, 0.28);
}

@media (max-width: 1023.98px) {
  .main-nav__link {
    padding: 13px 16px;
    border-radius: 16px;
    white-space: normal;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1023.98px) {
  .header-actions {
    width: 100%;
  }
  .header-action {
    flex: 1;
    justify-content: center;
  }
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-action::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.header-action:hover {
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
}

.header-action--key {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.header-action--key::before {
  background: var(--navy);
  box-shadow: 0 0 8px var(--navy);
}

.header-action--key:hover {
  background: #FFE14D;
  border-color: #FFE14D;
  color: var(--navy);
  box-shadow: 0 0 0 1px rgba(255, 225, 77, 0.4), 0 0 28px rgba(255, 215, 0, 0.28);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(18, 42, 74, 0.6);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-toggle:hover {
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle__icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 16px;
}

.nav-toggle__icon i {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle__label {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.site-header[data-open] .nav-toggle__icon i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header[data-open] .nav-toggle__icon i:nth-child(2) {
  opacity: 0;
}

.site-header[data-open] .nav-toggle__icon i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.brand-rail {
  display: none;
}

@media (min-width: 1024px) {
  body {
    padding-left: var(--rail-w);
  }
  .brand-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--rail-w);
    padding: 26px 0 22px;
    border-right: 1px solid var(--line);
    background:
      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 4px),
      linear-gradient(180deg, rgba(18, 42, 74, 0.55), rgba(7, 24, 48, 0.95));
    pointer-events: none;
    z-index: 40;
  }
}

.brand-rail__meta {
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--dim);
  writing-mode: vertical-rl;
}

.brand-rail__word {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.32em;
  color: var(--white);
  margin-top: 52px;
  position: relative;
}

.brand-rail__word::after {
  content: "";
  position: absolute;
  top: -18px;
  right: -12px;
  bottom: -18px;
  width: 1px;
  background: linear-gradient(var(--gold), var(--red));
  opacity: 0.7;
}

.brand-rail__track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.brand-rail__track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line);
}

.brand-rail__track i:nth-child(2),
.brand-rail__track i:nth-child(5) {
  background: rgba(255, 215, 0, 0.75);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.45);
}

.brand-rail__ver {
  margin-top: auto;
  margin-bottom: 18px;
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 45px;
  padding: 10px 7px;
}

.site-footer {
  position: relative;
  margin-top: 64px;
  background: var(--navy-deep);
  border-top: 1px solid var(--line);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(255, 215, 0, 0) 22%, var(--line) 50%, rgba(30, 58, 95, 0) 76%, var(--red) 100%);
  opacity: 0.8;
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 14px, transparent 14px 22px);
  opacity: 0.8;
  pointer-events: none;
}

.footer-main {
  border-bottom: 1px solid rgba(30, 58, 95, 0.7);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 56px 0 44px;
}

@media (min-width: 900px) {
  .footer-top {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: 48px;
  }
}

.footer-brand__slogan {
  max-width: 360px;
  margin: 20px 0 24px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.65;
  color: var(--white);
}

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

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

.footer-col__title {
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--dim);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--line);
  flex-shrink: 0;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.footer-col a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-col a:hover::before {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.footer-meta {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.03), rgba(7, 24, 48, 0) 30%, rgba(255, 45, 85, 0.03));
}

.footer-meta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 28px;
  padding-top: 24px;
  padding-bottom: 24px;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--dim);
}

.footer-meta__label {
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.footer-legal {
  border-top: 1px solid rgba(30, 58, 95, 0.6);
}

.footer-legal__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  padding-top: 18px;
  padding-bottom: 26px;
  font-family: var(--font-data);
  font-size: 12px;
  color: #6E889E;
}

.footer-legal__dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(0, 229, 160, 0.8);
  vertical-align: middle;
}

.footer-legal__note {
  flex-basis: 100%;
  width: 100%;
  color: #56708A;
  font-size: 12px;
  line-height: 1.6;
}

@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;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .skip-link {
    transition: none;
  }
  .tabs__panel.is-active {
    animation: none;
  }
}
