/* ==========================================================
   德赢体育APP — 全站共享样式 /assets/site.css
   Space Blue / Neon Lime / Gold 运动科技体系
   ========================================================== */

/* ---------- 1. CSS Variables ---------- */
:root {
  --color-bg: #0A192F;
  --color-panel: #112B4A;
  --color-lime: #00E676;
  --color-lime-deep: #00A854;
  --color-gold: #F5B731;
  --color-white: #FFFFFF;
  --color-muted: #B0BEC5;
  --color-charcoal: #1A1A1A;
  --color-line: #E0E0E0;
  --color-alert: #FF5252;

  --font-head: 'Archivo Black', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', 'Source Han Sans CN', sans-serif;
  --font-body: 'Inter', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', 'Source Han Sans CN', sans-serif;
  --font-data: 'SF Mono', 'Roboto Mono', 'Consolas', monospace;

  --container-w: 1280px;
  --topbar-h: 36px;
  --header-h: 76px;
  --pad-x: clamp(16px, 4vw, 32px);
  --radius: 6px;
  --ease: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-fast: 0.25s ease;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-white);
  background-color: var(--color-bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; margin: 0; padding: 0; }
p { margin: 0; }
a { color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--color-white);
}

button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* ---------- 3. Base Typography ---------- */
h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

small { font-size: 0.875rem; }

.data-font {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
}

/* ---------- 4. Layout & Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.container--narrow { max-width: 960px; }
.container--full { max-width: 100%; padding-inline: 0; }

.section {
  padding-block: clamp(48px, 8vw, 96px);
  position: relative;
}

.section--alt {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 230, 118, 0.04) 100%);
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color var(--ease-fast), color var(--ease-fast), border-color var(--ease-fast), transform var(--ease-fast), box-shadow var(--ease-fast);
}

.btn-lime {
  background: var(--color-lime);
  color: var(--color-bg);
  box-shadow: 0 0 0 1px rgba(0, 230, 118, 0.28), 0 4px 14px rgba(0, 230, 118, 0.16);
}

.btn-lime:hover {
  background: var(--color-lime-deep);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 230, 118, 0.28);
}

.btn-outline {
  background: transparent;
  border-color: rgba(0, 230, 118, 0.55);
  color: var(--color-lime);
}

.btn-outline:hover {
  background: rgba(0, 230, 118, 0.1);
  border-color: var(--color-lime);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-bg);
}

.btn-gold:hover {
  background: #c98f14;
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-block { display: flex; width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* ---------- 6. Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4;
  white-space: nowrap;
}

.badge-gold {
  background: rgba(245, 183, 49, 0.14);
  border: 1px solid rgba(245, 183, 49, 0.4);
  color: var(--color-gold);
}

.badge-lime {
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.4);
  color: var(--color-lime);
}

/* ---------- 7. Skip Link ---------- */
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 3000;
  padding: 10px 22px;
  background: var(--color-lime);
  color: var(--color-bg);
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 4px 16px rgba(0, 230, 118, 0.3);
  transition: top var(--ease-fast);
}

.skip-link:focus-visible {
  top: 0;
}

/* ---------- 8. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10, 25, 47, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-top {
  background: var(--color-charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.header-top::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 230, 118, 0.45) 0 18px,
    transparent 18px 26px
  );
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--topbar-h);
  padding-block: 4px;
}

.brand-cert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  text-transform: uppercase;
}

.cert-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-lime);
  box-shadow: 0 0 8px rgba(0, 230, 118, 0.7);
  animation: cert-pulse 2.4s ease-in-out infinite;
}

@keyframes cert-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.header-top-note {
  font-size: 0.75rem;
  color: rgba(176, 190, 197, 0.6);
  letter-spacing: 0.16em;
}

.header-main {
  position: relative;
}

.header-main::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 16%;
  min-width: 160px;
  background: linear-gradient(90deg, var(--color-lime), transparent);
}

.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-lime) 64%, var(--color-gold) 64%, var(--color-gold) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 68%, 64% 100%, 0 100%);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 16px;
  color: var(--color-bg);
  line-height: 1;
  flex-shrink: 0;
}

.brand-mark-text {
  transform: translate(-8%, -8%);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.brand-sub {
  font-size: 0.62rem;
  font-weight: 500;
  font-family: var(--font-data);
  letter-spacing: 0.28em;
  color: var(--color-lime);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Header navigation */
.header-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.nav-item {
  margin: 0;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-muted);
  text-decoration: none;
  border-radius: var(--radius);
  transition: color var(--ease-fast), background-color var(--ease-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--color-lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-white);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-section-active::after {
  transform: scaleX(1);
}

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

.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--color-gold);
}

.nav-link.is-section-active {
  color: var(--color-white);
}

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

.nav-mobile-cta {
  display: none;
}

/* ---------- 9. Nav Toggle & Mobile Nav ---------- */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--color-panel);
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: var(--color-lime);
  transition: transform var(--ease-fast), opacity var(--ease-fast);
}

