/* ============ 新利赛场 共享层 / assets/site.css ============ */

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

:root {
  --c-bg: #0B1D3A;
  --c-bg-2: #0E2345;
  --c-bg-3: #132B55;
  --c-accent: #39FF14;
  --c-orange: #FF6B35;
  --c-text: #F5F7FA;
  --c-muted: #A0B0C9;
  --c-line: rgba(255, 255, 255, 0.12);
  --c-overlay: rgba(11, 29, 58, 0.8);
  --c-danger: #E63946;
  --grad-brand: linear-gradient(135deg, #0B1D3A 0%, #132B55 100%);
  --font-display: 'Anton', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-body: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-num: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --page-max: 1200px;
  --container-pad: clamp(16px, 3vw, 32px);
  --grid-gap: 24px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
  --z-header: 100;
  --z-nav: 1;
  --z-progress: 200;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 85% -4%, rgba(57, 255, 20, 0.05), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(255, 107, 53, 0.04), transparent 55%),
    var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(8, 17, 34, 0.66);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

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

button, input, select, textarea {
  font: inherit;
}

h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding-left: 1.25em;
}

a {
  color: var(--c-accent);
  text-underline-offset: 3px;
}

a:hover {
  color: #b8ffab;
}

::selection {
  background: rgba(57, 255, 20, 0.3);
  color: var(--c-text);
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

/* ---- 2. Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--c-text);
  margin-bottom: 0.5em;
}

h1 {
  font-size: clamp(48px, 8vw, 80px);
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(32px, 5vw, 56px);
}

h3 {
  font-size: clamp(24px, 3.4vw, 40px);
}

h4 {
  font-size: clamp(20px, 2.4vw, 24px);
}

p {
  color: var(--c-text);
  margin-bottom: 1em;
}

/* ---- 3. Layout Primitives ---- */
.container {
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: clamp(56px, 9vw, 110px);
}

.section--tight {
  padding-block: clamp(32px, 5vw, 64px);
}

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

.grid__span-3 { grid-column: span 3; }
.grid__span-4 { grid-column: span 4; }
.grid__span-5 { grid-column: span 5; }
.grid__span-6 { grid-column: span 6; }
.grid__span-7 { grid-column: span 7; }
.grid__span-8 { grid-column: span 8; }
.grid__span-12 { grid-column: span 12; }

@media (max-width: 960px) {
  .grid__span-3,
  .grid__span-4,
  .grid__span-5 { grid-column: span 6; }
  .grid__span-6,
  .grid__span-7,
  .grid__span-8,
  .grid__span-12 { grid-column: span 12; }
}

@media (max-width: 640px) {
  .grid__span-3,
  .grid__span-4,
  .grid__span-5,
  .grid__span-6,
  .grid__span-7,
  .grid__span-8,
  .grid__span-12 { grid-column: span 12; }
}

/* ---- 4. Page Head & Breadcrumb ---- */
.page-head {
  padding: clamp(36px, 7vw, 84px) 0 8px;
}

.page-head__eyebrow {
  display: block;
  font-family: var(--font-num);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--c-accent);
  margin-bottom: 12px;
}

.page-head__title {
  font-size: clamp(40px, 7vw, 80px);
  margin: 0 0 16px;
}

.page-head__lead {
  max-width: 640px;
  color: var(--c-muted);
  font-size: 17px;
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  font-size: 13px;
  color: var(--c-muted);
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: "/";
  margin: 0 10px;
  color: rgba(160, 176, 201, 0.45);
}

.breadcrumb a {
  color: var(--c-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--c-accent);
}

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

/* ---- 5. Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn--accent {
  background: var(--c-accent);
  color: #051a00;
  box-shadow: 0 4px 22px rgba(57, 255, 20, 0.32);
}

.btn--accent:hover {
  background: #68ff47;
  color: #051a00;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(57, 255, 20, 0.42);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--c-line);
  color: var(--c-text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.btn--orange {
  background: var(--c-orange);
  color: #200a00;
  box-shadow: 0 4px 22px rgba(255, 107, 53, 0.3);
}

.btn--orange:hover {
  background: #ff8457;
  color: #200a00;
  transform: translateY(-2px);
}

.btn--sm {
  padding: 7px 16px;
  font-size: 13px;
}

/* ---- 6. Skip Link & Scroll Progress ---- */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--c-accent);
  color: #051a00;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-320%);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.skip-link:focus {
  transform: translateY(0);
  opacity: 1;
  color: #051a00;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: var(--z-progress);
  pointer-events: none;
}

