/* =========================================================
   开体育主站 · 共享样式 /assets/site.css
   深墨蓝底 + 电光青绿强调 + 跃动橙信号，锐利直角，精密网格
   ========================================================= */

/* ---------- 1. reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body { margin: 0; }

h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote { margin: 0; }

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

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

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

a { color: inherit; }

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

/* ---------- 2. tokens ---------- */
:root {
  --ink-900: #05090F;
  --ink-800: #0A1420;
  --ink-700: #101E2E;
  --ink-600: #16283C;
  --line: #1E3A4C;
  --teal: #00E5B0;
  --teal-soft: #7BF3D2;
  --orange: #FF6A2B;
  --white: #F2F6F4;
  --muted: #8FA3B0;

  --font-display: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  --font-serif: "Noto Serif SC", "Songti SC", "Source Han Serif SC", Georgia, "SimSun", serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, "Courier New", monospace;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur: 200ms;
  --wrap: 1280px;
  --gutter: 20px;
}

@media (min-width: 768px) {
  :root { --gutter: 40px; }
}

/* ---------- 3. base ---------- */
body {
  background: var(--ink-800);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.85;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

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

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

:focus { outline: none; }

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

/* ---------- 4. layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.band {
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.band--alt { background: var(--ink-700); }

.band--tight { padding: 40px 0; }

.band--flush { border-top: 0; }

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

.grid-12 > * {
  grid-column: span 12;
  min-width: 0;
}

@media (min-width: 900px) {
  .grid-12 { gap: 28px; }
  .col-3 { grid-column: span 3; }
  .col-4 { grid-column: span 4; }
  .col-5 { grid-column: span 5; }
  .col-6 { grid-column: span 6; }
  .col-7 { grid-column: span 7; }
  .col-8 { grid-column: span 8; }
  .col-9 { grid-column: span 9; }
  .col-12 { grid-column: span 12; }
  .start-2 { grid-column-start: 2; }
  .start-3 { grid-column-start: 3; }
  .start-6 { grid-column-start: 6; }
}

.divider {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

/* ---------- 5. typography ---------- */
.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--teal);
  text-transform: uppercase;
}

.meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.display-1,
.display-2,
.display-3 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.02;
  text-transform: none;
}

.display-1 { font-size: clamp(56px, 12vw, 132px); }
.display-2 { font-size: clamp(44px, 8vw, 88px); }
.display-3 { font-size: clamp(34px, 5.5vw, 56px); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.section-head__no {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--teal);
}

.section-head__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.section-head__desc {
  color: var(--muted);
  max-width: 660px;
  font-size: 16px;
}

@media (min-width: 900px) {
  .section-head__title { font-size: 36px; }
}

.prose { max-width: 720px; }

.prose p { margin: 0 0 1.4em; }
.prose p:last-child { margin-bottom: 0; }

.prose h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.35;
  margin: 2.2em 0 0.7em;
}

.prose h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 1.8em 0 0.5em;
}

.prose ul { margin: 0 0 1.4em; }

.prose li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0.5em;
  color: var(--muted);
}

.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 10px;
  height: 1px;
  background: var(--teal);
}

.prose a {
  color: var(--teal-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color var(--dur) var(--ease);
}

.prose a:hover { border-bottom-color: var(--teal); }

.prose blockquote {
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.65;
  border-left: 2px solid var(--teal);
  padding-left: 20px;
  margin: 1.8em 0;
  color: var(--white);
}

.prose strong { font-weight: 700; }

/* ---------- 6. buttons / tags / links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-decoration: none;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  cursor: pointer;
  transition: color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              background-color var(--dur) var(--ease);
}

.btn:hover { border-color: var(--teal); color: var(--teal-soft); }

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

.btn--signal { border-color: var(--orange); color: var(--orange); }

.btn--signal:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--ink-900);
}

.btn--solid {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--ink-900);
}

.btn--solid:hover {
  background: var(--teal-soft);
  border-color: var(--teal-soft);
  color: var(--ink-900);
}

.btn--sm { padding: 8px 12px; font-size: 12px; letter-spacing: 0.08em; }

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 3px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 0;
  white-space: nowrap;
}

.tag--teal { border-color: var(--teal); color: var(--teal); }
.tag--signal { border-color: var(--orange); color: var(--orange); }

.more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease);
}

.more-link:hover { border-bottom-color: var(--teal); }

/* ---------- 7. breadcrumb ---------- */
.breadcrumb { margin: 0; }

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.breadcrumb__link {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.breadcrumb__link:hover { color: var(--teal); }

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

.breadcrumb__current { color: var(--white); }

/* ---------- 8. card / stat / media / legend ---------- */
.card {
  background: var(--ink-600);
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 0;
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.stat__num {
  font-family: var(--font-mono);
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--teal);
}

.stat__label { font-size: 13px; color: var(--muted); }

.media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ink-600);
  border: 1px solid var(--line);
  border-radius: 0;
}

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

