:root {
  --bg: #0b0c18;
  --panel: #121326;
  --panel-strong: #181a31;
  --ink: #f5f3ff;
  --muted: #aaa9c6;
  --faint: #77779a;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #7c5cff;
  --cyan: #63e6ff;
  --pink: #ff6ad5;
  --gold: #ffd166;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% -10%, rgba(124, 92, 255, 0.18), transparent 35rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #0b0c18;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.site-header,
main,
footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  width: 28px;
  height: 28px;
  padding: 5px;
  background: var(--ink);
  border-radius: 8px;
}

.brand-mark i {
  display: block;
  width: 3px;
  border-radius: 2px;
}

.brand-mark i:nth-child(1) {
  height: 8px;
  background: var(--cyan);
}

.brand-mark i:nth-child(2) {
  height: 16px;
  background: var(--accent);
}

.brand-mark i:nth-child(3) {
  height: 12px;
  background: var(--pink);
}

.brand-mark i:nth-child(4) {
  height: 6px;
  background: var(--gold);
}

.header-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-underline-offset: 4px;
}

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

.header-button {
  padding: 0;
  background: transparent;
  border: 0;
  text-decoration: underline;
  cursor: pointer;
}

.header-button:hover,
.header-link:hover {
  color: var(--ink);
}

.header-actions .header-button[hidden] {
  display: none;
}

