/* =========================================================
   爱游戏主站 · 共享样式表 /assets/site.css
   0 reset · 1 tokens · 2 base · 3 layout · 4 components
   5 header · 6 footer · 7 responsive · 8 motion
   ========================================================= */

/* ---------- 0. RESET ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body, h1, h2, h3, h4, h5, p, ul, ol, li, figure, figcaption, blockquote, dl, dd, hr { margin: 0; padding: 0; }

ul, ol { list-style: none; }

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

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

button { background: none; border: 0; cursor: pointer; }

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

table { border-collapse: collapse; width: 100%; }

/* ---------- 1. TOKENS ---------- */
:root {
  --ink: #070B0A;
  --deep: #0C211C;
  --card: #12302A;
  --card-up: #17403A;
  --cyan: #35F0D0;
  --yellow: #FFD84D;
  --orange: #FF6A2B;
  --violet: #8E7BFF;
  --white: #F2F7F5;
  --mist: #8FA6A0;
  --silver: #C6D3CF;
  --amber: #7A3E12;
  --steel: #0E1A24;

  --accent: var(--cyan);
  --line: rgba(198, 211, 207, 0.16);
  --line-strong: rgba(198, 211, 207, 0.32);
  --shadow-card: 0 20px 44px -30px rgba(0, 0, 0, 0.95);

  --font-display: "Source Han Serif SC", "Noto Serif SC", "Songti SC", "SimSun", Georgia, serif;
  --font-body: "Source Han Sans SC", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --step-1: 0.875rem;
  --step-0: 1rem;
  --step-1u: 1.25rem;
  --step-2: 1.75rem;
  --step-3: 2.75rem;
  --step-4: 4.5rem;

  --shell: 1280px;
  --gutter: clamp(16px, 4vw, 48px);
  --radius-cut: 0;
}

[data-accent="cyan"]   { --accent: var(--cyan); }
[data-accent="yellow"] { --accent: var(--yellow); }
[data-accent="orange"] { --accent: var(--orange); }
[data-accent="violet"] { --accent: var(--violet); }

/* ---------- 2. BASE ---------- */
body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: var(--white);
  background-color: var(--ink);
  background-image:
    radial-gradient(1100px 620px at 84% -12%, rgba(53, 240, 208, 0.08), transparent 62%),
    radial-gradient(900px 520px at -6% 96%, rgba(142, 123, 255, 0.07), transparent 64%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.25rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

h4 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

p { max-width: 68ch; }

strong { font-weight: 600; color: var(--white); }

::selection { background: var(--cyan); color: var(--ink); }

[id] { scroll-margin-top: 132px; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--cyan);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  transform: translateY(-200%);
  transition: transform 0.18s ease;
}

.skip-link:focus { transform: translateY(0); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ---------- 3. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow { max-width: 820px; }

.section { padding: clamp(48px, 7vw, 96px) 0; }
.section--tight { padding: clamp(28px, 4vw, 56px) 0; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line-strong);
}

.grid { display: grid; gap: clamp(16px, 2.4vw, 32px); }

.grid--12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.span-9 { grid-column: span 9; }
.span-12 { grid-column: span 12; }

.lede {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.8;
  color: var(--silver);
  max-width: 54ch;
}

.meta-line {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  color: var(--mist);
}

.divider-slash {
  height: 6px;
  border: 0;
  background: linear-gradient(90deg, var(--accent) 0 26%, rgba(198, 211, 207, 0.14) 26% 100%);
  transform: skewX(-18deg);
  transform-origin: left center;
}

