/* =========================================================
   爱游戏主站 · /assets/site.css
   框架式导航 + 复古出版色体系 + 折叠地图母题
   ========================================================= */

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

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

body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, dl, dd, dt, figure, blockquote, fieldset {
  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: inherit; }

table { border-collapse: collapse; width: 100%; }

/* ---------- 2. Tokens ---------- */
:root {
  --abyss: #0B1F2A;
  --cyan: #23D3D3;
  --orange: #FF7A3C;
  --cream: #F5F0E6;
  --cool: #EDF1F3;
  --slate: #C9D2D8;
  --brown: #4A3F38;
  --teal: #14545C;
  --amber: #FFC24B;

  --paper: var(--cream);
  --line: var(--slate);

  --font-head: 'Noto Sans SC', 'Source Han Sans SC', 'PingFang SC', sans-serif;
  --font-body: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-mono: 'JetBrains Mono', 'IBM Plex Mono', 'SFMono-Regular', monospace;

  --maxw: 1240px;
  --gutter: clamp(16px, 4vw, 40px);

  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 8px;

  --shadow-card: 0 1px 0 rgba(11, 31, 42, .05), 0 12px 26px -22px rgba(11, 31, 42, .55);
  --shadow-lift: 0 16px 34px -22px rgba(11, 31, 42, .62);
}

/* ---------- 3. 中文排版基线 ---------- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--brown);
  background: var(--cream);
  letter-spacing: 0;
  overflow-x: hidden;
}

@media (min-width: 900px) {
  body { font-size: 17px; }
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.25;
  color: var(--abyss);
}

p { text-wrap: pretty; }

.mono {
  font-family: var(--font-mono);
  letter-spacing: .02em;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- 4. 焦点与跳转 ---------- */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  top: -120px;
  left: var(--gutter);
  z-index: 200;
  display: inline-block;
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--abyss);
  background: var(--amber);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  text-decoration: none;
  transition: top .18s ease;
}

.skip-link:focus { top: 0; }

/* ---------- 5. 页头：框架式导航 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--abyss);
  color: var(--cream);
  border-top: 1px solid var(--cyan);
  border-bottom: 1px solid rgba(35, 211, 211, .3);
}

.header-inner {
  width: min(100% - var(--gutter) * 2, var(--maxw));
  margin-inline: auto;
  padding-block: 14px 0;
  display: grid;
  gap: 8px;
  transition: padding-block .2s ease;
}

.site-header[data-compact] .header-inner { padding-block: 7px 0; }

.header-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 22px;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 2px;
  text-decoration: none;
  color: var(--cream);
  border-radius: var(--r-sm);
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.25;
  letter-spacing: -.01em;
}

.brand-signature {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .05em;
  color: rgba(35, 211, 211, .88);
}

.header-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
}

.version-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  color: var(--cream);
  text-decoration: none;
  background: rgba(20, 84, 92, .5);
  border: 1px solid rgba(201, 210, 216, .34);
  border-radius: 999px;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.version-badge:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  background: rgba(35, 211, 211, .12);
}

.free-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 240, 230, .74);
}

.free-hint .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(35, 211, 211, .14);
  animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: .55; box-shadow: 0 0 0 3px rgba(35, 211, 211, .1); }
  50% { opacity: 1; box-shadow: 0 0 0 7px rgba(35, 211, 211, .05); }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: .01em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.btn--gate {
  color: var(--abyss);
  background: var(--orange);
  box-shadow: 0 10px 22px -16px rgba(255, 122, 60, .95);
}

.btn--gate:hover { background: #FF9159; transform: translateY(-2px); }

.btn--ghost {
  color: var(--cream);
  border-color: rgba(201, 210, 216, .42);
}

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

.btn--line {
  color: var(--brown);
  background: var(--cream);
  border-color: var(--slate);
}

.btn--line:hover { color: var(--teal); border-color: var(--teal); transform: translateY(-2px); }

/* 移动端开合按钮 */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--cream);
  background: rgba(35, 211, 211, .1);
  border: 1px solid rgba(35, 211, 211, .5);
  border-radius: 999px;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease;
}

.nav-toggle:hover { background: rgba(35, 211, 211, .18); }

.nav-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform .18s ease;
}

.nav-toggle[aria-expanded="true"]::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}

/* 栏目条 */
.site-nav {
  margin-top: 2px;
  border-top: 1px solid rgba(201, 210, 216, .16);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 13px 15px 13px 18px;
  font-size: 15px;
  color: rgba(245, 240, 230, .78);
  text-decoration: none;
  transition: color .18s ease, background .18s ease;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  width: 3px;
  height: 18px;
  background: var(--orange);
  border-radius: 2px;
  transform: translateY(-50%) scaleY(0);
  transition: transform .2s ease;
}

