/* =========================================================
   江南平台赛事 · 共享样式 /assets/site.css
   设计语言：江南夜航 × 数据竞技场
   ========================================================= */

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

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

body {
  margin: 0;
  background-color: #0C1720;
  background-image:
    linear-gradient(rgba(143, 169, 172, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 169, 172, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  color: #F3F7F6;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-nav-open { overflow: hidden; }

h1, h2, h3, h4, p, figure, blockquote { margin: 0; }

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

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

button { font: inherit; color: inherit; }

a { color: #2FE3C0; }

:focus-visible {
  outline: 2px solid #2FE3C0;
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 2. Tokens ---------- */
:root {
  --ink: #0C1720;
  --ink-2: #14303B;
  --moon: #F3F7F6;
  --stone: #8FA9AC;
  --orange: #FF6A2B;
  --cyan: #2FE3C0;
  --amber: #E9A63C;
  --copper: #C08A3E;
  --shallow: #4E7C86;
  --lotus: #D8E4E2;

  --font-display: "Arial Narrow", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --font-body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", "Cascadia Mono", "JetBrains Mono", Consolas, "Courier New", monospace;

  --shell-max: 1440px;
  --gutter: 24px;
  --header-h: 84px;
  --header-h-compact: 56px;
  --header-h-mobile: 64px;

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

  --line: rgba(143, 169, 172, 0.2);
  --line-soft: rgba(143, 169, 172, 0.14);
}

/* ---------- 3. 排版基础 ---------- */
.display-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--moon);
  font-stretch: condensed;
}

.lede {
  font-size: 17px;
  line-height: 1.75;
  color: var(--stone);
  max-width: 62ch;
}

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

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.data-figure {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cyan);
  font-variant-numeric: tabular-nums;
}

.vertical-note {
  position: absolute;
  right: 4px;
  top: 8px;
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--shallow);
  pointer-events: none;
}

.vertical-note--left { right: auto; left: 4px; }

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

/* ---------- 4. 容器与网格 ---------- */
.shell {
  width: 100%;
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 72px 0; }
.section--tight { padding: 40px 0; }
.section--breath { padding: 96px 0; }

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

.surface {
  background: var(--ink-2);
  border-radius: var(--r-lg);
  padding: 28px;
}

.surface--alt {
  background: rgba(20, 48, 59, 0.55);
  border: 1px solid var(--line-soft);
}

.surface--light {
  background: var(--lotus);
  color: var(--ink);
}

/* ---------- 5. 按钮与标签 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn--primary {
  background: var(--orange);
  color: #1A0D05;
}

.btn--primary:hover { background: #FF824F; }

.btn--ghost {
  background: transparent;
  border-color: rgba(143, 169, 172, 0.35);
  color: var(--moon);
}

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

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--pill);
  border: 1px solid currentColor;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.tag--cyan { color: var(--cyan); }
.tag--amber { color: var(--amber); }
.tag--copper { color: var(--copper); }
.tag--orange { color: var(--orange); }

/* ---------- 6. 面包屑 ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--stone);
}

.breadcrumb a {
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.breadcrumb__item[aria-current="page"] {
  color: var(--moon);
  font-weight: 600;
}

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

/* ---------- 7. 图片容器基础规则 ---------- */
.media-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(140deg, rgba(20, 48, 59, 0.95) 0%, rgba(78, 124, 134, 0.35) 100%);
}

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

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

.media-frame__label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(243, 247, 246, 0.8);
}

/* ---------- 8. 显现 ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ---------- 9. Skip link ---------- */
.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 120;
  padding: 10px 18px;
  border-radius: var(--pill);
  background: var(--orange);
  color: #1A0D05;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}

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

/* ---------- 10. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(12, 23, 32, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--orange) 100%);
  transition: width 0.1s linear;
}

.header-shell {
  width: 100%;
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: min-height 0.24s ease;
}

/* 品牌块 */
.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-mark {
  position: relative;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--cyan) 0%, var(--shallow) 54%, var(--orange) 100%);
  box-shadow: inset 0 0 0 1px rgba(243, 247, 246, 0.18);
  transition: width 0.24s ease, height 0.24s ease, border-radius 0.24s ease;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 4px;
  border: 2px solid rgba(12, 23, 32, 0.78);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--moon);
  text-decoration: none;
  white-space: nowrap;
  transition: font-size 0.24s ease, color 0.2s ease;
}

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

