:root {
  --ink: #111111;
  --ink-soft: #4f5352;
  --paper: #f7f7f2;
  --white: #ffffff;
  --line: #d8dad4;
  --line-dark: #aeb3ae;
  --cyan: #83eaf5;
  --cyan-deep: #177b86;
  --green: #b9f45a;
  --green-dark: #1c3905;
  --error: #a92720;
  --success: #1f6b2a;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page-gutter: 48px;
  --content-width: 1320px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(247, 247, 242, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: block;
  width: 188px;
}

.brand img {
  width: 100%;
  height: auto;
}

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

.site-nav a {
  text-decoration: none;
}

.site-nav a:not(.nav-cta) {
  border-bottom: 1px solid transparent;
}

.site-nav a:not(.nav-cta):hover {
  border-color: currentColor;
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

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

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 160ms ease;
}

.hero {
  display: grid;
  grid-template-columns: minmax(350px, 0.78fr) minmax(560px, 1.22fr);
  gap: 72px;
  align-items: center;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-width));
  min-height: calc(100svh - 142px);
  margin: 0 auto;
  padding: 54px 0 68px;
}

.hero-copy {
  padding-bottom: 20px;
}

.eyebrow,
.section-label {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.status-dot {
  width: 9px;
  height: 9px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(185, 244, 90, 0.3);
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  color: var(--green-dark);
  background: var(--green);
}

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

.text-link {
  font-size: 14px;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
}

.hero-note {
  margin: 0;
  color: #717572;
  font-size: 12px;
}

.product-stage {
  min-width: 0;
}

.stage-caption {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.app-window {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  width: 100%;
  aspect-ratio: 1.08 / 1;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 14px 16px 0 var(--cyan);
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 20px 14px;
  border-right: 1px solid #dfe1dc;
  background: #f0f1ec;
}

.app-sidebar img {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
}

.sidebar-line {
  width: 24px;
  height: 4px;
  background: #c0c4bf;
}

.sidebar-line.is-active {
  background: var(--ink);
}

.sidebar-spacer {
  flex: 1;
}

.sidebar-avatar {
  width: 30px;
  height: 30px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--cyan);
}

.app-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 34px;
}

.episode-header {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.episode-art {
  display: flex;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
}

.episode-art span {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.episode-art small {
  margin-top: 5px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
}

.ui-kicker {
  margin-bottom: 8px;
  color: var(--cyan-deep);
  font-size: 10px;
  font-weight: 800;
}

.episode-header h2 {
  max-width: 420px;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.05;
}

.episode-meta {
  margin-bottom: 0;
  color: #717572;
  font-size: 11px;
}

.player-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin: 26px 0;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.play-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
}

.play-button span {
  margin-left: 2px;
  font-size: 11px;
}

.waveform {
  display: flex;
  height: 36px;
  align-items: center;
  gap: 4px;
  overflow: hidden;
}

.waveform i {
  display: block;
  width: 3px;
  min-width: 3px;
  height: 32%;
  background: #b8bbb7;
}

.waveform i:nth-child(2n) { height: 62%; }
.waveform i:nth-child(3n) { height: 88%; background: var(--cyan-deep); }
.waveform i:nth-child(5n) { height: 44%; }
.waveform i:nth-child(7n) { height: 100%; background: var(--ink); }

.player-time {
  color: #717572;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.insight-panel {
  flex: 1;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fafaf7;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.panel-heading p,
.panel-heading span {
  margin: 0;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.panel-heading > span {
  color: #717572;
}

.spark {
  margin-right: 6px;
  color: var(--cyan-deep);
  font-size: 16px;
}

.summary-lead {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.4;
}

.takeaway-list p {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 10px;
  margin: 0;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
}

.takeaway-list span {
  color: var(--ink);
  font-weight: 800;
}

.ask-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  margin-top: 18px;
  padding: 7px 7px 7px 16px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  color: #717572;
  font-size: 11px;
}

.ask-bar button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 4px;
  color: var(--ink);
  background: var(--cyan);
  cursor: pointer;
}

.transformation {
  display: grid;
  grid-template-columns: 0.6fr 1.05fr 1.35fr;
  gap: 64px;
  align-items: end;
  padding: 92px max(var(--page-gutter), calc((100vw - var(--content-width)) / 2));
  color: var(--white);
  background: var(--ink);
}

.transformation .section-label {
  color: #b7bab6;
  align-self: start;
}

.transformation-copy h2 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: 43px;
  font-weight: 400;
  line-height: 1.08;
}

