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

/* ---------- 1. Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background-color: #0B1F1A;
  background-image:
    radial-gradient(120% 80% at 88% -12%, rgba(43, 227, 160, .10), transparent 56%),
    radial-gradient(100% 62% at 2% 0%, rgba(31, 111, 92, .20), transparent 62%);
  background-attachment: fixed;
  color: #F4EFE4;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans SC", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: .01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

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

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

h1, h2, h3, h4, h5, p, figure { margin: 0; }

table { border-collapse: collapse; width: 100%; }

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

::selection {
  background: #2BE3A0;
  color: #0B1F1A;
}

/* ---------- 2. 变量 ---------- */
:root {
  --ink: #0B1F1A;
  --carbon: #111417;
  --panel: #163B31;
  --paper: #F4EFE4;
  --neon: #2BE3A0;
  --amber: #FFB347;
  --mist: #8FA69C;
  --teal: #1F6F5C;
  --loud: #A9FFE0;
  --err: #E06C75;

  --line: rgba(143, 166, 156, .22);
  --line-strong: rgba(143, 166, 156, .42);
  --paper-line: rgba(11, 31, 26, .14);

  --font-display: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans SC", system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, "Liberation Mono", "Courier New", monospace;

  --container: 1240px;
  --gutter: clamp(1.125rem, 4vw, 3.5rem);

  --radius-lg: 30px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --ease-soft: cubic-bezier(.22, .61, .36, 1);
  --shadow-float: 0 26px 56px rgba(0, 0, 0, .46);
}

/* ---------- 3. 排版基础 ---------- */
.page-title {
  font-size: clamp(2.1rem, 6.4vw, 4.35rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.display-xl {
  font-size: clamp(2.6rem, 9vw, 6.4rem);
  font-weight: 300;
  line-height: .96;
  letter-spacing: -.045em;
}

h2 { font-weight: 400; letter-spacing: -.02em; }

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

.index-tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--neon);
}

.index-tag::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
}

/* ---------- 4. 布局容器 ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(2.75rem, 7vw, 5.5rem); }
.section--tight { padding-block: clamp(1.75rem, 4vw, 3rem); }

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

.grid { display: grid; gap: clamp(1rem, 3vw, 2rem); }
.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)); }
.grid--asym { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
.grid--asym-rev { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }

/* ---------- 5. 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .6rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .015em;
  line-height: 1.4;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color .22s var(--ease-soft), color .22s var(--ease-soft),
              border-color .22s var(--ease-soft), transform .18s var(--ease-soft);
}

.btn:active { transform: translateY(1px); }

.btn--amber {
  background: var(--amber);
  color: #20150A;
  border-color: var(--amber);
}
.btn--amber:hover { background: #FFC86B; border-color: #FFC86B; }

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--neon); color: var(--loud); }

.btn--neon {
  background: var(--neon);
  color: var(--ink);
  border-color: var(--neon);
}
.btn--neon:hover { background: var(--loud); border-color: var(--loud); }

.btn--lg { padding: .85rem 1.5rem; font-size: .95rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  color: var(--neon);
}
.link-arrow::after {
  content: "→";
  transition: transform .22s var(--ease-soft);
}
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- 6. 跳转链接 ---------- */
.skip-link {
  position: fixed;
  left: 14px;
  top: -120px;
  z-index: 300;
  padding: .6rem 1.05rem;
  border-radius: var(--radius-pill);
  background: var(--neon);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 500;
  transition: top .22s var(--ease-soft);
}
.skip-link:focus { top: 14px; }

/* ---------- 7. 页头 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--carbon);
  border-bottom: 1px solid var(--line);
}

.header-topbar {
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  max-height: 70px;
  transition: max-height .38s var(--ease-soft), opacity .28s var(--ease-soft);
}

.site-header[data-scrolled="true"] .header-topbar {
  max-height: 0;
  opacity: 0;
}

.header-topbar__inner {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding-block: .5rem;
  font-size: .77rem;
  letter-spacing: .05em;
}

.brand-line {
  color: var(--neon);
  font-weight: 500;
  white-space: nowrap;
  flex: 0 0 auto;
}

.context-line {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--mist);
}

.context-line__dot {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: gw-pulse 2.6s ease-in-out infinite;
}

@keyframes gw-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 179, 71, .55); }
  55% { box-shadow: 0 0 0 7px rgba(255, 179, 71, 0); }
}

.topbar-link {
  flex: 0 0 auto;
  margin-left: auto;
  color: var(--loud);
  border-bottom: 1px solid rgba(169, 255, 224, .38);
  padding-bottom: 1px;
  white-space: nowrap;
}
.topbar-link:hover { color: #fff; border-bottom-color: var(--neon); }

.header-main { position: relative; }

.header-main__inner {
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 2vw, 1.75rem);
  padding-block: .8rem;
  min-height: 68px;
}

/* 品牌 */
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex: 0 0 auto;
}

