:root {
  --color-navy: #0B1F3A;
  --color-neon: #00FF9D;
  --color-gray: #8A8F98;
  --color-amber: #FFD700;
  --color-ink: #050A12;
  --color-light: #F5F6F8;
  --color-cyan: #00D2FF;
  --color-green: #00CC7A;
  --color-text: #D6DCE5;
  --color-heading: #F5F6F8;
  --font-heading: 'Archivo Black', 'Noto Sans SC', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --font-body: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --font-data: 'Space Mono', 'Courier New', monospace;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --container: 1280px;
  --header-z: 100;
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--color-text);
  background: var(--color-navy);
  overflow-wrap: break-word;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.18;
  color: var(--color-heading);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(34px, 6vw, 72px);
}

h2 {
  font-size: clamp(26px, 4vw, 44px);
}

h3 {
  font-size: clamp(20px, 2.6vw, 28px);
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 1rem;
}

strong {
  color: var(--color-heading);
  font-weight: 700;
}

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

a:hover {
  color: #66ffc2;
}

mark {
  background: var(--color-amber);
  color: var(--color-navy);
  padding: 0 4px;
  border-radius: 4px;
}

blockquote {
  margin: 0;
  padding: 16px 24px;
  border-left: 3px solid var(--color-neon);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: 210;
  background: linear-gradient(90deg, var(--color-neon), var(--color-cyan));
  border-radius: 0 2px 2px 0;
  pointer-events: none;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 300;
  padding: 10px 20px;
  border-radius: 0 0 10px 10px;
  background: var(--color-neon);
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: top 0.2s ease;
}

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

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

.site-header__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px 10px 20px;
  background: rgba(5, 10, 18, 0.72);
  border: 1px solid rgba(0, 255, 157, 0.14);
  border-radius: 999px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: #F5F6F8;
  text-decoration: none;
}

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

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(0, 255, 157, 0.12);
  border: 1px solid rgba(0, 255, 157, 0.35);
  color: #D6DCE5;
  flex-shrink: 0;
}

.brand__mark svg {
  width: 26px;
  height: 26px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: currentColor;
  line-height: 1.2;
}

.brand__tagline {
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--color-neon);
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex: 1 1 auto;
}

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

.site-nav__link {
  display: block;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav__link:hover {
  background: rgba(0, 255, 157, 0.08);
  color: var(--color-neon);
}

.site-nav__link[aria-current="page"] {
  background: var(--color-neon);
  color: var(--color-navy);
  font-weight: 700;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--color-text);
  font-family: var(--font-data);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
}

.site-header__phone:hover {
  background: rgba(0, 255, 157, 0.08);
  color: var(--color-neon);
}

.site-header__phone-text {
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(0, 255, 157, 0.22);
  border-radius: 14px;
  background: rgba(0, 255, 157, 0.05);
  color: var(--color-neon);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(0, 255, 157, 0.12);
}

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

.nav-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.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);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--color-neon);
  color: var(--color-navy);
}

.btn--primary:hover {
  background: #66ffc2;
  color: var(--color-ink);
}

.btn--ghost {
  border-color: rgba(0, 255, 157, 0.4);
  color: #E8EDF5;
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--color-neon);
  background: rgba(0, 255, 157, 0.12);
  color: var(--color-neon);
}

.btn--compact {
  padding: 7px 14px;
  font-size: 13px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--color-gray);
}

.breadcrumb a {
  color: var(--color-neon);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb__sep {
  color: #4a5568;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-neon);
}

.section-label::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--color-neon);
  border-radius: 2px;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(0, 255, 157, 0.12);
  color: var(--color-neon);
  border: 1px solid rgba(0, 255, 157, 0.3);
}

.tag--amber {
  background: rgba(255, 215, 0, 0.12);
  color: var(--color-amber);
  border-color: rgba(255, 215, 0, 0.3);
}

.tag--green {
  background: rgba(0, 204, 122, 0.12);
  color: var(--color-green);
  border-color: rgba(0, 204, 122, 0.3);
}

.stat-number {
  font-family: var(--font-data);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--color-navy);
}

.stat-number--neon {
  color: var(--color-neon);
  text-shadow: 0 0 28px rgba(0, 255, 157, 0.3);
}

.stat-number--on-dark {
  color: var(--color-heading);
}

.verb {
  font-family: var(--font-data);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  color: #4a5568;
}

.verb--light {
  color: var(--color-gray);
}

.data-card {
  position: relative;
  background: var(--color-light);
  border-radius: var(--radius-md);
  padding: 24px;
  color: #1F2937;
  border: 1px solid rgba(11, 31, 58, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.data-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-neon), var(--color-cyan));
  opacity: 0.5;
}

.data-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 157, 0.5);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.data-card--dark {
  background: #0E2038;
  color: var(--color-text);
  border-color: rgba(0, 255, 157, 0.12);
}

.data-card--dark .stat-number {
  color: var(--color-neon);
}

