:root {
  --gem-navy: #243a94;
  --gem-blue: #4e84c4;
  --gem-light-blue: #afc7ea;
  --gem-soft-blue: #eef4fc;
  --gem-white: #ffffff;
  --gem-dark: #172033;
  --gem-muted: #65708a;
  --gem-shadow: 0 24px 70px rgba(36, 58, 148, 0.13);
  --transition-base: 0.3s ease;
}


/* Theme switcher */
html {
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

.theme-toggle {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 0.8rem 0.35rem 0.38rem;
  color: var(--gem-navy);
  border: 1px solid rgba(36, 58, 148, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(36, 58, 148, 0.08);
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.theme-toggle:hover {
  border-color: rgba(36, 58, 148, 0.34);
  box-shadow: 0 14px 34px rgba(36, 58, 148, 0.14);
  transform: translateY(-2px);
}

.theme-toggle-track {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 28px;
  flex: 0 0 auto;
  align-items: center;
  padding: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(135deg, #f8c45b, #f6e4a6);
  box-shadow: inset 0 1px 4px rgba(23, 32, 51, 0.12);
  transition:
    background-color var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base);
}

.theme-toggle-thumb {
  position: relative;
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(23, 32, 51, 0.2);
  transform: translateX(0);
  transition:
    transform 0.42s cubic-bezier(0.2, 0.85, 0.25, 1.2),
    background-color var(--transition-base),
    box-shadow var(--transition-base);
}

.theme-icon {
  position: absolute;
  font-size: 0.75rem;
  transition:
    opacity 0.25s ease,
    transform 0.42s cubic-bezier(0.2, 0.85, 0.25, 1.2);
}

.theme-icon-sun {
  color: #e59a16;
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-icon-moon {
  color: #afc7ea;
  opacity: 0;
  transform: rotate(-90deg) scale(0.45);
}

.theme-toggle:active .theme-toggle-thumb {
  transform: translateX(2px) scale(0.94);
}

html[data-theme="dark"] .theme-toggle {
  color: #eaf0ff;
  border-color: rgba(175, 199, 234, 0.22);
  background: rgba(20, 30, 62, 0.72);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .theme-toggle-track {
  background: linear-gradient(135deg, #17234d, #304986);
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .theme-toggle-thumb {
  background: #26396d;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.38);
  transform: translateX(20px);
}

html[data-theme="dark"] .theme-icon-sun {
  opacity: 0;
  transform: rotate(90deg) scale(0.45);
}

html[data-theme="dark"] .theme-icon-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

html[data-theme="dark"] .theme-toggle:active .theme-toggle-thumb {
  transform: translateX(18px) scale(0.94);
}

/* Dark theme */
html[data-theme="dark"] body {
  color: #edf3ff;
  background: #0c1328;
}

html[data-theme="dark"] .site-shell {
  background:
    radial-gradient(circle at 76% 30%, rgba(78, 132, 196, 0.2), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(36, 58, 148, 0.22), transparent 32%),
    linear-gradient(135deg, #0a1022 0%, #101a36 54%, #080d1d 100%);
}

html[data-theme="dark"] .site-shell::before,
html[data-theme="dark"] .site-shell::after {
  border-color: rgba(175, 199, 234, 0.1);
}

html[data-theme="dark"] .background-grid {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(175, 199, 234, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(175, 199, 234, 0.08) 1px, transparent 1px);
}

html[data-theme="dark"] .background-grid::after {
  opacity: 0.4;
  background-image: radial-gradient(rgba(175, 199, 234, 0.2) 1px, transparent 1.4px);
}

html[data-theme="dark"] .background-glow-one {
  background: rgba(78, 132, 196, 0.16);
}

html[data-theme="dark"] .background-glow-two {
  background: rgba(82, 110, 220, 0.14);
}

html[data-theme="dark"] .brand-surface {
  border-color: rgba(175, 199, 234, 0.16);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .eyebrow {
  color: #c9d9ff;
  border-color: rgba(175, 199, 234, 0.18);
  background: rgba(20, 30, 62, 0.68);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .hero-title {
  color: #f5f8ff;
}

html[data-theme="dark"] .hero-title span {
  color: #89aff0;
}

html[data-theme="dark"] .hero-title span::after {
  background: linear-gradient(90deg, rgba(78, 132, 196, 0.22), rgba(92, 132, 210, 0.45));
}

html[data-theme="dark"] .hero-lead {
  color: #d9e3f8;
}

html[data-theme="dark"] .hero-support {
  color: #9faed0;
}

html[data-theme="dark"] .launch-note,
html[data-theme="dark"] .floating-card,
html[data-theme="dark"] .social-link {
  border-color: rgba(175, 199, 234, 0.16);
  background: rgba(20, 30, 62, 0.7);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .launch-note small,
html[data-theme="dark"] .floating-card small,
html[data-theme="dark"] .social-title {
  color: #93a4c9;
}

html[data-theme="dark"] .launch-note strong,
html[data-theme="dark"] .floating-card strong,
html[data-theme="dark"] .email-link {
  color: #dce7ff;
}

html[data-theme="dark"] .social-link {
  color: #bcd1ff;
}

html[data-theme="dark"] .social-link:hover {
  color: #ffffff;
  border-color: #6e9ade;
  background: #4e84c4;
}

html[data-theme="dark"] .footer-divider {
  background: linear-gradient(90deg, transparent, rgba(175, 199, 234, 0.15), transparent);
}

html[data-theme="dark"] .site-footer {
  color: #7f8eaf;
}

html[data-theme="dark"] .footer-tagline {
  color: #aec7f4;
}

html[data-theme="dark"] .globe-shell {
  border-color: rgba(175, 199, 234, 0.24);
  background:
    radial-gradient(
      circle at 30% 22%,
      rgba(199, 220, 255, 0.34),
      rgba(78, 132, 196, 0.42) 38%,
      rgba(32, 52, 110, 0.76) 72%,
      rgba(10, 16, 34, 0.92)
    );
  box-shadow:
    inset -35px -35px 70px rgba(0, 0, 0, 0.34),
    inset 24px 24px 55px rgba(175, 199, 234, 0.08),
    0 38px 90px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .globe-logo {
  opacity: 0.72;
  filter: saturate(0.9) brightness(1.18);
}

html[data-theme="dark"] .orbit {
  border-color: rgba(175, 199, 234, 0.25);
}

@media (max-width: 575.98px) {
  .theme-toggle {
    min-height: 42px;
    gap: 0.45rem;
    padding: 0.28rem 0.62rem 0.28rem 0.32rem;
  }

  .theme-toggle-track {
    width: 44px;
    height: 26px;
  }

  .theme-toggle-thumb {
    width: 20px;
    height: 20px;
  }

  html[data-theme="dark"] .theme-toggle-thumb {
    transform: translateX(18px);
  }

  html[data-theme="dark"] .theme-toggle:active .theme-toggle-thumb {
    transform: translateX(16px) scale(0.94);
  }

  .theme-toggle-text {
    display: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--gem-dark);
  background: var(--gem-soft-blue);
  font-family: "Inter", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  transition:
    color var(--transition-base),
    background-color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

a:focus-visible {
  outline: 3px solid rgba(78, 132, 196, 0.4);
  outline-offset: 4px;
}

.site-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 30%, rgba(175, 199, 234, 0.65), transparent 26%),
    linear-gradient(135deg, #f9fbff 0%, var(--gem-soft-blue) 52%, #ffffff 100%);
}

.site-shell::before,
.site-shell::after {
  position: absolute;
  z-index: -3;
  content: "";
  border: 1px solid rgba(78, 132, 196, 0.14);
  border-radius: 50%;
}

.site-shell::before {
  width: 580px;
  height: 580px;
  top: -260px;
  right: -190px;
}

.site-shell::after {
  width: 390px;
  height: 390px;
  bottom: -230px;
  left: -150px;
}

.background-grid {
  position: absolute;
  z-index: -4;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(78, 132, 196, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 132, 196, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.background-grid::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.55;
  background-image: radial-gradient(rgba(36, 58, 148, 0.18) 1px, transparent 1.4px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at 80% 44%, black, transparent 42%);
}

.background-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(18px);
  animation: softPulse 7s ease-in-out infinite;
}

.background-glow-one {
  width: 430px;
  height: 430px;
  top: 18%;
  left: -250px;
  background: rgba(78, 132, 196, 0.15);
}

.background-glow-two {
  width: 300px;
  height: 300px;
  right: 8%;
  bottom: -190px;
  background: rgba(36, 58, 148, 0.13);
  animation-delay: 1.4s;
}

.site-header {
  min-height: 92px;
}

.brand-surface {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 36px rgba(36, 58, 148, 0.08);
  backdrop-filter: blur(14px);
}

.brand-logo {
  display: block;
  width: clamp(150px, 16vw, 210px);
  height: auto;
}

.hero-section {
  min-height: calc(100vh - 190px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  padding: 0.5rem 0.8rem;
  color: var(--gem-navy);
  border: 1px solid rgba(78, 132, 196, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(36, 58, 148, 0.06);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gem-blue);
  box-shadow: 0 0 0 6px rgba(78, 132, 196, 0.12);
  animation: softPulse 2.4s ease-in-out infinite;
}

.hero-title {
  max-width: 800px;
  color: var(--gem-dark);
  font-family: "Poppins", sans-serif;
  font-size: clamp(3.1rem, 7vw, 6.2rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-title span {
  position: relative;
  display: inline-block;
  color: var(--gem-navy);
}

.hero-title span::after {
  position: absolute;
  z-index: -1;
  height: 14%;
  right: 0.02em;
  bottom: 0.06em;
  left: 0.02em;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(78, 132, 196, 0.14), rgba(175, 199, 234, 0.75));
  transform: rotate(-1.5deg);
}

.hero-lead,
.hero-support {
  max-width: 680px;
}

.hero-lead {
  color: #34405c;
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  font-weight: 600;
  line-height: 1.65;
}

.hero-support {
  color: var(--gem-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.launch-note {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(78, 132, 196, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 36px rgba(36, 58, 148, 0.09);
  backdrop-filter: blur(14px);
}

.launch-note-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--gem-white);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gem-blue), var(--gem-navy));
  box-shadow: 0 10px 24px rgba(36, 58, 148, 0.22);
  font-size: 1.15rem;
}

.launch-note small,
.launch-note strong {
  display: block;
}

.launch-note small {
  margin-bottom: 0.08rem;
  color: var(--gem-muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-note strong {
  color: var(--gem-navy);
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
}

.social-title {
  color: #495470;
  font-size: 0.84rem;
  font-weight: 700;
}

.social-link {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--gem-navy);
  border: 1px solid rgba(36, 58, 148, 0.17);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 24px rgba(36, 58, 148, 0.07);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  color: var(--gem-white);
  border-color: var(--gem-blue);
  background: var(--gem-blue);
  box-shadow: 0 14px 28px rgba(78, 132, 196, 0.25);
  transform: translateY(-3px);
}

.email-link {
  color: var(--gem-navy);
  font-size: 0.86rem;
  font-weight: 700;
}

.email-link:hover {
  color: var(--gem-blue);
}

.visual-column {
  min-height: 610px;
}

.world-visual {
  position: relative;
  width: min(100%, 590px);
  aspect-ratio: 1 / 1;
  animation: visualFloat 6.5s ease-in-out infinite;
}

.visual-glow {
  position: absolute;
  width: 78%;
  height: 78%;
  top: 11%;
  left: 11%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 132, 196, 0.28), rgba(78, 132, 196, 0.03) 62%, transparent 72%);
  filter: blur(12px);
  animation: softPulse 5s ease-in-out infinite;
}

.globe-shell {
  position: absolute;
  z-index: 2;
  width: 72%;
  height: 72%;
  top: 14%;
  left: 14%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.92), rgba(175, 199, 234, 0.7) 35%, rgba(78, 132, 196, 0.6) 72%, rgba(36, 58, 148, 0.78));
  box-shadow:
    inset -35px -35px 70px rgba(36, 58, 148, 0.2),
    inset 24px 24px 55px rgba(255, 255, 255, 0.42),
    0 38px 90px rgba(36, 58, 148, 0.24);
}

.globe-grid {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  border-radius: inherit;
  background-image:
    repeating-radial-gradient(
      ellipse at center,
      transparent 0 15%,
      rgba(255, 255, 255, 0.82) 15.3% 15.8%,
      transparent 16.1% 31%
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 19.5%,
      rgba(255, 255, 255, 0.55) 19.8% 20.2%,
      transparent 20.5% 40%
    );
  transform: scale(1.1);
}

.globe-logo {
  position: absolute;
  width: 94%;
  height: auto;
  top: 50%;
  left: 50%;
  opacity: 0.68;
  filter: saturate(0.85) brightness(1.06);
  transform: translate(-50%, -50%);
}

.globe-shine {
  position: absolute;
  width: 58%;
  height: 34%;
  top: 5%;
  left: 16%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.55), transparent 70%);
  transform: rotate(-12deg);
}

.orbit {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(36, 58, 148, 0.3);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 98%;
  height: 42%;
  top: 29%;
  left: 1%;
  transform: rotate(-18deg);
  animation: orbitRotateOne 18s linear infinite;
}

.orbit-two {
  width: 88%;
  height: 32%;
  top: 34%;
  left: 6%;
  border-color: rgba(78, 132, 196, 0.22);
  transform: rotate(56deg);
  animation: orbitRotateTwo 24s linear infinite reverse;
}

.orbit-dot {
  position: absolute;
  z-index: 4;
  width: 14px;
  height: 14px;
  border: 4px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: var(--gem-blue);
  box-shadow: 0 8px 22px rgba(36, 58, 148, 0.32);
}

.orbit-dot-one {
  top: 24%;
  right: 12%;
}

.orbit-dot-two {
  left: 11%;
  bottom: 23%;
  background: var(--gem-navy);
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  min-width: 205px;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--gem-shadow);
  backdrop-filter: blur(16px);
}

.floating-card-top {
  top: 10%;
  right: -3%;
  animation: cardFloat 5s ease-in-out infinite;
}

.floating-card-bottom {
  bottom: 10%;
  left: -4%;
  animation: cardFloat 5.7s ease-in-out infinite reverse;
}

.floating-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--gem-white);
  border-radius: 13px;
  background: linear-gradient(135deg, var(--gem-blue), var(--gem-navy));
  box-shadow: 0 10px 22px rgba(36, 58, 148, 0.22);
  font-size: 1.1rem;
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  margin-bottom: 0.1rem;
  color: var(--gem-muted);
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.floating-card strong {
  color: var(--gem-dark);
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.particle {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  background: var(--gem-blue);
  box-shadow: 0 0 0 8px rgba(78, 132, 196, 0.08);
  animation: softPulse 3.4s ease-in-out infinite;
}

.particle-one {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 4%;
}

.particle-two {
  width: 6px;
  height: 6px;
  top: 8%;
  left: 32%;
  animation-delay: 0.8s;
}

.particle-three {
  width: 10px;
  height: 10px;
  right: 4%;
  bottom: 28%;
  animation-delay: 1.3s;
}

.particle-four {
  width: 6px;
  height: 6px;
  right: 22%;
  bottom: 4%;
  animation-delay: 1.8s;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(36, 58, 148, 0.18), transparent);
}

.site-footer {
  color: #6b7488;
  font-size: 0.8rem;
}

.footer-tagline {
  color: var(--gem-navy);
  font-weight: 700;
}

@keyframes visualFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.045);
  }
}

@keyframes orbitRotateOne {
  from {
    transform: rotate(-18deg);
  }

  to {
    transform: rotate(342deg);
  }
}

@keyframes orbitRotateTwo {
  from {
    transform: rotate(56deg);
  }

  to {
    transform: rotate(416deg);
  }
}

@media (max-width: 1199.98px) {
  .visual-column {
    min-height: 520px;
  }

  .floating-card-top {
    right: 0;
  }

  .floating-card-bottom {
    left: 0;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 2rem !important;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .visual-column {
    min-height: auto;
  }

  .world-visual {
    width: min(92vw, 540px);
  }
}

@media (max-width: 575.98px) {
  .site-header {
    min-height: 78px;
  }

  .brand-surface {
    padding: 0.25rem 0.45rem;
    border-radius: 14px;
  }

  .brand-logo {
    width: 145px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 1.5rem !important;
  }

  .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.09em;
  }

  .hero-title {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .launch-note {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .world-visual {
    width: 100%;
  }

  .globe-shell {
    width: 76%;
    height: 76%;
    top: 12%;
    left: 12%;
  }

  .floating-card {
    min-width: 172px;
    padding: 0.68rem 0.78rem;
  }

  .floating-card-top {
    top: 4%;
  }

  .floating-card-bottom {
    bottom: 4%;
  }

  .floating-icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .floating-card strong {
    font-size: 0.68rem;
  }

  .floating-card small {
    font-size: 0.57rem;
  }

  .site-footer {
    text-align: center;
  }
}

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

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