/* =========================================================
   宝威体育平台 · Site Kit
   /assets/site.css
   Blueprint × Speedline × Editorial Grid
   ========================================================= */

/* ---------- 1. Variables ---------- */
:root {
  --bw-primary: #0a1f44;
  --bw-primary-dark: #06122b;
  --bw-primary-light: #1e3a5f;
  --bw-accent: #ff6b35;
  --bw-accent-light: #ff9a76;
  --bw-silver: #c0c0c0;
  --bw-white: #ffffff;
  --bw-bg-soft: #f2f4f7;
  --bw-text: #17233f;
  --bw-line: rgba(192, 192, 192, 0.4);
  --bw-font-display: Impact, Haettenschweiler, 'Arial Black', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --bw-font-body: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --bw-font-mono: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, 'Liberation Mono', monospace;
  --bw-header-h: 84px;
  --bw-content-w: 1280px;
  --bw-gutter: 24px;
  --bw-radius: 4px;
  --bw-shadow-soft: 0 4px 18px rgba(6, 18, 43, 0.08);
  --bw-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 1024px) {
  :root {
    --bw-header-h: 72px;
  }
}

@media (max-width: 640px) {
  :root {
    --bw-header-h: 64px;
    --bw-gutter: 16px;
  }
}

/* ---------- 2. Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

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

body {
  font-family: var(--bw-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--bw-text);
  background: var(--bw-bg-soft);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  display: block;
}

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

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bw-font-display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--bw-primary);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--bw-accent);
  color: var(--bw-white);
}

:focus-visible {
  outline: 2px solid var(--bw-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

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

/* ---------- 3. Utilities ---------- */
.container {
  width: min(var(--bw-content-w), calc(100% - 2 * var(--bw-gutter)));
  margin-inline: auto;
}

.container-narrow {
  width: min(920px, calc(100% - 2 * var(--bw-gutter)));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.index-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--bw-font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bw-accent);
}

.index-label::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--bw-accent);
}

.rule-line {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, var(--bw-accent) 0%, var(--bw-accent-light) 120px, rgba(192, 192, 192, 0.35) 360px, transparent 100%);
}

.blueprint-grid {
  position: relative;
  background-image:
    linear-gradient(rgba(10, 31, 68, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 31, 68, 0.055) 1px, transparent 1px);
  background-size: 40px 40px;
}

.blueprint-grid--dark {
  background-image:
    linear-gradient(rgba(192, 192, 192, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 192, 192, 0.07) 1px, transparent 1px);
}

/* ---------- 4. Buttons ---------- */
.btn-accent {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 22px;
  color: var(--bw-primary-dark);
  font-family: var(--bw-font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: transform 0.22s var(--bw-ease), box-shadow 0.22s var(--bw-ease);
}

.btn-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--bw-accent);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background 0.2s ease;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.28);
}

.btn-accent:hover::before {
  background: var(--bw-accent-light);
}

