:root {
  color-scheme: dark;
  --ink: #f1eee5;
  --muted: #b5b3a8;
  --paper: #10130f;
  --paper-soft: #171b16;
  --panel: #1d211b;
  --panel-strong: #252a22;
  --line: #3b4136;
  --line-bright: #606958;
  --moss: #a8b47b;
  --moss-light: #d5dcac;
  --clay: #c89468;
  --water: #7fa4ad;
  --focus: #f0cf78;
  --page: min(1460px, calc(100% - 64px));
  --reading: 780px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(168, 180, 123, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 180, 123, 0.022) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.is-lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

code {
  padding: 0.08em 0.28em;
  border-radius: 3px;
  background: rgba(168, 180, 123, 0.11);
  color: var(--moss-light);
  font-size: 0.92em;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--focus);
  color: #17140b;
  font-weight: 800;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 76px;
  padding: 12px max(32px, calc((100vw - 1460px) / 2));
  border-bottom: 1px solid rgba(168, 180, 123, 0.2);
  background: rgba(16, 19, 15, 0.94);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: 8px;
  background: #111712;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.8vw, 30px);
}

.nav a {
  position: relative;
  padding: 9px 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  text-decoration: none;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--moss);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

section[id],
footer[id] {
  scroll-margin-top: 92px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.3fr);
  align-items: center;
  gap: clamp(36px, 5vw, 88px);
  width: var(--page);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: clamp(74px, 9vw, 136px) 0;
}

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

.eyebrow,
.tool-number {
  margin: 0 0 17px;
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.6vw, 6.1rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.1vw, 4.7rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.3rem, 2vw, 1.72rem);
  line-height: 1.2;
}

.lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: #d4d1c6;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.035em;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button.primary {
  border-color: var(--moss-light);
  background: var(--moss-light);
  color: #171a12;
}

.button.primary:hover {
  border-color: #e6ebc2;
  background: #e6ebc2;
}

.button.secondary {
  border-color: var(--line-bright);
  background: transparent;
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--moss);
  background: rgba(168, 180, 123, 0.08);
}

.hero-visual {
  position: relative;
  width: min(100%, 560px);
  justify-self: end;
  margin: 0;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: -18px;
  right: 24px;
  bottom: 22px;
  left: -22px;
  border: 1px solid var(--line);
  content: "";
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1600 / 1030;
  border: 1px solid var(--line-bright);
  object-fit: cover;
}

.hero-image-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.hero-image-open:focus-visible {
  outline: 2px solid var(--moss-light);
  outline-offset: 4px;
}

.hero-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 75%;
  padding: 10px 14px;
  background: rgba(16, 19, 15, 0.92);
  color: var(--muted);
  font-size: 0.72rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: var(--page);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip p {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 24px clamp(18px, 2.4vw, 36px);
}

.proof-strip p + p {
  border-left: 1px solid var(--line);
}

.proof-strip strong {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(88px, 10vw, 160px) 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 780px;
}

.wide-heading {
  max-width: 1000px;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.wide-heading > p:last-child,
.problem-copy,
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
}

.problem {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: clamp(42px, 8vw, 140px);
  align-items: start;
}

.problem-copy {
  padding-top: 42px;
  border-top: 1px solid var(--line-bright);
}

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

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

.tool-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-soft);
}

.tool-card-copy {
  padding: clamp(26px, 3.5vw, 48px);
  padding-bottom: clamp(24px, 2.3vw, 32px);
}

.tool-card > img,
.tool-card > .tool-image-open,
.tool-card > figure {
  align-self: start;
}

.tool-card p:not(.tool-number) {
  color: var(--muted);
}

.tool-card ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  color: #d7d4ca;
  list-style: none;
}

.tool-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
}

.tool-card li::before {
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--moss);
  content: "";
  transform: rotate(45deg);
}

.tool-card img {
  width: min(calc(100% - 48px), 460px);
  aspect-ratio: 16 / 9;
  margin: 0 auto 24px;
  border: 1px solid var(--line);
  filter: saturate(0.82) contrast(1.03);
  object-fit: cover;
  object-position: center top;
  transition: filter 220ms ease;
}