.media--21x9 { aspect-ratio: 21 / 9; }
.media--16x9 { aspect-ratio: 16 / 9; }
.media--4x3 { aspect-ratio: 4 / 3; }
.media--1x1 { aspect-ratio: 1 / 1; }
.media--3x4 { aspect-ratio: 3 / 4; }

.media--shade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 9, 15, 0.18) 0%, rgba(10, 20, 32, 0.66) 100%);
  pointer-events: none;
}

.media--ph {
  background-color: var(--ink-600);
  background-image:
    repeating-linear-gradient(90deg, rgba(30, 58, 76, 0.9) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(30, 58, 76, 0.9) 0 1px, transparent 1px 48px);
}

.media__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--white);
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  border: 1px solid var(--line);
  background: var(--ink-700);
  padding: 12px 16px;
}

.legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.legend__swatch {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--teal);
  flex: 0 0 auto;
}

.legend__swatch--signal { background: var(--orange); }
.legend__swatch--muted { background: var(--ink-600); border: 1px solid var(--line); }
.legend__swatch--line { background: var(--line); }

/* ---------- 9. header ---------- */
.skip-link {
  position: fixed;
  top: -120px;
  left: 12px;
  z-index: 200;
  background: var(--teal);
  color: var(--ink-900);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 10px 16px;
  text-decoration: none;
  transition: top var(--dur) var(--ease);
}

.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg,
              rgba(5, 9, 15, 0.94) 0%,
              rgba(5, 9, 15, 0.72) 58%,
              rgba(5, 9, 15, 0) 100%);
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header[data-scrolled] {
  background: var(--ink-800);
  border-bottom-color: var(--line);
}

.site-header__bar { position: relative; }

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 62px;
}

@media (min-width: 900px) {
  .site-header__inner { min-height: 76px; gap: 32px; }
}

/* brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  text-decoration: none;
  color: var(--white);
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--teal);
  color: var(--ink-900);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

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

.brand__name {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.brand__line {
  margin-top: 3px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.brand:hover .brand__name { color: var(--teal-soft); }

/* nav */
.nav { flex: 1 1 auto; min-width: 0; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav__list::-webkit-scrollbar { display: none; }

.nav__item { flex: 0 0 auto; }

.nav__link {
  position: relative;
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.nav__link:hover { color: var(--teal-soft); }

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

.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 2px;
  background: var(--teal);
}

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

/* mobile toggle */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.nav-toggle__bars {
  position: relative;
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
  transition: background-color var(--dur) var(--ease);
}

.site-header[data-open] .nav-toggle {
  border-color: var(--teal);
  color: var(--teal);
}

.site-header[data-open] .nav-toggle__bars {
  background: transparent;
  box-shadow: none;
}

.site-header[data-open] .nav-toggle__bars::before,
.site-header[data-open] .nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: currentColor;
}

.site-header[data-open] .nav-toggle__bars::before { transform: rotate(45deg); }
.site-header[data-open] .nav-toggle__bars::after { transform: rotate(-45deg); }

