/* ==========================================================
   皇冠体彩入口 · 共享基础样式
   路径 /assets/site.css
   结构：reset / 变量 / 基础 / 工具 / 布局 / 头部 / 按钮 /
         面包屑 / 分区 / 组件 / 图片占位 / 进度与回顶 / 页脚
   ========================================================== */

/* ---------- 01 Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
  font-family: "PingFang SC", "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
  background-color: #0B1D3A;
  background-image:
    radial-gradient(ellipse 80% 50% at 15% -10%, rgba(27, 168, 212, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 85% 20%, rgba(244, 180, 0, 0.08), transparent),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  background-attachment: fixed;
}

h1, h2, h3, h4 {
  font-family: "PingFang SC Heavy", "Noto Sans SC Black", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  font-weight: 900;
  line-height: 1.3;
  color: inherit;
}

h1 { font-size: clamp(2rem, 3vw + 0.75rem, 3rem); }
h2 { font-size: clamp(1.5rem, 2vw + 0.5rem, 2.25rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1em; }
ul, ol { margin-bottom: 1em; }

a {
  color: #F4B400;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: #FFC300; }

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

address { font-style: normal; }

::selection {
  background: #F4B400;
  color: #0B1D3A;
}

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

/* ---------- 02 Variables ---------- */
:root {
  --color-primary: #0B1D3A;
  --color-gold: #F4B400;
  --color-red: #E63946;
  --color-light-gold: #F7E7A6;
  --color-silver: #E0E0E0;
  --color-dark: #1A1A1A;
  --color-mid: #6C757D;
  --color-blue: #1BA8D4;
  --color-gold-bright: #FFC300;
  --color-gold-deep: #C58B00;

  --font-heading: "PingFang SC Heavy", "Noto Sans SC Black", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  --font-body: "PingFang SC", "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  --font-accent: "SF Mono", SFMono-Regular, "Cascadia Mono", Consolas, "Liberation Mono", monospace;

  --fs-small: 0.875rem;
  --fs-tiny: 0.75rem;

  --radius-pill: 999px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 7rem;

  --content-width: 1280px;
  --header-offset: 16px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 48px rgba(11, 29, 58, 0.22);
  --shadow-gold: 0 6px 20px rgba(244, 180, 0, 0.32);

  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --dur-fast: 0.2s;
  --dur-med: 0.4s;

  --scroll-progress: 0;
  --img-ratio: 16 / 9;
  --chapter-color: rgba(244, 180, 0, 0.16);
}

/* ---------- 03 Base Typography Details ---------- */
strong { font-weight: 700; }
em { font-style: italic; }

::marker {
  color: #F4B400;
}

/* ---------- 04 Utilities & Accessibility ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: #F4B400;
  color: #0B1D3A;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 12px 24px;
  border-radius: 0 0 14px 0;
  box-shadow: var(--shadow-gold);
  transition: top 0.25s ease;
}
.skip-link:focus {
  top: 0;
}

.vertical-note {
  writing-mode: vertical-rl;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: #F4B400;
  text-transform: uppercase;
  opacity: 0.8;
  user-select: none;
}

/* ---------- 05 Layout & Containers ---------- */
.content-container {
  width: 100%;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
}

.site-section {
  padding-top: clamp(3rem, 8vw, 5.5rem);
  padding-bottom: clamp(3rem, 8vw, 5.5rem);
}

.section-light {
  background: var(--color-silver);
  color: var(--color-dark);
}

.section-dark {
  background: var(--color-primary);
  color: #ffffff;
}

