:root {
  --bg: #f7fbff;
  --surface: #ffffff;
  --surface-soft: #edf7ff;
  --text: #183247;
  --muted: #6f8498;
  --line: #d7e8f7;
  --primary: #5aa9f4;
  --primary-dark: #347fd8;
  --accent: #8bc7ff;
  --gold: #9aa7ff;
  --shadow: 0 20px 50px rgba(62, 126, 190, 0.12);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(215, 232, 247, 0.88);
  background: rgba(247, 251, 255, 0.88);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(62, 126, 190, 0.08);
}

.nav,
.section,
.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(90, 169, 244, 0.24);
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-menu a:hover {
  color: var(--text);
  background: rgba(90, 169, 244, 0.1);
}

.nav-menu .nav-login {
  color: var(--text);
}

.nav-menu .nav-cta {
  color: #fff;
  background: var(--primary);
}

.nav-menu .nav-cta:hover {
  color: #fff;
  background: var(--primary-dark);
}

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

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: 96px 0;
}

.hero {
  display: grid;
  min-height: calc(82vh - 76px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: 44px;
  padding-top: 44px;
  padding-bottom: 48px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 76px 0 auto 0;
  z-index: -1;
  height: 520px;
  background:
    radial-gradient(circle at 22% 20%, rgba(139, 199, 255, 0.18), transparent 32%),
    radial-gradient(circle at 72% 28%, rgba(90, 169, 244, 0.16), transparent 28%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
}

.hero-copy,
.section-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 20px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 16px 32px rgba(90, 169, 244, 0.25);
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary,
.button-plan {
  border-color: var(--line);
  color: var(--text);
  background: var(--surface);
}

.button-secondary:hover,
.button-plan:hover {
  border-color: rgba(90, 169, 244, 0.42);
  box-shadow: 0 12px 26px rgba(62, 126, 190, 0.08);
}

.hero-stats {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
}

.hero-stats div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.hero-stats dt {
  margin-bottom: 4px;
  font-size: 26px;
  font-weight: 850;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.network-card {
  width: min(100%, 460px);
  border: 1px solid rgba(215, 232, 247, 0.95);
  border-radius: 24px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    var(--surface);
  box-shadow: var(--shadow);
}

.network-card-header,
.metric-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.network-card-header {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.network-card-header strong {
  color: var(--primary);
}

.node-map {
  position: relative;
  height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(rgba(62, 126, 190, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 126, 190, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #fbfdff, #eaf6ff);
  background-size: 34px 34px;
}

.node {
  position: absolute;
  z-index: 2;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 0 8px rgba(90, 169, 244, 0.13),
    0 12px 28px rgba(90, 169, 244, 0.24);
}

.node::after {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(90, 169, 244, 0.22);
  border-radius: 50%;
  animation: pulse 2.8s ease-out infinite;
}

.node-a {
  top: 54px;
  left: 58px;
}

.node-b {
  top: 110px;
  right: 82px;
  background: var(--primary);
}

.node-c {
  bottom: 72px;
  left: 118px;
  background: var(--gold);
}

.node-d {
  right: 64px;
  bottom: 54px;
}

.line {
  position: absolute;
  z-index: 1;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(90, 169, 244, 0.52), transparent);
}

.line-a {
  top: 94px;
  left: 75px;
  width: 255px;
  transform: rotate(12deg);
}

.line-b {
  top: 158px;
  left: 125px;
  width: 190px;
  transform: rotate(42deg);
}

.line-c {
  bottom: 83px;
  left: 135px;
  width: 210px;
  transform: rotate(-4deg);
}

.metric-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.metric-list div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: #fff;
}

.metric-list span {
  color: var(--muted);
  font-size: 14px;
}

.metric-list strong {
  font-size: 14px;
}

.section-muted {
  position: relative;
}

.section-muted::before {
  content: "";
  position: absolute;
  inset: 0 50%;
  z-index: -1;
  width: 100vw;
  margin-left: -50vw;
  background: var(--surface-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

#features .section-heading,
#nodes .section-heading,
#plans .section-heading,
#faq .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.feature-grid,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card,
.plan-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.feature-card {
  min-height: 236px;
  padding: 24px;
}

.feature-card p,
.plan-card p,
.faq-answer p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-icon {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: rgba(90, 169, 244, 0.12);
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
}

.feature-icon.speed::before {
  width: 24px;
  height: 24px;
  left: 10px;
  top: 10px;
  border: 3px solid var(--primary);
  border-top-color: transparent;
  border-radius: 50%;
}

.feature-icon.speed::after {
  width: 14px;
  height: 3px;
  left: 22px;
  top: 21px;
  transform: rotate(-28deg);
  background: var(--primary);
}

.feature-icon.sync::before {
  inset: 11px;
  border: 3px solid var(--accent);
  border-left-color: transparent;
  border-radius: 50%;
}

.feature-icon.sync::after {
  right: 9px;
  top: 12px;
  border: 6px solid transparent;
  border-left-color: var(--accent);
}

.feature-icon.pay::before {
  width: 24px;
  height: 16px;
  left: 10px;
  top: 14px;
  border: 3px solid var(--gold);
  border-radius: 5px;
}

.feature-icon.pay::after {
  width: 10px;
  height: 3px;
  right: 10px;
  bottom: 13px;
  background: var(--gold);
}

.feature-icon.usage::before {
  width: 6px;
  height: 22px;
  left: 11px;
  bottom: 10px;
  background: var(--primary);
  box-shadow:
    10px -8px 0 var(--accent),
    20px -14px 0 var(--gold);
}

.feature-icon.usage::after {
  left: 9px;
  right: 9px;
  bottom: 8px;
  height: 2px;
  background: rgba(62, 126, 190, 0.18);
}

.node-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 22px;
  align-items: stretch;
}

.distribution-panel,
.region-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.distribution-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.distribution-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.distribution-header span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.distribution-header strong {
  display: block;
  font-size: 20px;
}

.distribution-header .status-pill {
  display: inline-flex;
  flex: 0 0 auto;
  width: fit-content;
  align-self: start;
  align-items: center;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--primary);
  background: rgba(90, 169, 244, 0.12);
  font-size: 12px;
  font-weight: 850;
}

.distribution-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(rgba(62, 126, 190, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 126, 190, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 26% 42%, rgba(139, 199, 255, 0.22), transparent 24%),
    radial-gradient(circle at 70% 34%, rgba(154, 167, 255, 0.16), transparent 26%),
    linear-gradient(135deg, #fbfdff, #eaf6ff);
  background-size:
    36px 36px,
    36px 36px,
    auto,
    auto,
    auto;
}

.distribution-map::before,
.distribution-map::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(90, 169, 244, 0.24);
  border-radius: 48% 52% 45% 55%;
  pointer-events: none;
}

.distribution-map::before {
  width: 290px;
  height: 155px;
  left: 12%;
  top: 29%;
  transform: rotate(-9deg);
}

.distribution-map::after {
  width: 230px;
  height: 135px;
  right: 10%;
  top: 23%;
  transform: rotate(12deg);
}

.map-dot {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--primary);
  box-shadow:
    0 0 0 8px rgba(90, 169, 244, 0.14),
    0 14px 26px rgba(90, 169, 244, 0.22);
}

.map-dot::before {
  content: attr(data-city);
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(62, 126, 190, 0.08);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.map-dot-hk {
  left: 30%;
  top: 48%;
}

.map-dot-vn {
  left: 37%;
  top: 56%;
  background: var(--accent);
}

.map-dot-ph {
  left: 47%;
  top: 58%;
  background: var(--gold);
}

.map-dot-sg {
  left: 41%;
  top: 65%;
}

.map-dot-jp {
  left: 55%;
  top: 42%;
}

.map-dot-kr {
  left: 50%;
  top: 36%;
  background: var(--accent);
}

.map-dot-us {
  left: 15%;
  top: 42%;
  background: var(--gold);
}

.map-dot-de {
  right: 17%;
  top: 33%;
  background: var(--accent);
}

.map-route {
  position: absolute;
  z-index: 1;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(90, 169, 244, 0.5), transparent);
}

.route-a {
  left: 17%;
  top: 45%;
  width: 230px;
  transform: rotate(5deg);
}

.route-b {
  left: 32%;
  top: 52%;
  width: 140px;
  transform: rotate(-24deg);
}

.route-c {
  left: 42%;
  top: 66%;
  width: 155px;
  transform: rotate(-35deg);
}

.route-d {
  left: 56%;
  top: 42%;
  width: 210px;
  transform: rotate(-9deg);
}

.node-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.node-summary-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(247, 251, 255, 0.86);
}

.node-summary-grid span,
.region-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.node-summary-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
}

.region-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.region-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.region-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.region-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.region-card dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
}

