/* ==========================================================================
   VPNNK — base.css
   设计令牌 / reset / 排版 / 按钮 / 头部导航 / 页脚 / 通用卡片 / reveal
   令牌取值来自简报 palette 与首屏拍板稿,组件只引用变量,不散落硬编码颜色。
   ========================================================================== */

:root {
  /* ---- 底色三档 ---- */
  --bg: #E4ECF8;
  --bg-panel: #F6F9FE;
  --bg-panel-2: #D7E2F3;
  --border: #C3D1E9;

  /* ---- 强调色(严格三个) ---- */
  --accent: #E0107A;
  --accent-dark: #B00C60;
  --violet: #6E3BE8;
  --ice: #6BD3F0;

  /* ---- 文字 ---- */
  --text: #141A2E;
  --text-muted: #56617D;

  /* ---- 语义色 ---- */
  --success: #1A9E6A;
  --warn: #E39A12;
  --error: #C92E3A;

  /* ---- 光斑三色 ---- */
  --blush: #F6D6E8;
  --lilac: #E6DCF7;
  --frost: #CFE9F5;

  /* ---- 深墨蓝装置色阶 ---- */
  --ink: #141A2E;
  --ink-2: #1B2340;
  --ink-3: #242E4F;
  --ink-line: rgba(255, 255, 255, .08);
  --ink-glow: rgba(255, 255, 255, .14);
  --on-ink: #EEF2FC;
  --on-ink-muted: #9AA7CB;

  /* ---- 强调色柔和派生 ---- */
  --accent-soft: rgba(224, 16, 122, .10);
  --accent-line: rgba(224, 16, 122, .32);
  --violet-soft: rgba(110, 59, 232, .14);
  --violet-line: rgba(110, 59, 232, .36);
  --ice-soft: rgba(107, 211, 240, .16);
  --ice-line: rgba(107, 211, 240, .42);
  --success-soft: rgba(26, 158, 106, .16);

  --white: #FFFFFF;
  --white-70: rgba(255, 255, 255, .72);
  --white-55: rgba(255, 255, 255, .55);

  /* ---- 投影 ---- */
  --shadow-card: 0 28px 56px rgba(224, 16, 122, .10), 0 2px 6px rgba(20, 26, 46, .06);
  --shadow-win: 0 24px 48px rgba(20, 26, 46, .32);
  --shadow-float: 0 12px 28px rgba(110, 59, 232, .14), 0 1px 3px rgba(20, 26, 46, .08);
  --shadow-bolt: 0 12px 26px rgba(224, 16, 122, .28);
  --shadow-soft: 0 10px 26px rgba(20, 26, 46, .07);

  /* ---- 旗帜填色 ---- */
  --flag-red: #D7263D;
  --flag-navy: #1D3A8A;
  --flag-blue: #2B4FB3;
  --flag-white: #FFFFFF;
  --flag-black: #1A1A1A;
  --flag-gold: #F2C300;

  /* ---- 几何 ---- */
  --radius-s: 8px;
  --radius-m: 12px;
  --radius-l: 20px;

  /* ---- 字体 ---- */
  --font-display: 'Inter', 'Noto Sans SC', 'Noto Sans JP', 'Noto Sans KR', 'PingFang SC', 'Hiragino Sans', 'Microsoft YaHei', system-ui, sans-serif;
  --font-body: 'Inter', 'Noto Sans SC', 'Noto Sans JP', 'Noto Sans KR', 'PingFang SC', 'Hiragino Sans', 'Microsoft YaHei', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;

  /* ---- 节奏 ---- */
  --gutter: 24px;
  --header-h: 64px;
  --notice-h: 36px;
  --dur: .5s;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ============================ reset ============================ */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body:has(.float-cta)::after {
  content: "";
  display: block;
  height: calc(88px + env(safe-area-inset-bottom, 0px));
}

img, svg, video { max-width: 100%; }
img { display: block; }
svg { display: inline-block; vertical-align: middle; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
table { border-collapse: collapse; width: 100%; }

code, kbd, samp, pre { font-family: var(--font-mono); font-size: .92em; }
code { overflow-wrap: anywhere; word-break: break-word; }
pre {
  background: var(--ink);
  color: var(--on-ink);
  border-radius: var(--radius-s);
  padding: 16px 18px;
  overflow-x: auto;
  max-width: 100%;
  line-height: 1.6;
}
pre code { overflow-wrap: normal; word-break: normal; }

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

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

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ============================ 排版 ============================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.025em;
  text-wrap: balance;
}
h1 { font-size: clamp(30px, 4.2vw, 60px); font-weight: 900; letter-spacing: -.03em; line-height: 1.1; }
h2 { font-size: clamp(24px, 2.6vw, 34px); }
h3 { font-size: clamp(19px, 1.6vw, 23px); }
h4 { font-size: 17px; letter-spacing: -.015em; }

p { overflow-wrap: break-word; }
p + p { margin-top: 12px; }

.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 44em;
}
.lede strong { color: var(--text); font-weight: 600; }

