/* ============================================================
   加拿大PC主站 · 共享外壳样式 / assets/site.css
   冰原数据仪表盘 —— 石墨底 · 冰蓝结构 · 枫叶红脉冲 · 奖池金高亮
   ============================================================ */

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

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

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

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

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

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

a { color: inherit; }

/* ---------- tokens ---------- */
:root {
  --graphite: #0E1116;
  --night: #1B222B;
  --night-2: #232C37;
  --ice: #0B3C5D;
  --ice-2: #12496F;
  --maple: #C8102E;
  --gold: #F2A900;
  --cold: #2D7DD2;
  --hot: #E63946;
  --pale: #E8F1F5;
  --aurora: #4ADEDE;
  --mist: #8A9BA8;

  --line: rgba(138, 155, 168, 0.28);
  --line-soft: rgba(138, 155, 168, 0.16);
  --hard-shadow: 8px 8px 0 rgba(11, 60, 93, 0.62);

  --font-cn: "Source Han Sans SC", "Source Han Sans", "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", monospace;

  --head-h: 78px;
  --wrap: 1440px;
  --pad-x: clamp(18px, 4vw, 48px);

  --ease: cubic-bezier(0.22, 0.9, 0.24, 1);
}

@media (max-width: 1023px) {
  :root { --head-h: 64px; }
}

/* ---------- page base ---------- */
body {
  background-color: var(--graphite);
  color: var(--pale);
  font-family: var(--font-cn);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(1100px 560px at 82% -12%, rgba(74, 222, 222, 0.07), transparent 62%),
    radial-gradient(900px 520px at -8% 18%, rgba(45, 125, 210, 0.12), transparent 66%),
    radial-gradient(760px 460px at 50% 108%, rgba(200, 16, 46, 0.10), transparent 68%),
    linear-gradient(180deg, #0E1116 0%, #0B0F14 55%, #0E1116 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(138, 155, 168, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 155, 168, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
}

body.nav-open { overflow: hidden; }

#main-content { scroll-margin-top: var(--head-h); }

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

::selection {
  background: var(--maple);
  color: #fff;
}

.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;
}

/* ---------- skip link ---------- */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-180%);
  padding: 10px 18px;
  background: var(--gold);
  color: #14181D;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 2px solid #14181D;
  border-radius: 2px;
  transition: transform 0.25s var(--ease);
}

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

/* ---------- reading progress ---------- */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 120;
  background: rgba(138, 155, 168, 0.14);
  pointer-events: none;
}

.read-progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--ice-2), var(--cold) 34%, var(--maple) 72%, var(--gold));
  box-shadow: 0 0 12px rgba(200, 16, 46, 0.55);
}

/* ---------- header ---------- */
.site-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.site-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 17, 22, 0.94) 0%, rgba(14, 17, 22, 0.62) 58%, rgba(14, 17, 22, 0) 100%);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
  pointer-events: none;
}

.site-head.is-solid::before {
  background: var(--graphite);
  box-shadow: 0 1px 0 rgba(200, 16, 46, 0.55), 0 14px 34px rgba(0, 0, 0, 0.5);
}

.site-head__inner {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(15px, 2.2vw, 22px) var(--pad-x);
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 36px);
}

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

.brand__mark {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 2px solid var(--maple);
  border-radius: 2px;
  background: linear-gradient(145deg, var(--ice), var(--graphite) 78%);
  box-shadow: 4px 4px 0 rgba(200, 16, 46, 0.28);
}

.brand__mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  background: var(--maple);
  clip-path: polygon(50% 0%, 62% 22%, 92% 12%, 78% 42%, 100% 62%, 66% 60%, 60% 96%, 50% 74%, 40% 96%, 34% 60%, 0% 62%, 22% 42%, 8% 12%, 38% 22%);
  transition: background 0.3s var(--ease);
}

.brand:hover .brand__mark::before { background: var(--gold); }

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

.brand__name {
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 3px;
}

/* nav toggle */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding: 8px 13px;
  background: rgba(27, 34, 43, 0.85);
  border: 2px solid var(--ice);
  border-radius: 2px;
  color: var(--pale);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

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

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}

.nav-toggle__bars i {
  display: block;
  height: 2px;
  background: var(--pale);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); background: var(--maple); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); background: var(--maple); }

