/* =========================================================
   开云体育在线 · 共享样式 /assets/site.css
   夜间赛场 + 数据脉冲：墨蓝底层、电光青脉冲、熔岩橙强调
   ========================================================= */

:root {
  --ink-900: #050A18;
  --ink-800: #0A1428;
  --ink-700: #101E38;
  --ink-600: #172A4A;
  --cyan: #2DE2E6;
  --cyan-soft: #9CF7F2;
  --orange: #FF6B35;
  --orange-soft: #FFA06B;
  --steel: #D7E3F4;
  --white: #FFFFFF;

  --line-soft: rgba(215, 227, 244, 0.12);
  --line-cyan: rgba(45, 226, 230, 0.24);
  --shadow-card: 0 24px 48px -34px rgba(0, 0, 0, 0.95);

  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --shell: 1240px;

  --font-head: "Archivo Black", "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", "Courier New", monospace;
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--ink-900);
  background-image:
    radial-gradient(1100px 560px at 88% -12%, rgba(45, 226, 230, 0.16), transparent 62%),
    radial-gradient(880px 500px at -8% 22%, rgba(255, 107, 53, 0.12), transparent 60%),
    radial-gradient(700px 700px at 50% 120%, rgba(23, 42, 74, 0.6), transparent 70%);
  background-repeat: no-repeat;
  color: var(--steel);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

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

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

a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--cyan-soft); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0.045em;
  color: var(--white);
  margin: 0 0 0.7em;
}

p { margin: 0 0 1em; }
ul, ol { margin: 0; }

::selection { background: var(--cyan); color: #04202A; }

:focus-visible {
  outline: 2px solid var(--cyan-soft);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

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

/* ---------- 内容宽度 ---------- */
.shell {
  width: min(var(--shell), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ---------- 跳转链接 ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -120px;
  z-index: 300;
  padding: 0.6rem 1.15rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: linear-gradient(120deg, var(--cyan), var(--cyan-soft));
  color: #04202A;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; color: #04202A; }

/* =========================================================
   头部
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #071021;
  border-bottom: 1px solid var(--line-cyan);
  color: var(--steel);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1rem;
}

/* 品牌 */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  color: var(--white);
}
.brand:hover { color: var(--white); }

.brand-pulse {
  position: relative;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(45, 226, 230, 0.9);
}
.brand-pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(45, 226, 230, 0.55);
  animation: pulse-ring 2.8s ease-out infinite;
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  min-width: 0;
}
.brand-mark {
  font-family: var(--font-head);
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.16em;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(215, 227, 244, 0.6);
  white-space: nowrap;
}

/* 主导航 */
.primary-nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  list-style: none;
}
.nav-list > li { list-style: none; }
.nav-list a {
  display: block;
  padding: 0.52rem 0.85rem;
  border-radius: 999px;
  color: rgba(215, 227, 244, 0.78);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-list a:hover {
  color: var(--white);
  background: rgba(45, 226, 230, 0.1);
}
.nav-list a[aria-current="page"] {
  color: #04202A;
  font-weight: 700;
  background: linear-gradient(120deg, var(--cyan-soft), var(--cyan));
  box-shadow: 0 0 26px -8px rgba(45, 226, 230, 0.9);
}

/* 移动开关 */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line-cyan);
  border-radius: 999px;
  color: var(--cyan-soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.nav-toggle:hover { border-color: var(--cyan); background: rgba(45, 226, 230, 0.08); }
.nav-toggle-bars {
  position: relative;
  width: 16px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor, 0 -5px 0 currentColor;
}

/* 第二栏 */
.header-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.55rem;
  border-top: 1px solid rgba(215, 227, 244, 0.08);
}
.tool-index ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem;
  padding: 0;
  list-style: none;
}
.tool-index li { list-style: none; }
.tool-index a {
  display: inline-block;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-sm);
  color: rgba(215, 227, 244, 0.55);
  font-family: var(--font-mono);
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.tool-index a:hover { color: var(--cyan-soft); background: rgba(45, 226, 230, 0.08); }

.legacy-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  padding: 0.3rem 0.8rem;
  border: 1px dashed rgba(255, 107, 53, 0.5);
  border-radius: 999px;
  color: var(--orange-soft);
  font-family: var(--font-mono);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.legacy-link:hover {
  color: #FFD9C4;
  border-color: var(--orange);
  background: rgba(255, 107, 53, 0.12);
}
.legacy-link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

/* 滚动进度 */
.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-soft) 48%, var(--orange));
  pointer-events: none;
}

