:root {
  --ink: #07111b;
  --ink-soft: #0e1b28;
  --paper: #f4f5f4;
  --white: #ffffff;
  --blue: #0878d1;
  --blue-dark: #00559c;
  --line: rgba(7, 17, 27, 0.15);
  --shell: min(1180px, calc(100% - 48px));
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #55b8ff; outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-dark);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgba(7, 17, 27, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  min-height: 76px;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-name {
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.86;
  text-transform: uppercase;
}

.brand-name small {
  margin-top: 7px;
  color: #55b8ff;
  font-size: 0.53em;
  letter-spacing: 0.35em;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
}

.desktop-nav a,
.footer-links a,
.footer-bottom a { text-decoration: none; }

.desktop-nav a {
  color: #d5dce2;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.desktop-nav a:hover,
.footer-links a:hover,
.footer-bottom a:hover { color: #55b8ff; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
}

.button-small { min-height: 44px; padding: 10px 18px; font-size: 0.76rem; }
.mobile-nav { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 42%, rgba(0, 117, 208, 0.17), transparent 31%),
    linear-gradient(120deg, #07111b 0%, #0d1925 58%, #07111b 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(81, 180, 255, 0.85), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  min-height: 720px;
  gap: 48px;
  padding-block: 84px 92px;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow,
.quote-section .eyebrow { color: #55b8ff; }

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

h1, h2, h3 {
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  line-height: 1.03;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 6.5vw, 6.5rem);
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

h1 span { color: #55b8ff; }

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  letter-spacing: -0.04em;
}

h3 { margin-bottom: 10px; font-size: 1.35rem; letter-spacing: -0.02em; }

.hero-lead {
  max-width: 630px;
  margin-bottom: 32px;
  color: #cbd4dc;
  font-size: 1.14rem;
}

.hero-actions,
.quote-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--blue);
  font-size: 1.2rem;
  transition: transform 160ms ease;
}

.text-link:hover span { transform: translateX(4px); }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 48px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #919fac;
  font-size: 0.75rem;
  line-height: 1.25;
}

.trust-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.035em;
}

.trust-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #55b8ff;
  border: 1px solid rgba(85, 184, 255, 0.35);
  font-size: 1rem;
}

.hero-mark {
  position: relative;
  isolation: isolate;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
}

.hero-mark::before {
  position: absolute;
  z-index: -2;
  width: 72%;
  aspect-ratio: 1;
  content: "";
  background: #0878d1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.15;
}

.hero-mark img {
  z-index: 2;
  width: 77%;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.blueprint-grid {
  position: absolute;
  z-index: -1;
  inset: 3%;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(85, 184, 255, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 184, 255, 0.26) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle, black 0%, transparent 68%);
}

.mark-ring {
  position: absolute;
  z-index: 0;
  aspect-ratio: 1;
  border: 1px solid rgba(85, 184, 255, 0.25);
  border-radius: 50%;
}

.mark-ring-one { width: 88%; }
.mark-ring-two { width: 98%; border-style: dashed; }

.measure {
  position: absolute;
  z-index: 3;
  margin: 0;
  color: rgba(217, 229, 239, 0.6);
  font-family: Consolas, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
}

.measure-top { top: 4%; left: 22%; }
.measure-side { right: -9%; bottom: 32%; transform: rotate(90deg); }

.intro-strip { color: var(--white); background: var(--blue-dark); }

.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 32px;
}