.btn-accent:active {
  transform: translateY(0);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid var(--bw-silver);
  color: var(--bw-primary);
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn-ghost:hover {
  border-color: var(--bw-accent);
  color: var(--bw-accent);
  background: rgba(255, 107, 53, 0.06);
}

/* ---------- 5. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bw-primary);
  color: var(--bw-white);
  border-bottom: 1px solid rgba(192, 192, 192, 0.18);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bw-accent) 0%, var(--bw-accent-light) 55%, var(--bw-primary-light) 100%);
  z-index: 2;
  pointer-events: none;
}

.header-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 2;
  pointer-events: none;
}

.header-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--bw-accent), var(--bw-accent-light));
}

.header-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(calc(var(--bw-content-w) + 2 * var(--bw-gutter)), 100%);
  min-height: var(--bw-header-h);
  margin: 0 auto;
  padding: 12px var(--bw-gutter);
}

.header-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.brand-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bw-white);
}

.brand-badge {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--bw-accent);
  color: var(--bw-white);
  font-family: var(--bw-font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  clip-path: polygon(0 0, 86% 0, 100% 14%, 100% 100%, 14% 100%, 0 86%);
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--bw-font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  white-space: nowrap;
}

.header-nav {
  margin-left: 38px;
  min-width: 0;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link::before {
  content: attr(data-index);
  font-family: var(--bw-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--bw-accent);
  opacity: 0.85;
  transform: translateY(-1px);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  background: var(--bw-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s var(--bw-ease);
}

.nav-link:hover {
  color: var(--bw-white);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-link[aria-current="page"] {
  color: var(--bw-white);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex-shrink: 0;
}

.btn-accent-header {
  min-height: 40px;
  padding: 8px 18px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(192, 192, 192, 0.32);
  background: transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--bw-accent);
  background: rgba(255, 107, 53, 0.12);
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--bw-white);
  transition: transform 0.24s var(--bw-ease), opacity 0.2s ease, background 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line {
  background: var(--bw-accent);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

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

.header-mark {
  position: absolute;
  top: 18px;
  width: 9px;
  height: 9px;
  pointer-events: none;
  opacity: 0.45;
}

.header-mark-l {
  left: calc(var(--bw-gutter) + 8px);
  border-left: 1px solid var(--bw-silver);
  border-top: 1px solid var(--bw-silver);
}

.header-mark-r {
  right: calc(var(--bw-gutter) + 8px);
  border-right: 1px solid var(--bw-silver);
  border-top: 1px solid var(--bw-silver);
}

.skip-link {
  position: fixed;
  top: -82px;
  left: 16px;
  z-index: 300;
  background: var(--bw-accent);
  color: var(--bw-primary-dark);
  font-family: var(--bw-font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 12px 20px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  box-shadow: 0 6px 18px rgba(6, 18, 43, 0.3);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--bw-white);
  outline-offset: 2px;
}

/* ---------- 6. Mobile Navigation ---------- */
@media (max-width: 1024px) {
  .header-shell {
    gap: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

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

  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 90;
    margin-left: 0;
    background: var(--bw-primary);
    border-top: 1px solid rgba(192, 192, 192, 0.16);
    box-shadow: 0 24px 40px rgba(6, 18, 43, 0.45);
    max-height: calc(100vh - var(--bw-header-h));
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s;
    pointer-events: none;
  }

  .header-nav[data-open] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-list {
    display: grid;
    gap: 0;
    padding: 8px 16px 14px;
  }

  .nav-item {
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
  }

  .nav-item:last-child {
    border-bottom: 0;
  }

  .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 6px;
    font-size: 16px;
    border-radius: 2px;
  }

  .nav-link::before {
    font-size: 11px;
    color: var(--bw-accent);
    transform: none;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link[aria-current="page"] {
    background: rgba(30, 58, 95, 0.55);
    color: var(--bw-white);
  }

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

  .header-mark {
    display: none;
  }
}

@media (max-width: 640px) {
  .brand-badge {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .brand-name {
    font-size: 17px;
    letter-spacing: 0.04em;
  }

  .brand-item {
    gap: 8px;
  }

  .btn-accent-header {
    min-height: 34px;
    padding: 6px 12px;
    font-size: 12px;
  }

  .header-tools {
    gap: 8px;
  }
}

/* ---------- 7. Footer ---------- */
.site-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  background: var(--bw-primary-dark);
  overflow: hidden;
}

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

.site-footer::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 52px;
  height: 1px;
  background: linear-gradient(90deg, var(--bw-accent) 0%, var(--bw-accent-light) 140px, transparent 420px);
  opacity: 0.3;
  pointer-events: none;
}

.footer-topline {
  position: relative;
  height: 4px;
  background: linear-gradient(90deg, var(--bw-accent) 0%, var(--bw-accent-light) 40%, transparent 75%);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.95fr 1.1fr;
  gap: 48px;
  width: min(calc(var(--bw-content-w) + 2 * var(--bw-gutter)), 100%);
  margin: 0 auto;
  padding: 56px var(--bw-gutter) 48px;
}

.footer-brand-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

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

.footer-brand-panel .brand-name {
  font-size: 24px;
  color: var(--bw-white);
}

.footer-brand-panel .brand-badge {
  width: 34px;
  height: 34px;
  font-size: 14px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: 34em;
}

.footer-trust {
  font-size: 13px;
  line-height: 1.7;
  color: var(--bw-accent-light);
  border-left: 2px solid var(--bw-accent);
  padding-left: 12px;
  max-width: 36em;
}

.footer-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--bw-font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bw-accent);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(192, 192, 192, 0.18);
}