.section-gold {
  background: var(--color-light-gold);
  color: var(--color-dark);
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.page-grid > * {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .page-grid .col-span-4 { grid-column: span 4; }
  .page-grid .col-span-6 { grid-column: span 6; }
  .page-grid .col-span-8 { grid-column: span 8; }
  .page-grid .col-span-12 { grid-column: span 12; }
}

/* ---------- 06 Header & Navigation ---------- */
.site-header {
  position: sticky;
  top: var(--header-offset);
  z-index: 1000;
  padding: 0 clamp(12px, 2vw, 24px);
  animation: header-drop 0.6s var(--ease) both;
}

@keyframes header-drop {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

.header-inner {
  position: relative;
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  padding: 10px 16px;
  background: rgba(11, 29, 58, 0.72);
  border: 1px solid rgba(244, 180, 0, 0.35);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand:hover .brand-name {
  color: #F4B400;
}

.brand-mark {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FFD54F, #F4B400 60%, #C58B00);
  color: #0B1D3A;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 4px 16px rgba(244, 180, 0, 0.35), inset 0 -2px 4px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #ffffff;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.brand-name-accent {
  color: #F4B400;
}

.site-nav {
  display: block;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: block;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.nav-list a:hover {
  color: #F4B400;
  background: rgba(244, 180, 0, 0.08);
  border-color: rgba(244, 180, 0, 0.35);
}

.nav-list a[aria-current="page"] {
  color: #0B1D3A;
  background: #F4B400;
  font-weight: 700;
  border-color: #F4B400;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 50%;
  border: 1px solid rgba(244, 180, 0, 0.35);
  background: rgba(244, 180, 0, 0.12);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.nav-toggle:hover {
  background: rgba(244, 180, 0, 0.2);
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #F4B400;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}

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

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

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(11, 29, 58, 0.94);
    border: 1px solid rgba(244, 180, 0, 0.4);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  }

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

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

  .nav-list a {
    padding: 13px 20px;
    text-align: center;
    font-size: 1rem;
  }
}

/* ---------- 07 Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.btn-primary {
  background: #F4B400;
  color: #0B1D3A;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: #FFC300;
  color: #0B1D3A;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(244, 180, 0, 0.4);
}

.btn-outline {
  border-color: #F4B400;
  background: transparent;
  color: #F4B400;
}
.btn-outline:hover {
  background: rgba(244, 180, 0, 0.12);
  color: #F4B400;
  border-color: #FFC300;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ---------- 08 Breadcrumb ---------- */
.breadcrumb {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--space-3) clamp(1rem, 4vw, 2rem) 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb a:hover {
  color: #F4B400;
}

.breadcrumb [aria-current="page"] {
  color: #F4B400;
  font-weight: 600;
}

/* ---------- 09 Glass Panel ---------- */
.glass-panel {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

/* ---------- 10 Data Card ---------- */
.data-card {
  position: relative;
  background: #ffffff;
  color: var(--color-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border: 1px solid rgba(11, 29, 58, 0.05);
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}

.data-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244, 180, 0, 0.38);
}

/* ---------- 11 Tags ---------- */
.tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  background: var(--color-light-gold);
  color: #5A4A00;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.6;
  white-space: nowrap;
}

.tag--red {
  background: rgba(230, 57, 70, 0.12);
  color: #D32F3F;
}

.tag--blue {
  background: rgba(27, 168, 212, 0.12);
  color: #0E84A5;
}

.tag--dark {
  background: rgba(244, 180, 0, 0.14);
  border: 1px solid rgba(244, 180, 0, 0.28);
  color: #F4B400;
}

/* ---------- 12 Status Dot ---------- */
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F4B400;
  vertical-align: middle;
  flex-shrink: 0;
}

.status-dot--red {
  background: #E63946;
}

.status-dot--blue {
  background: #1BA8D4;
}

.status-dot--pulse {
  animation: status-pulse 2s ease-out infinite;
}

@keyframes status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(230, 57, 70, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

/* ---------- 13 Chapter Number ---------- */
.chapter-number {
  display: block;
  font-family: var(--font-accent);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1;
  color: var(--chapter-color);
  -webkit-text-stroke: 1px rgba(244, 180, 0, 0.28);
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
}

.chapter-number--inverted {
  color: rgba(11, 29, 58, 0.28);
  -webkit-text-stroke: 1px rgba(11, 29, 58, 0.3);
}

[data-chapter] .chapter-number {
  transition: color var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}

[data-chapter].is-active .chapter-number {
  color: #F4B400;
  -webkit-text-stroke-color: rgba(244, 180, 0, 0.6);
  transform: scale(1.04);
}

/* ---------- 14 Image Placeholder ---------- */
.img-placeholder {
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--img-ratio, 16 / 9);
  background: linear-gradient(135deg, #F7E7A6, rgba(27, 168, 212, 0.12) 60%, rgba(244, 180, 0, 0.15));
  border: 1px dashed rgba(244, 180, 0, 0.45);
  border-radius: var(--radius-lg);
}

.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 35%, rgba(244, 180, 0, 0.25), transparent 45%),
    linear-gradient(rgba(11, 29, 58, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 29, 58, 0.05) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
  pointer-events: none;
}

.img-placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-mid);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(2px);
}

/* ---------- 15 Scroll Progress & Back Top ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 9999;
  background: linear-gradient(90deg, #F4B400, #1BA8D4, #E63946);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: 0 50%;
  box-shadow: 0 0 12px rgba(244, 180, 0, 0.35);
  pointer-events: none;
}

.back-top {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 29, 58, 0.88);
  border: 1px solid #F4B400;
  color: #F4B400;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  z-index: 900;
}

.back-top:hover {
  background: #F4B400;
  color: #0B1D3A;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.js [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 17 Footer ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background: #0B1D3A;
  border-top: 3px solid #F4B400;
  color: rgba(255, 255, 255, 0.75);
  margin-top: clamp(2rem, 6vw, 5rem);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -60px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(244, 180, 0, 0.08), transparent 70%);
  pointer-events: none;
}

.footer-decor {
  position: absolute;
  right: 3%;
  bottom: -40px;
  font-family: var(--font-heading);
  font-size: clamp(9rem, 20vw, 20rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(244, 180, 0, 0.04);
  pointer-events: none;
  user-select: none;
}

.footer-top {
  position: relative;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem) 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(1.5rem, 3.5vw, 3rem);
}

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

.footer-brand .brand-name {
  font-size: 1.5rem;
}

.footer-slogan {
  margin: 10px 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: #F4B400;
}

.footer-trust {
  margin-top: var(--space-2);
  padding-left: var(--space-2);
  border-left: 3px solid #F4B400;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 380px;
}

.footer-heading {
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(244, 180, 0, 0.22);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #F4B400;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 2px;
}

.footer-links a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  line-height: 2.1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #F4B400;
  transform: translateX(3px);
}

.footer-contact {
  font-size: 0.9375rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.contact-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(244, 180, 0, 0.14);
  border: 1px solid rgba(244, 180, 0, 0.3);
  color: #F4B400;
  font-size: 0.6875rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  position: relative;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--space-3) clamp(1rem, 4vw, 2rem) var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 24px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-copy,
.footer-icp,
.footer-note {
  margin: 0;
}

.footer-icp {
  font-family: var(--font-accent);
  letter-spacing: 0.04em;
}

.footer-note {
  width: 100%;
  flex-basis: 100%;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    justify-content: flex-start;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* ---------- 18 Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

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

  .site-header {
    animation: none;
  }
}
