:root {
  --navy-950: #08182a;
  --navy-900: #10243e;
  --navy-800: #153b5b;
  --blue-700: #176b9e;
  --blue-600: #197cae;
  --cyan-500: #15c9e8;
  --cyan-200: #a7edf7;
  --ink: #17212b;
  --muted: #536272;
  --line: #d8e3ea;
  --surface: #f3f7fa;
  --surface-strong: #e8f1f6;
  --white: #ffffff;
  --shadow-sm: 0 12px 32px rgba(16, 36, 62, 0.09);
  --shadow-lg: 0 28px 72px rgba(8, 24, 42, 0.24);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --container: 75rem;
  --content: 48rem;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--blue-700);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy-900);
}

:focus-visible {
  outline: 0.2rem solid var(--cyan-500);
  outline-offset: 0.2rem;
}

::selection {
  background: var(--cyan-200);
  color: var(--navy-950);
}

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

h1,
h2,
h3 {
  color: var(--navy-900);
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.4rem;
  font-size: clamp(2.55rem, 7vw, 5.6rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.22rem, 2vw, 1.5rem);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

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

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(216, 227, 234, 0.85);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy-900);
  text-decoration: none;
}

.brand:hover {
  color: var(--navy-900);
}

.brand-mark {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(21, 201, 232, 0.72);
  border-radius: 0.72rem;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  box-shadow: inset 0 0 0 0.18rem rgba(255, 255, 255, 0.04);
}

.brand-mark span:first-child {
  justify-self: end;
  color: var(--cyan-500);
}

.brand-mark span:last-child {
  justify-self: start;
}

.brand-name {
  color: var(--navy-900);
  font-size: 1.22rem;
  font-weight: 780;
  letter-spacing: -0.04em;
}

.brand-name span {
  color: var(--blue-700);
}

.menu-button {
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-900);
  padding: 0.55rem 0.85rem 0.55rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.menu-button__icon {
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  place-content: center;
  gap: 0.32rem;
  border-radius: 50%;
  background: var(--navy-900);
}

.menu-button__icon i {
  display: block;
  width: 0.76rem;
  height: 0.1rem;
  background: var(--white);
  transition: transform 160ms ease;
}

.menu-button[aria-expanded="true"] .menu-button__icon i:first-child {
  transform: translateY(0.21rem) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__icon i:last-child {
  transform: translateY(-0.21rem) rotate(-45deg);
}

.primary-nav {
  position: fixed;
  inset: 5rem 0 0;
  display: none;
  overflow-y: auto;
  background: var(--navy-950);
  padding: 1.5rem;
}

.menu-open .primary-nav {
  display: block;
}

.nav-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: flex;
  min-height: 3.7rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-list a::after {
  color: var(--cyan-500);
  content: "→";
}

.nav-list a[aria-current="page"] {
  color: var(--cyan-200);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(21, 201, 232, 0.18), transparent 27rem),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 58%, #153b5b);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 2.4rem;
  padding-block: clamp(4.4rem, 10vw, 8.4rem) 3.5rem;
}

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

.eyebrow,
.kicker {
  margin-bottom: 1rem;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-heading--light .kicker {
  color: var(--cyan-200);
}

.hero h1,
.page-hero h1 {
  color: var(--white);
}

.hero-lead {
  max-width: 41rem;
  margin-bottom: 2rem;
  color: #dce8f0;
  font-size: clamp(1.15rem, 2vw, 1.38rem);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-weight: 760;
  text-decoration: none;
}

.button--primary {
  background: var(--cyan-500);
  color: var(--navy-950);
}

.button--primary:hover {
  background: #61dff2;
  color: var(--navy-950);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
}

.button--secondary:hover {
  border-color: var(--white);
  color: var(--white);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 24, 42, 0.45), transparent 45%);
  content: "";
}

.hero-media img {
  width: 100%;
  aspect-ratio: 800 / 263;
  object-fit: cover;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #c7d6e1;
}

.hero-proof span {
  padding: 0.9rem 0.5rem 0 0;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 7.8rem);
}

.section--tight {
  padding-bottom: clamp(3.8rem, 7vw, 6.3rem);
}

.section-heading {
  max-width: 49rem;
  margin-bottom: 2.4rem;
}