/* 返回顶部 */
.to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 120;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(45, 226, 230, 0.5);
  border-radius: 50%;
  background: rgba(10, 20, 40, 0.94);
  color: var(--cyan);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, border-color 0.2s ease;
}
.to-top[data-visible="true"] {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.to-top:hover { border-color: var(--cyan); box-shadow: 0 0 26px -8px rgba(45, 226, 230, 0.9); }
.to-top-arrow { font-size: 1.1rem; line-height: 1; }

/* =========================================================
   通用版式组件
   ========================================================= */
.section {
  padding-block: 4rem;
  scroll-margin-top: 7rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cyan);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(45, 226, 230, 0));
}

.section-no {
  display: block;
  margin: 0 0 0.4rem;
  font-family: var(--font-mono);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: rgba(45, 226, 230, 0.16);
  -webkit-text-stroke: 1px rgba(45, 226, 230, 0.5);
}

.section-title {
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
}

.lead {
  max-width: 62ch;
  margin: 0 0 1.5rem;
  font-size: 1.06rem;
  color: rgba(215, 227, 244, 0.8);
}

.prose { max-width: 72ch; }
.prose p { margin: 0 0 1.1em; }
.prose h2, .prose h3 { margin: 2.2em 0 0.7em; letter-spacing: 0.04em; }
.prose ul, .prose ol { padding-left: 1.25em; margin: 0 0 1.2em; }
.prose li { margin-bottom: 0.5em; }
.prose strong { color: var(--white); }

.rule-glow {
  height: 1px;
  border: 0;
  margin: 3.5rem 0;
  background: linear-gradient(90deg, rgba(45, 226, 230, 0.55), rgba(255, 107, 53, 0.4) 55%, rgba(5, 10, 24, 0));
}

/* 面包屑 */
.breadcrumb {
  margin: 0 0 2rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: rgba(215, 227, 244, 0.5);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}
.breadcrumb li { list-style: none; display: flex; align-items: center; }
.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: rgba(45, 226, 230, 0.5);
}
.breadcrumb a { color: rgba(215, 227, 244, 0.7); }
.breadcrumb a:hover { color: var(--cyan-soft); }
.breadcrumb [aria-current="page"] { color: var(--steel); }

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn--primary {
  background: linear-gradient(120deg, var(--cyan), var(--cyan-soft));
  color: #04202A;
  box-shadow: 0 16px 32px -20px rgba(45, 226, 230, 0.95);
}
.btn--primary:hover { color: #04202A; transform: translateY(-2px); }
.btn--accent {
  background: linear-gradient(120deg, var(--orange), var(--orange-soft));
  color: #2A0D02;
  box-shadow: 0 16px 32px -20px rgba(255, 107, 53, 0.95);
}
.btn--accent:hover { color: #2A0D02; transform: translateY(-2px); }
.btn--ghost {
  border-color: rgba(215, 227, 244, 0.28);
  color: var(--steel);
}
.btn--ghost:hover {
  color: var(--cyan-soft);
  border-color: var(--cyan);
  background: rgba(45, 226, 230, 0.08);
}

/* 标签 */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.62rem;
  border: 1px solid rgba(45, 226, 230, 0.3);
  border-radius: 999px;
  background: rgba(45, 226, 230, 0.08);
  color: var(--cyan-soft);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.tag--accent {
  border-color: rgba(255, 107, 53, 0.45);
  background: rgba(255, 107, 53, 0.1);
  color: var(--orange-soft);
}
.tag--quiet {
  border-color: rgba(215, 227, 244, 0.2);
  background: transparent;
  color: rgba(215, 227, 244, 0.72);
}

.data-mono {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(45, 226, 230, 0.85);
}

/* Bento 网格与卡片 */
.bento-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card {
  position: relative;
  padding: 1.4rem;
  border: 1px solid rgba(45, 226, 230, 0.14);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(23, 42, 74, 0.94), rgba(16, 30, 56, 0.94));
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(200px 130px at 100% 0, rgba(45, 226, 230, 0.16), transparent 70%);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 226, 230, 0.5);
  box-shadow: 0 26px 50px -30px rgba(45, 226, 230, 0.55);
}
.card--wide { grid-column: span 2; }
.card--tall { grid-row: span 2; }
.card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.card-title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: 0.045em;
}
.card-meta {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(45, 226, 230, 0.8);
}
.card-body {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.94rem;
  color: rgba(215, 227, 244, 0.76);
}

