:root {
  color-scheme: light;
  --paper: #f5f1e8;
  --paper-deep: #ebe3d4;
  --ink: #11100e;
  --muted: #666159;
  --line: rgba(17, 16, 14, 0.14);
  --white: #ffffff;
  --blue: #0a63ff;
  --blue-deep: #073ba8;
  --orange: #ff5818;
  --lime: #c5f45d;
  --navy: #071326;
  --radius-lg: 38px;
  --radius-md: 24px;
  --container: min(1200px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 750;
  transition: transform 0.2s ease;
}

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

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px 12px 12px 4px;
  background: var(--ink);
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  box-shadow: inset -6px -6px 0 var(--blue);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 720;
}

.site-nav > a:not(.nav-cta) {
  padding: 10px 0;
  color: #302e2a;
}

.site-nav > a:not(.nav-cta):hover {
  color: var(--blue-deep);
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--white);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 10px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  padding: 156px 0 90px;
  background:
    radial-gradient(circle at 82% 18%, rgba(10, 99, 255, 0.2), transparent 26%),
    radial-gradient(circle at 95% 75%, rgba(255, 88, 24, 0.13), transparent 28%),
    var(--paper);
}

.hero::before {
  position: absolute;
  top: -260px;
  left: 43%;
  width: 1px;
  height: 1180px;
  background: rgba(17, 16, 14, 0.09);
  content: "";
  transform: rotate(17deg);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.9fr);
  align-items: center;
  gap: 70px;
}

.eyebrow,
.kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 88, 24, 0.12);
}

.hero h1 {
  max-width: 720px;
  margin: 28px 0 30px;
  font-size: clamp(64px, 7.2vw, 108px);
  font-weight: 850;
  line-height: 0.88;
  letter-spacing: -0.078em;
}

.hero h1 em {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero-lede {
  max-width: 610px;
  margin: 0;
  color: #4d4943;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 820;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(17, 16, 14, 0.16);
}

.button-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(7, 19, 38, 0.13);
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 820;
}

.text-link span {
  color: var(--blue);
  font-size: 20px;
}

.hero-studio {
  position: relative;
  min-height: 540px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(17, 16, 14, 0.14);
  border-radius: 50%;
}

.orbit-one {
  inset: 34px 24px 48px 12px;
  transform: rotate(-8deg);
}

.orbit-two {
  inset: 98px 78px 108px 72px;
  border-style: dashed;
}

