/* =========================================================
   新宝体育登陆 · 共享样式表 /assets/site.css
   竞技场数据终端 · Bento 信息板
   ========================================================= */

/* ---------- 1. 设计令牌 ---------- */
:root {
  --ink: #0A0E1A;
  --panel: #121A2E;
  --line: #1E2A44;
  --neon: #00FF9D;
  --orange: #FF6B2C;
  --blue: #3A86FF;
  --text: #E8ECF5;
  --muted: #9AA6BF;
  --amber: #FFD166;
  --mist: #1B3A5E;

  --ff-display: "Oswald", "Impact", "Haettenschweiler", "Arial Narrow Bold",
                "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --ff-body: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
             Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, SFMono-Regular,
             Menlo, Consolas, "Courier New", monospace;
  --ff-serif: "Noto Serif SC", "Songti SC", "Source Han Serif SC", Georgia,
              "Times New Roman", serif;

  --wrap: 1240px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --radius: 4px;
  --ease: cubic-bezier(.22, .68, .36, 1);
  color-scheme: dark;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background-color: var(--ink);
  background-image:
    radial-gradient(1200px 600px at 12% -8%, rgba(58, 134, 255, .16), transparent 62%),
    radial-gradient(900px 520px at 92% 4%, rgba(0, 255, 157, .09), transparent 60%),
    linear-gradient(180deg, #0C1222 0%, #0A0E1A 42%, #090C16 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 { margin: 0; line-height: 1.18; font-weight: 800; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }
[hidden] { display: none !important; }

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

::selection { background: var(--neon); color: #04120C; }

/* ---------- 3. 排版工具 ---------- */
.mono {
  font-family: var(--ff-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}
.muted { color: var(--muted); }
.serif { font-family: var(--ff-serif); }
.display {
  font-family: var(--ff-display);
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.05;
}
.eyebrow {
  font-family: var(--ff-mono);
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--neon);
}

/* ---------- 4. 布局工具 ---------- */
.wrap {
  width: min(100% - var(--gutter) * 2, var(--wrap));
  margin-inline: auto;
}

.section { padding-block: clamp(2.5rem, 6vw, 5rem); }

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.section__title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.06;
  letter-spacing: -.01em;
}

.grid { display: grid; gap: clamp(.85rem, 1.6vw, 1.25rem); }
.grid--12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.prose { max-width: 68ch; color: var(--muted); }
.prose p + p { margin-top: 1em; }
.prose h2, .prose h3 { color: var(--text); margin-top: 1.6em; }

/* ---------- 5. 状态标签 ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .28rem .55rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(30, 42, 68, .45);
  color: var(--muted);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tag--live {
  color: var(--neon);
  border-color: rgba(0, 255, 157, .35);
  background: rgba(0, 255, 157, .08);
}
.tag--hot {
  color: var(--orange);
  border-color: rgba(255, 107, 44, .35);
  background: rgba(255, 107, 44, .08);
}
.tag--data {
  color: var(--blue);
  border-color: rgba(58, 134, 255, .35);
  background: rgba(58, 134, 255, .08);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
  animation: dotPulse 2.2s var(--ease) infinite;
}
@keyframes dotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 255, 157, .55); }
  70%  { box-shadow: 0 0 0 7px rgba(0, 255, 157, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0); }
}

/* ---------- 6. 按钮 ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .72rem 1.2rem;
  border: 0;
  border-radius: 0;
  isolation: isolate;
  color: #04120C;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: transform .15s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--btn-bg, var(--neon));
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px),
                     calc(100% - 9px) 100%, 0 100%, 0 9px);
  transition: background .15s var(--ease), box-shadow .15s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:hover::before { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25); }

.btn--ghost { color: var(--text); }
.btn--ghost::before {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn--ghost:hover { color: var(--neon); }
.btn--ghost:hover::before { box-shadow: inset 0 0 0 1px var(--neon); }

.btn--orange { --btn-bg: var(--orange); color: #16060A; }
.btn--sm { padding: .48rem .85rem; font-size: .75rem; }

/* ---------- 7. 报头 ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 200;
  padding: .65rem 1.1rem;
  background: var(--neon);
  color: #04120C;
  font-weight: 700;
  font-size: .85rem;
  border-radius: 2px;
  transition: top .18s var(--ease);
}
.skip-link:focus { top: .75rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(180deg, #101830 0%, #0A0E1A 100%);
  border-bottom: 1px solid var(--line);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--neon) 0%, var(--blue) 38%,
                              var(--orange) 72%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s var(--ease);
  pointer-events: none;
}
.site-header[data-stuck="true"]::after { transform: scaleX(1); }

.masthead__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding-block: clamp(.7rem, 2vw, 1.3rem);
  transition: padding .22s var(--ease);
}
.site-header[data-stuck="true"] .masthead__inner { padding-block: .5rem; }

.masthead__meta {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
  min-width: 0;
}
.masthead__stamp {
  font-size: .72rem;
  letter-spacing: .06em;
  color: var(--muted);
  white-space: nowrap;
}
.site-header[data-stuck="true"] .masthead__stamp { display: none; }

.brand {
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: .18rem;
  text-align: center;
}
.brand__mark {
  position: relative;
  display: inline-block;
  padding-inline: .2em;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  line-height: 1;
  letter-spacing: -.015em;
  color: var(--text);
  transition: font-size .22s var(--ease);
}
.brand__mark::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -5px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--neon), var(--orange));
  transform: skewX(-12deg);
  opacity: .9;
}
.brand__sub {
  font-family: var(--ff-mono);
  font-size: .6rem;
  letter-spacing: .44em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: .44em;
}
.site-header[data-stuck="true"] .brand__sub { display: none; }

.masthead__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .45rem;
  min-width: 0;
}

.quick-links { display: none; gap: .35rem; }
.site-header[data-stuck="true"] .quick-links { display: flex; }
.quick-links a {
  padding: .42rem .65rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  white-space: nowrap;
  transition: color .15s var(--ease), border-color .15s var(--ease),
              background .15s var(--ease);
}
.quick-links a:hover {
  color: var(--neon);
  border-color: rgba(0, 255, 157, .55);
  background: rgba(0, 255, 157, .07);
}

.drawer-toggle,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .7rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(30, 42, 68, .4);
  color: var(--text);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  transition: border-color .15s var(--ease), color .15s var(--ease),
              background .15s var(--ease);
}
.drawer-toggle:hover,
.nav-toggle:hover {
  border-color: rgba(0, 255, 157, .55);
  color: var(--neon);
  background: rgba(0, 255, 157, .07);
}

.drawer-toggle__icon {
  position: relative;
  display: block;
  width: 16px;
  height: 2px;
  background: var(--neon);
  flex: none;
}
.drawer-toggle__icon::before,
.drawer-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  background: var(--neon);
}
.drawer-toggle__icon::before { top: -5px; width: 16px; }
.drawer-toggle__icon::after { top: 5px; width: 10px; }

.nav-toggle { display: none; }
.nav-toggle__bars { display: grid; gap: 4px; width: 16px; flex: none; }
.nav-toggle__bars span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- 8. 主导航 ---------- */
.primary-nav {
  border-bottom: 1px solid var(--line);
  background: rgba(10, 14, 26, .72);
}
.primary-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(.1rem, 1.1vw, .55rem);
  padding-block: .35rem;
}
.primary-nav__list a {
  position: relative;
  display: block;
  padding: .55rem .85rem;
  border-radius: 2px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  transition: color .15s var(--ease), background .15s var(--ease);
}
.primary-nav__list a::after {
  content: "";
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: .26rem;
  height: 2px;
  background: var(--neon);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.primary-nav__list a:hover { color: var(--text); }
.primary-nav__list a:hover::after { transform: scaleX(1); }
.primary-nav__list a[aria-current="page"] { color: var(--neon); }
.primary-nav__list a[aria-current="page"]::after {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--neon), var(--orange));
}