.tool-card:hover img {
  filter: saturate(1) contrast(1.02);
}

.tool-image-open {
  display: block;
  width: min(calc(100% - 48px), 460px);
  margin: 0 auto 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.tool-image-open img {
  display: block;
  width: 100%;
  margin: 0;
}

.tool-image-open:focus-visible {
  outline: 2px solid var(--moss-light);
  outline-offset: 4px;
}

.urban-strip-visual .tool-image-open,
.tool-card-visual .tool-image-open {
  width: 100%;
  margin: 0;
}

.tool-card--urban-strip {
  grid-template-rows: auto 1fr;
}

.urban-strip-visual {
  align-self: start;
  width: calc(100% - 48px);
  margin: 0 auto 24px;
}

.urban-strip-explanation {
  margin-bottom: 18px;
}

.urban-strip-explanation h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.3;
}

.urban-strip-explanation p,
.urban-strip-visual figcaption {
  margin: 0;
  color: var(--muted);
}

.urban-strip-explanation p {
  font-size: 0.92rem;
}

.urban-strip-visual img {
  display: block;
  width: 100%;
  margin: 0;
}

.urban-strip-visual figcaption {
  padding-top: 10px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.tool-card-visual {
  width: calc(100% - 48px);
  margin: 0 auto 24px;
}

.tool-card-visual img {
  display: block;
  width: 100%;
  margin: 0;
}

.tool-card-visual figcaption {
  width: 100%;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.preview {
  border-bottom: 0;
}

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

.gallery-card {
  grid-column: auto;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--paper-soft);
}

.gallery-card:first-child {
  grid-column: auto;
}

.gallery-card:nth-child(2) {
  grid-column: auto;
}

.gallery-card:nth-child(5) {
  grid-column: auto;
}

.gallery-open {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #0b0d0a;
  cursor: zoom-in;
}

.gallery-open img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-open:hover img {
  filter: brightness(1.08);
  transform: scale(1.012);
}

.gallery-card figcaption {
  padding: 22px 24px 25px;
}

.gallery-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 500;
}

.gallery-card span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.noscript-note {
  padding: 18px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 5, 0.91);
  backdrop-filter: blur(7px);
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1200px, 90vw);
  max-height: 88vh;
  margin: 0;
  overflow: auto;
  border: 1px solid var(--line-bright);
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.lightbox-panel img {
  width: 100%;
  max-height: calc(88vh - 72px);
  object-fit: contain;
  background: #090b08;
}

.lightbox-panel figcaption {
  padding: 17px 62px 18px 20px;
  color: var(--muted);
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  background: rgba(16, 19, 15, 0.94);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  place-items: center;
}

.lightbox-close:hover {
  border-color: var(--moss-light);
  color: var(--moss-light);
}

.trust {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 8vw, 130px);
  border-top: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  border-top: 1px solid var(--line-bright);
  border-left: 1px solid var(--line);
}

.trust-grid p {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid strong {
  font-size: 0.9rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.84rem;
}

.demo {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  padding-right: clamp(24px, 5vw, 80px);
  padding-left: clamp(24px, 5vw, 80px);
  border: 1px solid var(--line-bright);
  background:
    linear-gradient(120deg, rgba(168, 180, 123, 0.11), transparent 55%),
    var(--panel);
}

.demo-copy {
  max-width: 850px;
}

.demo h2 {
  font-size: clamp(2.2rem, 3.8vw, 4.2rem);
}

.demo-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.small-note {
  margin: 26px 0 0;
  font-size: 0.82rem;
}

.updates {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(48px, 8vw, 130px);
}

.updates-copy p:last-child {
  max-width: 650px;
  color: var(--muted);
}

.notify-form {
  align-self: center;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--line-bright);
  background: var(--paper-soft);
}