/* ticker */
.site-header__ticker {
  border-top: 1px solid rgba(30, 58, 76, 0.6);
  background: rgba(5, 9, 15, 0.4);
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.site-header[data-scrolled] .site-header__ticker {
  background: var(--ink-900);
  border-top-color: var(--line);
}

.site-header__ticker-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 30px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.ticker__tag {
  flex: 0 0 auto;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 1px 6px;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.ticker__text {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

/* mobile nav */
@media (max-width: 899px) {
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    background: var(--ink-700);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    max-height: min(70vh, 520px);
    overflow-y: auto;
  }

  .site-header[data-open] .nav { display: block; }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: visible;
    padding: 6px var(--gutter) 14px;
  }

  .nav__item { flex: 1 1 auto; }

  .nav__link {
    padding: 14px 4px 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }

  .nav__link[aria-current="page"] { padding-left: 14px; }

  .nav__link[aria-current="page"]::after {
    left: 0;
    right: auto;
    bottom: auto;
    top: 50%;
    width: 3px;
    height: 20px;
    transform: translateY(-50%);
  }

  .header-actions { margin-left: auto; gap: 8px; }

  .header-actions .btn--ghost { display: none; }

  .header-actions .btn--signal {
    padding: 8px 10px;
    font-size: 12px;
    letter-spacing: 0.04em;
  }

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

/* ---------- 10. footer ---------- */
.site-footer {
  background: var(--ink-900);
  border-top: 1px solid var(--line);
  color: var(--white);
}

/* member band */
.member-band {
  background: var(--ink-700);
  border-bottom: 1px solid var(--line);
}

.member-band__inner {
  display: grid;
  gap: 16px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.member-band__lead { display: flex; flex-direction: column; gap: 8px; }

.member-band__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--teal);
}

.member-band__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
}

.member-band__details { min-width: 0; }

.member-band__summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--teal);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.member-band__summary::-webkit-details-marker { display: none; }
.member-band__summary::marker { content: ""; }

.member-band__summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1;
}

.member-band__details[open] .member-band__summary::after { content: "–"; }

.member-band__summary:hover {
  border-color: var(--teal);
  color: var(--teal-soft);
}

.member-band__body { padding-top: 18px; }

.member-band__note { margin-top: 16px; }

.tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.tier {
  background: var(--ink-800);
  border: 1px solid var(--line);
  padding: 16px;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.tier:hover { border-color: var(--teal); transform: translateY(-4px); }

.tier__no {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--teal);
  margin-bottom: 8px;
}

.tier__name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.tier__list {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.tier__list li {
  border-top: 1px solid var(--line);
  padding: 6px 0;
}

@media (min-width: 900px) {
  .member-band__inner {
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
    padding-top: 34px;
    padding-bottom: 34px;
  }
}

@media (min-width: 1100px) {
  .tier-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
}

/* footer grid */
.site-footer__grid {
  display: grid;
  gap: 28px;
  padding-top: 48px;
  padding-bottom: 36px;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
    gap: 32px;
  }
}

.site-footer__brand { min-width: 0; }

.footer-brand__name {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.footer-brand__line {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--teal);
}

.footer-brand__meta,
.footer-brand__desc {
  margin-top: 14px;
  max-width: 380px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}

.footer-col { min-width: 0; }

.footer-col__title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--white);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}

.footer-col__list { display: flex; flex-direction: column; gap: 2px; }

.footer-col__link {
  display: inline-block;
  padding: 5px 0;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.footer-col__link:hover { color: var(--teal-soft); }

/* footer bottom */
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 28px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  padding-bottom: 30px;
}

.footer-contact,
.footer-legal,
.footer-copy {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* ---------- 11. scroll rail ---------- */
.scroll-rail {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 55;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 36px;
}

@media (min-width: 1080px) {
  .scroll-rail { display: flex; }
}

.scroll-rail__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--teal);
}

.scroll-rail__sep,
.scroll-rail__total { color: var(--muted); }

.scroll-rail__track {
  position: relative;
  display: block;
  width: 2px;
  height: 140px;
  background: var(--line);
}

.scroll-rail__fill {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 0;
  background: var(--teal);
  transition: height 120ms linear;
}

.to-top {
  width: 100%;
  padding: 6px 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              visibility var(--dur) var(--ease);
}

.to-top[data-visible] { visibility: visible; opacity: 1; }

.to-top:hover { color: var(--teal); border-color: var(--teal); }

/* ---------- 12. reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .card:hover,
  .tier:hover { transform: none; }

  .scroll-rail__fill { transition: none; }
}
