/* ==========================================================================
   飞亚体育赛事 · 全站共享样式表  /assets/site.css
   深空蓝基底 + 荧光青数据高亮 + 红黄牌事件色，锐利直角与精密网格
   ========================================================================== */

/* ---------- 1. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
img, svg, video { display: block; max-width: 100%; }
table { border-collapse: collapse; width: 100%; }
input, select, textarea { font: inherit; color: inherit; }

/* ---------- 2. Design tokens ---------- */
:root {
  --c-deep:      #0B1E3A;
  --c-abyss:     #06132A;
  --c-mid:       #0E2A4A;
  --c-cyan:      #00E5FF;
  --c-ice:       #E6F2FF;
  --c-steel:     #8FA5BC;
  --c-red:       #FF4D2E;
  --c-amber:     #FFB020;
  --c-teal:      #128FA8;

  --line:        rgba(143, 165, 188, 0.22);
  --line-soft:   rgba(143, 165, 188, 0.16);
  --line-cyan:   rgba(0, 229, 255, 0.40);

  --ff-display: "HarmonyOS Sans SC", "Source Han Sans SC", "PingFang SC", system-ui, -apple-system, "Microsoft YaHei", sans-serif;
  --ff-body:    "PingFang SC", "Noto Sans SC", system-ui, -apple-system, "Microsoft YaHei", sans-serif;
  --ff-mono:    "JetBrains Mono", "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --dur:  200ms;
  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);

  --header-h: 76px;
}

/* ---------- 3. Base ---------- */
body {
  min-height: 100vh;
  background-color: var(--c-deep);
  background-image:
    linear-gradient(rgba(143, 165, 188, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 165, 188, 0.055) 1px, transparent 1px);
  background-size: 80px 80px;
  color: var(--c-ice);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-ice);
  text-wrap: balance;
}
p { text-wrap: pretty; }
strong { color: var(--c-ice); font-weight: 700; }
hr { border: 0; border-top: 0.5px solid var(--line); margin: 2rem 0; }

:focus-visible {
  outline: 2px solid var(--c-cyan);
  outline-offset: 3px;
}

::selection { background: rgba(0, 229, 255, 0.28); color: #fff; }

/* ---------- 4. Layout primitives ---------- */
.shell {
  width: calc(100% - 2 * clamp(1rem, 3vw, 3rem));
  max-width: 1440px;
  margin-inline: auto;
}

.section { padding-block: clamp(2.5rem, 6vw, 5rem); }
.section--tight { padding-block: clamp(1.5rem, 4vw, 3rem); }

.grid { display: grid; gap: clamp(1rem, 2.6vw, 2rem); }
.grid--12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.grid--7-5 { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.grid--8-4 { grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); }
.grid--4-4-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }

/* ---------- 5. Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: var(--c-cyan);
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--c-cyan);
  flex: 0 0 auto;
}

.display {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--c-ice);
}
.h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
}
.lede {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  color: var(--c-steel);
  max-width: 62ch;
}
.data-num {
  font-family: var(--ff-mono);
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--c-ice);
}
.text-cyan { color: var(--c-cyan); }
.text-steel { color: var(--c-steel); }

.ticks {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: var(--c-steel);
}
.ticks::before {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 0.5px solid var(--c-cyan);
  border-top: 0.5px solid var(--c-cyan);
  flex: 0 0 auto;
}

.diag-rule {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.55), rgba(0, 229, 255, 0));
  transform: rotate(-2deg);
  transform-origin: left center;
  margin: 0;
}

/* ---------- 6. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--ff-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  border: 0.5px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--c-cyan); color: var(--c-abyss); }
.btn--primary:hover { background: #5AF0FF; }
.btn--ghost { border-color: var(--line-cyan); color: var(--c-ice); }
.btn--ghost:hover { border-color: var(--c-cyan); color: var(--c-cyan); }
.btn--quiet { border-color: var(--line); color: var(--c-steel); }
.btn--quiet:hover { border-color: var(--line-cyan); color: var(--c-ice); }

/* ---------- 7. Breadcrumb ---------- */
.crumb { padding-block: 0.9rem; border-bottom: 0.5px solid var(--line-soft); }
.crumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--c-steel);
}
.crumb-list li { display: inline-flex; align-items: center; gap: 0.5rem; }
.crumb-list li + li::before { content: "/"; color: rgba(143, 165, 188, 0.5); }
.crumb-list a { color: var(--c-steel); transition: color var(--dur) var(--ease); }
.crumb-list a:hover { color: var(--c-cyan); }
.crumb-list [aria-current="page"] { color: var(--c-ice); }

