:root {
  --bg: #06100f;
  --bg-deep: #030a09;
  --panel: #0b1917;
  --panel-soft: #10211e;
  --line: rgba(226, 255, 241, 0.12);
  --line-strong: rgba(226, 255, 241, 0.2);
  --ink: #f2faf5;
  --muted: #9cafaa;
  --quiet: #71817d;
  --mint: #91e6bd;
  --mint-bright: #caffdf;
  --mint-dark: #082319;
  --warm: #efcba6;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 4%, rgba(69, 139, 112, 0.13), transparent 28rem),
    var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--bg);
  background: var(--mint-bright);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1228px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 12px 14px 12px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(6, 16, 15, 0.82);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  height: 28px;
  width: auto;
}

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

.site-header nav a {
  padding: 9px 13px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.site-header nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
}

.site-header nav .nav-cta {
  margin-left: 4px;
  color: var(--mint-dark);
  background: var(--mint);
}

.site-header nav .nav-cta:hover {
  color: #020806;
  background: var(--mint-bright);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  min-height: 760px;
  padding-block: 96px 110px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(145, 230, 189, 0.1);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(58px, 6.7vw, 96px);
  font-weight: 600;
  letter-spacing: -0.067em;
  line-height: 0.94;
}

.hero-lede {
  max-width: 660px;
  margin: 32px 0 0;
  color: #b8c8c3;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-actions.centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--mint-dark);
  background: var(--mint);
  box-shadow: 0 15px 34px rgba(93, 206, 154, 0.18);
}

.button-primary:hover {
  color: #020806;
  background: var(--mint-bright);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
}

.button-secondary:hover {
  border-color: rgba(226, 255, 241, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 19px;
  margin: 25px 0 0;
  padding: 0;
  color: var(--quiet);
  font-size: 12px;
  list-style: none;
}

.trust-row li:not(:last-child)::after {
  margin-left: 19px;
  color: rgba(255, 255, 255, 0.16);
  content: "·";
}

.hero-product {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 570px;
}

.ambient-ring {
  position: absolute;
  border: 1px solid rgba(145, 230, 189, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.ring-one {
  width: 560px;
  height: 560px;
}

.ring-two {
  width: 430px;
  height: 430px;
  border-color: rgba(145, 230, 189, 0.06);
}

.product-window {
  position: relative;
  z-index: 2;
  width: min(100%, 490px);
  overflow: hidden;
  border: 1px solid rgba(226, 255, 241, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(84, 183, 143, 0.13), transparent 38%),
    linear-gradient(155deg, rgba(17, 40, 36, 0.97), rgba(6, 16, 15, 0.98));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.05);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 17px 18px;
  border-bottom: 1px solid rgba(226, 255, 241, 0.08);
  color: rgba(242, 250, 245, 0.86);
  font-size: 12px;
  font-weight: 750;
}

.window-mark {
  width: 15px;
  height: 15px;
  border: 1px solid var(--mint);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(145, 230, 189, 0.17);
}

.agent-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  padding: 5px 8px;
  border: 1px solid rgba(145, 230, 189, 0.13);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(145, 230, 189, 0.04);
  font-size: 10px;
  font-weight: 650;
}

.agent-chip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
}

.product-copy {
  padding: 34px 32px 0;
  text-align: center;
}

.mini-eyebrow {
  margin: 0 0 9px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.product-copy h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.breath-orb {
  display: grid;
  place-items: center;
  width: 238px;
  height: 238px;
  margin: 28px auto 22px;
  border: 1px solid rgba(226, 255, 241, 0.08);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(145, 230, 189, 0.1), transparent 65%);
}

.breath-orb::before {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(145, 230, 189, 0.06);
  filter: blur(2px);
  animation: breathe 10s ease-in-out infinite;
  content: "";
}

.breath-orb-core {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(145, 230, 189, 0.36);
  border-radius: 50%;
  background: radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.22), rgba(80, 190, 146, 0.19) 30%, rgba(17, 52, 44, 0.74) 72%);
  box-shadow: 0 0 45px rgba(145, 230, 189, 0.1);
  animation: breathe-core 10s ease-in-out infinite;
}

.breath-orb-core strong,
.breath-orb-core span {
  position: absolute;
}

