:root {
  --grass: #2D7A3E;
  --grass-deep: #1F5C2A;
  --orange: #FF5A1E;
  --silver: #C0C4CC;
  --charcoal: #2B2D31;
  --cream: #F7F5F2;
  --success: #26C281;
  --amber: #FFC107;
  --sky: #3E8EF7;
  --violet: #8A5CF6;

  --font-head: Impact, 'Arial Black', 'PingFang SC', 'Hiragino Sans GB', 'Heiti SC', 'SimHei', sans-serif;
  --font-body: 'Noto Sans SC', 'Helvetica Neue', Arial, 'PingFang SC', sans-serif;

  --radius-pill: 999px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --container: 1200px;
  --container-wide: 1400px;
  --gutter: 24px;
  --header-h: 72px;

  --shadow-soft: 0 10px 30px rgba(43,45,49,.06);
  --shadow-lift: 0 18px 44px rgba(43,45,49,.12);
  --ease: cubic-bezier(.22, .68, 0, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-locked { overflow: hidden; }

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

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

button, input, select, textarea { font-family: inherit; font-size: inherit; }

ul[class], ol[class] { list-style: none; margin: 0; padding: 0; }

p { margin: 0; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 900;
  line-height: 1.08;
  color: var(--charcoal);
  margin: 0 0 .45em;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(36px, 5vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: 24px; }
h5 { font-size: 18px; }

#main-content { scroll-margin-top: calc(var(--header-h) + 12px); }
#main-content:focus { outline: none; }

.page-main { padding-top: var(--header-h); }

/* ============ 容器 ============ */
.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.container--wide { width: min(100% - 48px, var(--container-wide)); }
.container--narrow { max-width: 780px; }

@media (max-width: 600px) {
  .container, .container--wide { width: min(100% - 32px, var(--container)); }
}

/* ============ 章节 ============ */
.section { padding: 96px 0; }
.section--tight { padding: 56px 0; }
.section--cream { background: var(--cream); }
.section--grass { background: var(--grass); color: #fff; }
.section--grass h1, .section--grass h2, .section--grass h3, .section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark { background: var(--charcoal); color: rgba(255,255,255,.82); }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
}

.section-kicker::before {
  content: '';
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--orange);
  transform: skewX(-24deg);
}

.section-title { font-size: clamp(28px, 4vw, 44px); margin: 10px 0 6px; }
.section-lead { max-width: 680px; color: rgba(43,45,49,.72); font-size: 16px; }
.section--grass .section-lead, .section--dark .section-lead { color: rgba(255,255,255,.74); }

/* ============ 跳转与进度 ============ */
.skip-link {
  position: fixed;
  top: -70px;
  left: 16px;
  z-index: 3000;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lift);
  transition: top .3s var(--ease);
}

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

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  z-index: 2600;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 0 4px 4px 0;
  pointer-events: none;
}

/* ============ 页头 ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  height: var(--header-h);
  background: transparent;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(31,92,42,.72), rgba(31,92,42,0) 100%);
  opacity: 1;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(45,122,62,.92);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  backdrop-filter: saturate(1.4) blur(10px);
  box-shadow: 0 6px 30px rgba(31,92,42,.25);
}

.site-header.is-scrolled::before { opacity: 0; }

.site-header__bar {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gutter);
  position: relative;
  z-index: 1;
}

/* ============ 品牌 ============ */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  flex-shrink: 0;
}

.brand__mark {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #ffffff 0%, #eef0f2 55%, var(--silver) 100%);
  box-shadow: inset -3px -3px 8px rgba(0,0,0,.16), 0 2px 8px rgba(31,92,42,.3);
}

.brand__mark::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 15px;
  transform: translate(-50%, -50%);
  background: var(--charcoal);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

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

.brand__name {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 900;
  font-size: 21px;
  letter-spacing: .02em;
  color: inherit;
}

.brand__sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}

.site-header:not(.is-scrolled) .brand__name {
  text-shadow: 0 1px 14px rgba(31,92,42,.55);
}

/* ============ 导航 ============ */
.site-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav__list { display: flex; align-items: center; gap: 2px; }

.site-nav__link {
  display: inline-block;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,.86);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  transition: color .2s, background .2s;
}

.site-nav__link:hover { color: #fff; background: rgba(255,255,255,.12); }

.site-nav__link[aria-current="page"] {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,90,30,.35);
}

.site-header:not(.is-scrolled) .site-nav__link { text-shadow: 0 1px 10px rgba(31,92,42,.4); }

.site-nav__cta { margin-left: 6px; }