/* ---------- 4. COMPONENTS ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn--accent {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--ink);
}

.btn--accent:hover,
.btn--accent:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.btn--ghost {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: var(--mist);
}

.breadcrumbs li { display: inline-flex; align-items: center; gap: 10px; }
.breadcrumbs li + li::before { content: "/"; color: var(--line-strong); }
.breadcrumbs a { color: var(--silver); border-bottom: 1px solid transparent; transition: color 0.18s ease, border-color 0.18s ease; }
.breadcrumbs a:hover { color: var(--cyan); border-color: var(--cyan); }
.breadcrumbs [aria-current="page"] { color: var(--accent); }

.card {
  position: relative;
  padding: clamp(16px, 2.4vw, 26px);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.card--lift { transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
.card--lift:hover { transform: translateY(-2px); background: var(--card-up); border-color: var(--line-strong); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: var(--silver);
}

.tag--accent { border-color: var(--accent); color: var(--accent); }

.note {
  padding: 6px 0 6px 14px;
  border-left: 2px solid var(--accent);
  font-size: 0.9375rem;
  color: var(--mist);
}

.num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--accent);
}

.num--md { font-size: clamp(1.5rem, 2.4vw, 2.25rem); }
.num--lg { font-size: clamp(2rem, 3.4vw, 2.75rem); }
.num--xl { font-size: clamp(2.5rem, 5vw, 4rem); }

/* 图片基建：供页面阶段放置抽象数据图、球场俯视、手势剪影、热力图 */
.media-frame {
  position: relative;
  overflow: hidden;
  background: var(--steel);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card);
}

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

.media-frame--wide { aspect-ratio: 16 / 9; }
.media-frame--band { aspect-ratio: 21 / 9; }
.media-frame--square { aspect-ratio: 1 / 1; }
.media-frame--tall { aspect-ratio: 3 / 4; }

.media-frame--notch {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.media-frame--grid::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(198, 211, 207, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 211, 207, 0.1) 1px, transparent 1px);
  background-size: 48px 48px;
}

.media-frame--heat::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 70% at 28% 32%, rgba(255, 106, 43, 0.42), transparent 70%),
    radial-gradient(50% 60% at 74% 68%, rgba(53, 240, 208, 0.3), transparent 72%);
  mix-blend-mode: screen;
}

.figure-caption {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--mist);
}

/* ---------- 5. HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(7, 11, 10, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-strong);
}

.header-ticker {
  height: 26px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(122, 62, 18, 0.75), rgba(122, 62, 18, 0.12) 34%, transparent 72%);
}

.ticker-line {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.26em;
  color: var(--yellow);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-rail {
  background: linear-gradient(100deg, var(--deep) 0%, rgba(12, 33, 28, 0.6) 52%, var(--steel) 100%);
  border-bottom: 1px solid var(--line);
}

.rail-inner {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 36px);
  min-height: 66px;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 12px var(--gutter);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 0 1 auto;
}

.brand-mark {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  background: linear-gradient(150deg, var(--cyan), var(--violet));
  clip-path: polygon(0 0, 100% 0, 100% 68%, 68% 100%, 0 100%);
  transition: background 0.22s ease;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--deep);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.brand:hover .brand-mark { background: linear-gradient(150deg, var(--yellow), var(--orange)); }

.brand-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.15;
  color: var(--white);
}

.brand-line {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  color: var(--mist);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: auto;
  padding: 6px 12px;
  border: 1px solid var(--line);
  background: rgba(14, 26, 36, 0.62);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--silver);
}

.status-dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(53, 240, 208, 0.18);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding: 9px 13px;
  border: 1px solid var(--line-strong);
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.nav-toggle:hover { color: var(--white); border-color: var(--cyan); background: rgba(53, 240, 208, 0.06); }

.nav-toggle-bars { display: flex; flex-direction: column; gap: 4px; width: 18px; }

.nav-toggle-bars i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.site-nav { background: linear-gradient(180deg, rgba(14, 26, 36, 0.62), transparent); }

.nav-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.nav-list { display: flex; flex-wrap: wrap; align-items: stretch; }
.nav-list > li { display: flex; }

.nav-link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 12px clamp(12px, 1.8vw, 24px);
  border-left: 1px solid var(--line);
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  color: var(--mist);
  transition: color 0.18s ease, background-color 0.18s ease;
}

.nav-index {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  opacity: 0.85;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.nav-link:hover,
.nav-link:focus-visible { color: var(--white); background: rgba(242, 247, 245, 0.05); }

.nav-link:hover::after,
.nav-link:focus-visible::after { transform: scaleX(1); }

.nav-link[aria-current="page"] { color: var(--white); background: rgba(242, 247, 245, 0.07); }
.nav-link[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  padding: 9px 16px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible { background: var(--accent); color: var(--ink); transform: translateY(-1px); }

.scroll-meter {
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 2;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--yellow) 45%, var(--orange) 74%, var(--violet));
  transition: width 0.12s linear;
}

/* ---------- 6. FOOTER ---------- */
.site-footer {
  position: relative;
  margin-top: clamp(40px, 7vw, 96px);
  border-top: 1px solid var(--line-strong);
  background: linear-gradient(180deg, var(--steel) 0%, var(--deep) 34%, var(--ink) 100%);
  overflow: hidden;
}