/* 图片容器 */
.figure { margin: 0 0 1.5rem; }
.figure-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(45, 226, 230, 0.16);
  background: linear-gradient(145deg, var(--ink-600), var(--ink-700));
  aspect-ratio: 16 / 9;
}
.figure-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.figure-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 24, 0) 42%, rgba(5, 10, 24, 0.78));
  pointer-events: none;
}
.figure-caption {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(215, 227, 244, 0.6);
}

/* 渐显 */
[data-reveal-ready] [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal-ready] [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   页脚
   ========================================================= */
.site-footer {
  margin-top: 6rem;
  border-top: 1px solid var(--line-cyan);
  background: linear-gradient(180deg, #08142A, var(--ink-900) 72%);
  color: var(--steel);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-block: 3.5rem 2.5rem;
}
.footer-col { min-width: 0; }

.footer-logo {
  margin: 0 0 0.9rem;
  font-family: var(--font-head);
  font-size: 1.35rem;
  letter-spacing: 0.16em;
  color: var(--white);
}
.footer-logo span {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--cyan);
}
.footer-note {
  max-width: 36ch;
  margin: 0 0 1.1rem;
  font-size: 0.92rem;
  color: rgba(215, 227, 244, 0.66);
}
.footer-note--small {
  margin: 1rem 0 0;
  max-width: 30ch;
  font-size: 0.8rem;
  color: rgba(215, 227, 244, 0.48);
}
.footer-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(215, 227, 244, 0.55);
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

.footer-title {
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--cyan-soft);
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0;
  list-style: none;
}
.footer-list li { list-style: none; }
.footer-list a {
  color: rgba(215, 227, 244, 0.72);
  font-size: 0.94rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-list a:hover { color: var(--cyan-soft); padding-left: 4px; }

.contact-list { gap: 0.85rem; }
.contact-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.contact-label {
  flex: 0 0 auto;
  min-width: 2.6em;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: rgba(45, 226, 230, 0.85);
}
.contact-value {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--steel);
  overflow-wrap: anywhere;
}
.copy-btn {
  flex: 0 0 auto;
  padding: 0.15rem 0.55rem;
  border: 1px solid rgba(45, 226, 230, 0.3);
  border-radius: 999px;
  color: var(--cyan-soft);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.copy-btn:hover { background: rgba(45, 226, 230, 0.14); border-color: var(--cyan); }
.copy-btn[data-copied="true"] {
  border-color: var(--orange);
  color: var(--orange-soft);
  background: rgba(255, 107, 53, 0.14);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-block: 1.2rem 2rem;
  border-top: 1px solid rgba(215, 227, 244, 0.08);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: rgba(215, 227, 244, 0.5);
}
.footer-bottom p { margin: 0; }
.icp { color: rgba(215, 227, 244, 0.62); }

/* =========================================================
   动效
   ========================================================= */
@keyframes pulse-ring {
  0%   { transform: scale(0.6); opacity: 0.9; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.42; transform: scale(0.78); }
}
@keyframes nav-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* =========================================================
   响应式
   ========================================================= */
@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .header-top { padding-block: 0.8rem; gap: 1rem; }

  .primary-nav[data-nav-js] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100vh - 5rem);
    overflow-y: auto;
    padding: 0.85rem 1.25rem 1.4rem;
    background: var(--ink-800);
    border-bottom: 1px solid var(--line-cyan);
    box-shadow: 0 30px 46px -34px rgba(0, 0, 0, 1);
  }
  .primary-nav[data-nav-js][data-open] {
    display: block;
    animation: nav-in 0.22s ease-out;
  }
  .primary-nav[data-nav-js] .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }
  .primary-nav[data-nav-js] .nav-list a {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    padding-block: 2.8rem 2rem;
  }
}

@media (max-width: 760px) {
  .section { padding-block: 3rem; }
  .bento-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .header-sub {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding-block: 0.6rem 0.8rem;
  }
  .legacy-link { align-self: flex-start; }
  .brand-sub { display: none; }
}

@media (max-width: 640px) {
  .shell { width: min(var(--shell), calc(100% - 1.5rem)); }
  .bento-grid { grid-template-columns: minmax(0, 1fr); }
  .card--wide, .card--tall { grid-column: auto; grid-row: auto; }
  .to-top { right: 0.9rem; bottom: 0.9rem; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 1.75rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   减弱动效
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .brand-pulse::after,
  .legacy-link::before,
  .pulse-dot { animation: none !important; }
  [data-reveal-ready] [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