.breath-orb-core strong {
  margin-top: -10px;
  font-size: 15px;
  font-weight: 600;
}

.breath-orb-core span {
  margin-top: 30px;
  color: var(--muted);
  font-size: 10px;
}

.timer-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px 24px;
  color: var(--quiet);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.09em;
}

.timer-line {
  flex: 1;
  height: 2px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.timer-line i {
  display: block;
  width: 44%;
  height: 100%;
  background: var(--mint);
}

@keyframes breathe {
  0%, 100% { transform: scale(0.74); opacity: 0.62; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes breathe-core {
  0%, 100% { transform: scale(0.88); }
  50% { transform: scale(1.12); }
}

.problem-band,
.detail-band {
  border-block: 1px solid var(--line);
  background: rgba(9, 24, 22, 0.68);
}

.problem-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 9vw, 130px);
  align-items: start;
  padding-block: 104px;
}

.problem-grid h2,
.section-heading h2,
.detail-copy h2,
.final-cta h2,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 67px);
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.problem-copy {
  max-width: 610px;
  color: #c0cec9;
  font-size: 20px;
}

.problem-copy p {
  margin: 0 0 22px;
}

.problem-copy p:last-child {
  margin-bottom: 0;
}

.section-block {
  padding-block: 120px;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 52px;
}