.footer-band {
  height: 5px;
  width: 104%;
  margin-left: -2%;
  background: linear-gradient(90deg, var(--cyan) 0 24%, var(--yellow) 24% 48%, var(--orange) 48% 72%, var(--violet) 72% 100%);
  transform: skewX(-14deg);
  transform-origin: left center;
  opacity: 0.92;
}

.footer-shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 72px) var(--gutter) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1.5fr;
  gap: clamp(24px, 3.5vw, 56px);
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }

.footer-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--cyan);
}

.footer-lede {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--silver);
  max-width: 40ch;
}

.footer-contact {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 2;
  color: var(--mist);
}

.footer-col { display: flex; flex-direction: column; gap: 14px; }

.footer-col-title {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--white);
}

.footer-list { display: flex; flex-direction: column; gap: 9px; }

.footer-list a {
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  color: var(--mist);
  transition: color 0.18s ease, padding-left 0.18s ease;
}

.footer-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.2s ease;
}

.footer-list a:hover,
.footer-list a:focus-visible { color: var(--white); padding-left: 18px; }
.footer-list a:hover::before,
.footer-list a:focus-visible::before { width: 12px; }

.footer-note {
  font-size: 0.8125rem;
  line-height: 1.9;
  color: var(--mist);
  max-width: 42ch;
}

.footer-note--muted { color: rgba(143, 166, 160, 0.72); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: clamp(28px, 4vw, 56px);
  padding: 18px 0 26px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--mist);
}

.footer-copy { font-family: var(--font-mono); }

.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }

.footer-legal a {
  color: var(--silver);
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible { color: var(--cyan); border-color: var(--cyan); }

.footer-icp { color: rgba(143, 166, 160, 0.7); }

/* ---------- 7. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-col--note { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  [id] { scroll-margin-top: 96px; }

  .header-ticker { height: 22px; }
  .ticker-line { letter-spacing: 0.18em; }

  .rail-inner { flex-wrap: wrap; gap: 10px 12px; padding: 10px var(--gutter); }

  .header-status {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }

  .nav-toggle { display: inline-flex; }

  .site-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .site-nav[data-open] {
    max-height: min(76vh, 620px);
    overflow-y: auto;
  }

  .nav-inner { flex-direction: column; padding: 6px var(--gutter) 20px; }

  .nav-list { flex-direction: column; }
  .nav-list > li { display: block; }

  .nav-link {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 14px 4px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-link::after {
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top center;
  }

  .nav-link:hover::after,
  .nav-link:focus-visible::after,
  .nav-link[aria-current="page"]::after { transform: scaleY(1); }

  .nav-cta { align-self: flex-start; margin-top: 18px; }

  .grid--12 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .span-3, .span-4, .span-5 { grid-column: span 3; }
  .span-6, .span-7, .span-8, .span-9 { grid-column: span 6; }
}

@media (max-width: 620px) {
  .brand-line { display: none; }
  .brand-name { font-size: 1rem; }
  .status-text { font-size: 0.625rem; }

  .grid--12 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .span-3, .span-4, .span-5, .span-6, .span-7, .span-8, .span-9, .span-12 { grid-column: 1 / -1; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- 8. MOTION ---------- */
.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.js-ready [data-reveal][data-revealed] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes status-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(53, 240, 208, 0.18); }
    50% { box-shadow: 0 0 0 7px rgba(53, 240, 208, 0.04); }
  }

  .status-dot { animation: status-pulse 2.6s ease-in-out infinite; }
}

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

  html { scroll-behavior: auto !important; }

  .js-ready [data-reveal] { opacity: 1; transform: none; }
  .scroll-meter { transition: none; }
}