/* ---------- 9. 遮罩与目录抽屉 ---------- */
.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 88;
  background: rgba(5, 8, 16, .74);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 92;
  display: flex;
  justify-content: flex-end;
  background: rgba(5, 8, 16, .74);
}
.drawer__panel {
  width: min(400px, 92vw);
  height: 100%;
  overflow-y: auto;
  padding: 1.5rem 1.5rem 3rem;
  background: linear-gradient(180deg, #141D33 0%, #0A0E1A 100%);
  border-left: 1px solid var(--line);
}
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.drawer__title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: .01em;
}
.drawer__close {
  padding: .35rem .7rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .1em;
  transition: color .15s var(--ease), border-color .15s var(--ease);
}
.drawer__close:hover { color: var(--neon); border-color: var(--neon); }

.drawer__group { margin-bottom: 1.6rem; }
.drawer__legend {
  font-family: var(--ff-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .7rem;
}
.drawer__list li + li { margin-top: .2rem; }
.drawer__list a {
  display: block;
  padding: .6rem .8rem;
  border-left: 2px solid var(--line);
  background: rgba(30, 42, 68, .28);
  color: var(--text);
  font-size: .92rem;
  transition: border-color .15s var(--ease), background .15s var(--ease),
              color .15s var(--ease), transform .15s var(--ease);
}
.drawer__list a:hover {
  color: var(--neon);
  border-left-color: var(--neon);
  background: rgba(0, 255, 157, .08);
  transform: translateX(3px);
}

/* ---------- 10. 通用卡片 / 图片容器 ---------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .18s var(--ease), border-color .18s var(--ease),
              background .18s var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 255, 157, .5);
  background: #16203A;
}
.card__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .005em;
}
.card__meta {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--muted);
}
.card--cut {
  border: 0;
  padding: clamp(1.1rem, 2.4vw, 1.75rem);
  background: linear-gradient(145deg, #17223B 0%, #121A2E 60%, #0E1526 100%);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%,
                     26px 100%, 0 calc(100% - 26px));
}

.figure {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--mist) 0%, #101A2E 55%, #0A0E1A 100%);
}
.figure > img,
.figure > svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.figure--16x9 { aspect-ratio: 16 / 9; }
.figure--4x3  { aspect-ratio: 4 / 3; }
.figure--1x1  { aspect-ratio: 1 / 1; }
.figure--21x9 { aspect-ratio: 21 / 9; }
.figure__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem .9rem .7rem;
  background: linear-gradient(180deg, transparent, rgba(10, 14, 26, .92));
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .04em;
}

/* ---------- 11. 面包屑 ---------- */
.breadcrumb {
  padding-block: .9rem;
  font-size: .78rem;
  color: var(--muted);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
}
.breadcrumb li { display: flex; align-items: center; gap: .5rem; }
.breadcrumb li + li::before {
  content: "/";
  color: var(--line);
}
.breadcrumb a { color: var(--muted); transition: color .15s var(--ease); }
.breadcrumb a:hover { color: var(--neon); }
.breadcrumb [aria-current="page"] { color: var(--text); }

/* ---------- 12. 页脚 ---------- */
.site-footer {
  position: relative;
  margin-top: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
  background: linear-gradient(180deg, #0C1222 0%, #070A14 100%);
  border-top: 1px solid var(--line);
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon) 0%, var(--blue) 45%,
                              var(--orange) 80%, transparent 100%);
}
.site-footer::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -240px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 255, 157, .12), transparent 68%);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr);
  gap: clamp(1.5rem, 5vw, 3.5rem);
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.footer-brand__mark {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  letter-spacing: -.01em;
  color: var(--text);
}
.footer-brand__line {
  margin-top: .45rem;
  color: var(--muted);
  font-size: .85rem;
  letter-spacing: .04em;
}

