/* ==========================================================================
   熊猫体育入口 · /assets/site.css
   共享外壳：reset / 变量 / 中文排版 / 头部 / 页脚 / 通用组件
   ========================================================================== */

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

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

body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li, figure, figcaption, blockquote, dl, dd, address {
  margin: 0;
}

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

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

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

a { color: inherit; text-decoration: none; }

table { border-collapse: collapse; border-spacing: 0; }

/* ---------- 变量 ---------- */
:root {
  --night: #0B1026;
  --panel: #141B36;
  --line: #232C4D;
  --line-strong: #3A4670;
  --white: #F5F7FA;
  --ink: #0A0C12;
  --epl: #7B5CFF;
  --laliga: #FF6A3D;
  --seriea: #2E9BFF;
  --bundes: #E23A4E;
  --lime: #C8FF3D;
  --muted: #9AA6C4;

  --font-head: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", system-ui, sans-serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", "Roboto Mono", ui-monospace, monospace;

  --shell: 1320px;
  --gutter: clamp(16px, 4vw, 40px);
  --gap: clamp(16px, 2vw, 28px);

  --shadow-hard: 8px 8px 0 rgba(10, 12, 18, .85);
  --shadow-soft: 4px 4px 0 rgba(10, 12, 18, .85);

  --ease: cubic-bezier(.2, .7, .3, 1);
  --dur: 220ms;
}

/* ---------- 基础排版（中文） ---------- */
body {
  min-height: 100vh;
  background-color: var(--night);
  background-image:
    linear-gradient(rgba(35, 44, 77, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 44, 77, .22) 1px, transparent 1px);
  background-size: 96px 96px, 96px 96px;
  background-attachment: fixed;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.005em;
  text-wrap: balance;
}

h1 { font-size: clamp(34px, 5vw, 56px); }
h2 { font-size: clamp(26px, 3.2vw, 34px); }
h3 { font-size: clamp(20px, 2.2vw, 22px); }

p { text-wrap: pretty; }

strong, b { font-weight: 800; }

::selection { background: var(--lime); color: var(--ink); }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

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

#main-content { display: block; }

/* ---------- 工具类 ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(48px, 7vw, 96px); }
.section--tight { padding-block: clamp(28px, 4vw, 52px); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--muted);
}

.lead {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.8;
  color: #D8DEEE;
  max-width: 62ch;
}

.data-num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}

.note-plate {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  border-left: 2px solid var(--line);
  padding-left: 10px;
  max-width: 40ch;
}

.v-note {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--muted);
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gap);
}

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

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

/* ---------- 区块标题三件套 ---------- */
.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(24px, 3vw, 40px);
}

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

.section-head__index {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 3px 8px;
}

.section-head h2 { max-width: 24ch; }

@media (min-width: 900px) {
  .section-head--split {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: end;
  }
  .section-head--split .note-plate { justify-self: end; }
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 2px solid var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.btn--primary {
  background: var(--white);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--epl);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  box-shadow: 4px 4px 0 var(--line);
}

.btn--lime {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--epl);
}

.btn--ghost:hover { box-shadow: 6px 6px 0 var(--line-strong); }
.btn--lime:hover { box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(0, 0); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
  align-items: center;
}

/* ---------- 面包屑 ---------- */
.breadcrumb { padding-block: 16px; }

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--muted);
}

.breadcrumb__list li { display: flex; align-items: center; gap: 8px; }

.breadcrumb__list li + li::before {
  content: "/";
  color: var(--line-strong);
}

.breadcrumb__link:hover { color: var(--white); }
.breadcrumb__list [aria-current="page"] { color: var(--white); }

/* ---------- 卡片 / 面板 / 标签 ---------- */
.panel {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: clamp(16px, 2vw, 24px);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.panel:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.league-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  padding: 3px 8px;
  border: 1px solid currentColor;
}

.league-tag--epl { color: var(--epl); }
.league-tag--laliga { color: var(--laliga); }
.league-tag--seriea { color: var(--seriea); }
.league-tag--bundes { color: var(--bundes); }

/* ---------- 表格 ---------- */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--panel);
}