.footer-heading::before {
  content: '';
  width: 14px;
  height: 2px;
  background: var(--bw-accent);
  flex-shrink: 0;
}

.footer-link-list {
  display: grid;
  gap: 4px;
}

.footer-link {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-link::before {
  content: '/';
  font-family: var(--bw-font-mono);
  font-size: 13px;
  color: var(--bw-accent);
  opacity: 0.8;
}

.footer-link:hover {
  color: var(--bw-white);
  padding-left: 6px;
}

.footer-contact-list {
  display: grid;
  gap: 12px;
}

.footer-contact-item {
  display: grid;
  gap: 2px;
}

.contact-label {
  font-family: var(--bw-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bw-accent-light);
  opacity: 0.85;
}

.contact-value {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  word-break: break-all;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  width: min(calc(var(--bw-content-w) + 2 * var(--bw-gutter)), 100%);
  margin: 0 auto;
  padding: 16px var(--bw-gutter) 22px;
  border-top: 1px solid rgba(192, 192, 192, 0.14);
  font-family: var(--bw-font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.46);
}

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

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

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

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

/* ---------- 8. Shared Content Blocks ---------- */
.section-head {
  display: grid;
  gap: 12px;
  justify-items: start;
  margin-bottom: 32px;
}

.section-title {
  font-family: var(--bw-font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--bw-primary);
  max-width: 12em;
}

.section-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--bw-primary);
  opacity: 0.72;
  max-width: 42em;
}

.section-head--dark .section-title {
  color: var(--bw-white);
}

.section-head--dark .section-lead {
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.card-base {
  background: var(--bw-white);
  border: 1px solid rgba(192, 192, 192, 0.45);
  border-radius: 3px;
  box-shadow: var(--bw-shadow-soft);
  transition: transform 0.24s var(--bw-ease), box-shadow 0.24s var(--bw-ease), border-color 0.24s ease;
}

.card-base:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(6, 18, 43, 0.1);
  border-color: var(--bw-silver);
}

.breadcrumb {
  margin-bottom: 28px;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--bw-text);
  opacity: 0.65;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  font-family: var(--bw-font-mono);
  color: var(--bw-accent);
}

.breadcrumb-item a:hover {
  color: var(--bw-accent);
  opacity: 1;
}

.breadcrumb-current {
  color: var(--bw-primary);
  font-weight: 600;
  opacity: 0.9;
}

/* ---------- 9. Image Frames ---------- */
.image-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-image:
    linear-gradient(rgba(192, 192, 192, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 192, 192, 0.16) 1px, transparent 1px);
  background-size: 26px 26px, 26px 26px;
  background-color: var(--bw-primary-light);
  border: 1px solid rgba(192, 192, 192, 0.5);
}

.image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  pointer-events: none;
  z-index: 2;
}

.image-frame:empty::after {
  inset: 10px;
  box-shadow: none;
  border: 1px dashed rgba(255, 255, 255, 0.6);
}

.image-frame img,
.image-frame svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame--wide {
  aspect-ratio: 16 / 9;
}

.image-frame--square {
  aspect-ratio: 1 / 1;
}

/* ---------- 10. Page Hero Base ---------- */
.page-hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 40px;
  border-bottom: 1px solid var(--bw-line);
  background: var(--bw-white);
}

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--bw-font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bw-accent);
}

.page-hero-title {
  margin-top: 12px;
  font-family: var(--bw-font-display);
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  line-height: 0.98;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--bw-primary);
}

.page-hero-desc {
  margin-top: 14px;
  max-width: 42em;
  font-size: 17px;
  line-height: 1.7;
  color: var(--bw-primary);
  opacity: 0.7;
}

/* ---------- 11. Scroll Reveal ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s var(--bw-ease), transform 0.45s var(--bw-ease);
  transition-delay: 0s;
}

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

.js [data-reveal][data-reveal-delay="1"] {
  transition-delay: 0.08s;
}

.js [data-reveal][data-reveal-delay="2"] {
  transition-delay: 0.16s;
}

.js [data-reveal][data-reveal-delay="3"] {
  transition-delay: 0.24s;
}

.js [data-reveal][data-reveal-delay="4"] {
  transition-delay: 0.32s;
}

.js [data-reveal][data-reveal-delay="5"] {
  transition-delay: 0.4s;
}

/* ---------- 12. 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;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

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