.footer-contact {
  margin-top: 1.4rem;
  display: grid;
  gap: .55rem;
}
.footer-contact li {
  display: grid;
  grid-template-columns: 5.2em minmax(0, 1fr);
  gap: .6rem;
  font-size: .82rem;
  color: var(--text);
  padding-bottom: .5rem;
  border-bottom: 1px dashed rgba(30, 42, 68, .9);
  word-break: break-word;
}
.footer-contact__k {
  font-family: var(--ff-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--orange);
  text-transform: uppercase;
  padding-top: .1rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}
.footer-col__title {
  font-family: var(--ff-mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--neon);
  padding-bottom: .7rem;
  margin-bottom: .8rem;
  border-bottom: 1px solid var(--line);
}
.footer-col__list li + li { margin-top: .45rem; }
.footer-col__list a {
  color: var(--muted);
  font-size: .9rem;
  transition: color .15s var(--ease), padding-left .15s var(--ease);
}
.footer-col__list a:hover {
  color: var(--neon);
  padding-left: .35rem;
}

.site-footer__legal {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem 1.25rem;
  padding-block: 1.15rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
}
.site-footer__copy { letter-spacing: .03em; }
.legal-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.legal-links a { transition: color .15s var(--ease); }
.legal-links a:hover { color: var(--neon); }
.site-footer__icp {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .05em;
  color: var(--muted);
}

