@charset "UTF-8";

/* ============ 1. 设计变量 ============ */
:root {
  --c-bg: #0A0E14;
  --c-surface: #121A24;
  --c-accent: #00FF88;
  --c-blue: #00BFFF;
  --c-text: #E8EEF2;
  --c-dim: #A6B7C3;
  --c-line: rgba(255, 255, 255, 0.12);
  --c-warn: #FF4D4F;
  --c-ok: #00D68F;
  --c-glow: #1C2833;

  --f-display: "Barlow Condensed", "Noto Sans SC", "Segoe UI", system-ui, sans-serif;
  --f-body: "Noto Sans SC", "Segoe UI", system-ui, sans-serif;

  --container-w: 1320px;
  --radius: 4px;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============ 2. Reset 与基础排版 ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--c-text);
  text-wrap: balance;
}

p {
  margin: 0 0 1em;
  text-wrap: pretty;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

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

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

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

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

::selection {
  background: rgba(0, 255, 136, 0.25);
  color: #fff;
}

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

/* ============ 3. 通用工具 ============ */
.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;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: -64px;
  left: 24px;
  z-index: 300;
  display: inline-block;
  padding: 12px 20px;
  background: var(--c-accent);
  color: #05130a;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 16px;
  color: #05130a;
}

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

.container--narrow {
  max-width: 960px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

/* ============ 5. 头部 ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10, 14, 20, 0.94);
  border-bottom: 1px solid var(--c-line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, rgba(0, 255, 136, 0.55), rgba(0, 191, 255, 0.12));
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 210;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-blue));
  pointer-events: none;
}

.header-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  border-inline: 1px solid var(--c-line);
}

.header-frame::before,
.header-frame::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  width: 18px;
  height: 18px;
  border-color: var(--c-accent);
  border-style: solid;
  pointer-events: none;
}

.header-frame::before {
  left: 0;
  border-width: 2px 0 0 2px;
}

.header-frame::after {
  right: 0;
  border-width: 2px 2px 0 0;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--c-accent);
  color: #05130a;
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  transition: transform 0.2s var(--ease);
}

.brand:hover .brand-mark {
  transform: skewX(-8deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--c-text);
}

.brand-slogan {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--c-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--c-line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--c-dim);
  white-space: nowrap;
}

.header-chip--brand {
  color: var(--c-blue);
  border-color: rgba(0, 191, 255, 0.35);
}

.header-chip--live {
  color: var(--c-accent);
  border-color: rgba(0, 255, 136, 0.3);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: live-pulse 1.8s ease-in-out infinite;
}

@keyframes live-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.45);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(0, 255, 136, 0);
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-line);
  background: var(--c-surface);
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-accent);
  transition: transform 0.2s var(--ease), opacity 0.2s 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);
}

.site-nav {
  border-top: 1px solid var(--c-line);
  background: rgba(18, 26, 36, 0.5);
}

.nav-list {
  list-style: none;
  display: flex;
}

.nav-item {
  flex: 1 1 0;
  min-width: 0;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding: 15px 8px 13px;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--c-text);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link::before,
.nav-link::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s var(--ease);
}

.nav-link::before {
  top: 0;
  background: var(--c-accent);
}

.nav-link::after {
  bottom: 0;
  background: var(--c-blue);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link[aria-current="page"] {
  background: rgba(0, 255, 136, 0.06);
  color: #fff;
}

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

.nav-index {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--c-accent);
}

.nav-label {
  font-weight: inherit;
}

/* ============ 6. 页脚 ============ */
.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 72px;
  background: linear-gradient(180deg, var(--c-bg) 0%, #06090D 100%);
}

.site-footer::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-blue) 60%, rgba(0, 191, 255, 0.15) 100%);
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 300px;
  height: 300px;
  background: repeating-linear-gradient(-45deg, transparent 0 18px, rgba(255, 255, 255, 0.025) 18px 19px);
  pointer-events: none;
}

.footer-frame {
  position: relative;
  z-index: 1;
  padding-block: 48px 28px;
}

