/* ===================================================
   Site Kit — 艾弗森 AIYISHEN 共享样式
   =================================================== */

/* ---------- 1. Reset & Variables ---------- */
:root {
  --c-bg: #0A1D3A;
  --c-bg-deep: #071428;
  --c-bg-purple: #2E1A47;
  --c-green: #00FF9C;
  --c-orange: #FF6A00;
  --c-light: #F2F5FA;
  --c-text-dark: #1C2E4A;
  --c-text-light: #FFFFFF;
  --c-border: #2C4A6E;
  --grad-primary: linear-gradient(135deg, #0A1D3A 0%, #2E1A47 100%);
  --grad-overlay: linear-gradient(45deg, rgba(0,255,156,0.2), rgba(255,106,0,0.2));
  --font-sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "HarmonicOS Sans SC", "Noto Sans SC", "Microsoft YaHei", "Heiti SC", sans-serif;
  --font-mono: "SF Mono", "Cascadia Code", "Roboto Mono", ui-monospace, monospace;
  --container: 1200px;
  --header-h: 58px;
  --header-offset: 16px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

* {
  margin: 0;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text-dark);
  background: var(--c-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--c-text-dark);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

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

#main-content {
  scroll-margin-top: calc(var(--header-h) + var(--header-offset) + 20px);
}

.main-content {
  min-height: 70vh;
  position: relative;
}

/* ---------- 2. Container & Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

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

.topic-strip {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 2.3fr);
  gap: 24px 48px;
  padding-block: 48px;
  border-top: 1px solid var(--c-border);
}

@media (max-width: 820px) {
  .topic-strip {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px 0;
    padding-block: 32px;
  }
}

/* ---------- 3. Typography Helpers ---------- */
.heading-inverse {
  color: var(--c-text-light);
}

.text-inverse {
  color: rgba(255,255,255,0.75);
}

.text-muted {
  color: #5A6B85;
}

.text-small {
  font-size: 13px;
}

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn-primary {
  background: var(--c-green);
  color: #071428;
  box-shadow: 0 0 24px rgba(0,255,156,0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,255,156,0.4);
  color: #071428;
}

.btn-ghost {
  background: transparent;
  border-color: var(--c-border);
  color: var(--c-text-dark);
}

.btn-ghost:hover {
  border-color: var(--c-green);
  color: var(--c-green);
  transform: translateY(-2px);
}

/* ---------- 5. Breadcrumbs ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #5A6B85;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--c-text-dark);
  font-weight: 500;
}

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

.breadcrumb-sep {
  color: #B0B8C8;
}

.breadcrumb--inverse {
  color: rgba(255,255,255,0.55);
}

.breadcrumb--inverse a {
  color: rgba(255,255,255,0.9);
}

.breadcrumb--inverse a:hover {
  color: var(--c-green);
}

.breadcrumb--inverse .breadcrumb-sep {
  color: rgba(255,255,255,0.3);
}

.breadcrumb [aria-current="page"] {
  color: var(--c-orange);
}

.breadcrumb--inverse [aria-current="page"] {
  color: var(--c-green);
}

/* ---------- 6. Skip Link & Reading Progress ---------- */
.skip-link {
  position: fixed;
  top: -999px;
  left: 16px;
  z-index: 3000;
  background: var(--c-green);
  color: #071428;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  transition: top 0.3s var(--ease);
}

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

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 3000;
  background: rgba(10, 29, 58, 0.5);
  pointer-events: none;
}

.reading-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--c-green) 0%, var(--c-orange) 80%);
  box-shadow: 0 0 10px rgba(0,255,156,0.7);
  transition: width 0.1s linear;
}

/* ---------- 7. Header ---------- */
.site-header {
  position: fixed;
  top: var(--header-offset);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  width: min(calc(100% - 32px), var(--container));
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 12px 8px 20px;
  border-radius: 999px;
  background: rgba(10, 29, 58, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 255, 156, 0.22);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 24px rgba(0, 255, 156, 0.05);
  transition: border-radius 0.3s var(--ease), background 0.3s var(--ease);
}

.header-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 8%, rgba(0, 255, 156, 0.08) 28%, transparent 48%, rgba(255, 106, 0, 0.05) 72%, transparent 92%);
  pointer-events: none;
}

.brand,
.site-nav,
.header-actions {
  position: relative;
  z-index: 1;
}

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

.brand-mark {
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border: 2px solid var(--c-green);
  border-radius: 7px;
  transform: rotate(45deg);
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: 5px;
  background: var(--c-green);
  border-radius: 2px;
}

.brand-id {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.brand-name {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--c-text-light);
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.26em;
  color: rgba(255, 255, 255, 0.45);
}

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

/* ---------- 8. Navigation ---------- */
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

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

.nav-list a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav-list a:hover {
  background: rgba(0, 255, 156, 0.12);
  color: var(--c-green);
}

.nav-list a:active {
  transform: scale(0.97);
}

.nav-list a[aria-current="page"] {
  background: var(--c-green);
  color: #071428;
  box-shadow: 0 2px 14px rgba(0, 255, 156, 0.35);
}

.nav-list a[aria-current="page"] .nav-num {
  color: #071428;
}

.nav-list a.is-spied:not([aria-current="page"]) {
  color: var(--c-orange);
}

.nav-list a.is-spied:not([aria-current="page"]) .nav-num {
  color: var(--c-orange);
}

.nav-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: rgba(0, 255, 156, 0.75);
}

/* Nav toggle —— mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  transition: border-color 0.25s var(--ease), transform 0.15s var(--ease);
}

.nav-toggle:hover {
  border-color: rgba(0,255,156,0.5);
}

.nav-toggle:active {
  transform: scale(0.96);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) 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(-6px) rotate(-45deg);
}

/* ---------- 9. Service Ball ---------- */
.service-ball {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: var(--c-green);
  color: #071428;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0, 255, 156, 0.3);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.service-ball:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 255, 156, 0.45);
  color: #071428;
}