/* ---------- 8. Panels / badges / frames ---------- */
.panel {
  position: relative;
  background: var(--c-mid);
  border: 0.5px solid var(--line);
  padding: clamp(1rem, 2.2vw, 1.75rem);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease),
              background var(--dur) var(--ease);
}
.panel:hover {
  transform: translateY(-3px);
  border-color: var(--line-cyan);
}
.panel--flush { padding: 0; }
.panel--abyss { background: var(--c-abyss); }

.frame {
  position: relative;
  border: 0.5px solid var(--line);
}
.frame::before,
.frame::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
}
.frame::before {
  left: -1px; top: -1px;
  border-left: 2px solid var(--c-cyan);
  border-top: 2px solid var(--c-cyan);
}
.frame::after {
  right: -1px; bottom: -1px;
  border-right: 2px solid var(--c-cyan);
  border-bottom: 2px solid var(--c-cyan);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: 0.5px solid var(--line);
  color: var(--c-steel);
}
.badge--red { border-color: rgba(255, 77, 46, 0.5); color: var(--c-red); background: rgba(255, 77, 46, 0.08); }
.badge--amber { border-color: rgba(255, 176, 32, 0.5); color: var(--c-amber); background: rgba(255, 176, 32, 0.08); }
.badge--cyan { border-color: var(--line-cyan); color: var(--c-cyan); background: rgba(0, 229, 255, 0.08); }

/* ---------- 9. Media containers ---------- */
.media {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--c-mid);
  border: 0.5px solid var(--line);
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}
.media--plain::after { display: none; }
.media--16x9 { aspect-ratio: 16 / 9; }
.media--4x3  { aspect-ratio: 4 / 3; }
.media--1x1  { aspect-ratio: 1 / 1; }
.media--21x9 { aspect-ratio: 21 / 9; }
.media--3x4  { aspect-ratio: 3 / 4; }
.media-caption {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--c-steel);
}

/* ---------- 10. Prose ---------- */
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-top: 2em; }
.prose h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); margin-top: 1.6em; }
.prose p, .prose li { color: #C9D9EA; }
.prose ul li {
  position: relative;
  padding-left: 1.1rem;
  margin-top: 0.5em;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 6px;
  height: 1px;
  background: var(--c-cyan);
}
.prose a {
  color: var(--c-cyan);
  border-bottom: 1px solid rgba(0, 229, 255, 0.35);
}
.prose a:hover { border-bottom-color: var(--c-cyan); }

/* ---------- 11. Skip link ---------- */
.skip-link {
  position: fixed;
  left: 1rem;
  top: -120px;
  z-index: 200;
  padding: 0.7rem 1.1rem;
  background: var(--c-cyan);
  color: var(--c-abyss);
  font-family: var(--ff-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 1rem;
  outline: 2px solid var(--c-ice);
  outline-offset: 2px;
}

/* ---------- 12. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 30, 58, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid var(--line);
  transition: background var(--dur) var(--ease);
}
.site-header[data-scrolled] { background: rgba(6, 19, 42, 0.96); }

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 3vw, 2rem);
  height: var(--header-h);
}

/* brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
  min-width: 0;
}
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-cyan);
  background: rgba(0, 229, 255, 0.08);
  border: 0.5px solid var(--line-cyan);
}
.brand-mark-bar {
  position: absolute;
  left: -1px;
  top: -1px;
  width: 12px;
  height: 2px;
  background: var(--c-cyan);
}
.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-name {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--c-ice);
  white-space: nowrap;
}
.brand-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.15rem;
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--c-steel);
  white-space: nowrap;
}
.brand-dot {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  background: var(--c-cyan);
  box-shadow: 0 0 6px var(--c-cyan);
}

/* toggle */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.7rem;
  border: 0.5px solid var(--line);
  color: var(--c-ice);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav-toggle:hover { border-color: var(--line-cyan); color: var(--c-cyan); }
.nav-toggle-label {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.nav-toggle-icon { display: grid; gap: 3px; width: 18px; }
.nav-toggle-icon i {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon i:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon i:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }

/* nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.6vw, 1.4rem);
  min-width: 0;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 1.3vw, 1.3rem);
}
.nav-item { position: relative; }
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.35rem 0.1rem 0.55rem;
  font-family: var(--ff-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--c-steel);
  white-space: nowrap;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6px;
  height: 2px;
  background: var(--c-cyan);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.7);
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nav-link:hover { color: var(--c-ice); transform: translateY(-2px); }
.nav-link:hover::after { opacity: 1; transform: translateX(0); }
.nav-link[aria-current="page"] { color: var(--c-ice); }
.nav-link[aria-current="page"]::after { opacity: 1; transform: translateX(0); }
.nav-index {
  font-family: var(--ff-mono);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--c-steel);
  opacity: 0.7;
  transition: color var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-link:hover .nav-index,
.nav-link[aria-current="page"] .nav-index { color: var(--c-cyan); opacity: 1; }

.nav-foot { display: none; }

/* progress rail */
.header-track {
  position: relative;
  height: 2px;
  overflow: hidden;
}
.header-track-base {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0) 0%, rgba(0, 229, 255, 0.18) 12%,
              rgba(0, 229, 255, 0.18) 88%, rgba(0, 229, 255, 0) 100%);
}
.header-track-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--c-teal), var(--c-cyan));
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.55);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 120ms linear;
}