.hero-app {
  position: absolute;
  display: flex;
  width: 144px;
  flex-direction: column;
  gap: 9px;
  padding: 13px;
  border: 1px solid rgba(17, 16, 14, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 55px rgba(34, 42, 58, 0.14);
  backdrop-filter: blur(16px);
}

.hero-app img {
  border-radius: 23%;
}

.hero-app span {
  padding: 1px 4px 2px;
  font-size: 12px;
  font-weight: 800;
}

.hero-app-prompter {
  top: 18px;
  left: 38%;
  transform: rotate(7deg);
}

.hero-app-screen {
  top: 186px;
  right: 0;
  transform: rotate(5deg);
}

.hero-app-audio {
  right: 34%;
  bottom: 0;
  transform: rotate(-4deg);
}

.hero-app-repair {
  top: 190px;
  left: 0;
  transform: rotate(-8deg);
}

.studio-note {
  position: absolute;
  top: 215px;
  right: 155px;
  left: 155px;
  margin: 0;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-style: italic;
  line-height: 1.25;
}

.manifesto {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 120px;
  padding-top: 74px;
  padding-bottom: 74px;
}

.manifesto-grid p {
  margin: 0;
}

.manifesto-grid p:first-child {
  max-width: 720px;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 820;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.manifesto-grid p:last-child {
  align-self: end;
  color: #514d46;
  font-size: 18px;
}

.apps-section {
  padding: 130px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr) minmax(0, 0.72fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 70px;
}

.kicker {
  color: var(--blue-deep);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.066em;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.app-stack {
  display: grid;
  gap: 26px;
}

.app-card {
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
}

.app-card-scrollvox {
  background:
    radial-gradient(circle at 76% 30%, rgba(61, 178, 255, 0.24), transparent 30%),
    linear-gradient(135deg, #061020, #0a2f59);
}

.app-card-screen {
  background:
    radial-gradient(circle at 83% 18%, rgba(255, 217, 123, 0.35), transparent 32%),
    linear-gradient(135deg, #ff4d0b, #ee760f);
}

.app-copy {
  position: relative;
  z-index: 2;
  padding: 72px;
}

.app-identity {
  display: flex;
  align-items: center;
  gap: 18px;
}

.app-identity > img,
.compact-copy > img {
  width: 78px;
  border-radius: 23%;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.app-category {
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.app-identity h3 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.app-tagline {
  max-width: 500px;
  margin: 72px 0 20px;
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 820;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.app-copy > p:not(.app-tagline) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.app-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.app-copy li {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 700;
}

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

.card-link {
  font-size: 14px;
}

.app-visual {
  position: relative;
  min-height: 660px;
}

.phone {
  position: absolute;
  width: 330px;
  border: 6px solid rgba(255, 255, 255, 0.82);
  border-radius: 38px;
  box-shadow: 0 44px 90px rgba(0, 0, 0, 0.28);
}

.phone-front {
  right: 78px;
  bottom: -118px;
  z-index: 2;
  transform: rotate(4deg);
}

.phone-back {
  top: 52px;
  left: 30px;
  transform: rotate(-8deg);
  opacity: 0.78;
}

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

.compact-app {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.app-card-audio {
  background:
    radial-gradient(circle at 90% 78%, rgba(79, 145, 255, 0.55), transparent 32%),
    linear-gradient(145deg, #edf5ff, #d7e8ff);
}

.app-card-repair {
  background:
    radial-gradient(circle at 10% 18%, rgba(33, 119, 255, 0.26), transparent 34%),
    linear-gradient(145deg, #101c33, #07101f);
  color: var(--white);
}

.compact-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 52px;
}

.compact-copy > img {
  margin-bottom: 34px;
}

.compact-copy h3 {
  margin: 0;
  font-size: clamp(39px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.compact-copy > p:not(.app-category) {
  max-width: 440px;
  margin: 18px 0 24px;
  color: #44536b;
}

.app-card-repair .compact-copy > p:not(.app-category) {
  color: #b7c2d2;
}

.compact-phone {
  position: absolute;
  right: -35px;
  bottom: -250px;
  width: 310px;
  border: 5px solid rgba(255, 255, 255, 0.85);
  border-radius: 34px;
  box-shadow: 0 36px 70px rgba(27, 57, 103, 0.26);
  transform: rotate(7deg);
}

.app-card-repair .compact-phone {
  box-shadow: 0 36px 70px rgba(0, 0, 0, 0.35);
  transform: rotate(-6deg);
}

.principles-section {
  padding: 130px 0;
  background: var(--ink);
  color: var(--white);
}

.section-heading-light {
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 1.72fr);
  align-items: start;
}

.section-heading-light .kicker {
  color: #88bdff;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.principles-grid article {
  min-height: 300px;
  padding: 34px 28px 28px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.principles-grid article:not(:first-child) {
  padding-left: 28px;
}

.principles-grid article:last-child {
  border-right: 0;
}

.principles-grid span {
  color: #8fa0b8;
  font-size: 12px;
  font-weight: 850;
}

.principles-grid h3 {
  margin: 104px 0 12px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.principles-grid p {
  margin: 0;
  color: #aeb7c4;
  font-size: 14px;
}

.about-section {
  padding: 130px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
  gap: 120px;
}

.about-grid h2 {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.067em;
}

.about-copy {
  padding-top: 42px;
}

.about-copy p {
  margin: 0 0 22px;
  color: #514d46;
  font-size: 18px;
}

.about-copy .button {
  margin-top: 16px;
}

.closing-section {
  padding: 0 0 30px;
}

.closing-shell {
  padding: 90px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 83% 25%, rgba(41, 165, 255, 0.35), transparent 28%),
    radial-gradient(circle at 70% 120%, rgba(255, 88, 24, 0.25), transparent 34%),
    var(--navy);
  color: var(--white);
}

.closing-shell .kicker {
  color: #8ec9ff;
}

.closing-shell h2 {
  max-width: 800px;
  margin: 25px 0 38px;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.067em;
}

.site-footer {
  padding: 52px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 70px;
}

.footer-grid > div:first-child p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 13px;
  font-weight: 720;
}

.footer-links a:hover {
  color: var(--blue-deep);
}

.copyright {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.legal-page .site-header {
  position: relative;
  border-bottom: 1px solid var(--line);
}

.legal-main {
  padding: 80px 0 110px;
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 760px);
  justify-content: space-between;
  gap: 80px;
}

.legal-aside {
  position: sticky;
  top: 40px;
  align-self: start;
}

.legal-aside .kicker {
  color: var(--blue-deep);
}

.legal-aside nav {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.legal-aside nav a {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.legal-aside nav a[aria-current="page"],
.legal-aside nav a:hover {
  color: var(--ink);
}

.legal-document {
  min-width: 0;
}

.legal-document > header {
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.legal-document h1 {
  margin: 18px 0 20px;
  font-size: clamp(52px, 7vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.legal-updated {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.legal-intro {
  margin: 24px 0 0;
  color: #393631;
  font-size: 19px;
  line-height: 1.7;
}

.legal-section {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 18px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.legal-section h3 {
  margin: 28px 0 10px;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.legal-section p {
  margin: 0 0 14px;
  color: #393631;
}

.legal-section ul,
.legal-section ol {
  margin: 12px 0 18px;
  padding-left: 24px;
  color: #393631;
}

.legal-section li + li {
  margin-top: 7px;
}

.legal-section a,
.legal-contact a {
  color: var(--blue-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-facts {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) 1fr;
  gap: 10px 24px;
  margin: 20px 0 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.38);
}

.legal-facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.legal-facts dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.legal-contact {
  margin-top: 36px;
  padding: 28px;
  border-radius: 24px;
  background: var(--navy);
  color: var(--white);
}

.legal-contact h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.legal-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.legal-contact a {
  color: #8ec9ff;
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-studio {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .manifesto-grid,
  .section-heading,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading > p:last-child {
    max-width: 680px;
  }

  .app-card {
    grid-template-columns: 1fr 1fr;
  }

  .app-copy {
    padding: 52px;
  }

  .app-tagline {
    margin-top: 52px;
  }

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

  .principles-grid article:nth-child(2) {
    border-right: 0;
  }

  .principles-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .legal-shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .legal-aside {
    position: static;
  }

  .legal-aside nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 620px);
    --radius-lg: 28px;
  }

  .nav-shell {
    min-height: 76px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 90;
    inset: 76px 14px auto;
    display: none;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(245, 241, 232, 0.96);
    box-shadow: 0 24px 60px rgba(17, 16, 14, 0.18);
    backdrop-filter: blur(20px);
  }

  .site-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    display: block;
    padding: 12px 14px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: 0;
    padding: 122px 0 72px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: clamp(56px, 17vw, 82px);
  }

  .hero h1 em {
    display: block;
    font-size: 0.78em;
    letter-spacing: -0.08em;
  }

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

  .hero-studio {
    min-height: 430px;
    margin-top: 20px;
  }

  .hero-app {
    width: 106px;
    padding: 10px;
    border-radius: 23px;
  }

  .hero-app img {
    border-radius: 20px;
  }

  .hero-app-prompter {
    left: 34%;
  }

  .hero-app-screen {
    top: 150px;
  }

  .hero-app-audio {
    right: 29%;
  }

  .hero-app-repair {
    top: 158px;
  }

  .studio-note {
    top: 178px;
    right: 112px;
    left: 112px;
    font-size: 16px;
  }

  .manifesto-grid {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .apps-section,
  .principles-section,
  .about-section {
    padding: 88px 0;
  }

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

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

  .app-copy {
    padding: 36px 26px 12px;
  }

  .app-identity > img {
    width: 64px;
  }

  .app-tagline {
    margin-top: 40px;
  }

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

  .app-visual {
    min-height: 480px;
  }

  .phone {
    width: min(245px, 65vw);
  }

  .phone-front {
    right: 22px;
  }

  .phone-back {
    top: 75px;
    left: 10px;
  }

  .app-pair {
    grid-template-columns: 1fr;
  }

  .compact-app {
    min-height: 610px;
  }

  .compact-copy {
    padding: 36px 26px;
  }

  .compact-phone {
    right: -5px;
    width: 250px;
  }

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

  .principles-grid article,
  .principles-grid article:not(:first-child) {
    min-height: 240px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .principles-grid article:last-child {
    border-bottom: 0;
  }

  .principles-grid h3 {
    margin-top: 72px;
  }

  .about-copy {
    padding-top: 0;
  }

  .closing-shell {
    padding: 58px 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .legal-main {
    padding: 54px 0 80px;
  }

  .legal-aside nav {
    grid-template-columns: 1fr;
  }

  .legal-document h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .legal-facts {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 20px;
  }

  .legal-facts dd + dt {
    margin-top: 10px;
  }
}

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

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