:root {
  color-scheme: dark;
  --bg: #071820;
  --bg-deep: #031117;
  --surface: #0a202a;
  --surface-2: #102a36;
  --surface-soft: rgba(255, 255, 255, 0.045);
  --header-bg: rgba(16, 42, 54, 0.94);
  --text: #edf6f7;
  --muted: #95adb4;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --grid: rgba(255, 255, 255, 0.035);
  --orange: #f46631;
  --orange-soft: #ff8a60;
  --orange-ink: #091d26;
  --green: #56d9a5;
  --cyan: #42bdd2;
  --violet: #8b7cff;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  --footer-bg: #031117;
  --footer-text: rgba(255, 255, 255, 0.52);
  --page: min(1180px, calc(100% - 48px));
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f0e7;
  --bg-deep: #e8dfd1;
  --surface: #fffdf9;
  --surface-2: #f4ecdf;
  --surface-soft: rgba(7, 24, 32, 0.035);
  --header-bg: rgba(255, 253, 249, 0.94);
  --text: #102a36;
  --muted: #5d737a;
  --line: rgba(7, 24, 32, 0.13);
  --line-strong: rgba(7, 24, 32, 0.23);
  --grid: rgba(7, 24, 32, 0.05);
  --orange: #d95324;
  --orange-soft: #c7471c;
  --orange-ink: #ffffff;
  --green: #087c59;
  --cyan: #087f95;
  --violet: #5c50ba;
  --shadow: 0 25px 65px rgba(53, 39, 22, 0.13);
  --footer-bg: #102a36;
  --footer-text: rgba(255, 255, 255, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px;
  color: var(--text);
  font-family: Aptos, "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  transition: background-color 220ms ease, color 220ms ease;
}

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 78px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  background: rgba(16, 42, 54, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand {
  position: relative;
  width: 180px;
  aspect-ratio: 1002 / 276;
}

.brand img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 7px 10px rgba(7, 24, 32, 0.3));
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

nav > a {
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
}

nav > a:hover,
nav > a:focus-visible {
  color: #ffffff;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  list-style: none;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

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

.nav-dropdown > summary:hover,
.nav-dropdown > summary:focus-visible,
.nav-dropdown[open] > summary {
  color: #ffffff;
}

.nav-chevron {
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: margin 160ms ease, transform 160ms ease;
}

.nav-dropdown[open] .nav-chevron {
  margin-top: 4px;
  transform: rotate(225deg);
}

.nav-label-short {
  display: none;
}

.nav-dropdown-panel {
  position: absolute;
  z-index: 50;
  top: calc(100% + 28px);
  left: -18px;
  display: grid;
  gap: 5px;
  min-width: 245px;
  padding: 17px;
  background: #102f3c;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 26px 58px rgba(3, 17, 23, 0.42);
}

.nav-solutions .nav-dropdown-panel {
  right: -18px;
  left: auto;
}

.nav-mega-panel {
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  gap: 12px 24px;
  width: min(610px, calc(100vw - 40px));
}

.nav-mega-panel > div {
  display: grid;
  align-content: start;
  gap: 5px;
}

.nav-dropdown-panel strong {
  margin: 2px 10px 7px;
  color: #ff8a60;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-dropdown-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
  text-decoration: none;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.nav-grants {
  color: #ff8a60;
}

.nav-cta {
  padding: 9px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.remote-support-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.remote-support-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.remote-support-icon rect,
.remote-support-icon path {
  fill: #0b65c2;
}

.remote-support-icon circle {
  fill: #ffffff;
}

.theme-cycle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  flex: 0 0 auto;
  font: inherit;
  transition: background 160ms ease, color 160ms ease;
}

.theme-cycle:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.theme-cycle-icon {
  position: relative;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
}

.theme-cycle-icon > span {
  position: relative;
  display: none;
  grid-area: 1 / 1;
  width: 19px;
  height: 19px;
  place-items: center;
}

html[data-theme-preference="light"] .theme-cycle-icon .theme-icon-light,
html[data-theme-preference="system"] .theme-cycle-icon .theme-icon-system,
html[data-theme-preference="dark"] .theme-cycle-icon .theme-icon-dark {
  display: grid;
}

.theme-icon-system {
  overflow: hidden;
  width: 14px !important;
  height: 14px !important;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.theme-icon-system::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: currentColor;
  content: "";
}

.theme-icon-light {
  color: #ffd06a;
}

.theme-icon-dark {
  color: #c8d7ff;
}

.theme-icon-light svg,
.theme-icon-dark svg {
  display: block;
  overflow: visible;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.theme-cycle-label {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(470px, 1.05fr);
  grid-template-areas:
    "heading visual"
    "intro intro";
  column-gap: 68px;
  row-gap: 40px;
  align-items: start;
  width: var(--page);
  min-height: 720px;
  margin: 0 auto;
  padding: 88px 0 82px;
}

.hero-heading {
  grid-area: heading;
}

.hero-intro {
  grid-area: intro;
  width: 100%;
}

.hero-intro .lead {
  max-width: none;
  margin-top: 0;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--orange-soft);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  margin: 0 10px 4px 0;
  background: var(--orange);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero-heading h2 {
  max-width: 750px;
  font-size: clamp(3.55rem, 6.3vw, 6rem);
}

.hero-heading h2 em {
  color: var(--orange-soft);
  font-style: normal;
}

.lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.button-primary {
  background: var(--orange);
  color: var(--orange-ink);
  box-shadow: 0 14px 34px color-mix(in srgb, var(--orange) 24%, transparent);
}

.button-secondary {
  border-color: var(--line-strong);
  background: var(--surface-soft);
}

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

.process-lab {
  grid-area: visual;
  align-self: start;
  justify-self: end;
  width: 88%;
  margin-top: 24px;
  margin-right: 15px;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  box-shadow: var(--shadow);
  transform: none;
}

.process-story-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}

.process-story {
  position: absolute;
  inset: 0;
}

html[data-process-visual="a"] .process-story-b,
html[data-process-visual="b"] .process-story-a {
  display: none;
}

.process-story img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  transition: opacity 200ms ease, filter 200ms ease;
}

.mindset {
  padding: 105px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading,
.mindset-grid {
  width: var(--page);
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  margin-bottom: 45px;
}

.section-heading h1,
.section-heading h2,
.heritage h2,
.contact h2 {
  max-width: 900px;
  font-size: clamp(2.35rem, 4.7vw, 4.25rem);
}

.section-heading > p:last-child,
.heading-split > p,
.heritage > div:last-child > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.heading-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: end;
}

.heading-split > p {
  margin: 0;
}

.mindset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mindset-grid article {
  min-height: 275px;
  padding: 27px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.mindset-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 52px;
  background: color-mix(in srgb, var(--orange) 13%, transparent);
  border-radius: 12px;
  color: var(--orange-soft);
  font-size: 0.75rem;
  font-weight: 900;
}

.mindset-grid h3 {
  font-size: 1.55rem;
}

.mindset-grid p {
  margin: 15px 0 0;
  color: var(--muted);
}

.topics {
  padding: 105px 0 118px;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: var(--page);
  margin: 0 auto;
}

.topic-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.topic-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.topic-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
}

.topic-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  transition: opacity 200ms ease, filter 200ms ease;
}