.brand-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--stone);
  transition: opacity 0.24s ease;
}

.season-tag { white-space: nowrap; }

.version-tag {
  padding: 1px 7px;
  border-radius: var(--pill);
  border: 1px solid rgba(47, 227, 192, 0.45);
  color: var(--cyan);
}

/* 移动端按钮 */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: var(--pill);
  border: 1px solid rgba(143, 169, 172, 0.35);
  background: rgba(20, 48, 59, 0.7);
  color: var(--moon);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.nav-toggle__bar {
  position: relative;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: background-color 0.2s ease;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.22s ease;
}

.nav-toggle__bar::before { top: -5px; }
.nav-toggle__bar::after { top: 5px; }

.site-header[data-open] .nav-toggle__bar { background: transparent; }
.site-header[data-open] .nav-toggle__bar::before { transform: translateY(5px) rotate(45deg); }
.site-header[data-open] .nav-toggle__bar::after { transform: translateY(-5px) rotate(-45deg); }

/* 导航区 */
.nav-zone {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 8px 12px 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--stone);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s ease;
}

.nav-link:hover { color: var(--moon); }

.nav-link[aria-current="page"] { color: var(--moon); }
.nav-link[aria-current="page"]::after { transform: scaleX(1); }

/* 导航工具区 */
.nav-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.league-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: var(--pill);
  background: rgba(143, 169, 172, 0.12);
  border: 1px solid rgba(143, 169, 172, 0.22);
}

.league-pill {
  appearance: none;
  border: 0;
  padding: 6px 13px;
  border-radius: var(--pill);
  background: transparent;
  color: var(--stone);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.league-pill:hover { color: var(--moon); }

.league-pill.is-active {
  background: var(--cyan);
  color: #062018;
}

.report-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  border-radius: var(--pill);
  border: 1px solid rgba(255, 106, 43, 0.5);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.report-link:hover {
  background: var(--orange);
  color: #1A0D05;
}

.report-link__icon {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

/* ---------- 11. Footer ---------- */
.site-footer {
  position: relative;
  margin-top: 96px;
  padding: 72px 0 32px;
  background: linear-gradient(180deg, #0C1720 0%, #080F16 100%);
  border-top: 1px solid var(--line);
}

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

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-soft);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-mark {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: conic-gradient(from 140deg, var(--cyan), var(--shallow), var(--orange), var(--cyan));
}

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

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.footer-brand-note {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--stone);
}

.footer-coord {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--shallow);
}

/* 六栏图标矩阵 */
.footer-matrix {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-soft);
}

.matrix-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 14px;
  border-radius: var(--r-md);
  background: rgba(20, 48, 59, 0.55);
  border: 1px solid var(--line-soft);
  color: var(--moon);
  text-decoration: none;
  transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.matrix-item:hover {
  background: rgba(47, 227, 192, 0.1);
  border-color: rgba(47, 227, 192, 0.5);
  transform: translateY(-2px);
}

.matrix-icon {
  position: relative;
  width: 26px;
  height: 26px;
  border: 1.75px solid currentColor;
  border-radius: 8px;
  color: var(--stone);
  transition: color 0.22s ease;
}

.matrix-item:hover .matrix-icon { color: var(--cyan); }

.matrix-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.footer-matrix .matrix-item:nth-child(1) .matrix-icon::after {
  inset: 7px;
  border-radius: 2px;
}

.footer-matrix .matrix-item:nth-child(2) .matrix-icon {
  border-radius: 50%;
}

.footer-matrix .matrix-item:nth-child(2) .matrix-icon::after {
  inset: 8px;
  border-radius: 50%;
}

.footer-matrix .matrix-item:nth-child(3) .matrix-icon::after {
  left: 6px;
  right: 6px;
  top: 8px;
  height: 2px;
  box-shadow: 0 6px 0 currentColor;
}