.transformation-copy p {
  max-width: 480px;
  margin-bottom: 0;
  color: #b7bab6;
}

.signal-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  color: #939792;
  font-size: 9px;
  font-weight: 800;
}

.signal-line {
  position: relative;
  display: flex;
  height: 82px;
  align-items: center;
  gap: 7px;
}

.signal-line::after {
  position: absolute;
  right: 0;
  left: 61%;
  height: 2px;
  background: var(--cyan);
  content: "";
}

.signal-line span {
  display: block;
  width: 4px;
  height: 22px;
  background: var(--white);
}

.signal-line span:nth-child(2n) { height: 48px; }
.signal-line span:nth-child(3n) { height: 70px; }
.signal-line span:nth-child(5n) { height: 35px; }

.signal-line b {
  position: absolute;
  z-index: 1;
  right: 0;
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  background: var(--green);
  transform: rotate(45deg);
}

.product-section {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-width));
  margin: 0 auto;
  padding: 118px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: 0.65fr 0.9fr 1fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 70px;
}

.section-intro h2,
.use-case-heading h2,
.access-copy h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 400;
  line-height: 1.05;
}

.section-intro > p:last-child {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.capability-list {
  border-top: 1px solid var(--ink);
}

.capability {
  display: grid;
  grid-template-columns: 0.55fr 0.95fr 1.5fr;
  gap: 44px;
  align-items: center;
  min-height: 230px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-dark);
}

.capability-number {
  align-self: start;
  padding-top: 6px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
}

.capability-copy h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
}

.capability-copy p {
  max-width: 360px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.capability-visual {
  min-height: 158px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.visual-label {
  display: block;
  margin-bottom: 26px;
  color: var(--cyan-deep);
  font-size: 9px;
  font-weight: 800;
}

.summary-visual b {
  display: block;
  height: 7px;
  margin-top: 12px;
  background: #dfe2dd;
}

.summary-visual b:nth-of-type(1) { width: 92%; }
.summary-visual b:nth-of-type(2) { width: 76%; }
.summary-visual b:nth-of-type(3) { width: 58%; background: var(--cyan); }

.search-pill {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.search-visual p {
  margin-bottom: 10px;
  color: #757a76;
  font-family: var(--serif);
  font-size: 14px;
}

mark {
  padding: 2px;
  color: var(--ink);
  background: var(--cyan);
}

.ask-visual p {
  width: fit-content;
  margin: 0 0 15px auto;
  padding: 10px 13px;
  border-radius: 6px 6px 0 6px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
}

.ask-visual span {
  display: block;
  width: fit-content;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 6px 6px 6px 0;
  font-family: var(--serif);
  font-size: 13px;
}

.use-cases {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  padding: 112px max(var(--page-gutter), calc((100vw - var(--content-width)) / 2));
  background: var(--cyan);
}

.use-case-heading h2 {
  max-width: 540px;
  margin-top: 20px;
}

.use-case-grid {
  border-top: 1px solid var(--ink);
}

.use-case-grid article {
  display: grid;
  grid-template-columns: 50px 0.75fr 1.25fr;
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.55);
}

.use-case-index,
.use-case-grid h3,
.use-case-grid p {
  margin-bottom: 0;
}

.use-case-index {
  font-size: 11px;
  font-weight: 800;
}

.use-case-grid h3 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.use-case-grid article > p:last-child {
  color: #234247;
}

.early-access {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 96px;
  padding: 120px max(var(--page-gutter), calc((100vw - var(--content-width)) / 2));
  color: var(--white);
  background: var(--ink);
}

.access-copy h2 {
  max-width: 640px;
  margin: 22px 0 26px;
  font-size: 58px;
}

.access-copy > p:not(.section-label) {
  max-width: 600px;
  margin-bottom: 38px;
  color: #b7bab6;
  font-size: 17px;
}

.early-access .section-label {
  color: var(--cyan);
}

.access-detail {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  max-width: 580px;
  padding: 14px 0;
  border-top: 1px solid #4c504d;
}

.access-detail:last-child {
  border-bottom: 1px solid #4c504d;
}

.access-detail span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
}

.access-detail p {
  margin-bottom: 0;
}

.access-form {
  align-self: start;
  padding: 36px;
  border: 1px solid #525653;
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
}

.form-heading {
  margin-bottom: 32px;
}

.form-heading h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}