.nav-link:hover { color: var(--cream); background: rgba(35, 211, 211, .09); }

.nav-link[aria-current="page"] {
  color: var(--cream);
  background: rgba(35, 211, 211, .07);
}

.nav-link[aria-current="page"]::before { transform: translateY(-50%) scaleY(1); }

.nav-index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--cyan);
}

.nav-label { white-space: nowrap; }

/* 滚动进度路径线 */
.scroll-meter {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: rgba(201, 210, 216, .16);
  overflow: hidden;
}

.scroll-meter-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .1s linear;
}

/* ---------- 6. 页脚 ---------- */
.site-footer {
  background: var(--abyss);
  color: rgba(245, 240, 230, .82);
  border-top: 1px solid var(--cyan);
  font-size: 15px;
}

.footer-inner {
  width: min(100% - var(--gutter) * 2, var(--maxw));
  margin-inline: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 56px);
  padding-block: clamp(38px, 6vw, 66px) clamp(28px, 4vw, 46px);
}

.footer-brandname {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.01em;
  color: var(--cream);
}

.footer-signature {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .05em;
  color: rgba(35, 211, 211, .88);
}

.footer-cta-line { margin-top: 20px; }

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  color: var(--abyss);
  background: var(--orange);
  text-decoration: none;
  border-radius: 999px;
  transition: transform .18s ease, background .18s ease;
}

.footer-cta::after {
  content: "\2192";
  font-family: var(--font-mono);
}

.footer-cta:hover { background: #FF9159; transform: translateY(-2px); }

.footer-col-title {
  margin-bottom: 14px;
  padding-bottom: 9px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--cyan);
  border-bottom: 1px solid rgba(201, 210, 216, .2);
}

.footer-nav-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 20px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  color: rgba(245, 240, 230, .82);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}

.footer-link::before {
  content: "";
  flex: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(35, 211, 211, .55);
  transition: background .18s ease, transform .18s ease;
}

.footer-link:hover {
  color: var(--cream);
  border-bottom-color: rgba(35, 211, 211, .5);
}

.footer-link:hover::before { background: var(--orange); transform: scale(1.4); }

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

.status-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(201, 210, 216, .22);
}

.status-label { font-size: 13px; color: rgba(245, 240, 230, .68); }

.status-value {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--cream);
}

.footer-lower {
  background: var(--cream);
  color: var(--brown);
  border-top: 1px solid var(--slate);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 52px);
  padding-block: clamp(28px, 4vw, 46px);
}

.footer-col-title--ink {
  color: var(--teal);
  border-bottom-color: var(--slate);
}

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

.contact-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}

.contact-item dt {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--teal);
}

.contact-item dd { margin: 0; font-size: 15px; }

.contact-note {
  margin-top: 16px;
  max-width: 56ch;
  font-size: 13px;
  line-height: 1.8;
  color: #6B5F57;
}

.legal-icp {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--brown);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 16px;
}

.legal-link {
  padding-bottom: 2px;
  font-size: 14px;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(20, 84, 92, .38);
  transition: color .18s ease, border-color .18s ease;
}

.legal-link:hover { color: var(--orange); border-bottom-color: var(--orange); }

.legal-copy {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .02em;
  color: #7B6F67;
}

/* ---------- 7. 版心与分区 ---------- */
.container {
  width: min(100% - var(--gutter) * 2, var(--maxw));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - var(--gutter) * 2, 780px);
  margin-inline: auto;
}

.section { padding-block: clamp(44px, 7vw, 88px); }
.section--tight { padding-block: clamp(28px, 4vw, 50px); }
.section--paper { background: var(--cream); }
.section--cool { background: var(--cool); }

.section--ink {
  background: var(--abyss);
  color: rgba(245, 240, 230, .86);
}

.section--ink .section-title { color: var(--cream); }
.section--ink .section-note { color: rgba(245, 240, 230, .7); }
.section--ink .eyebrow { color: var(--cyan); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px 30px;
  margin-bottom: clamp(20px, 3vw, 34px);
}

.section-title {
  font-size: clamp(22px, 3vw, 30px);
}

.section-note {
  max-width: 48ch;
  font-size: 14px;
  line-height: 1.8;
  color: #6B5F57;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--teal);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--cyan);
}

.lede {
  max-width: 42ch;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.85;
  color: #5A4F48;
}