.section-heading.narrow {
  max-width: 700px;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.step-grid,
.surface-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.step-card,
.surface-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: linear-gradient(155deg, rgba(17, 36, 33, 0.82), rgba(7, 18, 17, 0.7));
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 70px;
  border: 1px solid rgba(145, 230, 189, 0.2);
  border-radius: 50%;
  color: var(--mint);
  background: rgba(145, 230, 189, 0.05);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.step-card h3,
.surface-card h3 {
  margin: 0 0 13px;
  font-size: 22px;
  font-weight: 620;
  letter-spacing: -0.028em;
  line-height: 1.15;
}

.step-card p,
.surface-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.surface-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.surface-card.featured {
  border-color: rgba(145, 230, 189, 0.27);
  background:
    radial-gradient(circle at 100% 0, rgba(145, 230, 189, 0.09), transparent 48%),
    linear-gradient(155deg, rgba(17, 44, 38, 0.95), rgba(7, 18, 17, 0.82));
}

.surface-label {
  align-self: flex-start;
  margin-bottom: 76px;
  padding: 6px 9px;
  border: 1px solid rgba(145, 230, 189, 0.18);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(145, 230, 189, 0.06);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.surface-label span {
  margin-right: 5px;
}

.surface-label.muted {
  border-color: var(--line);
  color: var(--quiet);
  background: rgba(255, 255, 255, 0.025);
}

.surface-card a {
  display: inline-flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.surface-card a:hover {
  color: var(--mint-bright);
}

.truth-note {
  max-width: 760px;
  margin: 25px 0 0;
  color: var(--quiet);
  font-size: 13px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
  padding-block: 110px;
}

.detail-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 470px;
}

.detail-ring,
.detail-center {
  position: absolute;
  border-radius: 50%;
}

.detail-ring {
  border: 1px solid rgba(145, 230, 189, 0.13);
}

.ring-a { width: 410px; height: 410px; }
.ring-b { width: 300px; height: 300px; border-color: rgba(145, 230, 189, 0.2); }
.ring-c { width: 190px; height: 190px; border-color: rgba(145, 230, 189, 0.28); }

.detail-center {
  width: 82px;
  height: 82px;
  background: radial-gradient(circle at 34% 27%, #d8ffeb, #6dce9f 30%, #1a6248 80%);
  box-shadow: 0 0 70px rgba(145, 230, 189, 0.18);
}

.feature-list {
  display: grid;
  gap: 0;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.feature-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-list strong {
  color: var(--ink);
  font-weight: 670;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(52px, 9vw, 130px);
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 640;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--mint);
  font-size: 22px;
  font-weight: 400;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  margin: -6px 0 25px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 120%, rgba(145, 230, 189, 0.13), transparent 45%),
    var(--bg-deep);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(145, 230, 189, 0.07);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta::before { width: 760px; height: 760px; }
.final-cta::after { width: 520px; height: 520px; }

.final-cta-inner {
  position: relative;
  z-index: 1;
  padding-block: 125px;
  text-align: center;
}

.final-cta h2 {
  max-width: 920px;
  margin-inline: auto;
}

.cta-footnote {
  margin: 20px 0 0;
  color: var(--quiet);
  font-size: 12px;
}

footer {
  padding-block: 70px;
  background: var(--bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-grid p {
  max-width: 350px;
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid .copyright {
  color: var(--quiet);
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

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

/* Legal, support, release, and setup pages */
.subpage-header {
  position: static;
}

.legal-main {
  min-height: 70vh;
}

.legal-hero {
  padding-block: 96px 52px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 880px;
}

.legal-hero > p:last-child {
  max-width: 730px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 70px;
  align-items: start;
  padding-block: 70px 110px;
}

.legal-aside {
  position: sticky;
  top: 110px;
  color: var(--quiet);
  font-size: 12px;
}

.legal-aside strong {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-content {
  color: #b9c8c3;
}

.legal-content.top-gap {
  margin-top: 70px;
}

.legal-content section {
  margin-bottom: 50px;
  scroll-margin-top: 110px;
}

.legal-content h2 {
  margin: 0 0 17px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.legal-content h3 {
  margin: 26px 0 10px;
  color: var(--ink);
  font-size: 18px;
}

.legal-content p,
.legal-content li {
  font-size: 15px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-content a {
  color: var(--mint);
}

.callout {
  margin: 28px 0;
  padding: 20px 22px;
  border: 1px solid rgba(145, 230, 189, 0.18);
  border-radius: 14px;
  color: #c8d9d2;
  background: rgba(145, 230, 189, 0.045);
}

.support-cards,
.setup-grid,
.release-grid {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

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

.support-card,
.setup-card,
.release-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(13, 30, 27, 0.68);
}

.support-card h2,
.setup-card h2,
.release-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.support-card p,
.setup-card p,
.release-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.support-card a,
.setup-card a,
.release-card a {
  color: var(--mint);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.code-box {
  padding: 13px 15px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--mint-bright);
  background: var(--bg-deep);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.version-pill {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--mint);
  background: rgba(145, 230, 189, 0.07);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

@media (max-width: 980px) {
  .site-header nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 58px;
    min-height: auto;
    padding-block: 82px 90px;
  }

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

  h1 {
    max-width: 850px;
  }

  .hero-product {
    min-height: 540px;
  }

  .problem-grid,
  .detail-grid,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .detail-grid {
    gap: 48px;
  }

  .faq-section {
    gap: 20px;
  }

  .step-grid,
  .surface-grid {
    grid-template-columns: 1fr;
  }

  .step-card,
  .surface-card {
    min-height: 260px;
  }

  .step-number,
  .surface-label {
    margin-bottom: 45px;
  }
}

@media (max-width: 700px) {
  .section-shell {
    width: min(100% - 30px, 1180px);
  }

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 10px 10px 10px 14px;
  }

  .brand img {
    height: 24px;
  }

  .site-header nav .nav-cta {
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero {
    padding-block: 68px 80px;
  }

  h1 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .hero-lede {
    margin-top: 25px;
    font-size: 18px;
  }

  .hero-actions,
  .hero-actions.centered {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .trust-row li::after {
    display: none;
  }

  .hero-product {
    min-height: 460px;
  }

  .ring-one { width: 430px; height: 430px; }
  .ring-two { width: 340px; height: 340px; }

  .product-window {
    border-radius: 23px;
  }

  .breath-orb {
    width: 205px;
    height: 205px;
  }

  .problem-grid,
  .detail-grid,
  .section-block,
  .final-cta-inner {
    padding-block: 78px;
  }

  .problem-grid h2,
  .section-heading h2,
  .detail-copy h2,
  .final-cta h2,
  .legal-hero h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .problem-copy {
    font-size: 18px;
  }

  .detail-visual {
    min-height: 360px;
  }

  .ring-a { width: 320px; height: 320px; }
  .ring-b { width: 230px; height: 230px; }
  .ring-c { width: 145px; height: 145px; }

  .footer-grid,
  .legal-layout,
  .support-cards,
  .setup-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .legal-layout {
    gap: 45px;
  }

  .legal-hero {
    padding-block: 70px 42px;
  }

  .legal-layout {
    padding-block: 50px 80px;
  }

  .legal-aside {
    position: static;
  }
}

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

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