/* ============================================================
   season-lilai.com.cn — 共享样式表 /assets/site.css
   夜场球场灯光 × 数据实验室
   ============================================================ */

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

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

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

ul, ol { list-style: none; }

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

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

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

hr { border: 0; }

/* ---------- 2. 设计令牌 ---------- */
:root {
  --ink: #050B09;
  --night: #0B1F1A;
  --panel: #12352C;
  --cyan: #3DF2D4;
  --mist: #8FB8AE;
  --flare: #FF5A36;
  --amber: #F2B84B;
  --wine: #6E1F2E;
  --violet: #2A2350;
  --paper: #F4F7F5;

  --rail-w: 108px;
  --rail-h: 64px;

  --line: rgba(61, 242, 212, 0.18);
  --line-soft: rgba(143, 184, 174, 0.18);

  --font-head: 'Noto Sans SC', 'Source Han Sans', system-ui, sans-serif;
  --font-body: 'Noto Sans SC', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Roboto Mono', ui-monospace, monospace;

  --pad-x: clamp(20px, 4.5vw, 64px);
  --gap: clamp(20px, 3vw, 40px);
  --cut: 18px;
}

/* ---------- 3. 基础排版 ---------- */
body {
  background: var(--night);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: var(--paper);
}

h1 { font-size: clamp(34px, 5.4vw, 64px); letter-spacing: 0.03em; }
h2 { font-size: clamp(24px, 3.4vw, 38px); }
h3 { font-size: clamp(19px, 2.2vw, 24px); }
h4 { font-size: 17px; }

p { color: var(--mist); }

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

.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--cyan);
  flex: 0 0 auto;
}

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

#main-content { display: block; }

/* ---------- 4. 容器与网格 ---------- */
.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.main {
  padding-top: clamp(30px, 4.6vw, 60px);
  padding-bottom: clamp(60px, 9vw, 120px);
}

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }

@media (min-width: 760px) {
  .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

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

.rule {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, var(--line), rgba(61, 242, 212, 0));
  border: 0;
  margin: clamp(28px, 4vw, 56px) 0;
}

/* ---------- 5. 按钮 ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: var(--cyan);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  border-radius: 2px;
  overflow: hidden;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--ink);
  opacity: 0.22;
}

.btn:hover {
  background: var(--flare);
  color: var(--paper);
  transform: translateX(3px);
}

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

.btn--ghost {
  background: transparent;
  color: var(--cyan);
  box-shadow: inset 0 0 0 1px rgba(61, 242, 212, 0.45);
}

.btn--ghost::before { opacity: 0; }

.btn--ghost:hover {
  background: rgba(61, 242, 212, 0.12);
  color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(61, 242, 212, 0.7);
}

/* ---------- 6. 面包屑 ---------- */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mist);
  padding-bottom: 18px;
}

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

.crumbs a:hover {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.crumbs__sep { color: rgba(143, 184, 174, 0.4); }

.crumbs [aria-current="page"] { color: var(--amber); }

/* ---------- 7. 章节抬头 ---------- */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: clamp(20px, 2.6vw, 32px);
}

.section-head__title {
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0.04em;
}

.section-head__note {
  max-width: 62ch;
  font-size: 15px;
  color: var(--mist);
}

/* ---------- 8. 切角面板 ---------- */
.panel {
  position: relative;
  background: var(--panel);
  padding: clamp(20px, 2.6vw, 32px);
  clip-path: polygon(
    0 0,
    calc(100% - var(--cut)) 0,
    100% var(--cut),
    100% 100%,
    var(--cut) 100%,
    0 calc(100% - var(--cut))
  );
}

.panel--wine { background: linear-gradient(150deg, #6E1F2E, #2B0C14); }
.panel--violet { background: linear-gradient(150deg, #2A2350, #100E24); }
.panel--flat { background: rgba(61, 242, 212, 0.05); }

/* ---------- 9. 标签与大数字 ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--cyan);
  background: rgba(61, 242, 212, 0.1);
  border-radius: 2px;
}

.chip--flare {
  color: var(--flare);
  background: rgba(255, 90, 54, 0.12);
}

.chip--amber {
  color: var(--amber);
  background: rgba(242, 184, 75, 0.12);
}

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

.stat__value {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--amber);
}

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

/* ---------- 10. 图片容器 ---------- */
.figure {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #0E2A23, #050B09);
  clip-path: polygon(
    0 0,
    calc(100% - var(--cut)) 0,
    100% var(--cut),
    100% 100%,
    0 100%
  );
}

.figure__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.figure--wide .figure__img { aspect-ratio: 21 / 9; }
.figure--tall .figure__img { aspect-ratio: 3 / 4; }
.figure--square .figure__img { aspect-ratio: 1 / 1; }

.figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(61, 242, 212, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 242, 212, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
}

.figure__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mist);
  background: linear-gradient(0deg, rgba(5, 11, 9, 0.92), rgba(5, 11, 9, 0));
}

/* ---------- 11. 可展开内容组 ---------- */
.expander { border-bottom: 1px solid var(--line-soft); }

.expander__btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 4px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--paper);
  transition: color 0.18s ease;
}