.data-table {
  width: 100%;
  min-width: 560px;
  font-size: 14px;
}

.data-table th {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--muted);
  text-align: left;
  white-space: nowrap;
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 12, 18, .5);
}

.data-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.data-table tbody tr:hover { background: rgba(200, 255, 61, .05); }

.data-table td:first-child,
.data-table .data-num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}

/* ---------- 分段切换（tabs） ---------- */
.tabs { display: block; }

.tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.tabs__tab {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--muted);
  padding: 10px 14px;
  border: 1px solid transparent;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.tabs__tab:hover { color: var(--white); }

.tabs__tab[aria-selected="true"],
.tabs__tab.is-active {
  color: var(--white);
  background: var(--panel);
  border-color: var(--line);
  border-bottom-color: var(--lime);
}

.tabs__panel { padding-top: clamp(18px, 2.4vw, 28px); }
.tabs__panel[hidden],
[data-tab-panel][hidden] { display: none; }

/* ---------- 图片容器 ---------- */
.img-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 2px solid var(--line);
  background-color: var(--panel);
  background-image: repeating-linear-gradient(135deg,
      rgba(245, 247, 250, .035) 0 12px,
      transparent 12px 24px);
  box-shadow: var(--shadow-soft);
}

.img-frame > img,
.img-frame > svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-frame--wide { aspect-ratio: 21 / 9; }
.img-frame--square { aspect-ratio: 1 / 1; }
.img-frame--portrait { aspect-ratio: 3 / 4; }

.img-frame__tag {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ink);
  background: var(--lime);
  padding: 4px 8px;
}

.img-frame__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--white);
  background: rgba(10, 12, 18, .86);
  border-top: 1px solid var(--line);
  padding: 8px 12px;
}

/* ---------- 联赛导轨（可选） ---------- */
.league-rail {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 70;
  width: 8px;
  display: none;
  flex-direction: column;
  pointer-events: none;
}

.league-rail__seg {
  flex: 1 1 0;
  opacity: .28;
  transition: opacity var(--dur) var(--ease);
}

.league-rail__seg--epl { background: var(--epl); }
.league-rail__seg--laliga { background: var(--laliga); }
.league-rail__seg--seriea { background: var(--seriea); }
.league-rail__seg--bundes { background: var(--bundes); }

.league-rail[data-league="epl"] .league-rail__seg--epl,
.league-rail[data-league="laliga"] .league-rail__seg--laliga,
.league-rail[data-league="seriea"] .league-rail__seg--seriea,
.league-rail[data-league="bundes"] .league-rail__seg--bundes { opacity: 1; }

@media (min-width: 1100px) { .league-rail { display: flex; } }

/* ---------- 滚动进度（JS 注入） ---------- */
.scroll-progress {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 90;
  width: 0;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg,
      var(--epl) 0 25%,
      var(--laliga) 25% 50%,
      var(--seriea) 50% 75%,
      var(--bundes) 75% 100%);
}

/* ---------- 滚动淡入 ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

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

/* ---------- 跳转链接 ---------- */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 120;
  transform: translateY(-180%);
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 16px;
  border: 2px solid var(--ink);
  transition: transform var(--dur) var(--ease);
}

.skip-link:focus { transform: translateY(0); }