.footer-lead {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 56px;
  margin-bottom: 40px;
}

.footer-brand {
  min-width: 0;
}

.footer-brand-name {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--c-text);
}

.footer-brand-name::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  background: var(--c-accent);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 22% 100%);
}

.footer-about {
  margin: 16px 0 0;
  max-width: 52ch;
  color: var(--c-dim);
  font-size: 15px;
}

.footer-trust {
  margin: 20px 0 0;
  padding: 13px 16px;
  background: rgba(0, 255, 136, 0.05);
  border-left: 2px solid var(--c-accent);
  color: var(--c-dim);
  font-size: 13px;
  line-height: 1.6;
}

.footer-contact {
  padding-left: 24px;
  border-left: 1px solid var(--c-line);
}

.footer-contact-title {
  display: block;
  margin-bottom: 14px;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--c-blue);
}

.footer-contact-line {
  margin: 0 0 6px;
  color: var(--c-text);
  font-size: 15px;
}

.footer-address {
  margin: 0 0 6px;
  color: var(--c-dim);
  font-size: 14px;
  line-height: 1.5;
}

.footer-note {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--c-line);
  color: var(--c-dim);
  font-size: 12px;
  line-height: 1.6;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.footer-link {
  position: relative;
  padding-block: 4px;
  color: var(--c-dim);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.footer-link::before {
  content: "/";
  margin-right: 10px;
  color: var(--c-blue);
}

.footer-link:first-child::before {
  display: none;
}

.footer-link:hover {
  color: var(--c-accent);
}

.footer-icp {
  color: var(--c-dim);
  font-size: 13px;
}

.footer-copy {
  margin-left: auto;
  color: var(--c-dim);
  font-size: 13px;
}

.footer-copy [data-year] {
  color: var(--c-accent);
  font-weight: 600;
}

/* ============ 7. 通用组件 ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: var(--c-accent);
  color: #05130a;
}

.btn--primary:hover {
  background: #00e67a;
  color: #05130a;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  border-color: var(--c-blue);
  color: var(--c-blue);
}

.btn--ghost:hover {
  background: rgba(0, 191, 255, 0.08);
  color: #fff;
}

.btn--small {
  padding: 8px 16px;
  font-size: 15px;
}

.breadcrumb {
  padding: 20px 0 0;
  font-size: 13px;
  color: var(--c-dim);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
}

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

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

.breadcrumb-sep {
  color: var(--c-blue);
}

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

.section {
  position: relative;
  padding-block: 56px;
}

.section--surface {
  background: var(--c-surface);
  border-block: 1px solid var(--c-line);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 4px solid var(--c-accent);
}

.section-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--c-accent);
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(30px, 4vw, 46px);
}

.section-lead {
  max-width: 640px;
  color: var(--c-dim);
}

.page-head {
  position: relative;
  padding-block: 48px 32px;
  overflow: hidden;
}

.page-head::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 191, 255, 0.12), transparent 65%);
  pointer-events: none;
}

.page-title {
  font-size: clamp(40px, 8vw, 76px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.page-title::after {
  content: "";
  display: block;
  width: 88px;
  height: 4px;
  margin-top: 14px;
  background: var(--c-accent);
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.page-lead {
  margin-top: 16px;
  max-width: 720px;
  color: var(--c-dim);
  font-size: 17px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s var(--ease), border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 136, 0.35);
}

.card--accent {
  border-top: 2px solid var(--c-accent);
}

.card--blue {
  border-top: 2px solid var(--c-blue);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--c-line);
}

.card-title {
  margin: 0;
  font-size: 21px;
}

.card-body {
  flex: 1;
  padding: 20px;
}

.card-body p {
  margin-bottom: 0;
  color: var(--c-dim);
}

.card-foot {
  padding: 14px 20px;
  border-top: 1px solid var(--c-line);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--c-line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--c-dim);
  white-space: nowrap;
}

.tag--accent {
  border-color: rgba(0, 255, 136, 0.4);
  color: var(--c-accent);
}

.tag--blue {
  border-color: rgba(0, 191, 255, 0.4);
  color: var(--c-blue);
}

.divider {
  border: 0;
  height: 1px;
  margin-block: 36px;
  background: linear-gradient(90deg, rgba(0, 255, 136, 0.5) 0%, rgba(0, 191, 255, 0.5) 50%, transparent 100%);
}

.prose {
  max-width: 72ch;
  font-size: 16.5px;
  color: var(--c-text);
}

.prose p {
  margin-bottom: 1.2em;
}

.prose h2 {
  margin: 1.6em 0 0.6em;
  font-size: 28px;
}

.prose h3 {
  margin: 1.4em 0 0.5em;
  font-size: 22px;
}

.prose ul,
.prose ol {
  margin: 0 0 1.2em 1.2em;
  padding-left: 0.4em;
}

.prose li {
  margin-bottom: 0.4em;
}

.prose strong {
  color: var(--c-accent);
  font-weight: 600;
}

.media-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-glow), var(--c-surface));
  border: 1px solid var(--c-line);
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0 16px, rgba(255, 255, 255, 0.028) 16px 17px);
}

.media-frame::after {
  content: attr(data-label);
  position: absolute;
  left: 12px;
  bottom: 10px;
  z-index: 1;
  padding: 3px 8px;
  background: rgba(10, 14, 20, 0.75);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--c-accent);
  text-transform: uppercase;
}

.media-frame--wide {
  aspect-ratio: 21 / 9;
}

.media-frame--portrait {
  aspect-ratio: 3 / 4;
}

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

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

.media-caption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--c-dim);
}

.path-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.path-step {
  position: relative;
  padding: 24px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.path-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-blue));
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.path-step:hover::before {
  transform: scaleX(1);
}

.path-step-index {
  display: block;
  margin-bottom: 12px;
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: var(--c-accent);
}

.path-step-title {
  margin-bottom: 8px;
  font-size: 22px;
}

.path-step-copy {
  margin: 0;
  color: var(--c-dim);
  font-size: 14px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  background: rgba(18, 26, 36, 0.5);
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid var(--c-line);
  background: transparent;
  color: var(--c-dim);
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-btn:hover {
  color: var(--c-text);
  border-color: rgba(0, 191, 255, 0.45);
}

.filter-btn[aria-pressed="true"] {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #05130a;
}

[data-filter-target][hidden] {
  display: none !important;
}

/* ============ 8. 显现动画 ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease-out, transform 0.4s var(--ease);
}

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

/* ============ 9. 响应式 ============ */
@media (max-width: 1024px) {
  .nav-toggle {
    display: inline-flex;
  }

  .header-chip--brand {
    display: none;
  }

  .header-frame {
    border-inline: 0;
  }

  .site-nav {
    display: none;
    border-top: 0;
    background: #0C1117;
  }

  .site-nav[data-open] {
    display: block;
    border-top: 1px solid var(--c-line);
  }

  .nav-list {
    flex-direction: column;
  }

  .nav-item {
    flex: none;
  }

  .nav-link {
    justify-content: flex-start;
    padding: 15px 0 15px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-link:hover,
  .nav-link[aria-current="page"] {
    background: transparent;
  }

  .nav-link::before,
  .nav-link::after {
    left: 0;
    right: 0;
  }

  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .path-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-footer {
    margin-top: 48px;
  }

  .footer-lead {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-contact {
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid var(--c-line);
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .grid--3 {
    grid-template-columns: 1fr;
  }

  .grid--2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .header-chip--live {
    display: none;
  }

  .header-frame {
    padding-inline: 16px;
  }

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

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

  .brand-slogan {
    letter-spacing: 0.12em;
    font-size: 10px;
  }

  .grid--4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 40px;
  }

  .footer-frame {
    padding-block: 36px 24px;
  }
}

/* ============ 10. 减少动态偏好 ============ */
@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;
  }

  .live-dot {
    animation: none !important;
  }

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