:root {
  --bg-deep: #0A1128;
  --bg-mid: #1F3A7A;
  --bg-bright: #3E67B8;
  --accent: #3DFF7E;
  --accent-dark: #2BCF66;
  --text-main: #F0F4FF;
  --text-sub: rgba(240,244,255,0.7);
  --line-accent: rgba(61,255,126,0.4);
  --neutral-deep: #1C2E4A;
  --neutral-light: #2C4A72;
  --font-display: "Archivo Black", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --header-width: 300px;
  --header-height: 72px;
  --gutter: clamp(1rem, 4vw, 3rem);
  --radius: 4px;
  --shadow-1: 0 18px 40px rgba(0,0,0,0.25);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 18%, rgba(62,103,184,0.18), transparent 34rem),
    linear-gradient(rgba(62,103,184,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62,103,184,0.07) 1px, transparent 1px);
  background-size: auto, 68px 68px, 68px 68px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--text-main);
  text-wrap: balance;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

::selection {
  background: var(--accent);
  color: #0A1128;
}

.skip-link {
  position: fixed;
  top: -4rem;
  left: 1rem;
  z-index: 5000;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: #0A1128;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-main {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  padding: clamp(2rem, 5vw, 5rem) var(--gutter);
}

.site-footer {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

@media (min-width: 60em) {
  .site-main {
    margin-left: var(--header-width);
  }

  .site-footer {
    margin-left: var(--header-width);
  }
}

@media (max-width: 59.98em) {
  .site-main {
    padding-top: calc(var(--header-height) + clamp(1.25rem, 4vw, 2.5rem));
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: var(--header-width);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: rgba(10,17,40,0.88);
  border-right: 1px solid var(--line-accent);
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow-y: auto;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 76px;
  height: 76px;
  border-top: 1px solid var(--line-accent);
  border-right: 1px solid var(--line-accent);
  pointer-events: none;
  opacity: 0.7;
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  width: 34px;
  height: 1px;
  background: var(--accent);
  transform: rotate(-34deg);
  transform-origin: left center;
  opacity: 0.5;
  pointer-events: none;
}

.header-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-lockup {
  min-width: 0;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-main);
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(61,255,126,0.18), rgba(62,103,184,0.2));
  border: 1px solid var(--line-accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  transform: rotate(-3deg);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(240,244,255,0.25);
  pointer-events: none;
}

.brand-text {
  display: grid;
  gap: 0.15rem;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.1;
  color: var(--text-main);
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-sub);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 2.25rem;
  padding: 0 0.75rem;
  border: 1px solid rgba(240,244,255,0.2);
  background: rgba(240,244,255,0.04);
  color: var(--text-sub);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.fav-btn:hover {
  color: var(--text-main);
  border-color: var(--accent);
  background: rgba(61,255,126,0.08);
}

.fav-btn[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: #0A1128;
}

.fav-btn[aria-pressed="true"] .fav-dot {
  background: #0A1128;
  box-shadow: none;
}

.fav-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(61,255,126,0.7);
}

.fav-text {
  line-height: 1;
}

.nav-toggle {
  display: none;
}

.header-nav {
  min-width: 0;
}

.nav-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(240,244,255,0.12);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-sub);
}

.nav-heading-title {
  font-weight: 700;
  color: var(--text-main);
}

.nav-heading-note {
  color: rgba(240,244,255,0.35);
}

.nav-list {
  display: grid;
  gap: 0.25rem;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.75rem;
  border-left: 2px solid transparent;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: rgba(240,244,255,0.72);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-main);
  background: rgba(61,255,126,0.06);
  border-left-color: var(--accent);
}

.nav-link[aria-current="page"] {
  color: var(--text-main);
  background: linear-gradient(90deg, rgba(61,255,126,0.18), rgba(61,255,126,0.04));
  border-left-color: var(--accent);
}

.nav-link[aria-current="page"] .nav-link-index {
  color: var(--accent);
}

.nav-link-text {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-link-index {
  font-family: var(--font-display);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  color: rgba(240,244,255,0.32);
}

.header-foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line-accent);
}

.header-foot-note {
  margin: 0 0 0.875rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-sub);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.header-cta:hover {
  border-bottom-color: var(--accent);
}

@media (max-width: 59.98em) {
  .site-header {
    top: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: var(--header-height);
    padding: 0 var(--gutter);
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  }

  .site-header::before,
  .site-header::after {
    display: none;
  }

  .header-top {
    flex: 1 1 auto;
  }

  .header-actions {
    flex-shrink: 0;
  }

  .header-foot {
    display: none;
  }

  .header-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    max-height: calc(100dvh - var(--header-height));
    overflow: auto;
    padding: 1.25rem var(--gutter);
    background: rgba(10,17,40,0.98);
    border-bottom: 1px solid var(--line-accent);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: visibility 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
  }

  .header-nav[data-open="true"] {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border: 1px solid rgba(240,244,255,0.2);
    border-radius: var(--radius);
    color: var(--text-main);
    background: rgba(240,244,255,0.04);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  }

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

  .nav-toggle[aria-expanded="true"] {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(61,255,126,0.12);
  }

  .nav-toggle-line {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 2px;
    background: currentColor;
  }

  .nav-toggle-line::before,
  .nav-toggle-line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 16px;
    height: 2px;
    background: currentColor;
    transition: transform 0.2s ease, top 0.2s ease;
  }

  .nav-toggle-line::before {
    top: -6px;
  }

  .nav-toggle-line::after {
    top: 6px;
  }

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

  .nav-toggle[aria-expanded="true"] .nav-toggle-line::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line::after {
    top: 0;
    transform: rotate(-45deg);
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 30em) {
  .brand-sub {
    display: none;
  }

  .header-actions {
    gap: 0.25rem;
  }

  .fav-btn {
    width: 2.25rem;
    padding: 0;
    justify-content: center;
  }

  .fav-text {
    display: none;
  }
}

