:root {
  --orange: #ed6425;
  --orange-deep: #d94e13;
  --coral: #f9a37c;
  --ink: #141617;
  --charcoal: #25282a;
  --grey: #737373;
  --mist: #f2f3f5;
  --white: #ffffff;
  --line: #dfe1e3;
  --max-width: 1240px;
  --header-height: 72px;
  --radius: 2px;
  --shadow: 0 24px 70px rgba(20, 22, 23, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: 0.015em;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid #121212;
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--orange);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.16);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--max-width));
  height: 100%;
  margin: 0 auto;
}

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

.brand img {
  width: 138px;
  height: auto;
}

.brand-market {
  padding-left: 10px;
  color: var(--white);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.primary-nav > a:not(.button) {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.primary-nav > a:not(.button)::after {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 2px;
  background: var(--white);
  content: "";
  transition: width 180ms ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-small {
  min-height: 36px;
  padding: 9px 22px;
  font-size: 13px;
}

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

.button-orange {
  color: var(--white);
  background: var(--orange);
}

.button-orange:hover {
  background: var(--orange-deep);
}

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.text-link span {
  font-size: 19px;
  transition: transform 180ms ease;
}

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

.text-link-light {
  color: var(--white);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  color: var(--white);
  background: linear-gradient(112deg, var(--orange) 0%, #f6763e 48%, var(--coral) 100%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 0;
  left: 51%;
  width: 1px;
  height: 78%;
  background: rgba(255, 255, 255, 0.24);
  content: "";
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  width: min(calc(100% - 80px), var(--max-width));
  min-height: calc(100vh - var(--header-height) - 112px);
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 96px 0 112px;
}

.hero h1 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(52px, 6.4vw, 92px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-intro {
  max-width: 600px;
  margin: 34px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 300;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.hero-visual {
  position: relative;
  align-self: end;
  min-height: 640px;
}

.hero-visual img {
  position: absolute;
  right: -5%;
  bottom: 0;
  z-index: 2;
  width: min(100%, 610px);
  max-height: 92%;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 28px 35px rgba(95, 31, 3, 0.2));
}

.hero-disc {
  position: absolute;
  right: -7%;
  bottom: 9%;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.hero-disc::before,
.hero-disc::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: "";
}

.hero-disc::before {
  inset: 12%;
}

.hero-disc::after {
  inset: 27%;
}

.hero-proof {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 112px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.hero-proof p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 22px 36px;
  border-right: 1px solid var(--line);
}

.hero-proof p:last-child {
  border-right: 0;
}

.hero-proof strong {
  color: var(--orange);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero-proof span {
  max-width: 150px;
  font-size: 13px;
  line-height: 1.4;
}

.section {
  width: min(calc(100% - 80px), var(--max-width));
  margin: 0 auto;
  padding: 120px 0;
}

.section-intro {
  padding-bottom: 28px;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 58px;
}

.section-heading-centred {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.split-story h2,
.product-feature h2,
.workflow-section h2,
.accessibility-section h2,
.quote-section h2,
.partners-section h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--grey);
  font-size: 18px;
}

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

.service-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 470px;
  color: var(--white);
  background-image: linear-gradient(0deg, rgba(10, 12, 13, 0.84) 0%, rgba(10, 12, 13, 0.12) 76%), var(--card-image);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.service-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(237, 100, 37, 0.18), transparent 55%);
  content: "";
  transition: background 280ms ease;
}

.service-card:hover::after {
  background: linear-gradient(120deg, rgba(237, 100, 37, 0.42), transparent 70%);
}

.service-card-large {
  min-height: 620px;
  grid-row: span 2;
}

.service-card-wide {
  min-height: 420px;
  grid-column: 1 / -1;
  background-position: center 38%;
}

.service-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(30px, 5vw, 62px);
}

.service-number {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.service-card p:not(.service-number) {
  max-width: 560px;
  margin: 18px 0 24px;
  font-size: 17px;
  line-height: 1.6;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.split-story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 720px;
  margin-top: 100px;
  background: var(--mist);
}

.split-story-image {
  min-height: 620px;
  background-image: linear-gradient(90deg, rgba(237, 100, 37, 0.22), rgba(0, 0, 0, 0.05)), url("assets/company-hero.webp");
  background-position: center;
  background-size: cover;
}

.split-story-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(64px, 8vw, 120px);
}

.lead {
  font-size: 21px;
  line-height: 1.6;
}

.split-story-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
}

.split-story-copy .button {
  margin-top: 38px;
}

.product-feature {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.product-feature-copy .lead {
  margin: 28px 0;
  color: var(--grey);
}

.assurance-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 38px;
  padding: 0;
  list-style: none;
}

.assurance-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.assurance-list span {
  display: inline-grid;
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  place-items: center;
}

.caption-demo {
  padding: 18px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.demo-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 4px 19px;
  color: var(--white);
}

.demo-topbar span {
  width: 10px;
  height: 10px;
  background: var(--coral);
  border-radius: 50%;
}

.demo-topbar p {
  margin: 0 0 0 auto;
  font-size: 12px;
  text-transform: uppercase;
}

.speaker {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 145px;
  padding: 26px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.speaker-two {
  background: var(--mist);
}

.speaker p {
  margin: 0;
  line-height: 1.6;
}

.speaker-avatar {
  display: grid;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-weight: 600;
  place-items: center;
}

.speaker-two .speaker-avatar {
  background: var(--charcoal);
}

.live-caption {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 22px 25px;
  color: var(--white);
  background: var(--orange);
}

.live-caption span {
  margin-top: 4px;
  padding: 3px 7px;
  color: var(--orange);
  background: var(--white);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.live-caption p {
  margin: 0;
}

.workflow-section {
  width: 100%;
  max-width: none;
  padding: 120px max(40px, calc((100vw - var(--max-width)) / 2));
  color: var(--white);
  background: var(--charcoal);
}

.workflow-section .section-heading > p:last-child {
  margin-left: 0;
  color: #c8cbcd;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 70px 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  list-style: none;
}

.workflow li {
  min-height: 275px;
  padding: 38px;
  background: var(--charcoal);
}

.workflow li > span {
  display: block;
  margin-bottom: 45px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.workflow h3 {
  margin: 0;
  font-size: 27px;
  font-weight: 500;
}

.workflow p {
  margin: 16px 0 0;
  color: #c8cbcd;
  font-size: 14px;
  line-height: 1.65;
}

.accessibility-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  color: var(--white);
  background: linear-gradient(110deg, var(--orange), var(--coral));
}

.accessibility-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(60px, 8vw, 120px);
}

.accessibility-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 38px;
  font-size: 19px;
}

.accessibility-image {
  min-height: 520px;
  background: linear-gradient(90deg, rgba(237, 100, 37, 0.2), rgba(0, 0, 0, 0.1)), url("assets/blog-accessibility.png") center / cover;
}

.team-section {
  padding-bottom: 130px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) 1.2fr;
  gap: 20px;
}