.form-heading p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 750;
}

.field input,
.field select {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
}

.field input::placeholder {
  color: #898d89;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--error);
}

.field-error {
  min-height: 18px;
  margin: 5px 0 0;
  color: var(--error);
  font-size: 11px;
}

.submit-button {
  width: 100%;
  justify-content: space-between;
}

.submit-button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.privacy-note,
.form-status {
  font-size: 11px;
}

.privacy-note {
  margin: 14px 0 0;
  color: #717572;
}

.form-status {
  min-height: 20px;
  margin: 9px 0 0;
  font-weight: 700;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--error);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: center;
  padding: 34px max(var(--page-gutter), calc((100vw - var(--content-width)) / 2));
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 11px;
}

.site-footer img {
  width: 170px;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 44px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .app-window {
    min-height: 500px;
  }

  .app-content {
    padding: 28px;
  }

  .transformation,
  .section-intro,
  .capability {
    gap: 34px;
  }

  .early-access {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  :root {
    --page-gutter: 28px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: auto;
    padding: 70px 0 90px;
  }

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

  .app-window {
    min-height: 600px;
    aspect-ratio: 1.18 / 1;
  }

  .transformation {
    grid-template-columns: 1fr 1.25fr;
  }

  .transformation > .section-label {
    grid-column: 1 / -1;
  }

  .section-intro {
    grid-template-columns: 0.6fr 1.4fr;
  }

  .section-intro > p:last-child {
    grid-column: 2;
  }

  .capability {
    grid-template-columns: 60px 0.8fr 1.2fr;
  }

  .use-cases,
  .early-access {
    grid-template-columns: 1fr;
  }

  .use-case-heading h2,
  .access-copy h2 {
    max-width: 700px;
  }

  .access-form {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 20px;
  }

  .header-inner {
    height: 68px;
  }

  .brand {
    width: 158px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: grid;
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    gap: 0;
    padding: 12px var(--page-gutter) 20px;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
  }

  .js .site-nav {
    display: none;
  }

  .js .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    padding: 13px;
    text-align: center;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    gap: 24px;
    padding: 30px 0 40px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: 41px;
    line-height: 1.02;
  }

  .hero-lede {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }

  .button {
    width: 100%;
  }

  .hero-note,
  .text-link {
    display: none;
  }

  .stage-caption {
    font-size: 9px;
  }

  .app-window {
    grid-template-columns: 44px minmax(0, 1fr);
    height: 205px;
    min-height: 0;
    aspect-ratio: auto;
    box-shadow: 8px 10px 0 var(--cyan);
  }

  .app-sidebar {
    gap: 14px;
    padding: 14px 8px;
  }

  .app-sidebar img {
    width: 29px;
    height: 29px;
    margin-bottom: 12px;
  }

  .sidebar-line {
    width: 18px;
  }

  .sidebar-avatar {
    width: 24px;
    height: 24px;
  }

  .sidebar-spacer,
  .sidebar-avatar {
    display: none;
  }

  .app-content {
    padding: 20px 16px;
  }

  .episode-header {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 14px;
  }

  .episode-header h2 {
    font-size: 21px;
  }

  .episode-art span {
    font-size: 26px;
  }

  .player-row {
    gap: 9px;
    margin: 16px 0 0;
  }

  .waveform {
    gap: 3px;
  }

  .insight-panel,
  .ask-bar {
    display: none;
  }

  .transformation,
  .product-section,
  .use-cases,
  .early-access {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .transformation {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .transformation-copy h2,
  .section-intro h2,
  .use-case-heading h2,
  .access-copy h2 {
    font-size: 39px;
  }

  .signal-line {
    overflow: hidden;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 46px;
  }

  .section-intro > p:last-child {
    grid-column: auto;
  }

  .capability {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 20px;
    padding: 30px 0;
  }

  .capability-copy h3 {
    font-size: 33px;
  }

  .capability-visual {
    grid-column: 1 / -1;
    min-height: 145px;
  }

  .use-cases,
  .early-access {
    gap: 54px;
  }

  .use-case-grid article {
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .use-case-grid article > p:last-child {
    grid-column: 2;
  }

  .access-copy h2 {
    margin-bottom: 22px;
  }

  .access-copy > p:not(.section-label) {
    font-size: 15px;
  }

  .access-form {
    padding: 26px 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .site-footer img {
    width: 150px;
  }
}

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

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