/* ---------- 13. Footer ---------- */
.site-footer {
  position: relative;
  margin-top: clamp(3rem, 8vw, 7rem);
  background: var(--c-abyss);
  border-top: 0.5px solid var(--line);
  color: var(--c-steel);
  font-size: 0.9375rem;
}
.footer-shell { padding-block: clamp(2.25rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.25rem); }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 4fr) minmax(0, 3fr);
  gap: clamp(1.5rem, 4vw, 4rem);
}
.footer-col { min-width: 0; }

.footer-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--c-ice);
  border-bottom: 0.5px solid var(--line-soft);
}
.footer-title::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--c-cyan);
}

.footer-copy {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--c-steel);
  max-width: 36ch;
}
.footer-tag {
  margin-top: 1rem;
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: var(--c-cyan);
  opacity: 0.85;
}

.footer-list li { margin-bottom: 0.55rem; word-break: break-word; }
.footer-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-steel);
  transition: color var(--dur) var(--ease);
}
.footer-list a::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--c-cyan);
  transition: width var(--dur) var(--ease);
}
.footer-list a:hover { color: var(--c-ice); }
.footer-list a:hover::before { width: 12px; }
.footer-list--contact li {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--c-steel);
}

.footer-ridge {
  height: clamp(48px, 7vw, 96px);
  margin-top: clamp(1.5rem, 4vw, 3rem);
}
.footer-ridge svg { width: 100%; height: 100%; }
.footer-ridge polyline {
  fill: none;
  stroke: rgba(0, 229, 255, 0.22);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  stroke-linejoin: round;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-top: 1.25rem;
}
.footer-copy-sm {
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--c-steel);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.8125rem;
}
.footer-legal a {
  color: var(--c-steel);
  transition: color var(--dur) var(--ease);
}
.footer-legal a:hover { color: var(--c-ice); }

/* ---------- 14. Reveal ---------- */
[data-reveal] {
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
}
html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- 15. Responsive ---------- */
@media (max-width: 1000px) {
  :root { --header-h: 64px; }

  html[data-nav-open] { overflow: hidden; }

  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: fixed;
    top: calc(var(--header-h) + 2px);
    right: 0;
    bottom: 0;
    z-index: 55;
    width: min(360px, 86vw);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem clamp(1.2rem, 5vw, 2rem) 2rem;
    background: linear-gradient(180deg, var(--c-abyss), var(--c-deep));
    border-left: 0.5px solid var(--line-cyan);
    transform: translateX(102%);
    visibility: hidden;
    overflow-y: auto;
    transition: transform 260ms var(--ease), visibility 260ms var(--ease);
  }
  .site-nav[data-open] {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-item { border-bottom: 0.5px solid var(--line-soft); }
  .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
  .nav-link:hover { transform: none; }
  .nav-link::after {
    left: 0;
    bottom: -1px;
    width: 36px;
    transform: none;
    opacity: 0;
  }
  .nav-link:hover::after,
  .nav-link[aria-current="page"]::after { opacity: 1; }

  .nav-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 0.5px solid var(--line-soft);
    font-family: var(--ff-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    color: var(--c-steel);
  }
  .nav-foot-link { color: var(--c-cyan); }

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

  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .footer-col--brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .grid--4-4-4 { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .brand-mark { width: 38px; height: 38px; font-size: 0.6875rem; }
  .brand-name { font-size: 0.9375rem; }
  .brand-meta { font-size: 0.625rem; letter-spacing: 0.05em; }
  .nav-toggle-label { display: none; }
}

/* ---------- 16. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html.js [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .btn:hover,
  .panel:hover { transform: none; }
  .nav-link:hover { transform: none; }
}
