/* ==========================================================================
   必赢亚州7811 / 共享外壳样式表  ·  /assets/site.css
   夜间球场灯光：深墨绿为夜，柠檬黄为灯，暖橙只点数据
   ========================================================================== */

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

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

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

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

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

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

button { background: none; border: 0; }

a { color: var(--lime-500); }

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

/* --------------------------------------------------------------------------
   2. 设计令牌
   -------------------------------------------------------------------------- */
:root {
  --ink-950: #062019;
  --ink-900: #0B332A;
  --ink-700: #12604A;
  --lime-500: #D9F63F;
  --lime-300: #EBFB96;
  --amber-500: #FF8A2B;
  --amber-300: #FFC178;
  --paper-50: #F5F0E2;
  --char-900: #16120C;
  --mist-200: #CBD9CF;

  --font-display: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
  --font-body: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", "Courier New", monospace;

  --radius-pill: 999px;
  --radius-lg: 22px;
  --radius-md: 14px;

  --gutter: clamp(16px, 4vw, 48px);
  --shell-w: 1320px;
  --section-y: clamp(52px, 7vw, 104px);

  --ease: cubic-bezier(.22, .7, .3, 1);
}

/* --------------------------------------------------------------------------
   3. 中文排版基线
   -------------------------------------------------------------------------- */
body {
  min-height: 100%;
  background-color: var(--ink-950);
  background-image:
    radial-gradient(120% 70% at 88% -8%, rgba(217, 246, 63, .10), transparent 62%),
    radial-gradient(90% 60% at 4% 4%, rgba(18, 96, 74, .38), transparent 66%);
  background-repeat: no-repeat;
  color: var(--mist-200);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--paper-50);
  text-wrap: balance;
}

h1 { font-size: clamp(30px, 5.4vw, 62px); }
h2 { font-size: clamp(23px, 3.2vw, 40px); }
h3 { font-size: clamp(18px, 2vw, 24px); }

h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--paper-50);
}

p { text-wrap: pretty; }

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

::selection {
  background: var(--lime-500);
  color: var(--ink-950);
}

:focus-visible {
  outline: 3px solid var(--lime-500);
  outline-offset: 3px;
  border-radius: 6px;
}

.num,
.data-card__value,
.stat-value,
time {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.visually-hidden {
  position: absolute !important;
  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;
}

/* --------------------------------------------------------------------------
   4. 布局壳与分区
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--shell-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
}

.section--band {
  background: var(--ink-900);
  border-block: 1px solid var(--ink-700);
}

.section--paper {
  background: var(--paper-50);
  color: var(--char-900);
}

.section--paper h1,
.section--paper h2,
.section--paper h3,
.section--paper h4 { color: var(--char-900); }

.section--paper strong { color: var(--char-900); }

.grid {
  display: grid;
  gap: clamp(16px, 2vw, 28px);
}

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

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

.col-3 { grid-column: span 3; }
.col-5 { grid-column: span 5; }
.col-7 { grid-column: span 7; }
.col-9 { grid-column: span 9; }
.col-12 { grid-column: span 12; }

/* --------------------------------------------------------------------------
   5. 通用元素
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lime-500);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--amber-500);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
}

.btn--primary {
  background: var(--lime-500);
  color: var(--ink-950);
}

.btn--primary:hover {
  background: var(--lime-300);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  border-color: var(--ink-700);
  color: var(--mist-200);
}

.btn--ghost:hover {
  border-color: var(--lime-500);
  color: var(--lime-500);
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--mist-200);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb li + li::before {
  content: "/";
  color: var(--ink-700);
}

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

.breadcrumb a:hover { color: var(--lime-300); }

.prose {
  max-width: 70ch;
  font-size: 17px;
  line-height: 1.85;
}

.prose > * + * { margin-top: 1em; }

.prose h2 {
  margin-top: 1.9em;
  font-size: clamp(21px, 2.4vw, 30px);
}

.prose h3 { margin-top: 1.6em; }

.prose ul,
.prose ol {
  padding-left: 1.35em;
  list-style: disc;
}

.prose ol { list-style: decimal; }

.prose li + li { margin-top: .35em; }

.prose a {
  color: var(--lime-500);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section--paper .prose a { color: var(--char-900); }

/* --------------------------------------------------------------------------
   6. 数据卡 / 标签 / 索引元素
   -------------------------------------------------------------------------- */
.data-card {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2.3vw, 28px);
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-lg);
}