/* ---------- 13. 滚动显现协议 ---------- */
[data-reveal="pending"] {
  opacity: 0;
  transform: translateY(18px);
}
[data-reveal="in"] {
  opacity: 1;
  transform: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

/* ---------- 14. 断点 ---------- */
@media (max-width: 1100px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  :root { --gutter: 1.15rem; }

  .nav-toggle { display: inline-flex; }
  .quick-links { display: none !important; }
  .drawer-toggle__text,
  .nav-toggle__text { display: none; }
  .drawer-toggle,
  .nav-toggle { padding: .55rem; }

  .masthead__inner {
    grid-template-columns: auto 1fr auto;
    gap: .6rem;
    padding-block: .75rem;
  }
  .masthead__meta { display: none; }
  .site-header[data-stuck="true"] .masthead__inner { padding-block: .55rem; }
  .brand { justify-self: center; }
  .brand__sub { display: none; }
  .brand__mark { font-size: clamp(1.3rem, 5.4vw, 1.85rem); }

  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 340px);
    height: 100dvh;
    z-index: 95;
    padding: 5.5rem 1.25rem 2rem;
    overflow-y: auto;
    background: linear-gradient(180deg, #141D33 0%, #0A0E1A 100%);
    border-left: 1px solid var(--line);
    border-bottom: 0;
    transform: translateX(104%);
    visibility: hidden;
    transition: transform .3s var(--ease), visibility .3s var(--ease);
  }
  .primary-nav[data-open="true"] {
    transform: translateX(0);
    visibility: visible;
  }
  .primary-nav__list {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: .25rem;
    padding-block: 0;
  }
  .primary-nav__list a {
    padding: .85rem 1rem;
    font-size: .95rem;
    letter-spacing: .08em;
    border-left: 2px solid transparent;
    background: rgba(30, 42, 68, .3);
  }
  .primary-nav__list a::after { display: none; }
  .primary-nav__list a[aria-current="page"] {
    color: var(--neon);
    border-left-color: var(--neon);
    background: rgba(0, 255, 157, .08);
  }

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

@media (max-width: 560px) {
  .grid--12 { grid-template-columns: minmax(0, 1fr); }
  .footer-nav { grid-template-columns: minmax(0, 1fr); gap: 1.25rem; }
  .footer-contact li { grid-template-columns: minmax(0, 1fr); gap: .15rem; }
  .site-footer__legal { flex-direction: column; align-items: flex-start; }
  .drawer__panel { width: min(100%, 100vw); }
}

/* ---------- 15. 减少动态 ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .dot { animation: none; }
  [data-reveal="pending"],
  [data-reveal="in"] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
