:root {
  --bg-deep: #0A1628;
  --bg-panel: #122A4A;
  --bg-deeper: #060E1C;
  --accent-orange: #FF5A1F;
  --accent-orange-soft: rgba(255, 90, 31, 0.14);
  --accent-purple: #7D3CE9;
  --accent-purple-soft: rgba(125, 60, 233, 0.14);
  --text-light: #E8ECF1;
  --text-mist: #A0AAB8;
  --data-green: #00E5A0;
  --warn-yellow: #FFD166;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.1);
  --border-soft: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --sidebar-w: 280px;
  --container-w: 1280px;
  --radius: 6px;
  --font-display: "Arial Black", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans CN", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans CN", sans-serif;
  --font-data: "Cascadia Code", "JetBrains Mono", "Roboto Mono", "SF Mono", "Menlo", "Consolas", monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
  background: var(--bg-deep);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

::selection {
  background: var(--accent-purple);
  color: var(--text-light);
}

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

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-panel);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-purple);
}

main {
  display: block;
  min-height: 70vh;
}

#main-content {
  scroll-margin-top: 88px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section {
  position: relative;
  padding: 72px 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
}

.section-title {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.2;
}

.section-desc {
  color: var(--text-mist);
  font-size: 15px;
  max-width: 60ch;
}

.page-hero {
  position: relative;
  padding: 64px 0 40px;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(125, 60, 233, 0.14), transparent 70%);
  pointer-events: none;
}

.page-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-light);
  letter-spacing: -0.01em;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.page-desc {
  font-size: 16px;
  color: var(--text-mist);
  max-width: 60ch;
  margin-top: 12px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.22s, color 0.22s, border-color 0.22s, box-shadow 0.22s, transform 0.15s;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--accent-orange);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(255, 90, 31, 0.25);
}

.btn-primary:hover {
  background: #FF7433;
  box-shadow: 0 6px 24px rgba(255, 90, 31, 0.4);
}

.btn-ghost {
  background: var(--glass);
  color: var(--text-light);
  border-color: var(--border-soft);
}

.btn-ghost:hover {
  background: var(--glass-strong);
  border-color: var(--border-strong);
}

.btn-purple {
  background: var(--accent-purple);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(125, 60, 233, 0.25);
}

.btn-purple:hover {
  background: #8D52ED;
  box-shadow: 0 6px 24px rgba(125, 60, 233, 0.4);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--text-mist);
}

.breadcrumb a {
  color: var(--text-mist);
  transition: color 0.2s;
}

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

.breadcrumb-sep {
  color: var(--accent-purple);
}

.breadcrumb-current {
  color: var(--text-light);
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 24px;
  z-index: 3000;
  background: var(--accent-orange);
  color: #FFFFFF;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 0 0 6px 6px;
  transition: top 0.25s var(--ease-out);
  box-shadow: 0 4px 16px rgba(255, 90, 31, 0.3);
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
  z-index: 3000;
  pointer-events: none;
  border-radius: 0 3px 3px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: var(--sidebar-w);
  height: 100vh;
}

.site-header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(125, 60, 233, 0.7), rgba(255, 90, 31, 0.7), transparent);
  opacity: 0.35;
  pointer-events: none;
}

.header-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 24px 24px;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.97) 0%, rgba(15, 33, 58, 0.93) 100%);
  border-right: 1px solid var(--border-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-light);
  flex-shrink: 0;
  padding: 4px 0;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--text-light);
}

.brand-mark-dot {
  color: var(--accent-orange);
}

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

.brand-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-light);
  font-family: var(--font-display);
}

.brand-sub {
  font-size: 11px;
  font-family: var(--font-data);
  color: var(--text-mist);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
}

.site-nav {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 36px;
  min-height: 0;
}

.nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-mist);
}

.nav-index {
  color: var(--accent-purple);
  font-weight: 600;
}

.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--data-green);
  font-weight: 500;
}