.region-card dl div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(247, 251, 255, 0.72);
}

.region-card dd {
  margin: 4px 0 0;
  font-weight: 850;
}

.plan-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 28px;
}

.featured-plan {
  border-color: rgba(90, 169, 244, 0.46);
  box-shadow: var(--shadow);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #fff;
  background: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.plan-header {
  min-height: 78px;
}

.price {
  margin: 8px 0 24px;
  font-size: 48px;
  font-weight: 850;
}

.price span,
.price small {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 6px;
  transform: rotate(-45deg);
  border-bottom: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
}

.plan-card .button {
  margin-top: auto;
}

.faq-list {
  display: grid;
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 18px 22px;
  color: var(--text);
  background: transparent;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-question span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  background: var(--primary);
}

.faq-question span::before {
  width: 18px;
  height: 2px;
  top: 8px;
}

.faq-question span::after {
  width: 2px;
  height: 18px;
  left: 8px;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] span::after {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 240px;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  text-align: left;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 36px 0 46px;
  text-align: center;
}

.footer-main {
  display: grid;
  justify-items: center;
}

.site-footer p {
  margin: 14px 0 0;
  color: var(--muted);
}

.footer-brand {
  justify-content: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copyright {
  margin: 0;
  font-size: 13px;
}

@keyframes pulse {
  from {
    transform: scale(0.6);
    opacity: 0.75;
  }

  to {
    transform: scale(1.5);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

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

  .node-overview {
    grid-template-columns: 1fr;
  }

  .region-list {
    grid-template-columns: 1fr;
  }

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

  .plan-card {
    min-height: auto;
  }

}

@media (max-width: 760px) {
  .nav,
  .section,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    min-height: 68px;
  }

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

  .nav-menu {
    position: fixed;
    top: 68px;
    right: 14px;
    left: 14px;
    display: grid;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    min-height: 48px;
    justify-content: center;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: 36px;
  }

  .hero-copy,
  .section-heading p {
    font-size: 16px;
  }

  .hero-actions {
    margin-bottom: 28px;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats,
  .feature-grid,
  .node-summary-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hero-stats div {
    padding: 12px;
  }

  .hero-stats dt {
    font-size: 22px;
  }

  .hero-stats dd {
    font-size: 12px;
  }

  .node-map {
    height: 260px;
  }

  .distribution-panel {
    padding: 18px;
  }

  .distribution-header {
    display: grid;
  }

  .distribution-map {
    min-height: 300px;
  }

  .node-summary-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .region-card dl {
    grid-template-columns: 1fr;
  }

  .line-a {
    width: 190px;
  }

  .line-b {
    width: 140px;
  }

  .line-c {
    width: 150px;
  }

}

@media (max-width: 480px) {
  .hero-actions,
  .footer-links {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .network-card {
    padding: 16px;
    border-radius: 18px;
  }

  .distribution-map {
    min-height: 260px;
  }

  .map-dot::before {
    bottom: 22px;
    padding: 3px 6px;
    font-size: 11px;
  }

  .route-a {
    width: 145px;
  }

  .route-b,
  .route-c {
    width: 100px;
  }

  .route-d {
    width: 125px;
  }

  .node-a {
    left: 38px;
  }

  .node-b {
    right: 48px;
  }

  .node-c {
    left: 72px;
  }

  .node-d {
    right: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