.section-heading > p:last-child {
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.detail-card {
  position: relative;
  display: flex;
  min-height: 17rem;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 0 0 rgba(16, 36, 62, 0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.detail-card:hover {
  border-color: #b5cbd8;
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-sm);
}

.service-card--featured {
  border-color: var(--navy-800);
  background: var(--navy-900);
  color: #dce8f0;
}

.service-card--featured h3 a,
.service-card--featured .text-link {
  color: var(--white);
}

.card-index {
  margin-bottom: auto;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-card--featured .card-index {
  color: var(--cyan-500);
}

.service-card h3 a,
.detail-card h3 a {
  color: inherit;
  text-decoration: none;
}

.service-card p,
.detail-card p {
  color: var(--muted);
}

.service-card--featured p {
  color: #c8d8e3;
}

.text-link {
  margin-top: auto;
  font-weight: 750;
  text-decoration: none;
}

.split-section {
  display: grid;
  gap: 2rem;
  border-top: 1px solid var(--line);
}

.prose > p {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.link-pair {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.topic-link {
  display: grid;
  gap: 0.22rem;
  border-left: 0.18rem solid var(--cyan-500);
  background: var(--surface);
  color: var(--navy-900);
  padding: 1rem 1.1rem;
  text-decoration: none;
}

.topic-link span {
  color: var(--muted);
  font-size: 0.92rem;
}

.process-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  color: var(--white);
  padding-inline: clamp(1.5rem, 5vw, 4.5rem);
}

.process-panel::after {
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(21, 201, 232, 0.28);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 4rem rgba(21, 201, 232, 0.04), 0 0 0 8rem rgba(21, 201, 232, 0.025);
}

.process-panel h2 {
  color: var(--white);
}

.process-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1rem;
}

.process-list span {
  color: var(--cyan-200);
  font-weight: 760;
}

.process-list p {
  max-width: 25rem;
  margin: 0.35rem 0 0;
  color: #cbd9e3;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  top: -7rem;
  right: -5rem;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(21, 201, 232, 0.24);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 4rem rgba(21, 201, 232, 0.04), 0 0 0 8rem rgba(21, 201, 232, 0.02);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.breadcrumbs {
  margin-bottom: 2.2rem;
  color: #b8cad6;
  font-size: 0.9rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.45rem;
  color: #7992a4;
  content: "/";
}

.breadcrumbs a {
  color: var(--white);
}

.page-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.4rem, 6vw, 4.9rem);
}

.page-shell {
  display: grid;
  gap: 3.5rem;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.article-content {
  max-width: var(--content);
}

.page-shell--wide {
  display: block;
}

.article-content--wide {
  max-width: 60rem;
}

.content-section + .content-section,
.content-section + .note-card,
.content-section + .source-card,
.source-card + .content-section,
.note-card + .content-section {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
}

.content-section > p,
.note-card p {
  color: var(--muted);
  font-size: 1.06rem;
}

.content-section > p:last-child,
.note-card p:last-child {
  margin-bottom: 0;
}

.content-section--panel {
  max-width: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

.check-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  border: 0.16rem solid var(--blue-700);
  border-radius: 0.16rem;
  content: "";
}

.detail-card {
  min-height: 12rem;
  background: var(--surface);
}

.mini-grid {
  display: grid;
  gap: 1rem;
}

.mini-grid > div {
  border-top: 0.16rem solid var(--cyan-500);
  background: var(--white);
  padding: 1.25rem;
}

.mini-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.note-card,
.source-card,
.owner-check {
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: #dce8f0;
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.note-card h2,
.source-card h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.note-card p {
  color: #dce8f0;
}

.note-card a {
  color: var(--cyan-200);
}

.source-card {
  display: grid;
  gap: 1.4rem;
}

.source-card a {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  color: var(--white);
  padding-block: 0.75rem;
  font-weight: 720;
  text-decoration: none;
}

.source-card a:hover {
  color: var(--cyan-200);
}

.related-panel {
  align-self: start;
  border-top: 0.2rem solid var(--cyan-500);
  background: var(--surface);
  padding: 1.4rem;
}

.related-panel h2 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-panel ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--navy-900);
  padding-bottom: 0.7rem;
  font-weight: 680;
  text-decoration: none;
}

.related-panel a::after {
  color: var(--blue-700);
  content: "→";
}

.contact-cta {
  padding-bottom: clamp(4.5rem, 9vw, 7.5rem);
}

.contact-cta-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.8rem;
  align-items: end;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--surface), #e5f3f7);
  padding: clamp(1.6rem, 5vw, 4rem);
}

.contact-cta-inner::after {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 13rem;
  height: 13rem;
  border: 1px solid rgba(23, 107, 158, 0.22);
  border-radius: 50%;
  content: "";
}