.nav-toggle__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
}

/* nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  margin-left: auto;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(2px, 1.2vw, 16px);
}

.site-nav__list a {
  position: relative;
  display: block;
  padding: 9px 11px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--pale);
  transition: color 0.22s var(--ease);
}

.site-nav__list a::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 3px;
  height: 2px;
  background: var(--maple);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease);
}

.site-nav__list a:hover { color: #fff; }
.site-nav__list a:hover::after { transform: scaleX(1); }

.site-nav__list a[aria-current="page"] {
  color: var(--gold);
}

.site-nav__list a[aria-current="page"]::after {
  background: var(--gold);
  transform: scaleX(1);
}

.site-nav__list a[aria-current="page"]::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 50%;
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  border-radius: 50%;
  background: var(--maple);
  box-shadow: 0 0 10px rgba(200, 16, 46, 0.9);
  animation: maplePulse 2.6s ease-in-out infinite;
}

@keyframes maplePulse {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.2); }
}

.site-nav__cta { flex: 0 0 auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: var(--font-cn);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
              background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn--maple {
  background: var(--maple);
  border-color: var(--maple);
  color: #FFFFFF;
  box-shadow: 4px 4px 0 rgba(11, 60, 93, 0.9);
}

.btn--maple:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(11, 60, 93, 0.9);
}

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #14181D;
  box-shadow: 4px 4px 0 rgba(11, 60, 93, 0.9);
}

.btn--gold:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(11, 60, 93, 0.9);
}

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

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

/* ---------- layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

.wrap--narrow { max-width: 880px; }

.grid {
  display: grid;
  gap: clamp(18px, 2.6vw, 34px);
}

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

.grid--auto { grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); }

/* ---------- index tag ---------- */
.index-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
}

.index-tag::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--maple);
  flex: 0 0 22px;
}

/* ---------- section head ---------- */
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 28px;
  padding-bottom: 14px;
  margin-bottom: clamp(20px, 3vw, 34px);
  border-bottom: 2px solid var(--ice);
}

.section-head__title {
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-head__note {
  max-width: 46ch;
  font-size: 13px;
  line-height: 1.75;
  color: var(--mist);
}

/* ---------- archival card ---------- */
.card {
  position: relative;
  padding: clamp(20px, 2.4vw, 30px);
  background: var(--night);
  border: 2px solid var(--ice);
  box-shadow: var(--hard-shadow);
}

.card--tabbed { padding-top: clamp(50px, 5vw, 62px); }

.card__tab {
  position: absolute;
  top: -2px;
  left: -2px;
  max-width: calc(100% + 4px);
  padding: 5px 12px;
  background: var(--ice);
  color: var(--pale);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ---------- jewelry bands ---------- */
.band {
  position: relative;
  padding: clamp(22px, 3vw, 40px);
  border: 2px solid var(--ice);
  background: linear-gradient(135deg, rgba(11, 60, 93, 0.6), rgba(14, 17, 22, 0.94));
}

.band--wine {
  border-color: rgba(200, 16, 46, 0.55);
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.3), rgba(14, 17, 22, 0.94));
}

.band--indigo {
  border-color: rgba(108, 92, 190, 0.5);
  background: linear-gradient(135deg, rgba(63, 44, 120, 0.55), rgba(14, 17, 22, 0.94));
}

.band--teal {
  border-color: rgba(74, 222, 222, 0.38);
  background: linear-gradient(135deg, rgba(11, 93, 89, 0.5), rgba(14, 17, 22, 0.94));
}

/* ---------- numbers ---------- */
.num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.num--gold {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(242, 169, 0, 0.38);
}

/* ---------- breadcrumb ---------- */
.crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
}

.crumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.crumb li + li::before {
  content: "/";
  color: rgba(138, 155, 168, 0.45);
}

.crumb a {
  color: var(--mist);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.crumb a:hover {
  color: var(--aurora);
  border-bottom-color: var(--aurora);
}

/* ---------- image frame base ---------- */
.figure-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 2px solid var(--ice);
  background: linear-gradient(160deg, rgba(11, 60, 93, 0.85), rgba(14, 17, 22, 0.98));
  box-shadow: var(--hard-shadow);
}

.figure-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(138, 155, 168, 0.09) 0 2px,
    transparent 2px 10px
  );
}

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

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