/* ============ 汉堡按钮 ============ */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 6px 18px rgba(255,90,30,.4);
  cursor: pointer;
  position: relative;
  z-index: 1300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background .2s, transform .2s var(--ease);
}

.nav-toggle:hover { background: #e44d0f; transform: translateY(-1px); }

.nav-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .3s var(--ease), opacity .2s;
}

.nav-toggle[aria-expanded="true"] { background: var(--charcoal); }

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

/* ============ 移动端导航 ============ */
@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1250;
    width: min(420px, 90vw);
    margin: 0;
    padding: calc(var(--header-h) + 28px) 30px 34px;
    background: linear-gradient(160deg, var(--grass-deep), #153f1f 70%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    box-shadow: -24px 0 60px rgba(0,0,0,.35);
    transform: translateX(105%);
    transition: transform .42s var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav[data-open="true"] { transform: translateX(0); }

  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }

  .site-nav__item { border-bottom: 1px solid rgba(255,255,255,.1); }

  .site-nav__link {
    display: block;
    padding: 15px 10px;
    font-size: 17px;
    border-radius: var(--radius-md);
    color: rgba(255,255,255,.9);
  }

  .site-nav__link:hover { background: rgba(255,255,255,.08); }
  .site-nav__link[aria-current="page"] { background: var(--orange); color: #fff; }

  .site-nav__cta {
    margin-top: 26px;
    align-self: stretch;
    text-align: center;
    justify-content: center;
  }
}

/* ============ 按钮 ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s var(--ease), background .2s, color .2s, border-color .2s, box-shadow .25s var(--ease);
}

.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: #e44d0f; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255,90,30,.35); }

.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; transform: translateY(-2px); }

.btn--dark { background: var(--charcoal); color: #fff; }
.btn--dark:hover { background: #111214; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(43,45,49,.28); }

.btn--sm { padding: 9px 18px; font-size: 13px; }

/* ============ 面包屑 ============ */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
  font-size: 13px;
  color: var(--silver);
}

.breadcrumbs__item { display: inline-flex; align-items: center; gap: 6px; }
.breadcrumbs__item + .breadcrumbs__item::before { content: '/'; color: var(--silver); font-weight: 700; }
.breadcrumbs__link { color: var(--grass); font-weight: 600; transition: color .2s; }
.breadcrumbs__link:hover { color: var(--orange); }
.breadcrumbs__current { color: var(--charcoal); font-weight: 600; }

/* ============ 卡片与数据组件 ============ */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 22px; }

.data-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid rgba(192,196,204,.45);
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.data-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.data-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.data-card__title {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.1;
}

.data-card__body { color: rgba(43,45,49,.74); font-size: 15px; }

.glass-panel {
  background: rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 26px;
  color: #fff;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grass);
  color: #fff;
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
}

.big-number {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 84px);
  line-height: .88;
  letter-spacing: -.01em;
  color: var(--charcoal);
}

.section--grass .big-number, .section--dark .big-number { color: #fff; }

.trend-up { color: var(--success); font-weight: 700; }
.trend-down { color: var(--orange); font-weight: 700; }

.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--silver);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(43,45,49,.05);
}

.stat-chip__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sky); flex-shrink: 0; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  background: var(--cream);
  border: 1px solid var(--silver);
  color: var(--charcoal);
}

.tag--orange { background: var(--orange); color: #fff; border-color: transparent; }
.tag--glass { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.25); }

.exhibit-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 18px 9px 22px;
  background: #fff;
  border: 1px solid var(--silver);
  border-left: 5px solid var(--orange);
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--charcoal);
  box-shadow: var(--shadow-soft);
}

.scoreboard {
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 6px 18px;
  align-items: center;
  background: var(--charcoal);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 26px;
  font-size: 14px;
  min-width: 260px;
}

.scoreboard__team { font-weight: 700; text-align: right; }
.scoreboard__team:last-of-type { text-align: left; }

.scoreboard__score {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 900;
  font-size: 30px;
  color: var(--amber);
  background: rgba(255,255,255,.06);
  padding: 2px 10px;
  border-radius: var(--radius-sm);
}

.chapter-num {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(64px, 9vw, 110px);
  line-height: .82;
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
  user-select: none;
}

.section--grass .chapter-num { -webkit-text-stroke-color: var(--amber); }

/* ============ 图片容器 ============ */
.img-frame {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--grass), var(--grass-deep) 72%);
  box-shadow: var(--shadow-soft);
}

.img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,92,42,.28), transparent 42%);
  pointer-events: none;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease);
}

.img-frame:hover img { transform: scale(1.045); }

