:root {
  --jet: #000000;
  --jet-deep: #000000;
  --jet-panel: #111216;
  --jet-raised: #1c1d22;
  --yellow: #fee715;
  --yellow-soft: #f2dc19;
  --bone: #f3efe4;
  --warm-gray: #c6c2b8;
  --muted: #9f9c94;
  --line: rgba(243, 239, 228, 0.15);
  --line-strong: rgba(243, 239, 228, 0.28);
  --ink: #000000;
  --container: 1280px;
  --gutter: 48px;
  --header-height: 72px;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", "Cascadia Code", "Roboto Mono", Consolas, monospace;
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--jet);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

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

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

p,
h1,
h2,
h3,
figure,
fieldset,
dl,
dd {
  margin: 0;
}

ol {
  margin: 0;
  padding: 0;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  background: var(--yellow);
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.skip-link:focus,
.skip-link:focus-visible {
  width: auto;
  height: auto;
  overflow: visible;
  padding: 10px 14px;
  clip: auto;
  clip-path: none;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.94);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(0, 0, 0, 0.98);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 820;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: inline-grid;
  width: 40px;
  height: 32px;
  place-items: center;
  background: var(--yellow);
}

.brand-mark img {
  width: 28px;
  height: 24px;
}

.header-actions {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 28px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button-small {
  min-height: 44px;
  padding-inline: 17px;
  font-size: 13px;
}

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

.button-yellow:hover {
  background: var(--bone);
}

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

.button-dark:hover {
  background: var(--jet);
  color: var(--bone);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.hero {
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: clamp(48px, 6vw, 88px);
  padding-block: 66px 84px;
}

.error-page .hero-grid {
  grid-template-columns: minmax(0, 780px);
}

.hero-copy {
  align-self: center;
  max-width: 565px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.3;
}

.signal-dot {
  width: 7px;
  height: 7px;
  background: var(--yellow);
}

h1,
h2 {
  font-weight: 780;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 700px;
  font-size: clamp(54px, 5.5vw, 82px);
  line-height: 0.96;
}

h1 span,
h2 span {
  display: block;
}

.hero-description {
  max-width: 520px;
  margin-top: 32px;
  color: var(--warm-gray);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
}

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

.beta-note {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.product-demo {
  position: relative;
  width: 100%;
  min-width: 0;
}

.product-demo:focus-visible {
  outline-offset: 10px;
}

.demo-window {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--jet-deep);
  box-shadow: 22px 22px 0 rgba(0, 0, 0, 0.72);
}

.window-chrome {
  display: grid;
  height: 44px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: 15px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.traffic-lights {
  display: flex;
  gap: 7px;
}

.traffic-lights span {
  width: 9px;
  height: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.window-spacer {
  justify-self: end;
}

.terminal {
  min-height: 515px;
  padding: 30px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.75;
}

.terminal-context {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.terminal-context-agent {
  color: var(--yellow);
}

.terminal-prompt {
  max-width: 82%;
  margin-top: 34px;
  color: var(--bone);
  font-size: 13px;
  font-weight: 650;
}

.terminal-prompt > span:first-child {
  color: var(--yellow);
}

.terminal-log {
  margin-top: 28px;
  color: var(--warm-gray);
}

.terminal-log p {
  min-height: 22px;
}

.terminal-log span,
.terminal-detail span {
  display: inline-block;
  width: 18px;
}

.log-ok {
  color: var(--yellow);
}

.log-running {
  color: var(--warm-gray);
}

.log-warning {
  color: var(--yellow);
}

.terminal-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 10px;
}

.status-pulse {
  width: 6px;
  height: 6px;
  background: var(--yellow);
}

.product-demo[data-demo-state="working"] .status-pulse {
  animation: pulse 1.1s steps(2, end) infinite;
}

.terminal-detail-button {
  display: block;
  min-height: 44px;
  margin-top: 16px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--yellow);
  background: transparent;
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 10px;
  cursor: pointer;
}

.terminal-detail {
  max-width: 60%;
  margin-top: 10px;
  padding: 10px 12px;
  border-left: 2px solid var(--yellow);
  background: var(--jet-panel);
  color: var(--warm-gray);
  font-size: 10px;
}

.decision-panel {
  position: absolute;
  z-index: 4;
  top: 84px;
  right: 24px;
  width: min(390px, calc(100% - 48px));
  border: 1px solid var(--yellow);
  background: var(--jet);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.82);
}

.decision-bar {
  display: flex;
  height: 32px;
  align-items: center;
  gap: 8px;
  padding: 0 8px 0 4px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
}

.decision-bar img {
  width: 28px;
  height: 24px;
}

.decision-bar-keys {
  margin-left: auto;
  letter-spacing: 0.06em;
}

.decision-options {
  display: grid;
  grid-template-rows: repeat(4, minmax(62px, auto));
  overflow: hidden;
  max-height: 360px;
  opacity: 1;
  transition: max-height 280ms ease, opacity 180ms ease;
}

.product-demo[data-demo-state="working"] .decision-options,
.product-demo[data-demo-state="completed"] .decision-options {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.decision-option {
  display: grid;
  min-height: 62px;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--bone);
  text-align: left;
  cursor: pointer;
  transition: background-color 130ms ease, color 130ms ease;
}

.decision-option:hover,
.decision-option:focus-visible,
.decision-option.is-selected,
.product-demo[data-demo-state="review"] .decision-option[data-choice="2"] {
  background: var(--yellow);
  color: var(--ink);
}

.decision-option:focus-visible {
  outline-offset: -4px;
}

.decision-option kbd {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.decision-option > span {
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
}

.decision-option small {
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 750;
  text-transform: uppercase;
}

.decision-option:hover small,
.decision-option:focus-visible small,
.decision-option.is-selected small {
  color: var(--ink);
}

.product-demo figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.caption-rule {
  width: 32px;
  height: 2px;
  background: var(--yellow);
}

.section {
  padding-block: 150px;
  border-bottom: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(64px, 9vw, 144px);
}

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

.section-heading h2,
.signup-copy h2 {
  font-size: clamp(42px, 4.2vw, 66px);
  line-height: 1;
}

.section-intro {
  margin-top: 28px;
  color: var(--warm-gray);
  font-size: 17px;
  line-height: 1.65;
}

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

.editorial-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  padding-block: 38px;
  border-bottom: 1px solid var(--line);
}

.row-number,
.step-number {
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.editorial-row h3,
.steps-list h3 {
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.editorial-row p,
.steps-list p {
  max-width: 560px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.section-how {
  background: var(--jet);
}

.section-heading-wide {
  display: grid;
  max-width: none;
  grid-template-columns: 1fr 1.45fr;
  column-gap: clamp(52px, 9vw, 140px);
}

.section-heading-wide .eyebrow {
  grid-column: 1 / -1;
}

.section-heading-wide .section-intro {
  align-self: end;
  margin-top: 0;
}

.steps-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 88px;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.steps-list li {
  position: relative;
  min-height: 335px;
  padding: 28px 38px 34px 0;
  border-right: 1px solid var(--line);
}

.steps-list li + li {
  padding-left: 38px;
}

.steps-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.step-signal {
  display: flex;
  height: 92px;
  align-items: center;
}

.step-signal::before {
  width: 34px;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.step-signal span {
  width: 9px;
  height: 9px;
  background: var(--yellow);
}

.steps-list p {
  font-size: 14px;
}

.section-beta-scope {
  position: relative;
}

.section-beta-scope::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 100%;
  background: var(--yellow);
  content: "";
}

.scope-table {
  border-top: 1px solid var(--line-strong);
}

.scope-table > div {
  display: grid;
  min-height: 106px;
  grid-template-columns: 138px 1fr;
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid var(--line);
}

.scope-table dt {
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.scope-table dd {
  color: var(--bone);
  font-size: 16px;
  line-height: 1.5;
}

.section-faq {
  background: var(--jet);
}

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

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

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--bone);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

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

.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
  background: var(--yellow);
  content: "";
  transition: transform 160ms ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

details[open] .faq-icon::after {
  transform: rotate(0deg);
}

.faq-list details > p {
  max-width: 680px;
  padding: 0 52px 30px 0;
  color: var(--muted);
  line-height: 1.7;
}

.signup-section {
  padding-block: 112px;
  border-top: 7px solid var(--yellow);
  background: var(--jet);
  color: var(--bone);
}

.signup-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 5fr);
  gap: clamp(64px, 11vw, 164px);
  align-items: start;
}

.eyebrow-dark {
  color: var(--yellow);
}

.signup-copy > p:last-child {
  max-width: 500px;
  margin-top: 28px;
  color: var(--warm-gray);
  font-size: 17px;
  line-height: 1.65;
}

.signup-form {
  display: grid;
  gap: 24px;
  padding-left: 42px;
  border-left: 1px solid var(--line-strong);
}

.form-field {
  display: grid;
  gap: 9px;
}

.signup-form label,
.signup-form legend {
  color: var(--bone);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.signup-form input[type="email"] {
  width: 100%;
  height: 56px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  color: var(--bone);
  caret-color: var(--yellow);
}

.signup-form input[type="email"]:focus-visible {
  outline-color: var(--yellow);
}

.signup-form fieldset {
  padding: 0;
  border: 0;
}

.signup-form :disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.signup-form legend {
  margin-bottom: 9px;
}

.noscript-note {
  margin: 0;
  padding: 12px 14px;
  border-left: 2px solid var(--yellow);
  color: var(--warm-gray);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.5;
}

.agent-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.agent-options label {
  position: relative;
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid var(--line-strong);
  cursor: pointer;
}

.agent-options label + label {
  border-left: 0;
}

.agent-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.agent-options label:has(input:checked) {
  background: var(--yellow);
}

.agent-options label:has(input:checked) span {
  color: var(--ink);
}

.agent-options label:has(input:focus-visible) {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.tool-note,
.privacy-note,
.form-error {
  font-size: 12px;
  line-height: 1.5;
}

.tool-note {
  padding-left: 12px;
  border-left: 2px solid var(--yellow);
  color: var(--warm-gray);
  font-weight: 650;
}

.form-submit {
  width: 100%;
  background: var(--yellow);
  color: var(--ink);
}

.form-submit:hover {
  background: var(--bone);
  color: var(--ink);
}

.privacy-note {
  color: var(--muted);
}

.form-error {
  padding: 12px 14px;
  border: 1px solid var(--yellow);
  color: var(--bone);
  font-weight: 700;
}

.form-success {
  padding: 22px;
  border: 1px solid var(--yellow);
  background: transparent;
  color: var(--bone);
}

.form-success strong {
  display: block;
  color: var(--yellow);
  font-size: 17px;
}

.form-success p {
  margin-top: 6px;
  color: var(--warm-gray);
  font-size: 13px;
}

[hidden] {
  display: none !important;
}

.site-footer {
  padding-block: 34px;
  border-top: 1px solid var(--line);
  background: var(--jet);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 36px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.footer-brand {
  color: var(--bone);
  font-family: var(--sans);
  font-size: 16px;
}

.footer-brand .brand-mark {
  width: 36px;
  height: 30px;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  :root {
    --gutter: 32px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 58px;
    padding-block: 88px 104px;
  }

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

  .hero-description {
    max-width: 640px;
  }

  .demo-window {
    min-height: 590px;
  }

  .section {
    padding-block: 112px;
  }

  .section-grid {
    gap: 72px;
  }

  .signup-grid {
    gap: 72px;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 20px;
    --header-height: 64px;
  }

  .header-actions {
    gap: 12px;
  }

  .brand-wordmark {
    font-size: 17px;
  }

  .header-cta {
    padding-inline: 13px;
  }

  .hero-grid {
    gap: 50px;
    padding-block: 64px 80px;
  }

  .eyebrow {
    margin-bottom: 22px;
  }

  h1 {
    font-size: clamp(42px, 12.5vw, 58px);
    line-height: 0.98;
  }

  .hero-description {
    margin-top: 25px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
  }

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

  .demo-window {
    min-height: 0;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.72);
  }

  .terminal {
    min-height: 0;
    padding: 21px 21px 24px;
    font-size: 10px;
  }

  .terminal-context {
    padding-bottom: 16px;
  }

  .terminal-prompt {
    max-width: 100%;
    margin-top: 20px;
    font-size: 11px;
  }

  .terminal-log {
    margin-top: 18px;
  }

  .terminal-status {
    margin-top: 16px;
  }

  .decision-panel {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    margin: 0 14px 21px;
    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.82);
  }

  .decision-options {
    grid-template-rows: repeat(4, minmax(58px, auto));
  }

  .decision-option {
    min-height: 58px;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    padding: 9px 11px;
  }

  .decision-option > span {
    font-size: 11px;
  }

  .product-demo figcaption {
    align-items: flex-start;
    font-size: 9px;
    line-height: 1.5;
  }

  .section {
    padding-block: 82px;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section-heading h2,
  .signup-copy h2 {
    font-size: clamp(40px, 11vw, 54px);
  }

  .section-intro {
    margin-top: 22px;
    font-size: 15px;
  }

  .editorial-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    padding-block: 28px;
  }

  .editorial-row h3,
  .steps-list h3 {
    font-size: 21px;
  }

  .editorial-row p,
  .steps-list p {
    font-size: 14px;
  }

  .section-heading-wide {
    display: block;
  }

  .section-heading-wide .section-intro {
    margin-top: 22px;
  }

  .steps-list {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .steps-list li,
  .steps-list li + li {
    min-height: auto;
    padding: 28px 0 34px 50px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps-list li:last-child {
    border-bottom: 0;
  }

  .step-signal {
    position: absolute;
    top: 62px;
    left: 0;
    width: 28px;
    height: 28px;
  }

  .step-signal::before {
    width: 17px;
  }

  .scope-table > div {
    min-height: 96px;
    grid-template-columns: 92px 1fr;
    gap: 16px;
  }

  .scope-table dd {
    font-size: 14px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 15px;
  }

  .faq-list details > p {
    padding-right: 36px;
    font-size: 14px;
  }

  .signup-section {
    padding-block: 78px;
  }

  .signup-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .signup-form {
    padding-top: 32px;
    padding-left: 0;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .agent-options {
    grid-template-columns: 1fr;
  }

  .agent-options label + label {
    border-top: 0;
    border-left: 1px solid var(--line-strong);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 430px) {
  .hero-grid {
    padding-top: 54px;
  }

  .terminal-detail {
    max-width: 100%;
  }

  .decision-option small {
    max-width: 52px;
    text-align: right;
  }
}

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

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