.scroll-progress::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--c-accent) 0%, #7ce863 55%, var(--c-orange) 100%);
  transform: scaleX(var(--progress, 0));
  transform-origin: 0 50%;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

/* ---- 7. Site Header & Navigation ---- */
.site-header {
  position: sticky;
  top: 12px;
  z-index: var(--z-header);
}

.site-header__bar {
  display: contents;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--c-text);
  flex: 0 0 auto;
}

.site-brand:hover {
  color: var(--c-text);
}

.site-brand__mark {
  position: relative;
  display: inline-flex;
  width: 28px;
  height: 28px;
  border: 2px solid var(--c-accent);
  border-radius: 50%;
  transform: rotate(-24deg);
  flex: 0 0 auto;
}

.site-brand__core {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.55);
}

.site-brand__mark::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 1px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-orange);
  transform: rotate(46deg);
}

.site-brand__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-text);
  white-space: nowrap;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__item {
  margin: 0;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--c-text);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-nav__link:hover {
  color: var(--c-accent);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav__link[aria-current="page"] {
  color: var(--c-accent);
  background: rgba(57, 255, 20, 0.1);
  box-shadow: inset 0 0 0 1px rgba(57, 255, 20, 0.25);
}

.site-nav__brand,
.site-nav__cta {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.nav-toggle__bar {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.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);
}

/* Desktop capsule */
@media (min-width: 961px) {
  .site-header {
    max-width: calc(var(--page-max) + 2 * var(--container-pad));
    margin: 12px auto 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 8px 8px 20px;
    border-radius: 999px;
    background: rgba(13, 34, 67, 0.9);
    border: 1px solid var(--c-line);
    box-shadow: 0 12px 40px rgba(4, 10, 24, 0.45);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  .site-header__bar {
    display: contents;
  }

  .site-nav {
    order: 2;
    margin-left: auto;
  }

  .site-header__actions {
    order: 3;
  }

  .site-header__cta {
    display: inline-flex;
  }
}

/* Mobile drawer */
@media (max-width: 960px) {
  .site-header {
    top: 0;
    padding: 10px var(--container-pad) 0;
  }

  .site-header__bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 6px 6px 16px;
    border-radius: 999px;
    background: rgba(13, 34, 67, 0.92);
    border: 1px solid var(--c-line);
    box-shadow: 0 10px 32px rgba(4, 10, 24, 0.42);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  .site-header__cta {
    display: none;
  }

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

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-nav);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: min(380px, 90vw);
    padding: 108px 28px 32px;
    background: linear-gradient(160deg, #0d2243 0%, #081527 100%);
    border-left: 1px solid var(--c-line);
    box-shadow: -28px 0 64px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    transform: translateX(104%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.4s;
  }

  .site-nav[data-open] {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .site-nav__link {
    display: block;
    padding: 13px 16px;
    font-size: 17px;
    border-radius: var(--radius-md);
  }

  .site-nav__brand {
    display: inline-flex;
    margin-bottom: 20px;
  }

  .site-nav__cta {
    display: flex;
    justify-content: center;
    margin-top: 14px;
  }
}

/* ---- 8. Site Footer ---- */
.site-footer {
  position: relative;
  margin-top: clamp(72px, 12vw, 140px);
  background: #071124;
  border-top: 1px solid var(--c-line);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.55) 30%, rgba(255, 107, 53, 0.6) 70%, transparent);
}

.site-footer::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.07), transparent 65%);
  pointer-events: none;
}

.site-footer__top {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(32px, 5vw, 56px);
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: 48px;
}

.site-footer__brand .site-brand__name {
  font-size: 24px;
}

.site-footer__blurb {
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 16px 0 10px;
  max-width: 30em;
}

.site-footer__trust {
  color: var(--c-muted);
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.8;
  max-width: 34em;
}