.muted { color: var(--text-muted); }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.grad {
  background: linear-gradient(92deg, var(--accent) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.no-break { white-space: nowrap; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  font-weight: 600;
  color: var(--accent);
}
.link-arrow svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex: 0 0 auto;
}
.link-arrow:hover { color: var(--accent-dark); }

/* ============================ 版心 ============================ */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.sec { padding-top: 76px; padding-bottom: 76px; }
.sec-tight { padding-top: 44px; padding-bottom: 44px; }

.sec-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.sec-head h2 { margin: 0; }

.sec-icon {
  width: 34px; height: 34px;
  border-radius: var(--radius-s);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.sec-icon svg {
  width: 18px; height: 18px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.sec-icon.is-violet { background: var(--violet-soft); border-color: var(--violet-line); }
.sec-icon.is-violet svg { stroke: var(--violet); }
.sec-icon.is-ice { background: var(--ice-soft); border-color: var(--ice-line); }
.sec-icon.is-ice svg { stroke: var(--ice); }

.sec-intro { color: var(--text-muted); max-width: 60ch; margin-top: -14px; margin-bottom: 28px; }

/* ============================ 按钮 ============================ */
.btn {
  height: 44px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-s);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.005em;
  flex-shrink: 0;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  flex: 0 0 auto;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 18px var(--accent-soft);
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { background: var(--white-70); }
.btn-secondary {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-secondary:hover { border-color: var(--accent-line); color: var(--accent-dark); }
.btn-sm { height: 36px; padding: 0 16px; font-size: 14px; }
.btn-block { width: 100%; }

/* ============================ 徽标 / 胶囊 ============================ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 26px;
  padding: 4px 12px 4px 10px;
  border-radius: var(--radius-s);
  background: var(--white-70);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.kicker i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  flex: 0 0 auto;
}
.kicker b { font-family: var(--font-mono); font-weight: 600; color: var(--text); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  max-width: 100%;
  overflow: hidden;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent-dark);
}
.badge.is-violet { background: var(--violet-soft); border-color: var(--violet-line); color: var(--violet); }
.badge.is-ice { background: var(--ice-soft); border-color: var(--ice-line); color: #1D7F9E; }
.badge.is-success { background: var(--success-soft); border-color: rgba(26, 158, 106, .34); color: var(--success); }
.badge svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
  flex: 0 0 auto;
}

/* ============================ 公告条(签名元素 4) ============================ */
.notice { height: var(--notice-h); background: var(--bg-panel-2); display: flex; align-items: center; }
.notice .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.notice-msg { display: flex; align-items: center; gap: 10px; min-width: 0; }
.notice-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 3px var(--violet-soft);
  flex: 0 0 auto;
}
.notice-msg a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--violet-line);
  text-underline-offset: 3px;
}
.notice-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  color: var(--text);
  font-weight: 500;
  flex: 0 0 auto;
}
.notice-more svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.notice-right { display: flex; gap: 20px; flex: 0 0 auto; }
.notice-right a { min-height: 24px; display: inline-flex; align-items: center; }
.notice-right a:hover { color: var(--text); }

/* ============================ 顶部导航 ============================ */
.nav {
  height: var(--header-h);
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 30;
}
.nav .wrap { height: 100%; display: flex; align-items: center; gap: 28px; }

.brand { display: flex; align-items: center; gap: 10px; margin-right: 8px; flex: 0 0 auto; }
.brand img { width: 30px; height: 30px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.02em;
  color: var(--text);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.nav-links li { display: block; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }
.nav-links a[aria-current="page"] { color: var(--text); font-weight: 700; }

.nav-tools { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }

.btn-login {
  min-height: 36px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-s);
  background: var(--ink);
  color: var(--on-ink);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.btn-login:hover { background: var(--ink-3); }

.lang { position: relative; }
.lang-btn {
  min-height: 36px;
  min-width: 44px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-s);
  border: 1px solid var(--border);
  background: var(--bg-panel);
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}
.lang-btn:hover { color: var(--text); border-color: var(--accent-line); }
.lang-btn svg {
  width: 12px; height: 12px;
  stroke: currentColor; fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  flex: 0 0 auto;
}
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 176px;
  padding: 6px;
  border-radius: var(--radius-m);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: none;
  z-index: 40;
}
.lang-menu.is-open { display: block; }
.lang-menu a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-muted);
}
.lang-menu a:hover { background: var(--bg-panel-2); color: var(--text); }
.lang-menu a[aria-current="true"] { color: var(--accent-dark); font-weight: 700; }