.nav-toggle:hover {
  border-color: rgba(0, 230, 118, 0.4);
}

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

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

  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: calc(100vh - var(--header-h) - var(--topbar-h));
    overflow-y: auto;
    background: rgba(17, 43, 74, 0.98);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 230, 118, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: none;
  }

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

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px;
  }

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

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

  .nav-link {
    width: 100%;
    padding: 14px 8px;
    font-size: 1rem;
  }

  .nav-link::after {
    left: 8px;
    right: auto;
    width: 24px;
    bottom: 10px;
  }

  .nav-mobile-cta {
    display: block;
    padding: 12px 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header-actions .btn {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header-nav,
  .header-nav[data-open] {
    display: flex;
  }
}

/* ---------- 10. Scroll Progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-lime), var(--color-gold));
  z-index: 2500;
  pointer-events: none;
  transition: width 0.1s linear;
}

/* ---------- 11. Footer ---------- */
.site-footer {
  position: relative;
  background: var(--color-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.footer-accent-bar {
  position: relative;
  height: 4px;
  background: linear-gradient(90deg, var(--color-lime) 0%, var(--color-lime) 55%, var(--color-gold) 55%, var(--color-gold) 82%, transparent 82%);
  z-index: 1;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 48px;
  padding-block: 56px;
  z-index: 1;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand-lockup--footer .brand-name {
  font-size: 1.05rem;
}

.brand-lockup--footer .brand-mark {
  width: 40px;
  height: 40px;
  font-size: 14px;
}

.footer-slogan {
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.footer-trust {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold);
  background: rgba(245, 183, 49, 0.08);
  border-left: 2px solid var(--color-gold);
  padding: 10px 14px;
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.6;
  max-width: 360px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-heading {
  position: relative;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-white);
  text-transform: uppercase;
  padding-bottom: 8px;
  margin-bottom: 6px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--color-lime);
}

.footer-heading--contact {
  margin-top: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--color-muted);
  text-decoration: none;
  transition: color var(--ease-fast), transform var(--ease-fast);
}

.footer-link::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid var(--color-gold);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  opacity: 0;
  transition: opacity var(--ease-fast);
}

.footer-link:hover {
  color: var(--color-white);
  transform: translateX(3px);
}

.footer-link:hover::before {
  opacity: 1;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(176, 190, 197, 0.6);
  text-transform: uppercase;
}

.contact-value {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.5;
  word-break: break-word;
}

.contact-value.data-font {
  color: var(--color-lime);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 25, 47, 0.6);
  z-index: 1;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 24px;
  padding-block: 16px;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.footer-icp {
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: rgba(176, 190, 197, 0.65);
}

.footer-support {
  font-size: 0.78rem;
  color: rgba(176, 190, 197, 0.55);
}

/* ---------- 12. Breadcrumb ---------- */
.breadcrumb {
  padding-block: 18px;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-size: 0.88rem;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  color: var(--color-muted);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  margin-inline: 10px;
  font-family: var(--font-data);
  color: var(--color-lime);
  opacity: 0.5;
}

.breadcrumb-link {
  color: var(--color-muted);
  text-decoration: none;
  transition: color var(--ease-fast);
}

.breadcrumb-link:hover {
  color: var(--color-lime);
}

.breadcrumb-item[aria-current="page"] {
  color: var(--color-white);
  font-weight: 600;
}

/* ---------- 13. Section Common ---------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-data);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-lime);
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--color-lime);
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* ---------- 14. Panels & Cards ---------- */
.panel {
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 40px);
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-lime), var(--color-gold));
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

/* ---------- 15. Media Frames ---------- */
.media-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 140px;
}

.media-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  pointer-events: none;
  z-index: 2;
}

.media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--color-lime), var(--color-lime)) top left / 26px 2px,
    linear-gradient(var(--color-lime), var(--color-lime)) top left / 2px 26px,
    linear-gradient(var(--color-gold), var(--color-gold)) bottom right / 26px 2px,
    linear-gradient(var(--color-gold), var(--color-gold)) bottom right / 2px 26px;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 3;
  opacity: 0.9;
}

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

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- 16. Data Dashboard ---------- */
.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.data-card {
  position: relative;
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 20px 18px;
  overflow: hidden;
}

.data-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 3px;
  background: var(--color-lime);
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.data-value {
  display: block;
  font-family: var(--font-data);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.data-value--lime { color: var(--color-lime); }
.data-value--gold { color: var(--color-gold); }

.data-label {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ---------- 17. Reveal & Motion ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

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

/* ---------- 18. Responsive Adjustments ---------- */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 40px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-sub {
    font-size: 0.56rem;
  }

  .header-main-inner {
    min-height: 68px;
  }

  .header-top-note {
    display: none;
  }

  .brand-cert {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .header-actions .btn {
    display: none;
  }

  .brand-text {
    display: none;
  }

  .brand-lockup .brand-mark {
    margin-right: 0;
  }
}

/* ---------- 19. Focus Visible & Reduced Motion ---------- */
:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: 2px;
}

@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;
  }

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

  .scroll-progress {
    transition: none;
  }

  .cert-dot {
    animation: none;
  }
}