.data-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 246, 63, .16), transparent 68%);
  pointer-events: none;
}

.data-card__label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mist-200);
}

.data-card__value {
  display: block;
  font-size: clamp(34px, 5.4vw, 68px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--lime-500);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--mist-200);
}

.tag--hot {
  border-color: rgba(255, 138, 43, .55);
  color: var(--amber-500);
}

/* --------------------------------------------------------------------------
   7. 图片容器（页面阶段放置图片占位）
   -------------------------------------------------------------------------- */
.media-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-lg);
  background-image: linear-gradient(145deg, var(--ink-900), var(--ink-950) 72%);
}

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

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

.media-frame::before {
  content: "";
  position: absolute;
  right: -38%;
  bottom: -46%;
  width: 84%;
  height: 84%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 246, 63, .18), transparent 70%);
  pointer-events: none;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime-500), var(--amber-500) 60%, transparent);
  pointer-events: none;
}

.media-frame__note {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--mist-200);
}

/* --------------------------------------------------------------------------
   8. 滚动显现协议
   -------------------------------------------------------------------------- */
[data-reveal-ready] [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .26s var(--ease), transform .26s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 95;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--lime-500), var(--amber-500));
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   9. 悬浮胶囊页头
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -72px;
  z-index: 120;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--lime-500);
  color: var(--ink-950);
  font-weight: 700;
  text-decoration: none;
  transition: top .18s var(--ease);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding-block: 12px;
  background: linear-gradient(180deg, rgba(6, 32, 25, .97), rgba(6, 32, 25, .88));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .22s var(--ease), box-shadow .22s var(--ease);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 96, 74, .95) 16%, rgba(18, 96, 74, .95) 84%, transparent);
}

.site-header.is-compact {
  background: linear-gradient(180deg, rgba(6, 32, 25, .99), rgba(6, 32, 25, .95));
  box-shadow: 0 24px 46px -30px rgba(0, 0, 0, .95);
}

.header-shell {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: var(--shell-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* 品牌浮岛 */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  padding: 7px 18px 7px 12px;
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-pill);
  background: rgba(11, 51, 42, .82);
  text-decoration: none;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}

.brand:hover {
  border-color: var(--lime-500);
  background: rgba(18, 96, 74, .5);
}

.brand-mark {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 9px 4px 9px 4px;
  background: var(--lime-500);
  transform: skewX(-9deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-950);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }

.brand-line {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -.02em;
  color: var(--paper-50);
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--lime-500);
}

/* 轮次指示浮岛 */
.header-round {
  display: none;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 8px 15px;
  border: 1px dashed var(--ink-700);
  border-radius: var(--radius-pill);
  background: rgba(11, 51, 42, .55);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--mist-200);
  white-space: nowrap;
}

.header-round__key { color: var(--ink-700); }

.header-round__val b {
  font-size: 13px;
  font-weight: 700;
  color: var(--lime-500);
}

/* 栏目胶囊 */
.nav-capsule { margin-left: auto; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-pill);
  background: rgba(11, 51, 42, .82);
}

.nav-link {
  display: block;
  padding: 9px 15px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  line-height: 1.2;
  color: var(--mist-200);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}

.nav-link:hover {
  background: rgba(217, 246, 63, .14);
  color: var(--lime-300);
}

.nav-link[aria-current="page"] {
  background: var(--lime-500);
  color: var(--ink-950);
  font-weight: 700;
}

/* 工具浮岛 */
.header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 17px;
  border-radius: var(--radius-pill);
  background: var(--lime-500);
  color: var(--ink-950);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .18s var(--ease), transform .18s var(--ease);
}

.tool-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-950);
}

.tool-chip:hover {
  background: var(--lime-300);
  transform: translateY(-1px);
}

.tool-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink-700);
  border-radius: 50%;
  background: rgba(11, 51, 42, .78);
  color: var(--lime-500);
  text-decoration: none;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}

.tool-icon::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-2px, -2px);
}