/* ---------- 8. 面包屑 ---------- */
.breadcrumb {
  padding-block: 16px;
  background: var(--cream);
  border-bottom: 1px solid var(--slate);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--teal);
}

.breadcrumb-item { display: inline-flex; align-items: center; }

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  margin-right: 8px;
  color: var(--slate);
}

.breadcrumb-link {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}

.breadcrumb-link:hover { color: var(--orange); border-bottom-color: var(--orange); }

.breadcrumb-current { color: var(--brown); }

/* ---------- 9. 网格与档案卡 ---------- */
.grid {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(178px, 1fr)); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(18px, 2.2vw, 26px);
  background: var(--cream);
  border: 1px solid var(--slate);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-2px);
  border-color: var(--teal);
  box-shadow: var(--shadow-lift);
}

.card--cool { background: var(--cool); }

.card--archive {
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

.card-title {
  font-size: 19px;
  line-height: 1.35;
  color: var(--abyss);
}

.card-text {
  font-size: 15px;
  line-height: 1.8;
  color: #5A4F48;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--teal);
}

.card-link {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--abyss);
  text-decoration: none;
  border-bottom: 2px solid var(--cyan);
  padding-bottom: 2px;
  transition: color .18s ease, border-color .18s ease;
}

.card-link:hover { color: var(--orange); border-bottom-color: var(--orange); }

/* ---------- 10. 标签与筛选 ---------- */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--teal);
  background: #FFFFFF;
  border: 1px solid var(--slate);
  border-radius: 999px;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.tag:hover { border-color: var(--teal); }

.tag[aria-pressed="true"] {
  color: var(--cream);
  background: var(--teal);
  border-color: var(--teal);
}

/* ---------- 11. 等宽数字条 ---------- */
.data-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--slate);
  border: 1px solid var(--slate);
  border-radius: var(--r-md);
  overflow: hidden;
}

.data-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  background: var(--cool);
}

.data-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--teal);
}

.data-value {
  font-family: var(--font-mono);
  font-size: clamp(20px, 2.6vw, 26px);
  letter-spacing: -.01em;
  color: var(--abyss);
}

.data-unit {
  margin-left: 4px;
  font-size: 12px;
  color: #6B5F57;
}

/* ---------- 12. 图形容器（页面阶段放图占位） ---------- */
.figure {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}

.figure-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cool);
  border: 1px solid var(--slate);
  border-radius: var(--r-md);
}

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

.figure-media--map {
  background-image:
    repeating-linear-gradient(115deg, rgba(35, 211, 211, .12) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(65deg, rgba(20, 84, 92, .09) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, var(--cool), var(--cream));
}

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

.figure-caption {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--teal);
}

/* ---------- 13. 注释块 / 分隔 / 行内链 ---------- */
.note {
  padding: 14px 18px;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--brown);
  background: rgba(35, 211, 211, .08);
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.divider {
  height: 1px;
  margin-block: clamp(20px, 3vw, 34px);
  background: var(--slate);
  border: 0;
}

.link-inline {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(35, 211, 211, .7);
  transition: color .18s ease, border-color .18s ease;
}

.link-inline:hover { color: var(--orange); border-bottom-color: var(--orange); }

/* ---------- 14. 进入视口渐显 ---------- */
[data-reveal] {
  opacity: 0;
  transition: opacity .26s ease;
}

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

/* ---------- 15. 响应式：平板与手机 ---------- */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

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

  .header-meta {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .btn--gate {
    padding: 10px 14px;
    font-size: 13px;
  }

  .site-nav {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .nav-list {
    flex-wrap: nowrap;
    gap: 6px;
    padding-block: 10px 12px;
  }

  .nav-link {
    white-space: nowrap;
    padding: 9px 14px 9px 17px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(201, 210, 216, .22);
    border-radius: 999px;
  }

  .site-nav[data-open] { overflow: visible; }

  .site-nav[data-open] .nav-list {
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 14px;
  }

  .site-nav[data-open] .nav-item { flex: 1 1 calc(50% - 8px); }

  .site-nav[data-open] .nav-link {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav-list { grid-template-columns: 1fr; }
  .contact-item { grid-template-columns: 1fr; gap: 2px; }
  .figure-media { aspect-ratio: 4 / 3; }
  .header-actions { gap: 8px; }
  .brand-signature { font-size: 11px; }
}

/* ---------- 16. 减速动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

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

  .card:hover,
  .btn:hover,
  .footer-cta:hover { transform: none !important; }

  .free-hint .dot { animation: none; }
}