.site-footer__status {
  margin-top: 18px;
}

.site-footer__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--c-accent);
  margin: 0 0 16px;
}

.site-footer__heading::before {
  content: "";
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-accent);
}

.site-footer__links,
.site-footer__legal,
.site-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li {
  margin-bottom: 10px;
}

.site-footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer__links a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(160, 176, 201, 0.5);
  transition: background 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--c-accent);
}

.site-footer__links a:hover::before {
  background: var(--c-accent);
}

.site-footer__contact-list {
  font-size: 14px;
  color: var(--c-muted);
}

.site-footer__contact-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}

.site-footer__contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-accent);
  transform: rotate(-24deg);
}

.site-footer__note {
  margin-top: 16px;
  color: var(--c-muted);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer__bottom {
  position: relative;
  border-top: 1px solid var(--c-line);
}

.site-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--c-muted);
  font-size: 13px;
}

.site-footer__copyright {
  margin: 0;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}

.site-footer__legal a {
  color: var(--c-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer__legal a:hover {
  color: var(--c-accent);
}

.site-footer__icp {
  margin: 0;
  color: rgba(160, 176, 201, 0.75);
}

@media (max-width: 960px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom-inner {
    justify-content: flex-start;
  }
}

/* ---- 9. Cards, Tags, Tables, Stats ---- */
.card {
  position: relative;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.card:hover {
  border-color: rgba(57, 255, 20, 0.35);
  transform: translateY(-3px);
}

.card--link {
  cursor: pointer;
}

.card__label {
  display: block;
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--c-accent);
  margin-bottom: 10px;
}

.card__title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
  color: var(--c-text);
  margin: 0 0 10px;
}

.card__data {
  display: block;
  font-family: var(--font-num);
  font-size: 34px;
  line-height: 1.1;
  color: var(--c-orange);
  margin: 12px 0 8px;
  font-weight: 500;
}

.card__body {
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.card__tag {
  margin-bottom: 12px;
}

.card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  font-size: 0;
  text-decoration: none;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  border-radius: 999px;
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-accent);
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.28);
  white-space: nowrap;
}

.tag--orange {
  color: var(--c-orange);
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.32);
}

.tag--muted {
  color: var(--c-muted);
  background: rgba(160, 176, 201, 0.08);
  border-color: rgba(160, 176, 201, 0.2);
}

.tag__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: tag-pulse 2s ease-in-out infinite;
}

@keyframes tag-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.78); }
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

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

.data-table th,
.data-table td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid var(--c-line);
}

.data-table thead th {
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-muted);
}

.data-table tbody tr {
  transition: background 0.2s ease;
}

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

.data-table td.num,
.data-table .num {
  font-family: var(--font-num);
  color: var(--c-text);
  font-variant-numeric: tabular-nums;
}

.stat {
  font-family: var(--font-num);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
  color: var(--c-text);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.stat--accent {
  color: var(--c-accent);
}

.stat--orange {
  color: var(--c-orange);
}

/* ---- 10. Image Containers ---- */
.img-mask {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
}

.img-mask img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.img-mask:hover img {
  transform: scale(1.03);
}

.img-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 29, 58, 0.04), rgba(11, 29, 58, 0.55));
  pointer-events: none;
}

.img-mask--16x10 {
  aspect-ratio: 16 / 10;
}

.img-mask--4x3 {
  aspect-ratio: 4 / 3;
}

.img-mask--1x1 {
  aspect-ratio: 1 / 1;
}

/* ---- 11. Scroll Reveal Protocol ---- */
@media (prefers-reduced-motion: no-preference) {
  html.js [data-reveal] {
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
  }

  html.js [data-reveal]:not([data-revealed]) {
    opacity: 0;
    transform: translateY(28px);
  }

  html.js [data-reveal="left"]:not([data-revealed]) {
    transform: translateX(-32px);
  }

  html.js [data-reveal="right"]:not([data-revealed]) {
    transform: translateX(32px);
  }

  html.js [data-reveal="scale"]:not([data-revealed]) {
    transform: scale(0.95);
  }

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

/* ---- 12. Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html.js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .img-mask:hover img {
    transform: none;
  }

  .tag__dot {
    animation: none;
  }
}