.figure-frame__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 12px 14px 10px;
  background: linear-gradient(0deg, rgba(14, 17, 22, 0.95), rgba(14, 17, 22, 0));
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--pale);
}

/* ---------- reveal ---------- */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* ---------- footer ---------- */
.site-foot {
  position: relative;
  margin-top: clamp(64px, 9vw, 130px);
  background: var(--night);
  border-top: 2px solid var(--ice);
  color: var(--pale);
}

.site-foot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maple) 0%, var(--gold) 34%, var(--aurora) 68%, var(--cold) 100%);
}

.site-foot__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(40px, 5.5vw, 76px) var(--pad-x) clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(250px, 1.5fr) repeat(3, minmax(160px, 1fr));
  gap: clamp(26px, 3.6vw, 56px);
}

.site-foot__brand { display: flex; flex-direction: column; gap: 12px; }

.brand--foot { margin-bottom: 4px; }

.site-foot__line {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--pale);
}

.site-foot__coords {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--mist);
  padding-left: 12px;
  border-left: 2px solid var(--maple);
  line-height: 1.9;
}

.site-foot__year {
  margin-top: auto;
  padding-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--mist);
}

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

.site-foot__title {
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-foot__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14px;
}

.site-foot__list a {
  display: inline-block;
  color: var(--pale);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.site-foot__list a:hover {
  color: var(--aurora);
  border-bottom-color: var(--aurora);
  transform: translateX(3px);
}

.site-foot__list--contact { gap: 16px; }

.site-foot__list--contact li {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.site-foot__k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
}

.site-foot__v {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--pale);
}

/* copy button */
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  max-width: 100%;
  padding: 6px 10px;
  background: rgba(14, 17, 22, 0.6);
  border: 1px dashed rgba(138, 155, 168, 0.45);
  border-radius: 2px;
  color: var(--pale);
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.copy-btn > span:first-child {
  overflow-wrap: anywhere;
}

.copy-btn:hover {
  border-color: var(--aurora);
  color: var(--aurora);
  background: rgba(74, 222, 222, 0.07);
}

.copy-btn.is-copied {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(242, 169, 0, 0.08);
}

.copy-btn__hint {
  flex: 0 0 auto;
  padding-left: 9px;
  border-left: 1px solid rgba(138, 155, 168, 0.35);
  font-family: var(--font-cn);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--mist);
}

.copy-btn:hover .copy-btn__hint { color: inherit; }
.copy-btn.is-copied .copy-btn__hint { color: inherit; }

/* footer legal bar */
.site-foot__bar {
  border-top: 1px solid var(--line-soft);
  background: rgba(14, 17, 22, 0.72);
}

.site-foot__bar-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 18px var(--pad-x) 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 28px;
}

.site-foot__note {
  flex: 1 1 320px;
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--mist);
}

.site-foot__icp {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--mist);
  white-space: nowrap;
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .site-foot__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-foot__brand { grid-column: 1 / -1; }
  .site-foot__coords { max-width: 60ch; }
}

@media (max-width: 1023px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: fixed;
    top: var(--head-h);
    right: 0;
    bottom: 0;
    width: min(88vw, 360px);
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 18px 20px 44px;
    background: var(--night);
    border-left: 2px solid var(--ice);
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.55);
    transform: translateX(103%);
    visibility: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    transition: transform 0.42s var(--ease), visibility 0.42s var(--ease);
  }

  .site-nav[data-open] {
    transform: translateX(0);
    visibility: visible;
  }

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

  .site-nav__list li { border-bottom: 1px solid var(--line-soft); }

  .site-nav__list a {
    padding: 15px 4px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .site-nav__list a::after { display: none; }

  .site-nav__list a[aria-current="page"]::before {
    left: auto;
    right: 4px;
  }

  .site-nav__cta {
    margin-top: 24px;
    width: 100%;
    padding: 13px 18px;
    font-size: 14px;
  }
}

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

@media (max-width: 620px) {
  body { font-size: 15.5px; }

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

  .site-foot__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-foot__year { margin-top: 6px; }

  .site-foot__bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .copy-btn { width: 100%; justify-content: space-between; }

  .section-head { align-items: flex-start; }
}

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

  .js-reveal [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .read-progress__bar { transition: none !important; }
}