.page-shell {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.section-head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

.section-title {
  font-size: clamp(2.25rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.section-summary {
  max-width: 56ch;
  color: var(--text-sub);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.glass-panel {
  position: relative;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: linear-gradient(145deg, rgba(31,58,122,0.5), rgba(31,58,122,0.16));
  border: 1px solid rgba(62,103,184,0.4);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.glass-panel:hover {
  border-color: var(--line-accent);
  background: linear-gradient(145deg, rgba(31,58,122,0.6), rgba(31,58,122,0.22));
}

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

.data-grid > * {
  grid-column: span 12;
}

@media (min-width: 48em) {
  .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;
  }
}

.data-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: linear-gradient(160deg, rgba(31,58,122,0.48), rgba(28,46,74,0.3));
  border: 1px solid var(--neutral-light);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.data-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(61,255,126,0.1));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.data-card:hover {
  border-color: var(--line-accent);
  transform: translateY(-2px);
}

.data-card:hover::before {
  transform: scaleX(1);
}

.data-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.3;
}

.data-card-meta {
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.data-card-body {
  color: var(--text-sub);
  font-size: 0.875rem;
  line-height: 1.7;
}

.metric-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
}

.metric-label {
  display: block;
  color: var(--text-sub);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.status-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding-block: 0.75rem;
  border-top: 1px solid var(--line-accent);
  border-bottom: 1px solid var(--line-accent);
}

.status-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid transparent;
  color: var(--text-sub);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(61,255,126,0.75);
}

.status-dot[data-state="muted"] {
  background: var(--bg-bright);
  box-shadow: none;
}

.status-dot[data-state="blank"] {
  background: rgba(240,244,255,0.25);
  box-shadow: none;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.5rem;
  padding-left: 1.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 4px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), rgba(62,103,184,0.3));
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: -1.5rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg-deep);
}

.timeline-date {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.625rem;
  border: 1px solid var(--line-accent);
  border-radius: 999px;
  background: rgba(61,255,126,0.06);
  color: var(--text-sub);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid rgba(240,244,255,0.28);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text-main);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(61,255,126,0.08);
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #0A1128;
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #0A1128;
}

.btn-ghost {
  border-color: var(--line-accent);
  color: var(--accent);
  background: rgba(61,255,126,0.04);
}

.btn-ghost:hover {
  background: rgba(61,255,126,0.12);
  color: var(--accent);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 0.75rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  color: var(--text-sub);
  font-size: 0.8rem;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.75rem;
  color: rgba(240,244,255,0.25);
}

.breadcrumbs a {
  color: var(--text-sub);
}

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

.breadcrumbs [aria-current="page"] {
  color: var(--text-main);
  font-weight: 700;
}

.media-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--neutral-deep), rgba(31,58,122,0.4));
  border: 1px solid rgba(62,103,184,0.35);
  border-radius: var(--radius);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(61,255,126,0.1) 44%, transparent 54%, rgba(62,103,184,0.2) 90%);
  mix-blend-mode: screen;
  pointer-events: none;
}

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

.media-frame.is-wide {
  aspect-ratio: 16 / 7;
}

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

.media-frame-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  color: var(--text-sub);
  font-size: 0.75rem;
}

.progress-track {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4000;
  width: 100%;
  height: 3px;
  background: rgba(31,58,122,0.25);
  pointer-events: none;
}

.progress-bar,
.progress-track .progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  box-shadow: 0 0 12px rgba(61,255,126,0.6);
}

.site-footer {
  border-top: 1px solid var(--line-accent);
  background: rgba(10,17,40,0.92);
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: clamp(1rem, 4vw, 3rem);
  width: clamp(72px, 10vw, 140px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(61,255,126,0));
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.footer-top {
  display: grid;
  gap: 2rem;
}

@media (min-width: 60em) {
  .footer-top {
    grid-template-columns: 1.25fr 0.85fr 1.1fr;
  }
}

.footer-brand {
  max-width: 34rem;
}

.footer-brand-link {
  display: inline-block;
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.footer-brand-link:hover {
  color: var(--accent);
}

.footer-brand-note {
  display: block;
  margin-top: 0.25rem;
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-statement {
  margin-top: 1rem;
  color: var(--text-sub);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 0.375rem;
}

.footer-nav-title,
.footer-contact-title {
  display: block;
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-nav a {
  width: max-content;
  color: rgba(240,244,255,0.72);
  font-size: 0.875rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-nav a:hover {
  color: var(--accent);
  padding-left: 0.25rem;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.375rem;
  color: var(--text-sub);
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.6;
}

.footer-contact p {
  margin: 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(240,244,255,0.1);
}

.footer-copy,
.footer-icp {
  margin: 0;
  color: var(--text-sub);
  font-size: 0.75rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  margin-left: auto;
}

.footer-legal a {
  color: var(--text-sub);
  font-size: 0.75rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--accent);
}

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