.hero {
  padding: 88px 0 58px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.eyebrow span {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 810;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-copy {
  max-width: 620px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.hero-cues {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  margin-top: 34px;
  color: var(--faint);
  font-size: 12px;
}

kbd {
  display: inline-block;
  min-width: 32px;
  margin-right: 4px;
  padding: 3px 7px;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid var(--line);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font: 650 10px/1.3 inherit;
  letter-spacing: 0.04em;
}

.studio-card {
  padding: clamp(18px, 3vw, 30px);
  background: rgba(18, 19, 38, 0.94);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.studio-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.studio-heading .section-kicker {
  margin-bottom: 6px;
}

.studio-heading h2,
.how-heading h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  letter-spacing: -0.035em;
}

.project-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 10px 11px;
  background: rgba(255, 255, 255, 0.022);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.project-picker {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.project-picker > span,
.project-state {
  color: var(--faint);
  font-size: 9px;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-picker select {
  width: min(230px, 32vw);
}

.project-state {
  margin: 0 auto 0 0;
  letter-spacing: 0;
  text-transform: none;
}

.project-actions {
  display: flex;
  gap: 6px;
}

.mini-button {
  min-height: 31px;
  padding: 0 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 9px;
  font-weight: 730;
  cursor: pointer;
}

.mini-button:hover:not(:disabled) {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
}

.mini-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.mini-button-danger:hover:not(:disabled) {
  color: #ff9fcf;
  border-color: rgba(255, 106, 213, 0.45);
}

.quick-start {
  display: grid;
  grid-template-columns: minmax(145px, 0.65fr) minmax(0, 2.8fr);
  gap: 20px;
  margin-bottom: 18px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.quick-start-heading {
  align-self: center;
  padding-left: 4px;
}

.quick-start-heading .section-kicker {
  margin-bottom: 5px;
  line-height: 1.45;
}

.quick-start-heading h3 {
  margin: 0;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.tutorial-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tutorial-step {
  display: flex;
  gap: 9px;
  min-width: 0;
  padding: 10px;
  color: var(--faint);
  border: 1px solid transparent;
  border-radius: 11px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.tutorial-step[data-state="active"] {
  color: var(--ink);
  background: rgba(124, 92, 255, 0.1);
  border-color: rgba(124, 92, 255, 0.34);
}

.tutorial-step[data-state="completed"] {
  color: var(--muted);
}

.tutorial-number {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.tutorial-step[data-state="active"] .tutorial-number {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 14px rgba(124, 92, 255, 0.48);
}

.tutorial-step[data-state="completed"] .tutorial-number {
  color: #09140f;
  background: #63f5aa;
  border-color: #63f5aa;
  font-size: 0;
}

.tutorial-step[data-state="completed"] .tutorial-number::after {
  content: "✓";
  font-size: 10px;
}

.tutorial-step strong {
  display: block;
  margin: 1px 0 3px;
  color: inherit;
  font-size: 11px;
}

.tutorial-step p {
  margin: 0;
  font-size: 9px;
  line-height: 1.45;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 6px 0 0;
  padding: 0;
  color: var(--cyan);
  background: none;
  border: 0;
  font-size: 9px;
  font-weight: 760;
  cursor: pointer;
}

.text-button:hover:not(:disabled) {
  color: var(--ink);
}

.text-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-pill span {
  width: 6px;
  height: 6px;
  background: #63f5aa;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(99, 245, 170, 0.7);
}

.status-pill[data-mode="playing"] span {
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
  animation: pulse 1s ease-in-out infinite;
}

.stage {
  position: relative;
  overflow: hidden;
  background: #0e1022;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  touch-action: none;
  isolation: isolate;
}

.stage::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

canvas {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 940 / 520;
  cursor: crosshair;
}

.empty-state {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 8px;
  color: var(--faint);
  text-align: center;
  pointer-events: none;
}

.empty-state[hidden] {
  display: none;
}

.empty-state span {
  color: var(--accent);
  font-size: 22px;
}

.empty-state strong {
  font-size: 13px;
}

.transport {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 720;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, transform 80ms ease;
}

.button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.18);
}

.button:active:not(:disabled) {
  transform: translateY(1px);
}

.button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.button-primary {
  min-width: 148px;
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.button-primary:hover:not(:disabled) {
  background: #8a6cff;
  border-color: #8a6cff;
}

.button-download {
  margin-left: auto;
}

.play-icon {
  font-size: 10px;
}

.settings {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.55fr);
  gap: clamp(24px, 4vw, 44px);
  padding-top: 20px;
}

.layer-panel,
.groove-panel {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.layer-panel legend,
.groove-panel legend,
.select-field > span,
.range-field > span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.layer-mixer {
  display: grid;
  gap: 7px;
}

.layer-row {
  display: grid;
  grid-template-columns: minmax(112px, 1fr) minmax(92px, 0.85fr) minmax(118px, 1fr) 34px;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding: 6px;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.layer-row[data-muted="true"] {
  opacity: 0.5;
}

.layer-select {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  height: 36px;
  padding: 0 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
}

.layer-select:hover {
  color: var(--ink);
}

.layer-select[aria-pressed="true"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.075);
  border-color: var(--layer-color);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--layer-color) 42%, transparent);
}

.layer-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background: var(--layer-color);
  border-radius: 50%;
  box-shadow: 0 0 8px color-mix(in srgb, var(--layer-color) 65%, transparent);
}

.layer-copy {
  min-width: 0;
}

.layer-copy strong,
.layer-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.layer-copy strong {
  font-size: 10px;
}

.layer-copy small {
  margin-top: 2px;
  color: var(--faint);
  font-size: 8px;
}

.layer-volume {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 4px;
}

.layer-volume input {
  min-width: 0;
}

.layer-volume output {
  color: var(--faint);
  font-size: 8px;
  text-align: right;
}

.layer-mute {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: var(--faint);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.layer-mute[aria-pressed="true"] {
  color: #0b0c18;
  background: var(--pink);
  border-color: var(--pink);
}

.panel-hint {
  margin: 9px 2px 0;
  color: var(--faint);
  font-size: 8px;
  line-height: 1.5;
}

.select-field {
  display: grid;
  grid-template-columns: minmax(110px, 0.7fr) minmax(160px, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.select-field > span {
  margin-bottom: 0;
}

select {
  min-width: 0;
  height: 36px;
  padding: 0 30px 0 10px;
  color: var(--ink);
  color-scheme: dark;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 650;
}

.toggle-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-bottom: 15px;
}

.toggle-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  min-height: 48px;
  padding: 7px 9px 7px 11px;
  color: var(--muted);
  text-align: left;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}

.toggle-control:hover:not(:disabled) {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
}

.toggle-control:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.toggle-control > span {
  min-width: 0;
}

.toggle-control strong,
.toggle-control small {
  display: block;
}

.toggle-control strong {
  color: inherit;
  font-size: 10px;
}

.toggle-control small {
  margin-top: 2px;
  overflow: hidden;
  color: var(--faint);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.toggle-control i {
  position: relative;
  flex: 0 0 auto;
  width: 31px;
  height: 18px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  transition: background 160ms ease;
}

.toggle-control i::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  background: var(--muted);
  border-radius: 50%;
  content: "";
  transition: background 160ms ease, transform 160ms ease;
}

.toggle-control[aria-pressed="true"] {
  color: var(--ink);
  border-color: rgba(124, 92, 255, 0.45);
}

.toggle-control[aria-pressed="true"] i {
  background: rgba(124, 92, 255, 0.55);
}

.toggle-control[aria-pressed="true"] i::after {
  background: #fff;
  transform: translateX(13px);
}

.sliders {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.range-field {
  min-width: 0;
}

.range-field > span {
  display: flex;
  justify-content: space-between;
}

.range-field output {
  color: var(--ink);
}

input[type="range"] {
  width: 100%;
  height: 4px;
  margin: 8px 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.live-status {
  margin: 18px 0 0;
  color: var(--faint);
  font-size: 11px;
  line-height: 1.5;
}

.how {
  padding: 112px 0 118px;
}

.how-heading {
  margin-bottom: 28px;
}

.how-heading .section-kicker {
  margin-bottom: 10px;
}

.rule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.rule-card {
  position: relative;
  min-height: 278px;
  padding: 22px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.rule-number {
  color: var(--faint);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.rule-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 105px;
  margin: 13px 0 10px;
}

.rule-card h3 {
  margin: 0 0 7px;
  font-size: 15px;
}

.rule-card p {
  max-width: 27ch;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.rule-height {
  align-items: flex-end;
  gap: 6px;
}

.rule-height i {
  width: 9px;
  background: var(--cyan);
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(99, 230, 255, 0.35);
}

.rule-height i:nth-child(1) { height: 18px; }
.rule-height i:nth-child(2) { height: 36px; }
.rule-height i:nth-child(3) { height: 58px; }
.rule-height i:nth-child(4) { height: 76px; }
.rule-height i:nth-child(5) { height: 94px; }

.rule-color {
  gap: 10px;
}

.rule-color i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.rule-color i:nth-child(1) { background: var(--cyan); }
.rule-color i:nth-child(2) { background: var(--accent); }
.rule-color i:nth-child(3) { background: var(--pink); }
.rule-color i:nth-child(4) { background: var(--gold); }

.rule-time {
  position: relative;
}

.rule-time::before {
  width: 82%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--accent), var(--pink), var(--gold));
  border-radius: 4px;
  content: "";
}

.rule-time i {
  position: absolute;
  left: 27%;
  width: 2px;
  height: 76px;
  background: var(--ink);
  box-shadow: 0 0 12px var(--pink);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 38px;
  color: var(--faint);
  border-top: 1px solid var(--line);
  font-size: 11px;
}

footer p {
  margin: 0;
}

footer span {
  margin-inline: 5px;
  color: var(--accent);
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--cyan) 70%, white);
  outline-offset: 3px;
}

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

@keyframes pulse {
  50% {
    opacity: 0.45;
    transform: scale(0.75);
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 68px;
  }

  .quick-start {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quick-start-heading {
    padding-left: 0;
  }

  .project-bar {
    flex-wrap: wrap;
  }

  .project-actions {
    margin-left: auto;
  }

  .settings {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .rule-card {
    min-height: 225px;
  }
}

@media (max-width: 620px) {
  .site-header,
  main,
  footer {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    min-height: 66px;
  }

  .header-link {
    display: none;
  }

  .header-actions .header-button {
    display: inline;
  }

  .hero {
    padding: 56px 4px 40px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14.5vw, 4.6rem);
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 0.95rem;
  }

  .hero-cues {
    display: none;
  }

  .studio-card {
    padding: 14px;
    border-radius: 18px;
  }

  .studio-heading {
    margin: 5px 3px 14px;
  }

  .studio-heading h2 {
    font-size: 1.25rem;
  }

  .project-bar {
    display: grid;
    grid-template-columns: 1fr;
    padding: 9px;
  }

  .project-picker {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .project-picker select {
    width: 100%;
  }

  .project-state {
    display: none;
  }

  .project-actions {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-left: 0;
  }

  .mini-button {
    padding-inline: 6px;
  }

  .quick-start {
    padding: 10px;
  }

  .quick-start-heading {
    padding: 3px 3px 0;
  }

  .tutorial-steps {
    grid-template-columns: 1fr;
  }

  .tutorial-step {
    padding: 8px;
  }

  .tutorial-step p {
    font-size: 9px;
  }

  .section-kicker {
    font-size: 9px;
  }

  .stage {
    border-radius: 12px;
  }

  .transport {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .button {
    min-width: 0;
    padding-inline: 10px;
  }

  .button-primary {
    grid-column: 1 / -1;
  }

  .button-download {
    margin-left: 0;
  }

  .layer-row {
    grid-template-columns: minmax(108px, 1.15fr) minmax(92px, 1fr) 34px;
  }

  .layer-select {
    grid-column: 1;
    grid-row: 1;
  }

  .layer-row > select {
    grid-column: 2;
    grid-row: 1;
  }

  .layer-mute {
    grid-column: 3;
    grid-row: 1;
  }

  .layer-volume {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-inline: 4px;
  }

  .select-field {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .toggle-row {
    grid-template-columns: 1fr;
  }

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

  .how {
    padding: 78px 0;
  }

  footer {
    display: block;
    text-align: center;
  }

  footer p + p {
    margin-top: 8px;
  }
}

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

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