.expander__btn:hover { color: var(--cyan); }

.expander__btn::after {
  content: "";
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg);
  transition: transform 0.26s ease;
}

.expander__btn[aria-expanded="true"] { color: var(--cyan); }

.expander__btn[aria-expanded="true"]::after { transform: rotate(-135deg); }

.expander__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s cubic-bezier(0.3, 0.7, 0.3, 1);
}

.expander__panel[data-open] { grid-template-rows: 1fr; }

.expander__inner {
  overflow: hidden;
  min-height: 0;
}

.expander__inner > * { padding-bottom: 20px; }

/* ---------- 12. 显现 ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ---------- 13. 跳过链接 ---------- */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  padding: 10px 20px;
  background: var(--cyan);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 2px;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

@media (min-width: 1024px) {
  .skip-link { left: calc(var(--rail-w) + 16px); }
}

/* ---------- 14. 头部：侧边轨道 ---------- */
.site-header { position: relative; z-index: 120; }

.rail {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--rail-w);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 24px 10px 20px;
  background: linear-gradient(180deg, #0E2A23 0%, #0B1F1A 52%, #050B09 100%);
  border-right: 1px solid var(--line);
}

.rail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--flare) 62%, rgba(255, 90, 54, 0));
}

.rail__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.rail__glyph {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border: 2px solid var(--cyan);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}

.rail__glyph::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--flare);
}

.rail__wordmark {
  writing-mode: vertical-rl;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--paper);
}

.rail__season {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 6px 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--cyan);
  background: rgba(61, 242, 212, 0.08);
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 100%, 0 100%);
}

.rail__season-dot {
  width: 5px;
  height: 5px;
  background: var(--flare);
  border-radius: 50%;
}

.rail__toggle {
  position: relative;
  display: none;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.rail__toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cyan);
  opacity: 0.13;
  clip-path: polygon(0 0, 100% 0, 100% 62%, 62% 100%, 0 100%);
  transition: opacity 0.18s ease;
}

.rail__toggle:hover::before { opacity: 0.24; }

.rail__toggle-icon,
.rail__toggle-label { position: relative; z-index: 1; }

.rail__toggle-icon {
  position: relative;
  display: block;
  width: 16px;
  height: 10px;
}

.rail__toggle-icon::before,
.rail__toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
}

.rail__toggle-icon::before { top: 0; }
.rail__toggle-icon::after { bottom: 0; }

.rail__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 22px;
}

.rail__nav-title { display: none; }

.rail__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2px;
}

.rail__item { width: 100%; }

.rail__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
  padding: 9px 4px;
  border-left: 2px solid transparent;
  color: var(--mist);
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.rail__num {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(143, 184, 174, 0.55);
  transition: color 0.18s ease;
}

.rail__label {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.rail__link:hover {
  color: var(--paper);
  background: rgba(61, 242, 212, 0.07);
}

.rail__link:hover .rail__num { color: var(--cyan); }

.rail__link[aria-current="page"] {
  color: var(--cyan);
  background: rgba(61, 242, 212, 0.1);
  border-left-color: var(--cyan);
}

.rail__link[aria-current="page"] .rail__num { color: var(--flare); }

.rail__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.rail__util {
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  color: rgba(143, 184, 174, 0.72);
  transition: color 0.18s ease;
}

.rail__util:hover { color: var(--cyan); }

.rail__progress {
  --p: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: calc(var(--p) * 100%);
  background: linear-gradient(180deg, var(--cyan), var(--flare));
  pointer-events: none;
}

.rail__scrim { display: none; }

/* ---------- 15. 页脚 ---------- */
.site-footer {
  position: relative;
  background: var(--ink);
  color: var(--mist);
  border-top: 1px solid rgba(61, 242, 212, 0.22);
  padding: clamp(44px, 6.5vw, 84px) var(--pad-x) 0;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
  background-image:
    linear-gradient(rgba(61, 242, 212, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 242, 212, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
}

.footer-scan {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan) 28%, var(--flare) 68%, transparent);
  opacity: 0.85;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 72px);
  padding-bottom: clamp(40px, 6vw, 68px);
}