.intro-strip p {
  margin: 0;
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.intro-strip a {
  flex: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.section { padding-block: 120px; }
.section-heading { margin-bottom: 56px; }

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

.split-heading h2 { max-width: 720px; margin-bottom: 0; }
.split-heading > p { margin: 0; color: #53616d; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border-left: 1px solid var(--line);
}

.service-card:last-child { border-right: 1px solid var(--line); }
.service-card p:last-child { margin-bottom: 0; color: #56636e; }

.card-number {
  color: var(--blue);
  font-family: Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.featured-card {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 17, 27, 0.86), rgba(6, 17, 27, 0.97)),
    repeating-linear-gradient(90deg, rgba(85, 184, 255, 0.12) 0 1px, transparent 1px 32px);
}

.featured-card p:last-child { color: #cbd5dc; }
.project-types { color: var(--white); background: var(--ink-soft); }

.project-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.project-copy { position: sticky; top: 120px; align-self: start; }
.project-copy h2 { max-width: 500px; }
.project-copy > p:not(.eyebrow) { max-width: 510px; color: #aeb9c2; }
.project-copy .text-link { margin-top: 18px; }
.project-list { border-top: 1px solid rgba(255, 255, 255, 0.16); }

.project-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.project-list article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #55b8ff;
  border: 1px solid rgba(85, 184, 255, 0.35);
  font-family: Consolas, monospace;
  font-size: 0.76rem;
}

.project-list h3 { margin-bottom: 7px; font-size: 1.55rem; }
.project-list p { max-width: 540px; margin-bottom: 0; color: #aeb9c2; }
.process { background: var(--white); }

.centered-heading { max-width: 680px; margin-inline: auto; text-align: center; }
.centered-heading > p:last-child { max-width: 570px; margin-inline: auto; color: #596773; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-grid li { position: relative; padding: 36px 28px 8px 0; }

.process-grid li:not(:last-child)::after {
  position: absolute;
  top: 0;
  right: 28px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--blue);
  transform: translateY(-50%) rotate(45deg);
}

.step-number {
  margin-bottom: 48px;
  color: var(--blue);
  font-family: Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.process-grid p { margin: 0; color: #596773; font-size: 0.94rem; }
.about { background: #e8ebed; }

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 96px;
}

.about-visual {
  position: relative;
  padding: 44px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.about-logo-wrap {
  aspect-ratio: 1.5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.about-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }

.about-visual > p {
  margin: 26px 0 0;
  color: #b5c0ca;
  font-family: Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.about-visual > p span { margin-inline: 8px; color: var(--blue); }
.about-copy .large-copy { color: #21303d; font-size: 1.28rem; font-weight: 600; }
.about-copy > p:not(.eyebrow):not(.large-copy) { color: #53616d; }

.location-note {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  margin-top: 32px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.location-pin {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
}

.location-note h3 { margin-bottom: 6px; font-size: 1.15rem; }
.location-note p { margin: 0; color: #596773; font-size: 0.94rem; }
.faq { background: var(--paper); }

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 110px;
}

.faq-heading { position: sticky; top: 120px; align-self: start; }
.faq-heading > p:not(.eyebrow) { max-width: 380px; color: #596773; }
.faq-heading .text-link { margin-top: 16px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  position: relative;
  padding: 26px 54px 26px 0;
  cursor: pointer;
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  color: var(--blue);
  content: "+";
  font-family: "Segoe UI", sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
  transform: translateY(-52%);
}

.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 680px; padding: 0 50px 28px 0; margin: 0; color: #596773; }

.quote-section {
  padding-block: 32px;
  color: var(--white);
  background: var(--ink);
}

.quote-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 72px;
  padding: 76px;
  background:
    radial-gradient(circle at 90% 0%, rgba(85, 184, 255, 0.3), transparent 30%),
    linear-gradient(120deg, #00559c, #0470c0);
}

.quote-copy h2 { max-width: 700px; }
.quote-copy > p:not(.eyebrow):not(.contact-note) { max-width: 680px; color: #e3eef6; }

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

.button-outline-light { color: var(--white); background: transparent; border-color: rgba(255, 255, 255, 0.7); }
.button-outline-light:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.contact-note { margin: 24px 0 0; color: #c9dfef; font-size: 0.78rem; }

.inquiry-checklist {
  padding: 34px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.checklist-label {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inquiry-checklist ul { display: grid; gap: 12px; margin: 0 0 26px; padding: 0; list-style: none; }
.inquiry-checklist li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; color: #43515d; font-size: 0.9rem; }
.inquiry-checklist li span { color: var(--blue); font-weight: 900; }
.inquiry-checklist > a { font-size: 0.8rem; font-weight: 800; text-underline-offset: 4px; }
.site-footer { color: #aeb9c2; background: #050b11; }

.footer-top {
  display: grid;
  grid-template-columns: 220px 1fr 1.45fr;
  align-items: center;
  gap: 54px;
  padding-block: 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  text-decoration: none;
}

.footer-brand img { width: 68px; height: 68px; }
.footer-brand .brand-name { font-size: 1.22rem; }
.footer-top > p { margin: 0; font-size: 0.88rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px 24px; }

.footer-links a {
  color: #d6dde3;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
}

.footer-bottom p { margin: 0; }

.error-page {
  color: var(--white);
  background:
    radial-gradient(circle at center, rgba(0, 117, 208, 0.2), transparent 30%),
    var(--ink);
}

.error-main { display: grid; min-height: 100vh; place-items: center; padding: 32px; }
.error-panel { max-width: 700px; text-align: center; }

.error-panel img {
  width: 150px;
  aspect-ratio: 1;
  margin: 0 auto 34px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.error-panel h1 { margin-bottom: 20px; font-size: clamp(3rem, 8vw, 6rem); }
.error-panel > p:not(.eyebrow) { max-width: 500px; margin: 0 auto 30px; color: #c6d0d8; }

@media (max-width: 1000px) {
  .header-inner { grid-template-columns: 180px 1fr auto; }
  .desktop-nav { gap: 20px; }
  .hero-grid { grid-template-columns: 1fr 0.82fr; min-height: 650px; gap: 16px; }
  .hero-mark img { width: 82%; }
  .split-heading, .project-layout, .about-grid, .faq-grid { gap: 64px; }
  .quote-panel { gap: 44px; padding: 54px; }
  .footer-top { grid-template-columns: 200px 1fr; }
  .footer-links { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 36px, 680px); }
  .header-inner { grid-template-columns: 1fr auto auto; min-height: 70px; gap: 12px; }
  .brand img { width: 44px; height: 44px; }
  .desktop-nav { display: none; }

  .mobile-nav {
    position: relative;
    display: block;
    grid-column: 3;
    grid-row: 1;
  }

  .mobile-nav summary {
    padding: 10px 0 10px 12px;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    list-style: none;
    text-transform: uppercase;
  }

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

  .mobile-nav nav {
    position: absolute;
    top: 52px;
    right: 0;
    display: grid;
    width: min(280px, calc(100vw - 36px));
    padding: 12px;
    background: var(--ink-soft);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow);
  }

  .mobile-nav nav a {
    padding: 12px;
    color: #e2e8ed;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-nav nav a:last-child { color: #55b8ff; border-bottom: 0; }
  .header-inner > .button { grid-column: 2; grid-row: 1; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 38px; padding-block: 70px 76px; }
  .hero-copy { max-width: 680px; }
  .hero-mark { width: min(520px, 100%); margin-inline: auto; }

  .intro-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 120px;
    gap: 8px;
    padding-block: 22px;
  }

  .section { padding-block: 88px; }
  .split-heading, .project-layout, .about-grid, .faq-grid, .quote-panel { grid-template-columns: 1fr; }
  .split-heading { gap: 24px; }
  .service-grid { grid-template-columns: 1fr; }

  .service-card {
    min-height: 280px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child { border-bottom: 0; }
  .project-copy, .faq-heading { position: static; }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .process-grid li:nth-child(2)::after { display: none; }
  .step-number { margin-bottom: 28px; }
  .about-visual { max-width: 620px; }
  .quote-panel { gap: 42px; padding: 50px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-links { grid-column: auto; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); }
  html { scroll-padding-top: 76px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand img { width: 42px; height: 42px; }
  .brand-name { font-size: 0.98rem; }
  .header-inner > .button { display: none; }
  .mobile-nav { grid-column: 2; }
  h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3rem); }
  .hero-grid { padding-block: 58px 66px; }
  .hero-lead { font-size: 1.02rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .trust-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .trust-list li:first-child { grid-column: 1 / -1; }
  .hero-mark { width: 108%; margin-left: -4%; }
  .measure-side { right: -16%; }
  .intro-strip a { overflow-wrap: anywhere; }
  .section { padding-block: 72px; }
  .section-heading { margin-bottom: 38px; }
  .service-card { min-height: 255px; padding: 26px; }
  .project-layout, .faq-grid { gap: 52px; }
  .project-list article { grid-template-columns: 44px 1fr; gap: 18px; }
  .project-list article > span { width: 38px; height: 38px; }
  .process-grid { grid-template-columns: 1fr; row-gap: 0; }
  .process-grid li { padding: 30px 0; border-bottom: 1px solid var(--line); }
  .process-grid li::after { display: none; }
  .step-number { margin-bottom: 18px; }
  .about-grid { gap: 54px; }
  .about-visual { padding: 24px; }
  .location-note { grid-template-columns: 44px 1fr; gap: 16px; }
  .location-pin { width: 42px; height: 42px; }
  .faq-list summary { font-size: 1.05rem; }
  .quote-section { padding-block: 0; }
  .quote-section .shell { width: 100%; }
  .quote-panel { gap: 38px; padding: 60px 22px; }
  .quote-actions { align-items: stretch; flex-direction: column; }
  .inquiry-checklist { padding: 26px; }
  .inquiry-checklist > a { overflow-wrap: anywhere; }
  .footer-top { padding-block: 50px; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-bottom { 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;
  }
}