.img-frame--16x9 { aspect-ratio: 16 / 9; }
.img-frame--4x3 { aspect-ratio: 4 / 3; }
.img-frame--1x1 { aspect-ratio: 1 / 1; }
.img-frame--tilt-left { transform: rotate(-1.5deg); }
.img-frame--tilt-right { transform: rotate(1.5deg); }

/* ============ 时间线 ============ */
.timeline {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 10px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--grass) 0%, var(--orange) 60%, var(--amber) 100%);
}

.timeline__item {
  position: relative;
  padding: 0 0 34px 36px;
}

.timeline__item:last-child { padding-bottom: 0; }

.timeline__item::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--orange);
  box-shadow: 0 0 0 3px rgba(255,90,30,.18);
}

.timeline__item:last-child::before { border-color: var(--success); box-shadow: 0 0 0 3px rgba(38,194,129,.2); }

/* ============ 装饰 ============ */
.pitch-texture {
  background-color: var(--grass);
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 44px 44px;
  position: relative;
}

.pitch-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(68vw, 520px);
  height: min(68vw, 520px);
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255,255,255,.14);
  border-radius: 50%;
  pointer-events: none;
}

.pitch-circle::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  background: rgba(255,255,255,.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.arch-line {
  display: block;
  height: 6px;
  border: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--grass) 0%, var(--orange) 45%, transparent 100%);
}

.divider {
  height: 4px;
  border: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--silver), transparent);
}

.curve-band {
  height: 120px;
  background: var(--grass);
  border-radius: 0 0 50% 50% / 0 0 42px 42px;
  margin-top: -60px;
}

/* ============ 表格与正文 ============ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.data-table th, .data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--silver);
  text-align: left;
}

.data-table thead th {
  background: var(--grass);
  color: #fff;
  font-weight: 700;
}

.data-table tbody tr:hover { background: rgba(45,122,62,.05); }

.prose { max-width: 780px; }
.prose p + p { margin-top: 1.2em; }
.prose h2 { margin: 1.5em 0 .5em; }
.prose ul, .prose ol { padding-left: 1.2em; margin: .8em 0; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li + li { margin-top: .4em; }

/* ============ 滚入显现 ============ */
.reveal-init {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}

.reveal-init[data-reveal="left"] { transform: translateX(-32px); }
.reveal-init[data-reveal="right"] { transform: translateX(32px); }
.reveal-init[data-reveal="scale"] { transform: scale(.94); }
.reveal-init[data-reveal="fade"] { transform: none; }
.reveal-init.is-visible { opacity: 1; transform: none; }

/* ============ 页脚 ============ */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--grass-deep);
  color: rgba(255,255,255,.78);
  padding: 72px 0 36px;
}

.site-footer::before {
  content: '';
  position: absolute;
  right: -240px;
  top: -280px;
  width: 560px;
  height: 560px;
  border: 70px solid rgba(255,255,255,.035);
  border-radius: 50%;
  pointer-events: none;
}

.site-footer::after {
  content: '';
  position: absolute;
  left: -160px;
  bottom: -220px;
  width: 420px;
  height: 420px;
  border: 50px solid rgba(255,255,255,.025);
  border-radius: 50%;
  pointer-events: none;
}

.site-footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.site-footer__brand .brand { color: #fff; }

.site-footer__trust {
  margin: 18px 0 0;
  max-width: 360px;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,.62);
}

.site-footer__title {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 900;
  font-size: 16px;
  color: var(--amber);
  letter-spacing: .08em;
  margin: 0 0 14px;
}

.site-footer__links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-link {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  transition: color .2s, padding-left .25s var(--ease);
}

.footer-link:hover { color: #fff; padding-left: 4px; }

.site-footer__meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 28px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
  color: rgba(255,255,255,.52);
}

.site-footer__contact { font-weight: 600; color: rgba(255,255,255,.72); }
.site-footer__icp { color: rgba(255,255,255,.5); }

/* ============ 响应式 ============ */
@media (max-width: 1024px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__trust { max-width: 560px; }
}

@media (max-width: 640px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__brand { grid-column: auto; }
  .site-footer__meta { flex-direction: column; align-items: flex-start; gap: 6px; }
}

@media (max-width: 480px) {
  :root { --header-h: 62px; }
  .brand__sub { display: none; }
  .brand__name { font-size: 18px; }
  .brand__mark { width: 36px; height: 36px; }
  .section { padding: 64px 0; }
  .data-card { padding: 22px; }
}

/* ============ 焦点与动效偏好 ============ */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

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

  .reveal-init { opacity: 1 !important; transform: none !important; }
}