.brand__rule {
  display: block;
  width: 4px;
  height: 34px;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--neon), var(--teal));
  transform: skewX(-13deg);
  transition: height .3s var(--ease-soft);
}

.brand__text { display: flex; flex-direction: column; line-height: 1.05; }

.brand__name {
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -.02em;
}

.brand__sub {
  margin-top: 3px;
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .3em;
  color: var(--mist);
}

/* 主导航 */
.primary-nav { margin-left: auto; }

.nav-list {
  display: flex;
  align-items: center;
  gap: .1rem;
  counter-reset: nav;
}

.nav-item { counter-increment: nav; }

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: .42rem;
  padding: .48rem .78rem;
  border-radius: var(--radius-pill);
  font-size: .88rem;
  color: rgba(244, 239, 228, .8);
  transition: background-color .2s var(--ease-soft), color .2s var(--ease-soft);
}

.nav-link::before {
  content: counter(nav, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .04em;
  color: var(--mist);
  transition: color .2s var(--ease-soft);
}

.nav-link:hover {
  background: rgba(43, 227, 160, .09);
  color: var(--paper);
}
.nav-link:hover::before { color: var(--neon); }

.nav-link[aria-current="page"] {
  background: var(--neon);
  color: var(--ink);
  font-weight: 500;
}
.nav-link[aria-current="page"]::before { color: rgba(11, 31, 26, .62); }

.nav-drawer-extra { display: none; }

/* 头部行动区 */
.header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex: 0 0 auto;
}

/* 移动端开关 */
.nav-toggle {
  display: none;
  align-items: center;
  gap: .5rem;
  padding: .48rem .82rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--paper);
  flex: 0 0 auto;
  transition: border-color .2s var(--ease-soft);
}
.nav-toggle:hover { border-color: var(--neon); }

.nav-toggle__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 18px;
  height: 14px;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .26s var(--ease-soft), opacity .2s var(--ease-soft);
}

.site-header[data-nav-open="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.site-header[data-nav-open="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.site-header[data-nav-open="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--neon), var(--amber));
  transition: width .12s linear;
}

/* ---------- 8. 页脚 ---------- */
.site-footer {
  position: relative;
  margin-top: clamp(3rem, 8vw, 7rem);
  background: var(--carbon);
  border-top: 1px solid var(--line);
}

.footer-stripe {
  height: 6px;
  background: repeating-linear-gradient(
    112deg,
    var(--neon) 0 20px,
    transparent 20px 38px,
    var(--teal) 38px 50px,
    transparent 50px 68px
  );
  opacity: .5;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.9fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.footer-brand {
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -.025em;
}

.footer-note {
  margin-top: .85rem;
  max-width: 34ch;
  font-size: .87rem;
  line-height: 1.85;
  color: var(--mist);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 1.4rem;
  padding: .58rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 179, 71, .42);
  background: rgba(255, 179, 71, .1);
  color: var(--amber);
  font-size: .82rem;
  transition: background-color .22s var(--ease-soft), color .22s var(--ease-soft);
}
.footer-cta:hover { background: var(--amber); color: #20150A; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-col__title {
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: .69rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mist);
}

.footer-link {
  display: inline-block;
  padding: .3rem 0;
  font-size: .89rem;
  color: rgba(244, 239, 228, .78);
  transition: color .2s var(--ease-soft), transform .2s var(--ease-soft);
}
.footer-link:hover { color: var(--neon); transform: translateX(3px); }

.footer-contact-list li {
  display: flex;
  gap: .7rem;
  padding: .32rem 0;
  font-size: .84rem;
  line-height: 1.7;
  color: rgba(244, 239, 228, .76);
}

.footer-contact__k {
  flex: 0 0 auto;
  min-width: 2.6em;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  color: var(--mist);
  padding-top: .28em;
}

.footer-contact__v { word-break: break-word; }

.footer-base {
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.footer-base__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem 1.6rem;
  padding-block: 1.05rem;
  font-size: .76rem;
  color: var(--mist);
}

.footer-icp {
  font-family: var(--font-mono);
  letter-spacing: .04em;
  color: rgba(244, 239, 228, .72);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-left: auto;
}
.footer-legal a { color: rgba(244, 239, 228, .72); }
.footer-legal a:hover { color: var(--neon); }

.footer-copy { margin-left: auto; }

/* ---------- 9. 通用内容组件 ---------- */
.breadcrumbs {
  padding-block: 1.2rem .4rem;
  font-size: .78rem;
  color: var(--mist);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
}
.breadcrumbs li + li::before {
  content: "/";
  margin-right: .5rem;
  color: rgba(143, 166, 156, .5);
}
.breadcrumbs a:hover { color: var(--neon); }

.page-head { padding-block: clamp(1.75rem, 5vw, 3.5rem) clamp(1.25rem, 3.5vw, 2.5rem); }

.page-lede {
  margin-top: 1.1rem;
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--mist);
}