.profile-card {
  position: relative;
  min-height: 450px;
  padding: 45px;
  background: var(--mist);
}

.profile-placeholder {
  border: 1px dashed #b7babd;
}

.profile-initials {
  display: grid;
  width: 130px;
  height: 130px;
  margin-bottom: 38px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-size: 36px;
  font-weight: 500;
  place-items: center;
}

.placeholder-label {
  display: inline-block;
  margin: 0 0 16px;
  padding: 5px 9px;
  color: var(--grey);
  background: var(--white);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-card h3,
.team-story-card h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
}

.profile-card > p:last-child,
.team-story-card p:last-child {
  margin: 18px 0 0;
  color: var(--grey);
}

.team-story-card {
  display: flex;
  align-items: flex-end;
  min-height: 450px;
  padding: 45px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(10, 12, 13, 0.82), rgba(10, 12, 13, 0.05)), url("assets/team-hero-optimized.webp") center / cover;
}

.team-story-card p:last-child {
  color: #ebebeb;
}

.partners-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: end;
  gap: 100px;
  border-top: 1px solid var(--line);
}

.partners-copy > p:not(.eyebrow) {
  margin: 25px 0;
  color: var(--grey);
  font-size: 18px;
}

.partner-values {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.partner-values div {
  display: grid;
  grid-template-columns: 75px 1fr;
  align-items: center;
  min-height: 92px;
  padding: 20px 30px;
  background: var(--white);
}

.partner-values span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.partner-values strong {
  font-size: 20px;
  font-weight: 500;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: none;
  gap: 40px;
}

.section-heading-row h2 {
  max-width: 800px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.insight-card {
  background: var(--mist);
}

.insight-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.insight-card > div {
  padding: 35px;
}

.insight-meta {
  margin: 0 0 15px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin: 0 0 28px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.quote-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 100px max(40px, calc((100vw - var(--max-width)) / 2));
  color: var(--white);
  background: linear-gradient(110deg, var(--orange), var(--coral));
}

.quote-section h2 {
  max-width: 930px;
}

.quote-section .button {
  flex: 0 0 auto;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px 40px;
  color: var(--white);
  background: var(--ink);
}

.contact-strip p {
  margin: 0;
}

.contact-strip a {
  color: var(--coral);
  font-weight: 600;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 70px;
  padding: 80px max(40px, calc((100vw - var(--max-width)) / 2)) 45px;
  color: var(--white);
  background: linear-gradient(110deg, var(--orange), var(--coral));
}

.footer-brand > img {
  width: 180px;
}

.footer-brand > p {
  max-width: 360px;
  margin: 25px 0;
  font-size: 14px;
}

.site-footer h2 {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 600;
}

.site-footer > div:not(.footer-brand) a {
  display: block;
  margin: 9px 0;
  font-size: 14px;
  text-decoration: none;
}

.site-footer > div:not(.footer-brand) a:hover {
  text-decoration: underline;
}

.certification-marks {
  display: flex;
  gap: 10px;
}

.certification-marks img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 30px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 12px;
}

@media (max-width: 1020px) {
  :root {
    --header-height: 66px;
  }

  .primary-nav {
    gap: 20px;
  }

  .hero-inner {
    width: min(calc(100% - 48px), var(--max-width));
  }

  .hero-copy {
    padding-top: 72px;
  }

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

  .product-feature {
    grid-template-columns: 1fr;
  }

  .caption-demo {
    max-width: 760px;
  }

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

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

  .team-story-card {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .header-inner {
    width: calc(100% - 32px);
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 26px;
    background: var(--orange);
    box-shadow: 0 18px 35px rgba(20, 22, 23, 0.18);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a:not(.button) {
    padding: 12px 0;
    font-size: 16px;
  }

  .primary-nav .button {
    margin-top: 10px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero::before {
    display: none;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
  }

  .hero-copy {
    width: calc(100% - 40px);
    padding: 72px 0 30px;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 72px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-visual {
    width: 100%;
    min-height: 480px;
  }

  .hero-visual img {
    right: 1%;
    max-height: 100%;
  }

  .hero-disc {
    right: -16%;
    width: 78vw;
  }

  .hero-proof {
    position: relative;
    grid-template-columns: 1fr;
  }

  .hero-proof p {
    justify-content: flex-start;
    padding: 18px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    width: calc(100% - 40px);
    padding: 80px 0;
  }

  .section-intro {
    padding-bottom: 20px;
  }

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

  .service-card,
  .service-card-large,
  .service-card-wide {
    min-height: 470px;
    grid-column: auto;
    grid-row: auto;
  }

  .service-card-content {
    padding: 32px;
  }

  .split-story,
  .accessibility-section {
    grid-template-columns: 1fr;
  }

  .split-story {
    margin-top: 70px;
  }

  .split-story-image,
  .accessibility-image {
    min-height: 420px;
  }

  .split-story-copy,
  .accessibility-copy {
    padding: 70px 24px;
  }

  .workflow-section {
    padding: 80px 20px;
  }

  .workflow {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .workflow li {
    min-height: 230px;
  }

  .team-grid,
  .partners-section,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .team-story-card {
    grid-column: auto;
  }

  .partners-section {
    gap: 55px;
  }

  .section-heading-row,
  .quote-section,
  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .insight-card img {
    height: 260px;
  }

  .quote-section {
    padding: 80px 24px;
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 30px;
    padding: 70px 24px 35px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 116px;
  }

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

  .section-heading h2,
  .split-story h2,
  .product-feature h2,
  .workflow-section h2,
  .accessibility-section h2,
  .quote-section h2,
  .partners-section h2 {
    font-size: 39px;
  }

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

  .profile-card,
  .team-story-card {
    min-height: 400px;
    padding: 32px;
  }

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

  .footer-brand,
  .footer-legal {
    grid-column: auto;
  }
}

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

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