.contact-cta h2 {
  max-width: 14ch;
  margin-bottom: 0.7rem;
}

.contact-cta p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
}

.contact-cta .button {
  position: relative;
  z-index: 1;
  justify-self: start;
  background: var(--navy-900);
  color: var(--white);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-intro > p:last-child {
  color: var(--muted);
}

.contact-options {
  display: grid;
  gap: 0.85rem;
}

.contact-option {
  display: grid;
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--navy-900);
  padding: 1.35rem;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.contact-option:hover {
  border-color: var(--blue-700);
  color: var(--navy-900);
}

.contact-option strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
}

.contact-option > span:last-child {
  color: var(--blue-700);
  font-size: 0.92rem;
  font-weight: 680;
}

.contact-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.owner-check {
  margin-top: 2rem;
  background: #fff5d9;
  color: #59420e;
}

.owner-check p {
  margin: 0.3rem 0 0;
}

.site-footer {
  background: var(--navy-950);
  color: #b9cad6;
  padding-top: clamp(3.8rem, 7vw, 5.6rem);
}

.footer-grid {
  display: grid;
  gap: 2.4rem;
}

.brand--footer .brand-name {
  color: var(--white);
}

.footer-brand p {
  max-width: 28rem;
  margin-top: 1.2rem;
}

.site-footer h2 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-contact-link {
  color: #d9e5ec;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact-link:hover {
  color: var(--cyan-200);
}

.footer-contact-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 720;
}

.footer-base {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-block: 1.4rem;
  font-size: 0.82rem;
}

.footer-base p {
  margin: 0;
}

.not-found {
  display: grid;
  min-height: 65vh;
  place-items: center;
  background: var(--surface);
  padding-block: 4rem;
  text-align: center;
}

.not-found-inner {
  max-width: 45rem;
}

.error-code {
  margin-bottom: 0.5rem;
  color: var(--blue-700);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.not-found h1 {
  max-width: none;
  color: var(--navy-900);
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.not-found p {
  max-width: 36rem;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.08rem;
}

@media (min-width: 42rem) {
  .container {
    width: min(calc(100% - 4rem), var(--container));
  }

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

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

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .contact-cta-inner,
  .source-card,
  .contact-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(15rem, 0.75fr);
  }

  .footer-grid {
    grid-template-columns: 1.6fr 0.8fr 1fr;
  }

  .footer-base {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
  }
}

@media (min-width: 68rem) {
  body.menu-open {
    overflow: auto;
  }

  .site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(0.8rem);
  }

  .menu-button {
    display: none;
  }

  .primary-nav {
    position: static;
    display: block;
    overflow: visible;
    background: transparent;
    padding: 0;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 0.15rem;
  }

  .nav-list a {
    position: relative;
    min-height: 2.75rem;
    border: 0;
    border-radius: 999px;
    color: var(--navy-900);
    padding: 0.55rem 0.72rem;
    font-size: 0.86rem;
    font-weight: 670;
  }

  .nav-list a::after {
    position: absolute;
    right: 0.75rem;
    bottom: 0.22rem;
    left: 0.75rem;
    height: 0.13rem;
    border-radius: 999px;
    background: var(--cyan-500);
    content: "";
    opacity: 0;
    transform: scaleX(0.2);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-list a:hover,
  .nav-list a[aria-current="page"] {
    background: var(--surface);
    color: var(--navy-900);
  }

  .nav-list a:hover::after,
  .nav-list a[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .nav-list .nav-contact {
    margin-left: 0.4rem;
    background: var(--navy-900);
    color: var(--white);
    padding-inline: 1rem;
  }

  .nav-list .nav-contact:hover,
  .nav-list .nav-contact[aria-current="page"] {
    background: var(--navy-800);
    color: var(--white);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.93fr) minmax(28rem, 0.8fr);
    align-items: center;
  }

  .hero-media {
    margin-right: -10rem;
  }

  .hero-media img {
    min-height: 27rem;
    aspect-ratio: auto;
  }

  .hero-proof {
    max-width: 38rem;
  }

  .split-section {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
    gap: 5rem;
  }

  .page-shell {
    grid-template-columns: minmax(0, 1fr) 18rem;
    gap: 6rem;
  }

  .related-panel {
    position: sticky;
    top: 7rem;
  }
}

@media (max-width: 24rem) {
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    padding-block: 0.65rem;
  }
}

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

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