.prose {
  max-width: 72ch;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(244, 239, 228, .87);
}
.prose h2 {
  margin: 2.2em 0 .7em;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--paper);
}
.prose h3 {
  margin: 1.8em 0 .5em;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--loud);
}
.prose p { margin-bottom: 1.1em; }
.prose ul { margin-bottom: 1.2em; }
.prose ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .55em;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--neon);
}
.prose strong { color: var(--loud); font-weight: 500; }
.prose a {
  color: var(--neon);
  border-bottom: 1px solid rgba(43, 227, 160, .35);
}
.prose a:hover { color: var(--loud); border-bottom-color: var(--loud); }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
}

.card--paper {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper-line);
}

.panel-paper {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-lg);
}
.panel-paper .page-lede,
.panel-paper .prose { color: rgba(11, 31, 26, .78); }
.panel-paper .index-tag { color: var(--teal); }
.panel-paper .prose h2 { color: var(--ink); }
.panel-paper .prose h3 { color: var(--teal); }
.panel-paper .prose strong { color: #0d4a3c; }
.panel-paper .prose a { color: var(--teal); border-bottom-color: rgba(31, 111, 92, .35); }
.panel-paper .prose ul li::before { background: var(--teal); }
.panel-paper :focus-visible { outline-color: var(--teal); }
.panel-paper .divider { background: var(--paper-line); }

.stat { display: flex; flex-direction: column; gap: .35rem; }

.stat__value {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--neon);
}

.stat__label {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mist);
}

/* 越位线：进入视口后从左绘制 */
.offside-rule {
  height: 2px;
  border-radius: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--neon) 0 16px,
    rgba(43, 227, 160, .16) 16px 30px
  );
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .95s var(--ease-soft);
}
.is-visible > .offside-rule,
.offside-rule.is-visible { transform: scaleX(1); }

/* 图片容器基础 */
.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(90% 70% at 25% 8%, rgba(43, 227, 160, .16), transparent 62%),
    linear-gradient(150deg, var(--panel), #0c2a22 70%);
  aspect-ratio: 16 / 9;
}

.media-frame--wide { aspect-ratio: 21 / 9; }
.media-frame--tall { aspect-ratio: 4 / 5; }
.media-frame--square { aspect-ratio: 1 / 1; }

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.06) brightness(.92);
  transition: transform .6s var(--ease-soft), filter .4s var(--ease-soft);
}

.media-frame:hover img {
  transform: scale(1.03);
  filter: saturate(.9) contrast(1.08) brightness(1);
}

.media-frame--pitch::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(43, 227, 160, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 227, 160, .1) 1px, transparent 1px);
  background-size: 42px 42px;
}

.media-frame__caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: .34rem .78rem;
  border-radius: var(--radius-pill);
  background: rgba(11, 31, 26, .74);
  color: var(--paper);
  font-size: .72rem;
  letter-spacing: .04em;
}

/* ---------- 10. 显现动效 ---------- */
html[data-motion="on"] [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease-soft), transform .7s var(--ease-soft);
}
html[data-motion="on"] [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
html[data-motion="on"] [data-reveal][data-delay="1"] { transition-delay: .07s; }
html[data-motion="on"] [data-reveal][data-delay="2"] { transition-delay: .14s; }
html[data-motion="on"] [data-reveal][data-delay="3"] { transition-delay: .21s; }
html[data-motion="on"] [data-reveal][data-delay="4"] { transition-delay: .28s; }
html[data-motion="on"] [data-reveal][data-delay="5"] { transition-delay: .35s; }

/* ---------- 11. 响应式 ---------- */
@media (max-width: 1080px) {
  .header-actions .btn--ghost { display: none; }
  .footer-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  }
  .footer-contact { grid-column: 1 / -1; }
}

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

  .header-actions { display: none; }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    margin-left: 0;
    padding: 1rem var(--gutter) 1.5rem;
    background: var(--carbon);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-float);
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

  .primary-nav[data-open="true"] {
    display: block;
    animation: gw-nav-in .24s var(--ease-soft);
  }

  @keyframes gw-nav-in {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

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

  .nav-link {
    width: 100%;
    padding: .82rem .95rem;
    border-radius: var(--radius-sm);
    font-size: .98rem;
    gap: .7rem;
  }

  .nav-drawer-extra {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin-top: 1.1rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--line);
  }

  .nav-drawer-extra .btn { width: 100%; }

  .brand__rule { height: 28px; }

  .grid--2,
  .grid--3,
  .grid--4,
  .grid--asym,
  .grid--asym-rev { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .header-topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: .3rem;
    padding-block: .6rem;
  }
  .context-line { white-space: normal; font-size: .74rem; }
  .topbar-link { margin-left: 0; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-contact { grid-column: auto; }

  .footer-base__inner { flex-direction: column; align-items: flex-start; }
  .footer-legal { margin-left: 0; }
  .footer-copy { margin-left: 0; }
}

@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .brand__sub { letter-spacing: .2em; }
  .media-frame { border-radius: var(--radius-md); }
}

/* ---------- 12. 减弱动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

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

  html[data-motion="on"] [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .offside-rule { transform: scaleX(1); }
}