@media (min-width: 980px) {
  .footer-inner { grid-template-columns: minmax(300px, 1fr) minmax(0, 1.2fr); }
}

.footer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cyan);
}

.footer-eyebrow__dot {
  width: 7px;
  height: 7px;
  background: var(--flare);
  border-radius: 50%;
}

.footer-brandline {
  margin: 16px 0 24px;
  font-family: var(--font-head);
  font-size: clamp(19px, 2.3vw, 27px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--paper);
}

.footer-contact {
  margin-top: 28px;
  padding-top: 20px;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line-soft);
}

.footer-contact__row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 13px;
}

.footer-contact__key {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(143, 184, 174, 0.68);
}

.footer-contact__val {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--paper);
  word-break: break-all;
}

.footer-note {
  margin-top: 18px;
  max-width: 46ch;
  font-size: 12px;
  line-height: 1.75;
  color: rgba(143, 184, 174, 0.78);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: clamp(24px, 3.4vw, 44px);
  align-content: start;
}

.footer-col__title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}

.footer-col__list {
  display: grid;
  gap: 10px;
  padding-top: 16px;
}

.footer-col__list a {
  font-size: 14px;
  color: var(--mist);
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.footer-col__list a:hover {
  color: var(--paper);
  border-bottom-color: var(--cyan);
}

.footer-base {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(143, 184, 174, 0.68);
}

.footer-coord { color: rgba(143, 184, 174, 0.5); }

/* ---------- 16. 桌面偏移 ---------- */
@media (min-width: 1024px) {
  body { padding-left: var(--rail-w); }
}

@media (max-width: 1023.98px) {
  body { padding-top: var(--rail-h); }

  .rail {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: var(--rail-h);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .rail::before { display: none; }

  .rail__brand { flex-direction: row; gap: 10px; }

  .rail__glyph { width: 25px; height: 25px; }

  .rail__wordmark {
    writing-mode: horizontal-tb;
    font-size: 15px;
    letter-spacing: 0.16em;
  }

  .rail__season {
    flex-direction: row;
    width: auto;
    padding: 5px 10px;
    font-size: 10px;
    clip-path: polygon(0 0, 100% 0, 100% 66%, 82% 100%, 0 100%);
  }

  .rail__toggle { display: inline-flex; margin-left: auto; }

  .rail__nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(310px, 86vw);
    z-index: 140;
    margin: 0;
    padding: 26px 22px 30px;
    align-items: stretch;
    overflow-y: auto;
    background: linear-gradient(165deg, #103029 0%, #06110D 82%);
    border-right: 1px solid rgba(61, 242, 212, 0.28);
    transform: translateX(-104%);
    transition: transform 0.34s cubic-bezier(0.22, 0.68, 0.28, 1);
  }

  .site-header[data-open] .rail__nav { transform: translateX(0); }

  .rail__nav-title {
    display: block;
    padding-bottom: 16px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--cyan);
  }

  .rail__list { gap: 0; border-top: 1px solid var(--line-soft); }

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

  .rail__num { flex: 0 0 28px; font-size: 11px; }

  .rail__label { font-size: 16px; font-weight: 700; letter-spacing: 0.06em; }

  .rail__link:hover { background: rgba(61, 242, 212, 0.06); }

  .rail__link[aria-current="page"] {
    background: transparent;
    border-left-color: transparent;
    border-bottom-color: var(--cyan);
  }

  .rail__meta {
    margin-top: 26px;
    padding-top: 18px;
    gap: 8px;
  }

  .rail__util {
    text-align: left;
    font-size: 12.5px;
    padding: 4px 0;
  }

  .rail__scrim {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 130;
    background: rgba(5, 11, 9, 0.74);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .site-header[data-open] .rail__scrim {
    opacity: 1;
    pointer-events: auto;
  }

  .rail__progress {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: calc(var(--p) * 100%);
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--flare));
  }
}

@media (max-width: 389.98px) {
  .rail__season { display: none; }
}

/* ---------- 17. 减弱动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

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