.tool-icon::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 24px;
  width: 9px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.tool-icon:hover {
  border-color: var(--lime-500);
  background: rgba(217, 246, 63, .14);
}

/* 移动端开合按钮 */
.nav-toggle {
  display: none;
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink-700);
  border-radius: 50%;
  background: rgba(11, 51, 42, .85);
  cursor: pointer;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}

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

.nav-toggle-bars {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--lime-500);
  transform: translate(-50%, -50%);
  transition: background-color .18s var(--ease);
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: inherit;
  transition: transform .2s var(--ease);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   10. 页脚
   -------------------------------------------------------------------------- */
.site-footer {
  margin-top: clamp(48px, 7vw, 104px);
  padding-block: clamp(44px, 6vw, 84px) 28px;
  background: var(--ink-900);
  border-top: 1px solid var(--ink-700);
  color: var(--mist-200);
}

.footer-shell {
  width: 100%;
  max-width: var(--shell-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.footer-shell::before {
  content: "";
  display: block;
  width: min(180px, 42%);
  height: 3px;
  margin-bottom: clamp(28px, 4vw, 48px);
  background: linear-gradient(90deg, var(--lime-500), var(--amber-500));
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(28px, 4vw, 56px);
}

.footer-brand-line {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--paper-50);
}

.footer-brand-sub {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--lime-500);
}

.footer-signature {
  margin-top: 18px;
  max-width: 30ch;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.9;
  color: var(--mist-200);
  opacity: .82;
}

.footer-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 36px);
}

.index-title {
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--lime-500);
}

.index-list li + li { margin-top: 9px; }

.index-list a {
  font-size: 14px;
  color: var(--mist-200);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}

.index-list a:hover {
  color: var(--lime-300);
  border-bottom-color: currentColor;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 8px 32px;
  margin-top: clamp(32px, 5vw, 56px);
  padding-top: 24px;
  border-top: 1px dashed var(--ink-700);
}

.contact-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 9px;
  font-size: 14px;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--lime-500);
}

.contact-value { color: var(--paper-50); }

.contact-note {
  grid-column: 1 / -1;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.9;
  color: var(--mist-200);
  opacity: .78;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--ink-700);
  font-family: var(--font-mono);
  font-size: 12px;
}

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

.legal-links a {
  color: var(--mist-200);
  text-decoration: none;
  transition: color .18s var(--ease);
}

.legal-links a:hover { color: var(--lime-300); }

.footer-icp,
.footer-copy {
  color: var(--mist-200);
  opacity: .72;
}

/* --------------------------------------------------------------------------
   11. 响应式
   -------------------------------------------------------------------------- */
@media (min-width: 1180px) {
  .header-round { display: inline-flex; }
}

@media (max-width: 1020px) {
  .nav-toggle { display: block; }

  .header-tools { margin-left: auto; }

  .nav-capsule {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    margin-left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s linear;
  }

  .nav-capsule[data-open] {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border-radius: 20px;
    background: rgba(6, 32, 25, .99);
    box-shadow: 0 34px 64px -26px rgba(0, 0, 0, .92);
  }

  .nav-capsule[data-open] .nav-list { background: rgba(6, 32, 25, .99); }

  .nav-link {
    padding: 13px 16px;
    border-radius: var(--radius-md);
    font-size: 15px;
  }

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

@media (max-width: 900px) {
  .grid--12 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

  .col-3,
  .col-5,
  .col-7,
  .col-9,
  .col-12 { grid-column: span 6; }
}

@media (max-width: 720px) {
  .grid--2,
  .grid--3 { grid-template-columns: minmax(0, 1fr); }

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

  .tool-chip { display: none; }

  .footer-legal { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .grid--12 { grid-template-columns: minmax(0, 1fr); }

  .col-3,
  .col-5,
  .col-7,
  .col-9,
  .col-12 { grid-column: span 1; }

  .brand { padding-right: 14px; }

  .brand-line { font-size: 15px; }
}

@media (max-width: 420px) {
  .footer-index { grid-template-columns: minmax(0, 1fr); }
}

/* --------------------------------------------------------------------------
   12. 减少动态效果
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

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

  .scroll-progress { display: none; }
}