.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--data-green);
  box-shadow: 0 0 6px rgba(0, 229, 160, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.nav-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border-radius: 4px;
  color: var(--text-mist);
  font-size: 15px;
  font-weight: 500;
  transition: background 0.22s, color 0.22s, transform 0.22s;
}

.nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 0 2px 2px 0;
  background: var(--accent-purple);
  box-shadow: 0 0 8px rgba(125, 60, 233, 0.5);
  transform: translateY(-50%);
  transition: height 0.25s var(--ease-out);
}

.nav-link:hover {
  color: var(--text-light);
  background: var(--glass);
  transform: translateX(4px);
}

.nav-link:hover::before {
  height: 60%;
}

.nav-link[aria-current="page"] {
  color: var(--text-light);
  background: linear-gradient(90deg, rgba(125, 60, 233, 0.16), rgba(125, 60, 233, 0.04));
}

.nav-link[aria-current="page"]::before {
  height: 70%;
}

.nav-code {
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-purple);
  min-width: 20px;
  opacity: 0.85;
  transition: color 0.22s, opacity 0.22s;
}

.nav-link:hover .nav-code {
  color: var(--accent-orange);
  opacity: 1;
}

.nav-link[aria-current="page"] .nav-code {
  color: var(--accent-orange);
  opacity: 1;
}

.nav-label {
  letter-spacing: 0.02em;
}

.nav-foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  margin-top: 12px;
  border-top: 1px solid var(--border-soft);
}

.nav-cta {
  width: 100%;
}

.nav-sys {
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--text-mist);
  text-align: center;
  opacity: 0.7;
  letter-spacing: 0.04em;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1002;
  background: rgba(4, 10, 20, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: none;
}

.nav-backdrop.is-active {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1025px) {
  main,
  .site-footer {
    margin-left: var(--sidebar-w);
  }

  #main-content {
    scroll-margin-top: 24px;
  }
}

@media (max-width: 1024px) {
  body {
    padding-top: 64px;
  }

  #main-content {
    scroll-margin-top: 88px;
  }

  .site-header {
    width: 100%;
    height: 64px;
  }

  .site-header::after {
    display: none;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 20px;
    background: rgba(10, 22, 40, 0.95);
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .header-inner::before {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 64px;
    left: 0;
    width: min(320px, 86vw);
    height: calc(100vh - 64px);
    margin: 0;
    padding: 28px 20px 24px;
    background: var(--bg-panel);
    border-right: 1px solid var(--border-soft);
    transform: translateX(-100%);
    transition: transform 0.34s var(--ease-out);
    z-index: 1005;
    overflow-y: auto;
  }

  .site-nav[data-open] {
    transform: translateX(0);
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-soft);
    background: var(--glass);
    border-radius: var(--radius);
    transition: background 0.2s, border-color 0.2s;
  }

  .nav-toggle:hover {
    background: var(--glass-strong);
    border-color: var(--border-strong);
  }

  .nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: transform 0.28s var(--ease-out), opacity 0.2s;
  }

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

  .nav-backdrop {
    display: block;
  }
}

@media (max-width: 540px) {
  .brand-mark {
    font-size: 24px;
  }

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

  .brand-sub {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .header-inner {
    padding: 0 16px;
  }
}

.site-footer {
  position: relative;
  background: linear-gradient(180deg, rgba(125, 60, 233, 0.04), transparent 40%), var(--bg-deeper);
  border-top: 1px solid var(--border-soft);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-purple) 70%, rgba(125, 60, 233, 0) 100%);
}

.site-footer::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32%;
  height: 100%;
  background: radial-gradient(ellipse at bottom right, rgba(125, 60, 233, 0.09), transparent 70%);
  pointer-events: none;
}

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

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

.footer-desc {
  color: var(--text-mist);
  font-size: 14px;
  line-height: 1.6;
  max-width: 42ch;
}

.footer-trust {
  color: var(--text-mist);
  font-size: 13px;
  line-height: 1.7;
  border-left: 2px solid var(--accent-purple);
  background: rgba(125, 60, 233, 0.05);
  padding: 10px 14px;
  border-radius: 0 4px 4px 0;
  max-width: 46ch;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
}

