:root {
  --brand: #2ecfc1;
  --brand-deep: #087d78;
  --brand-ink: #075f5b;
  --ink: #0d1726;
  --ink-soft: #465363;
  --mist: #f2faf9;
  --sky: #e8f8fc;
  --line: #d8e7e5;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(13, 23, 38, 0.1);
  --container: 1180px;
  --header-height: 72px;
  color-scheme: light;
  font-family: Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(46, 207, 193, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  text-decoration: none;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: 88px;
}

.section--mist {
  background: var(--mist);
}

.section--sky {
  background:
    radial-gradient(circle at 82% 16%, rgba(46, 207, 193, 0.2), transparent 30%),
    linear-gradient(135deg, #f7ffff 0%, var(--sky) 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

p {
  margin-top: 0;
  color: var(--ink-soft);
}

.lede {
  max-width: 720px;
  font-size: clamp(1.08rem, 2vw, 1.24rem);
  line-height: 1.7;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 38px;
}

.section-heading > div {
  max-width: 720px;
}

.section-heading p {
  margin-bottom: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--ink);
  background: var(--brand);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #4addd0;
}

.button--outline {
  color: var(--ink);
  background: transparent;
  border-color: #9cb9b6;
}

.button--outline:hover {
  background: var(--white);
  border-color: var(--brand-deep);
}

.button--dark-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.button--dark-outline:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.text-link {
  color: var(--brand-ink);
  font-weight: 800;
  text-underline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(216, 231, 229, 0.9);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: 142px;
  height: 42px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav > a,
.nav-products > summary {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 10px;
  color: #253243;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.desktop-nav > a:hover,
.nav-products > summary:hover,
.nav-products[open] > summary {
  background: var(--mist);
  color: var(--brand-ink);
}

.nav-products {
  position: relative;
}

.nav-products > summary {
  list-style: none;
}

.nav-products > summary::-webkit-details-marker {
  display: none;
}

.nav-products > summary::after {
  width: 7px;
  height: 7px;
  margin-left: 9px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.nav-products[open] > summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.desktop-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 290px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.desktop-dropdown a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.desktop-dropdown a small {
  display: block;
  color: #6b7684;
  font-weight: 500;
}

.desktop-dropdown a:hover {
  background: var(--mist);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform 160ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before {
  position: absolute;
  top: -6px;
}

.menu-toggle-lines::after {
  position: absolute;
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  padding: 24px 20px 48px;
  background: var(--white);
  overscroll-behavior: contain;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-inner {
  width: min(100%, 680px);
  margin-inline: auto;
}

.mobile-menu a,
.mobile-menu summary {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
}

.mobile-menu details > summary {
  cursor: pointer;
  list-style: none;
}

.mobile-menu details > summary::-webkit-details-marker {
  display: none;
}

.mobile-menu details > summary::after {
  content: "+";
  color: var(--brand-ink);
  font-size: 1.5rem;
  font-weight: 500;
}

.mobile-menu details[open] > summary::after {
  content: "−";
}

.mobile-subnav {
  padding: 6px 0 12px 18px;
}

.mobile-subnav a {
  min-height: 46px;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 700;
}

.mobile-menu .button {
  margin-top: 24px;
  border-bottom: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: 72px 86px;
  background:
    radial-gradient(circle at 18% 12%, rgba(46, 207, 193, 0.23), transparent 30%),
    radial-gradient(circle at 87% 75%, rgba(74, 171, 233, 0.2), transparent 30%),
    linear-gradient(135deg, #f9ffff 0%, #eaf9fb 100%);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 68px;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy p {
  max-width: 630px;
  font-size: 1.16rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 7px 11px;
  border: 1px solid rgba(8, 125, 120, 0.22);
  border-radius: 999px;
  color: var(--brand-ink);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-kicker::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(46, 207, 193, 0.15);
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.hero-orbit {
  position: absolute;
  inset: 7% 3% 8% 8%;
  border: 1px dashed rgba(8, 125, 120, 0.28);
  border-radius: 50%;
}

.hero-product {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(216, 231, 229, 0.9);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-product--main {
  top: 6%;
  right: 4%;
  width: 68%;
  height: 68%;
  transform: rotate(2deg);
}

.hero-product--left {
  bottom: 2%;
  left: 0;
  width: 43%;
  height: 45%;
  transform: rotate(-4deg);
}

.hero-product--right {
  right: 0;
  bottom: 0;
  width: 39%;
  height: 38%;
  transform: rotate(4deg);
}

.proof-row {
  display: grid;
  margin-top: 36px;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  padding-top: 14px;
  border-top: 1px solid rgba(8, 125, 120, 0.24);
}

.proof-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.98rem;
}

.proof-item span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

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

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

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

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

.category-card,
.product-card,
.feature-card,
.value-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.category-card {
  min-height: 100%;
}

.category-card a,
.product-card a {
  text-decoration: none;
}

.category-media {
  aspect-ratio: 1.18 / 1;
  padding: 18px;
  background:
    radial-gradient(circle at 70% 24%, rgba(46, 207, 193, 0.14), transparent 36%),
    var(--mist);
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.category-card:hover .category-media img,
.product-card:hover .product-media img {
  transform: scale(1.025);
}

.category-copy {
  padding: 22px;
}

.category-copy p {
  margin-bottom: 16px;
}

.category-copy span {
  color: var(--brand-ink);
  font-weight: 800;
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.product-media {
  aspect-ratio: 1 / 0.86;
  overflow: hidden;
  padding: 20px;
  background: #f8fbfb;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-meta {
  margin-bottom: 8px;
  color: var(--brand-ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-copy p {
  flex: 1;
  margin-bottom: 18px;
}

.product-copy .text-link {
  align-self: flex-start;
}

.ecosystem-frame {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(13, 23, 38, 0.08);
}

.ecosystem-frame img {
  width: 100%;
  height: auto;
}

.value-card,
.feature-card {
  padding: 26px;
}

.value-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--brand-ink);
  background: rgba(46, 207, 193, 0.14);
  border-radius: 12px;
  font-weight: 900;
}

.value-card p,
.feature-card p {
  margin-bottom: 0;
}

.dark-band {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(46, 207, 193, 0.24), transparent 26%),
    var(--ink);
}

.dark-band p,
.dark-band .eyebrow {
  color: #c9d6de;
}

.dark-band .eyebrow {
  color: #74e4da;
}

.dark-band-inner {
  display: grid;
  align-items: center;
  gap: 44px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.dark-band-inner .button-row {
  justify-content: flex-end;
  margin-top: 0;
}

.page-hero {
  padding-block: 62px 68px;
  background:
    radial-gradient(circle at 84% 12%, rgba(46, 207, 193, 0.18), transparent 28%),
    linear-gradient(135deg, #f9ffff, var(--mist));
}

.page-hero .lede {
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: #607080;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--brand-ink);
  text-underline-offset: 3px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}

.filter-button {
  min-height: 42px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--ink);
  background: var(--brand);
  border-color: var(--brand);
}

[data-product-card][hidden] {
  display: none;
}

.product-hero {
  padding-block: 56px 76px;
}

.product-hero-grid {
  display: grid;
  align-items: start;
  gap: 54px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.gallery-main {
  display: flex;
  min-height: 560px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 30px;
  background: #f8fbfb;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.gallery-main img {
  width: 100%;
  height: 500px;
  object-fit: contain;
}

.gallery-thumbs {
  display: grid;
  margin-top: 12px;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gallery-thumb {
  display: flex;
  height: 84px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.gallery-thumb[aria-selected="true"] {
  border-color: var(--brand-deep);
  box-shadow: inset 0 0 0 1px var(--brand-deep);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-summary {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.product-summary h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.3rem);
}

.product-summary .lede {
  font-size: 1.1rem;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.feature-pills li {
  padding: 8px 11px;
  color: #23413f;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.variant-panel {
  margin-top: 26px;
  padding: 20px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.variant-panel label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.variant-select {
  width: 100%;
  min-height: 48px;
  padding: 9px 42px 9px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #a9bfbd;
  border-radius: 10px;
}

.variant-panel .button {
  width: 100%;
  margin-top: 12px;
}

.variant-note {
  margin: 10px 0 0;
  color: #64717e;
  font-size: 0.82rem;
}

.spec-list {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.spec-row {
  display: grid;
  gap: 22px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(140px, 0.34fr) minmax(0, 0.66fr);
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row dt {
  color: #667482;
  font-weight: 700;
}

.spec-row dd {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
}

.category-intro {
  display: grid;
  align-items: center;
  gap: 54px;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
}

.category-visual {
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(13, 23, 38, 0.08);
}

.category-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.story-grid {
  display: grid;
  align-items: center;
  gap: 58px;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}

.story-visual {
  overflow: hidden;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.story-visual img {
  width: 100%;
}

.not-found {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  place-items: center;
  padding: 72px 20px;
  text-align: center;
}

.not-found-inner {
  max-width: 650px;
}

.site-footer {
  color: #d8e1e6;
  background: #08111d;
}

.footer-main {
  display: grid;
  gap: 46px;
  padding-block: 64px 42px;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(140px, 0.7fr));
}

.footer-brand img {
  width: 150px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  padding: 6px 10px;
  background: var(--white);
  border-radius: 10px;
}

.footer-brand p {
  max-width: 380px;
  margin-top: 20px;
  color: #9eacb8;
}

.footer-column h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 9px 0;
  color: #b8c5ce;
  text-decoration: none;
}

.footer-column a:hover {
  color: #7ae9df;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  color: #8795a1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
  color: inherit;
}

@media (max-width: 1020px) {
  .grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .product-hero-grid,
  .category-intro,
  .story-grid {
    gap: 42px;
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .product-summary {
    position: static;
  }

  .gallery-main {
    min-height: 500px;
  }

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

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

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

  .section {
    padding-block: 64px;
  }

  .hero {
    padding-block: 54px 66px;
  }

  .hero-visual {
    min-height: 440px;
  }

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

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

  .dark-band-inner {
    grid-template-columns: 1fr;
  }

  .dark-band-inner .button-row {
    justify-content: flex-start;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 2.75rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.25rem);
  }

  .section {
    padding-block: 56px;
  }

  .hero {
    padding-block: 44px 52px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy p {
    font-size: 1.04rem;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-product {
    padding: 9px;
    border-radius: 18px;
  }

  .hero-product--main {
    width: 70%;
    height: 68%;
  }

  .hero-product--left {
    width: 44%;
    height: 43%;
  }

  .hero-product--right {
    width: 42%;
    height: 39%;
  }

  .grid--four,
  .grid--three,
  .grid--two,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-block: 42px 48px;
  }

  .product-hero {
    padding-block: 36px 58px;
  }

  .product-hero-grid {
    gap: 30px;
  }

  .gallery-main {
    min-height: 360px;
    padding: 18px;
  }

  .gallery-main img {
    height: 320px;
  }

  .gallery-thumbs {
    gap: 7px;
  }

  .gallery-thumb {
    height: 72px;
    padding: 5px;
    border-radius: 10px;
  }

  .product-summary h1 {
    font-size: clamp(2.15rem, 11vw, 2.65rem);
  }

  .feature-pills {
    gap: 6px;
  }

  .spec-row {
    gap: 5px;
    grid-template-columns: 1fr;
  }

  .footer-main {
    padding-block: 50px 32px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