.theme-image-light {
  opacity: 0;
}

html[data-theme="light"] .theme-image-dark {
  opacity: 0;
}

html[data-theme="light"] .theme-image-light {
  opacity: 1;
}

.topic-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(3, 17, 23, 0.68));
  content: "";
}

html[data-theme="light"] .topic-media::after {
  background: linear-gradient(180deg, transparent 55%, rgba(7, 24, 32, 0.48));
}

.topic-number {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 14px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
}

.topic-body {
  padding: 27px 27px 31px;
}

.topic-kicker {
  margin: 0 0 12px;
  color: var(--orange-soft);
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.section-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  color: var(--text);
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.topic-body h3 {
  min-height: 68px;
  font-size: 1.7rem;
}

.topic-body > p:not(.topic-kicker) {
  min-height: 105px;
  color: var(--muted);
}

.topic-body > a {
  display: inline-block;
  margin-top: 8px;
  color: var(--text);
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.heritage {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: center;
  width: var(--page);
  margin: 0 auto;
  padding: 110px 0;
  border-top: 1px solid var(--line);
}

.heritage-paradox {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(8px, 1.4vw, 18px);
  align-items: center;
  color: var(--text);
  line-height: 0.8;
  text-align: center;
}

.heritage-paradox strong {
  font-size: clamp(5rem, 9vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  text-shadow: 12px 12px 0 color-mix(in srgb, var(--orange) 18%, transparent);
}

.heritage-paradox strong:last-child {
  color: var(--orange-soft);
}

.heritage-paradox span {
  padding: 8px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.heritage > div:last-child > p:last-child {
  max-width: 700px;
  margin: 25px 0 0;
}

.grants {
  padding: 105px max(24px, calc((100vw - 1180px) / 2));
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.grants-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 45px;
}

.grants-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -55px;
}

.grants-intro h2 {
  max-width: 760px;
  font-size: clamp(2.35rem, 4.7vw, 4.25rem);
}

.grants-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.grant-project {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  padding: 30px;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.grant-story {
  padding: 12px 14px;
}

.grant-code {
  margin: 0 0 20px;
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.grant-story h3 {
  margin-bottom: 24px;
  font-size: clamp(1.85rem, 3vw, 2.8rem);
}

.grant-story p:not(.grant-code) {
  color: var(--muted);
}

.grant-details {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.grant-amount {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.grant-amount strong {
  color: var(--orange-soft);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.grant-amount span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.grant-details dl {
  margin: 0;
}

.grant-details dl > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) 1.2fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.grant-details dl > div:last-child {
  border-bottom: 0;
}

.grant-details dt {
  color: var(--muted);
  font-size: 0.84rem;
}

.grant-details dd {
  margin: 0;
  font-weight: 800;
}

.contact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  background: var(--orange);
  color: var(--orange-ink);
}

.contact .eyebrow {
  color: var(--orange-ink);
}

.contact .eyebrow span {
  background: var(--orange-ink);
}

.contact p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  font-weight: 650;
}

.button-white {
  flex: 0 0 auto;
  background: #fff;
  color: #091d26;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 118px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  background: var(--footer-bg);
  color: var(--footer-text);
}

footer img {
  display: block;
  width: 166px;
  filter:
    drop-shadow(0 0 1px rgba(0, 0, 0, 0.82))
    drop-shadow(0 8px 12px rgba(0, 0, 0, 0.34));
}

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

@media (max-width: 1180px) {
  .site-header nav {
    gap: 12px;
  }

  .nav-optional {
    display: none;
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "visual"
      "intro";
    gap: 55px;
    min-height: auto;
  }

  .process-lab {
    width: 100%;
    justify-self: stretch;
    margin-top: 0;
    margin-right: 0;
    transform: none;
  }

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

  .topic-card {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) 1.1fr;
  }

  .topic-media {
    aspect-ratio: auto;
    min-height: 360px;
  }

  .topic-body h3,
  .topic-body > p:not(.topic-kicker) {
    min-height: 0;
  }
}

@media (max-width: 860px) {
  nav > a:not(.nav-cta):not(.nav-grants):not(.remote-support-link) {
    display: none;
  }

  .nav-label-full,
  .nav-grants {
    display: none;
  }

  .nav-label-short {
    display: inline;
  }

  .nav-dropdown-panel,
  .nav-solutions .nav-dropdown-panel {
    position: fixed;
    top: 78px;
    right: 24px;
    left: 24px;
    overflow-y: auto;
    width: auto;
    max-height: calc(100vh - 94px);
    border-radius: 18px;
  }

  .heading-split,
  .heritage,
  .grants-intro,
  .grant-project {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .grants-intro .eyebrow {
    margin-bottom: -25px;
  }

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

  .mindset-grid article {
    min-height: 0;
  }

  .mindset-grid article > span {
    margin-bottom: 35px;
  }

  .heritage-paradox {
    max-width: 640px;
  }

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

@media (max-width: 680px) {
  :root {
    --page: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand img {
    width: 100%;
  }

  .brand {
    width: 145px;
  }

  .site-header.has-remote-support .brand {
    width: 130px;
  }

  nav {
    gap: 8px;
  }

  .remote-support-link span {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .nav-cta {
    display: none;
  }

  .nav-dropdown > summary {
    min-height: 42px;
    font-size: 0.76rem;
  }

  .nav-dropdown-panel,
  .nav-solutions .nav-dropdown-panel {
    right: 14px;
    left: 14px;
  }

  .nav-mega-panel {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero {
    padding: 60px 0 68px;
  }

  .hero-heading h2 {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .process-lab {
    padding: 0;
    border-radius: 23px;
  }

  .mindset,
  .topics,
  .grants {
    padding-block: 78px;
  }

  .grants {
    padding-inline: 14px;
  }

  .grant-project,
  .grant-details {
    padding: 22px;
  }

  .grant-details dl > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .topic-card {
    display: block;
  }

  .topic-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .topic-body {
    padding: 24px;
  }

  .heritage {
    padding-block: 82px;
  }

  .contact {
    padding-block: 62px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 13px;
  }
}

@media (max-width: 460px) {
  .brand {
    width: 132px;
  }

  .site-header.has-remote-support .brand {
    width: 126px;
  }

  .nav-mega-panel {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