.footer-heading::before {
  content: '/';
  color: var(--accent-orange);
  font-family: var(--font-data);
  font-size: 15px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-mist);
  font-size: 14px;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
  color: var(--accent-orange);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.contact-label {
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--accent-purple);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-contact-value {
  font-family: var(--font-data);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  word-break: break-all;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--border-soft);
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--text-mist);
  position: relative;
  z-index: 1;
}

.footer-copy {
  letter-spacing: 0.02em;
}

.footer-icp {
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
    padding: 48px 0 32px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.glass-panel {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--border-soft);
  border-radius: calc(var(--radius) + 2px);
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-purple);
  border-radius: 0 0 2px 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-orange);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker::before {
  content: '#';
  color: var(--accent-purple);
  font-size: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 2px;
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent-purple);
  background: rgba(125, 60, 233, 0.1);
  border: 1px solid rgba(125, 60, 233, 0.35);
}

.tag-orange {
  color: var(--accent-orange);
  background: rgba(255, 90, 31, 0.1);
  border-color: rgba(255, 90, 31, 0.35);
}

.tag-green {
  color: var(--data-green);
  background: rgba(0, 229, 160, 0.08);
  border-color: rgba(0, 229, 160, 0.3);
}

.tag-yellow {
  color: var(--warn-yellow);
  background: rgba(255, 209, 102, 0.08);
  border-color: rgba(255, 209, 102, 0.3);
}

.data-num {
  font-family: var(--font-data);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-light);
  letter-spacing: -0.02em;
}

.data-num[data-accent="orange"] {
  color: var(--accent-orange);
}

.data-num[data-accent="purple"] {
  color: var(--accent-purple);
}

.data-num[data-accent="green"] {
  color: var(--data-green);
}

.data-label {
  font-size: 13px;
  color: var(--text-mist);
  margin-top: 4px;
}

.img-frame {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--bg-panel), var(--bg-deep));
  border: 1px solid var(--border-soft);
}

.img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(125, 60, 233, 0.08), rgba(255, 90, 31, 0.03));
  pointer-events: none;
}

.img-frame-16x9 {
  aspect-ratio: 16 / 9;
}

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

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

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

.prose {
  max-width: 74ch;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mist);
}

.prose h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-light);
  margin: 44px 0 14px;
}

.prose h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin: 32px 0 10px;
}

.prose p {
  margin-bottom: 16px;
}

.prose a {
  color: var(--accent-orange);
  border-bottom: 1px solid rgba(255, 90, 31, 0.3);
  transition: border-color 0.2s;
}

.prose a:hover {
  border-bottom-color: var(--accent-orange);
}

.prose ul {
  padding-left: 1.2em;
  margin-bottom: 16px;
}

.prose ul li {
  position: relative;
  margin-bottom: 8px;
}

.prose ul li::before {
  content: '>';
  position: absolute;
  left: -1em;
  color: var(--accent-purple);
  font-family: var(--font-data);
}

.prose blockquote {
  border-left: 3px solid var(--accent-purple);
  padding: 12px 18px;
  background: var(--glass);
  border-radius: 0 4px 4px 0;
  margin: 20px 0;
  color: var(--text-light);
  font-style: normal;
}

.prose code {
  font-family: var(--font-data);
  font-size: 0.9em;
  color: var(--data-green);
  background: rgba(0, 229, 160, 0.08);
  padding: 2px 6px;
  border-radius: 3px;
}

.flow-line {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--border-soft);
  overflow: hidden;
  border-radius: 2px;
}

.flow-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent-purple), var(--accent-orange), transparent);
  border-radius: 2px;
  animation: flow-sweep 2.6s ease-in-out infinite;
}

@keyframes flow-sweep {
  0% {
    left: -30%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

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

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

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

  .flow-line::before,
  .status-dot {
    animation: none !important;
  }
}