.notify-form > label:first-child {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.notify-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.notify-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.notify-row input {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  border: 1px solid var(--line-bright);
  border-radius: 3px;
  background: #0d100c;
  color: var(--ink);
}

.notify-row input::placeholder {
  color: #858a80;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  margin-top: 18px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.8rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--moss);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.faq {
  display: grid;
  grid-template-columns: minmax(250px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(50px, 9vw, 150px);
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 46px 24px 0;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--moss);
  content: "+";
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
}

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

.faq-list details p {
  max-width: 760px;
  margin: -4px 0 26px;
  color: var(--muted);
}

.faq-list details ul {
  max-width: 720px;
  margin: -12px 0 24px;
  padding-left: 24px;
  color: var(--muted);
}

.faq-list details li + li {
  margin-top: 8px;
}

.related {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(50px, 9vw, 150px);
}

.related-card {
  display: grid;
  grid-template-columns: 0.55fr 1.6fr auto;
  gap: 24px;
  align-items: center;
  align-self: start;
  padding: 28px 0;
  border-top: 1px solid var(--line-bright);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.related-card > span {
  color: var(--moss);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.related-card > span:last-child {
  color: var(--muted);
}

.related-card:hover strong {
  color: var(--moss-light);
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  width: var(--page);
  margin: 0 auto;
  padding: 46px 0 58px;
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.site-footer p {
  margin: 6px 0 0;
  font-size: 0.82rem;
}

.site-footer a:hover {
  color: var(--moss-light);
}

@media (max-width: 1120px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

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

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

  .problem,
  .trust,
  .updates,
  .faq,
  .related {
    grid-template-columns: 1fr;
  }

  .problem-copy {
    max-width: var(--reading);
    padding-top: 26px;
  }

  .updates {
    gap: 38px;
  }

  .notify-form {
    max-width: 760px;
  }

}

@media (max-width: 820px) {
  :root {
    --page: min(100% - 34px, 1460px);
  }

  .site-header {
    position: static;
    display: grid;
    padding: 14px 17px 16px;
  }

  .nav {
    justify-content: flex-start;
    gap: 2px 18px;
  }

  .nav a {
    font-size: 0.76rem;
  }

  section[id],
  footer[id] {
    scroll-margin-top: 16px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-visual {
    width: min(100%, 560px);
  }

  .hero-visual::before {
    display: none;
  }

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

  .proof-strip p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .gallery-card,
  .gallery-card:first-child,
  .gallery-card:nth-child(2),
  .gallery-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

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

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

  .related-card {
    grid-template-columns: 1fr;
    gap: 9px;
  }

}

@media (max-width: 520px) {
  :root {
    --page: calc(100% - 28px);
  }

  body {
    font-size: 15px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px 10px;
  }

  .nav a {
    padding: 7px 0;
    font-size: 0.7rem;
  }

  .hero {
    gap: 44px;
    padding: 58px 0 74px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero-actions,
  .hero-actions .button,
  .demo .button {
    width: 100%;
  }

  .hero-visual figcaption {
    position: static;
    max-width: none;
  }

  .section {
    padding: 80px 0;
  }

  .tool-card-copy {
    padding: 24px 20px 28px;
  }

  .tool-card img {
    width: calc(100% - 32px);
    margin-bottom: 16px;
  }

  .tool-image-open {
    width: calc(100% - 32px);
    margin-bottom: 16px;
  }

  .tool-image-open img,
  .urban-strip-visual .tool-image-open,
  .tool-card-visual .tool-image-open {
    width: 100%;
    margin-bottom: 0;
  }

  .urban-strip-visual {
    width: calc(100% - 32px);
    margin-bottom: 16px;
  }

  .urban-strip-visual img {
    width: 100%;
    margin-bottom: 0;
  }

  .tool-card-visual img {
    width: 100%;
    margin-bottom: 0;
  }

  .tool-card-visual {
    width: calc(100% - 32px);
    margin-bottom: 16px;
  }

  .tool-card-visual figcaption {
    width: 100%;
  }

  .gallery-grid {
    gap: 16px;
  }

  .gallery-card figcaption {
    padding: 18px;
  }

  .lightbox {
    padding: 8px;
  }

  .lightbox-panel {
    width: 100%;
    max-height: 97vh;
  }

  .demo {
    padding: 70px 22px;
  }

  .notify-form {
    padding: 22px 18px;
  }

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

  .faq-list summary {
    font-size: 1.12rem;
  }

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

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

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