.service-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #071428;
}

.service-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(7, 20, 40, 0.4);
  animation: service-pulse 2s ease-out infinite;
}

@keyframes service-pulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  80%, 100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.service-text {
  white-space: nowrap;
}

/* ---------- 10. Footer ---------- */
.site-footer {
  position: relative;
  margin-top: 96px;
  background: var(--grad-primary);
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 156, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 156, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-green), var(--c-green) 30%, var(--c-orange) 55%, transparent 75%);
  opacity: 0.55;
  z-index: 1;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px 48px;
  padding: 72px 0 48px;
}

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

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 40px;
  }
}

.footer-brand {
  max-width: 380px;
}

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

.footer-brand .brand-name {
  font-size: 20px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.62);
}

.footer-trust {
  margin-top: 14px;
  padding-left: 14px;
  border-left: 2px solid var(--c-green);
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.45);
}

.btn-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--c-green);
  color: #071428;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
}

.btn-footer:hover {
  color: #071428;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 255, 156, 0.4);
}

.footer-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--c-green);
  margin-bottom: 18px;
  padding-bottom: 10px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 2px;
  background: var(--c-orange);
}

.footer-contact .footer-title {
  color: var(--c-orange);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.footer-links a:hover {
  color: var(--c-green);
  transform: translateX(4px);
}

.footer-meta {
  display: block;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--c-green);
}

.footer-sep {
  color: rgba(255, 255, 255, 0.22);
}

.footer-icp {
  color: rgba(255, 255, 255, 0.4);
}

.footer-coord {
  position: absolute;
  right: -8px;
  bottom: 6px;
  z-index: 0;
  font-family: var(--font-mono);
  font-size: clamp(30px, 5.5vw, 58px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ---------- 11. Image Frames ---------- */
.img-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: var(--ratio, 16 / 10);
  background: var(--grad-primary);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.img-frame:hover img {
  transform: scale(1.04);
}

.img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
  pointer-events: none;
}

.img-frame--wide {
  --ratio: 21 / 9;
}

.img-frame--tall {
  --ratio: 3 / 4;
}

.img-frame--round {
  border-radius: 100%;
}

.img-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-light);
  background: rgba(10, 29, 58, 0.78);
  border: 1px solid rgba(0, 255, 156, 0.3);
  border-radius: 999px;
  padding: 5px 12px;
}

/* ---------- 12. Map / Print Reusable Components ---------- */
.coord-index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(10, 29, 58, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.coord-index b {
  color: var(--c-green);
  font-weight: 700;
}

.coord-index--inverse {
  background: var(--c-light);
  border-color: var(--c-border);
  color: var(--c-text-dark);
}

.coord-index--inverse b {
  color: var(--c-orange);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-orange);
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: currentColor;
}

.legend-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-dark);
}

.legend-tag::before {
  content: '';
  width: 9px;
  height: 9px;
  background: var(--c-green);
  border-radius: 2px;
}

.legend-tag--orange::before {
  background: var(--c-orange);
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  background: rgba(255, 106, 0, 0.12);
  color: var(--c-orange);
  border: 1px solid rgba(255, 106, 0, 0.35);
}

.tag-chip--green {
  background: rgba(0, 255, 156, 0.12);
  color: var(--c-green);
  border-color: rgba(0, 255, 156, 0.35);
}

.stat-num {
  font-family: var(--font-mono);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-text-dark);
}

.stat-num em {
  font-style: normal;
  color: var(--c-green);
}

.print-card {
  position: relative;
  background: var(--c-light);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 32px;
}

.print-card::before,
.print-card::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--c-green);
  border-style: solid;
}

.print-card::before {
  top: -1px;
  left: -1px;
  border-width: 3px 0 0 3px;
  border-top-left-radius: var(--radius-md);
}

.print-card::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 3px 3px 0;
  border-bottom-right-radius: var(--radius-md);
}

.diag-accent {
  position: relative;
}

.diag-accent::before {
  content: '';
  position: absolute;
  top: 0;
  right: 6%;
  width: 90px;
  height: 100%;
  background: linear-gradient(135deg, transparent 34%, rgba(0, 255, 156, 0.10) 46%, rgba(255, 106, 0, 0.06) 56%, transparent 66%);
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 0;
}

.page-pad-top {
  padding-top: calc(var(--header-h) + var(--header-offset) + 28px);
}

/* ---------- 13. Reveal Motion ---------- */
.js-animate [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

/* ---------- 14. Header / Nav Responsive ---------- */
@media (max-width: 1120px) {
  .nav-list a {
    padding: 8px 11px;
    font-size: 13px;
  }

  .brand-sub {
    display: none;
  }
}

@media (max-width: 960px) {
  .nav-num {
    display: none;
  }

  .service-text {
    display: none;
  }

  .service-ball {
    width: 42px;
    padding: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .header-inner {
    padding: 6px 6px 6px 14px;
  }

  .site-nav {
    margin-left: 0;
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10, 29, 58, 0.97);
    border: 1px solid rgba(0, 255, 156, 0.22);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .site-nav[data-open] {
    display: flex;
  }

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

  .nav-list a {
    display: flex;
    align-items: center;
    padding: 13px 16px;
    font-size: 16px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
  }

  .nav-list a[aria-current="page"] {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  }

  .nav-toggle {
    display: flex;
  }

  .site-footer {
    margin-top: 64px;
  }

  .footer-grid {
    padding-bottom: 36px;
  }
}

/* ---------- 15. 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-animate [data-reveal],
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