.footer-matrix .matrix-item:nth-child(4) .matrix-icon::after {
  inset: 7px;
  border-radius: 1px;
  transform: rotate(45deg);
}

.footer-matrix .matrix-item:nth-child(5) .matrix-icon {
  border-radius: 50% 50% 50% 8px;
}

.footer-matrix .matrix-item:nth-child(5) .matrix-icon::after {
  inset: 8px;
  border-radius: 50%;
}

.footer-matrix .matrix-item:nth-child(6) .matrix-icon::after {
  inset: 5px;
  border-radius: 50%;
  background: transparent;
  border: 1.75px solid currentColor;
}

.matrix-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.matrix-desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--stone);
}

/* 联系与合规 */
.footer-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-soft);
}

.footer-title {
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--shallow);
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: baseline;
}

.contact-key {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--stone);
}

.contact-val {
  font-size: 14px;
  color: var(--moon);
  word-break: break-word;
  font-variant-numeric: tabular-nums;
}

.contact-note {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--stone);
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.legal-link {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: var(--pill);
  border: 1px solid rgba(143, 169, 172, 0.3);
  color: var(--moon);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.legal-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 106, 43, 0.08);
}

.legal-icp {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--stone);
}

/* 署名 */
.footer-sign {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  font-size: 12px;
  color: var(--stone);
}

.sign-name {
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--moon);
}

.sign-meta { letter-spacing: 0.04em; }

.sign-version {
  margin-left: auto;
  padding: 3px 10px;
  border-radius: var(--pill);
  border: 1px solid rgba(143, 169, 172, 0.3);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

/* ---------- 12. 响应式 ---------- */

/* 桌面压缩态 */
@media (min-width: 1024px) {
  .site-header.is-compact .header-shell { min-height: var(--header-h-compact); }
  .site-header.is-compact .brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }
  .site-header.is-compact .brand-mark::after { inset: 9px; }
  .site-header.is-compact .brand-name { font-size: 17px; }
  .site-header.is-compact .brand-meta { opacity: 0.7; }
  .site-header.is-compact .nav-link:not([aria-current="page"]) { color: rgba(143, 169, 172, 0.72); }
}

/* 平板与手机 */
@media (max-width: 1023px) {
  :root { --gutter: 20px; }

  .header-shell {
    min-height: var(--header-h-mobile);
    padding: 0 16px;
    gap: 12px;
  }

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

  .nav-zone {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h-mobile);
    z-index: 70;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    margin-left: 0;
    padding: 18px 16px 28px;
    background: linear-gradient(180deg, #0C1720 0%, #14303B 100%);
    border-bottom: 1px solid rgba(143, 169, 172, 0.28);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    max-height: calc(100vh - var(--header-h-mobile));
    max-height: calc(100dvh - var(--header-h-mobile));
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-header[data-open] .nav-zone {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav-link {
    display: block;
    padding: 12px 18px;
    border-radius: var(--pill);
    background: rgba(143, 169, 172, 0.1);
    font-size: 16px;
  }

  .nav-link::after {
    left: 18px;
    right: 18px;
    bottom: 7px;
  }

  .nav-link[aria-current="page"] {
    background: rgba(47, 227, 192, 0.14);
    color: var(--cyan);
  }

  .nav-tools {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .grid-12 { grid-template-columns: 1fr; gap: 16px; }

  .section { padding: 56px 0; }
  .section--breath { padding: 72px 0; }

  .site-footer {
    margin-top: 64px;
    padding: 52px 0 28px;
  }

  .footer-matrix { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-body { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  :root { --gutter: 16px; }

  .brand-name { font-size: 18px; }
  .brand-meta { font-size: 10px; letter-spacing: 0.06em; }
  .nav-toggle__text { display: none; }
  .nav-toggle { padding: 11px; }

  .footer-matrix { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .matrix-desc { display: none; }

  .contact-item {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .footer-sign { gap: 8px; }
  .sign-version { margin-left: 0; }

  .btn { width: 100%; }
}

/* ---------- 13. 无障碍降级 ---------- */
@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .scroll-progress__bar { transition: none; }
}