.burger {
  display: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-s);
  border: 1px solid var(--border);
  background: var(--bg-panel);
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

/* 抽屉:实色背景、整行可点 */
.drawer {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  max-height: calc(100dvh - var(--header-h) - var(--notice-h));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px var(--gutter) 18px;
  z-index: 35;
}
.drawer.is-open { display: block; }
.drawer a {
  display: flex;
  width: 100%;
  align-items: center;
  min-height: 46px;
  padding: 10px 4px;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.drawer a[aria-current="page"] { color: var(--accent-dark); font-weight: 700; }
.drawer-label {
  display: block;
  padding: 14px 4px 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
html.nav-open { overflow: hidden; }

/* ============================ 页脚 ============================ */
.footer {
  background: var(--ink);
  color: var(--on-ink);
  padding-top: 56px;
  padding-bottom: 28px;
}
.footer a { color: var(--on-ink-muted); }
.footer a:hover { color: var(--on-ink); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--ink-line);
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 30px; height: 30px; }
.footer-brand b {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--on-ink);
}
.footer-desc {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--on-ink-muted);
  max-width: 34ch;
}
.footer h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--on-ink);
  margin-bottom: 12px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 2px; }
.footer-col a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  font-size: 13.5px;
}
.footer-hot { display: flex; flex-wrap: wrap; gap: 6px; }
.footer-hot a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid var(--ink-line);
  background: rgba(255, 255, 255, .04);
  font-size: 12.5px;
  max-width: 100%;
  overflow: hidden;
}
.footer-lang { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.footer-lang a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid var(--ink-line);
  font-size: 12.5px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  font-size: 12.5px;
  color: var(--on-ink-muted);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal a { display: inline-flex; align-items: center; min-height: 24px; }
.footer-copy { font-family: var(--font-mono); letter-spacing: .01em; }

/* ============================ 通用卡片 / 面板 ============================ */
.card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 22px;
  min-width: 0;
}
.card-raised {
  box-shadow: var(--shadow-soft);
  border-color: var(--white-70);
}
.panel {
  background: var(--bg-panel-2);
  border-radius: var(--radius-m);
  padding: 20px;
  min-width: 0;
}
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.grid-2 > *, .grid-3 > *, .grid-4 > * { min-width: 0; }

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

/* 事实胶囊行 */
.fact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.fact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.fact b { font-family: var(--font-mono); color: var(--text); font-weight: 700; }
.fact svg {
  width: 14px; height: 14px;
  stroke: var(--accent); fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  flex: 0 0 auto;
}

/* 统计数字(供 motion.js 的 counter-stats 使用) */
.stat-num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -.01em;
  min-width: 3.4ch;
  display: inline-block;
}

/* 线路状态脚手架容器:必须夹住网格 */
#server-status {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 24px;
}

/* ============================ 旗帜填色类 ============================ */
.c-red { fill: var(--flag-red); }
.c-white { fill: var(--flag-white); }
.c-navy { fill: var(--flag-navy); }
.c-blue { fill: var(--flag-blue); }
.c-black { fill: var(--flag-black); }
.c-gold { fill: var(--flag-gold); }
.s-white { stroke: var(--flag-white); fill: none; }
.s-red { stroke: var(--flag-red); fill: none; }

.flag-inline {
  width: 20px;
  height: 13px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px var(--border);
  flex: 0 0 auto;
}

/* ============================ 滚动淡入(可见性反转) ============================ */
.reveal { transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.reveal.pending { opacity: 0; transform: translateY(16px); }
.reveal.shown { opacity: 1; transform: none; }

/* ============================ 装饰工具 ============================ */
.tilt { transform: rotate(-.45deg); }
.deco-field { position: relative; overflow-x: clip; max-width: 100%; }

/* ============================ 响应式 ============================ */
@media (max-width: 1100px) {
  :root { --gutter: 22px; }
  .nav-links { gap: 16px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col-hot { grid-column: 1 / -1; }
}

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

@media (max-width: 768px) {
  :root { --gutter: 18px; }
  .nav-links { display: none; }
  .burger { display: inline-flex; }
  .nav-tools { margin-left: auto; }
  .notice-right { display: none; }
  .sec { padding-top: 54px; padding-bottom: 54px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --gutter: 16px; }
  .nav .wrap { gap: 8px; }
  .brand { margin-right: 0; }
  .nav-tools { gap: 8px; }
  .lang-btn { padding: 0 8px; }
  .no-break { white-space: normal; }
  .tilt { transform: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .fact-row { gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .reveal, .reveal.pending { opacity: 1 !important; transform: none !important; }
}