/* ==========================================================================
   头部
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--night);
  border-bottom: 1px solid var(--line);
}

.site-header[data-scrolled] {
  border-bottom-color: var(--line-strong);
  box-shadow: 0 12px 24px -18px rgba(10, 12, 18, .95);
}

.league-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 8px;
}

.league-band__seg { display: block; }
.league-band__seg--epl { background: var(--epl); }
.league-band__seg--laliga { background: var(--laliga); }
.league-band__seg--seriea { background: var(--seriea); }
.league-band__seg--bundes { background: var(--bundes); }

.header-frame { position: relative; }

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 36px);
  width: 100%;
  max-width: var(--shell);
  min-height: 74px;
  margin-inline: auto;
  padding: 10px var(--gutter);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark__glyph {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--white);
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 3px 3px 0 var(--epl);
}

.brand-mark__glyph::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  width: 8px;
  height: 8px;
  background: var(--lime);
}

.brand-mark__text { display: block; }

.brand-mark__name {
  display: block;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.2;
  color: var(--white);
}

.brand-mark__tag {
  display: block;
  margin-top: 3px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--muted);
}

.primary-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(2px, .8vw, 10px);
  counter-reset: nav-i;
}

.primary-nav__item { display: flex; }

.primary-nav__link {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 10px 9px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.primary-nav__link::before {
  counter-increment: nav-i;
  content: "0" counter(nav-i);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--line-strong);
}

.primary-nav__link:hover {
  color: var(--white);
  border-bottom-color: var(--line-strong);
}

.primary-nav__link[aria-current="page"] {
  color: var(--white);
  border-bottom-color: var(--epl);
}

.primary-nav__link[aria-current="page"]::before { color: var(--lime); }

.header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.window-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--white);
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 7px 10px;
  white-space: nowrap;
}

.window-badge__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(200, 255, 61, .18);
}

@media (prefers-reduced-motion: no-preference) {
  .window-badge__dot { animation: badgePulse 2.6s var(--ease) infinite; }
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

.header-cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--line);
  background: var(--panel);
  color: var(--white);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.nav-toggle:hover { border-color: var(--white); }

.nav-toggle__bars {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: background-color var(--dur) var(--ease);
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform var(--dur) var(--ease);
}

.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1180px) {
  .window-badge { display: none; }
}

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

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 6px var(--gutter) 20px;
    background: var(--night);
    border-bottom: 2px solid var(--line);
    box-shadow: var(--shadow-hard);
  }

  .primary-nav[data-open] { display: block; }

  .primary-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .primary-nav__item { width: 100%; }

  .primary-nav__link {
    width: 100%;
    justify-content: flex-start;
    padding: 15px 2px;
    font-size: 17px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav__link::before { font-size: 12px; }
  .primary-nav__link[aria-current="page"] { border-bottom-color: var(--line); background: var(--panel); }
}

@media (max-width: 620px) {
  .header-cta { display: none; }
  .brand-mark__tag { display: none; }
  .header-inner { min-height: 64px; }
  .brand-mark__glyph { width: 36px; height: 36px; font-size: 16px; }
}

/* ==========================================================================
   页脚
   ========================================================================== */
.site-footer {
  position: relative;
  background: var(--ink);
  border-top: 2px solid var(--line);
  color: var(--white);
}

.footer-top {
  display: grid;
  gap: clamp(28px, 4vw, 64px);
  padding-top: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(24px, 3vw, 40px);
}

@media (min-width: 900px) {
  .footer-top { grid-template-columns: minmax(260px, 1fr) minmax(0, 2fr); }
}

.footer-brand__name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .02em;
}

.footer-brand__tag {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--muted);
}

.footer-brand__note {
  margin-top: 16px;
  max-width: 34ch;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.footer-brand__index {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 4px 8px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(20px, 3vw, 36px);
}

.footer-col__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--white);
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.footer-col__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--muted);
}

.footer-col__list { display: grid; gap: 9px; }

.footer-col__link {
  display: inline-block;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.footer-col__link:hover {
  color: var(--white);
  border-bottom-color: var(--line-strong);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--muted);
  padding-bottom: clamp(20px, 3vw, 32px);
  border-bottom: 1px solid var(--line);
}

.footer-contact__label {
  color: var(--white);
  font-weight: 500;
  letter-spacing: .12em;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  padding-top: 18px;
  padding-bottom: clamp(24px, 3vw, 36px);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--muted);
}

.footer-index { color: var(--muted); }
.footer-index [data-year] { color: var(--white); }

.foot-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 6px;
}

.foot-band__seg { display: block; }
.foot-band__seg--epl { background: var(--epl); }
.foot-band__seg--laliga { background: var(--laliga); }
.foot-band__seg--seriea { background: var(--seriea); }
.foot-band__seg--bundes { background: var(--bundes); }

/* ==========================================================================
   降级：减少动态
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

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

  .btn:hover,
  .panel:hover { transform: none; }
}