.data-card--dark .verb {
  color: var(--color-gray);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.art-block {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 75% 20%, rgba(0, 255, 157, 0.16) 0%, transparent 45%),
    linear-gradient(135deg, #0B1F3A 0%, #0e2749 100%);
  border: 1px solid rgba(0, 255, 157, 0.12);
}

.art-block::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: repeating-linear-gradient(-45deg, rgba(0, 255, 157, 0.05) 0 2px, transparent 2px 12px);
}

.art-block::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(0, 255, 157, 0.4);
  border-radius: 12px;
  transform: rotate(12deg);
}

.media-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  background: linear-gradient(135deg, #0e2749, #0B1F3A);
  border: 1px solid rgba(0, 255, 157, 0.14);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  min-height: 160px;
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(0, 255, 157, 0.08) 50%, transparent 80%);
}

.media-frame__caption {
  position: relative;
  z-index: 1;
  background: rgba(5, 10, 18, 0.65);
  color: var(--color-text);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 157, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.divider-slant {
  height: 1px;
  margin: 44px 0;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.35), transparent);
  transform: skewY(-1.2deg);
}

.toc-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0 0 40px;
  list-style: none;
}

.toc-strip a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.toc-strip a:hover {
  border-color: rgba(0, 255, 157, 0.5);
  color: var(--color-neon);
  background: rgba(0, 255, 157, 0.08);
}

.hero-panel {
  position: relative;
  padding: 120px 0 64px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-navy);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 255, 157, 0.1) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.study-board {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 255, 157, 0.14);
  border-radius: 20px;
  padding: 28px;
}

.study-board::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 3px;
  background: linear-gradient(180deg, var(--color-neon), var(--color-cyan));
  border-radius: 3px;
}

.study-board__summary {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  padding-left: 12px;
}

.study-board__evidence {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed rgba(0, 255, 157, 0.25);
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.7;
}

.study-board__term {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  margin: 4px 4px 0 0;
  border-radius: 999px;
  background: rgba(0, 255, 157, 0.1);
  color: var(--color-neon);
  font-size: 13px;
  font-weight: 600;
}

.study-board__term::before {
  content: "#";
  opacity: 0.6;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-neon);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.link-more::after {
  content: "→";
}

.link-more:hover {
  gap: 10px;
}

.data-stream {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-neon);
}

.data-stream::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-neon);
  animation: data-stream-pulse 2s infinite;
}

@keyframes data-stream-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.6);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(0, 255, 157, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 157, 0);
  }
}

.site-footer {
  margin-top: 80px;
  background: var(--color-ink);
  color: var(--color-gray);
  border-top: 1px solid rgba(0, 255, 157, 0.1);
  padding: 56px 0 28px;
  position: relative;
}

.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__col--brand {
  max-width: 340px;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #F5F6F8;
  text-decoration: none;
  margin-bottom: 16px;
}

.site-footer__brand:hover {
  color: var(--color-neon);
}

.site-footer__brand .brand__mark {
  width: 36px;
  height: 36px;
}

.site-footer__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #9CA3AF;
  margin-bottom: 16px;
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__heading {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F5F6F8;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 255, 157, 0.18);
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.site-footer__link {
  color: #8A8F98;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.site-footer__link:hover {
  color: var(--color-neon);
  padding-left: 4px;
}

.site-footer__list--contact li {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

.site-footer__list--contact li:last-child {
  border-bottom: 0;
}

.site-footer__label {
  min-width: 44px;
  font-family: var(--font-data);
  font-size: 12px;
  color: #4a5568;
  letter-spacing: 0.06em;
}

.site-footer__text {
  font-size: 14px;
  color: #9CA3AF;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 24px;
  font-size: 13px;
}

.site-footer__copy {
  margin: 0;
  color: #5b6472;
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__legal-links .site-footer__link {
  font-size: 13px;
}

.site-footer__icp {
  margin: 0;
  font-family: var(--font-data);
  font-size: 12px;
  color: #4a5568;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 157, 0.3);
  background: rgba(5, 10, 18, 0.78);
  color: var(--color-neon);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background-color 0.2s ease, color 0.2s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.back-to-top:hover {
  background: var(--color-neon);
  color: var(--color-navy);
  border-color: var(--color-neon);
}

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

.back-to-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1100px) {
  .site-header__phone-text {
    display: none;
  }

  .site-header__phone {
    width: 38px;
    height: 38px;
    justify-content: center;
    padding: 0;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    z-index: 105;
    display: block;
    width: auto;
    background: rgba(5, 10, 18, 0.97);
    border: 1px solid rgba(0, 255, 157, 0.16);
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .site-nav[data-open] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

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

  .site-nav__link {
    padding: 12px 16px;
  }

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

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

  .site-footer__col--brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 8px;
    padding: 0 12px;
  }

  .site-header__inner {
    padding: 8px 10px 8px 14px;
    border-radius: 24px;
  }

  .btn--compact {
    padding: 7px 10px;
    font-size: 12px;
  }

  .site-footer__inner {
    padding-inline: 18px;
  }

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

  .site-footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .site-header__phone {
    display: none;
  }

  .brand__tagline {
    display: none;
  }

  .brand__name {
    font-size: 16px;
  }
}

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