:root {
  color-scheme: dark;
  --ink: #11100d;
  --ink-2: #181611;
  --ink-3: #211f19;
  --surface: #f8f1e6;
  --surface-2: #fffaf1;
  --surface-dark: rgba(255, 250, 241, 0.06);
  --surface-dark-2: rgba(255, 250, 241, 0.1);
  --line: rgba(255, 250, 241, 0.14);
  --line-strong: rgba(255, 250, 241, 0.24);
  --text: #fff9ef;
  --text-soft: #cfc3b2;
  --text-muted: #8f8374;
  --orange: #ff6b1a;
  --orange-2: #ff9f45;
  --jade: #44d7a8;
  --amber: #f4b84a;
  --red: #f46f64;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 16px 42px rgba(0, 0, 0, 0.24);
  --radius-lg: 24px;
  --radius: 16px;
  --radius-sm: 10px;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  background: var(--ink);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 107, 26, 0.14), transparent 28rem),
    linear-gradient(140deg, #11100d 0%, #17140f 46%, #0d0d0b 100%);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.55;
  letter-spacing: 0;
}

body::selection {
  background: rgba(255, 107, 26, 0.35);
}

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

a:hover {
  color: var(--orange-2);
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(255, 107, 26, 0.48);
  outline-offset: 3px;
}

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

h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 4.75rem);
  line-height: 1.02;
  font-weight: 800;
}

h2 {
  margin-bottom: 0.55rem;
  font-size: 1.45rem;
  line-height: 1.15;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

p {
  color: var(--text-soft);
}

.mono {
  font-family: var(--font-mono);
}

.strong {
  font-weight: 700;
}

.hidden {
  display: none !important;
}

.centered {
  text-align: center;
}

.text-success {
  color: var(--jade);
}

.text-warning {
  color: var(--amber);
}

.danger-text {
  color: var(--red);
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 0.55rem;
  color: var(--orange-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-weight: 800;
}

.brand:hover {
  color: var(--text);
}

.brand-mark,
.empty-icon {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0.8rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.22), transparent 42%),
    linear-gradient(135deg, var(--orange), #9a4dff);
  color: #fffaf1;
  box-shadow: 0 10px 30px rgba(255, 107, 26, 0.2);
  font-weight: 900;
}

.brand-logo {
  width: 2.45rem;
  height: 2.45rem;
  object-fit: contain;
}

.brand-logo-momo {
  width: 7.2rem;
  height: auto;
  border-radius: 0;
}

.brand-word {
  font-size: 1.05rem;
}

.merchant-name {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  gap: 0.5rem;
  padding: 0.75rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms var(--ease), background 160ms var(--ease), border-color 160ms var(--ease), box-shadow 160ms var(--ease), color 160ms var(--ease);
}

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

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

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

.button-primary {
  background: linear-gradient(135deg, var(--orange), #ff8d2a);
  color: #171008;
  box-shadow: 0 16px 34px rgba(255, 107, 26, 0.24);
}

.button-primary:hover:not(:disabled) {
  color: #171008;
  box-shadow: 0 18px 42px rgba(255, 107, 26, 0.34);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 250, 241, 0.08);
}

.button-secondary:hover:not(:disabled) {
  border-color: rgba(255, 107, 26, 0.44);
  background: rgba(255, 250, 241, 0.12);
}

.button-ghost {
  color: var(--text-soft);
}

.button-ghost:hover:not(:disabled) {
  background: rgba(255, 250, 241, 0.08);
  color: var(--text);
}

.button-danger {
  border-color: rgba(244, 111, 100, 0.35);
  background: rgba(244, 111, 100, 0.12);
  color: #ffd8d4;
}

.button-small {
  min-height: 2.2rem;
  padding: 0.5rem 0.8rem;
  font-size: 0.86rem;
}

.button-full {
  width: 100%;
}

.site-nav,
.payment-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.2rem 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-link {
  color: var(--text-soft);
  font-weight: 700;
}

.public-shell,
.payment-shell {
  min-height: 100vh;
}

.marketing-main {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: 4rem;
  min-height: calc(100vh - 8rem);
}

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

.hero-text {
  max-width: 610px;
  margin-bottom: 2rem;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.payment-preview {
  display: grid;
  place-items: center;
  justify-self: center;
  width: min(390px, 100%);
}

.image-preview {
  overflow: visible;
  padding: 0;
}

.image-preview img {
  display: block;
  width: min(310px, 78vw);
  height: auto;
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.35));
}

.preview-top,
.pagination,
.usage-card,
.surface-head,
.result-row,
.payment-footnotes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.preview-id,
.metric-note,
.payment-footnotes,
.pagination,
.form-hint,
.form-footer {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.preview-amount {
  margin: 2rem 0 0.15rem;
  font-size: 2.9rem;
  font-weight: 900;
}

.preview-merchant {
  color: var(--text-soft);
}

.preview-qr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  width: 12rem;
  height: 12rem;
  margin: 1.5rem auto;
  padding: 1.2rem;
  border-radius: 1.5rem;
  background: var(--surface-2);
}

.preview-qr span {
  border-radius: 0.5rem;
  background: var(--ink);
}

.preview-address {
  overflow: hidden;
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 241, 0.08);
  color: var(--text-soft);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section-band {
  margin-top: 1rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 241, 0.055);
}

.section-heading {
  max-width: 560px;
  margin-bottom: 1.25rem;
}

.feature-grid,
.metric-grid,
.plans-grid,
.settings-grid {
  display: grid;
  gap: 1rem;
}

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

.feature-card,
.metric-card,
.plan-card,
.surface,
.auth-panel,
.payment-card,
.trust-panel,
.usage-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.09), rgba(255, 250, 241, 0.045)),
    rgba(17, 16, 13, 0.72);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 1.2rem;
}

.feature-number {
  color: var(--orange-2);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
}

.auth-main {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 6rem);
  width: min(520px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0;
}

.auth-panel,
.payment-card,
.trust-panel,
.surface {
  width: 100%;
  padding: 1.35rem;
}

.auth-intro {
  margin-bottom: 1.5rem;
}

.auth-intro h1 {
  font-size: 2rem;
}

.form-stack {
  display: grid;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.form-group input,
.form-group textarea,
.form-group select,
.inline-form input {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 241, 0.07);
  color: var(--text);
  padding: 0.75rem 0.9rem;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease), background 160ms var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.inline-form input:focus {
  border-color: rgba(255, 107, 26, 0.65);
  background: rgba(255, 250, 241, 0.1);
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.13);
  outline: none;
}

.form-group input::placeholder,
.inline-form input::placeholder {
  color: rgba(207, 195, 178, 0.55);
}

.form-footer {
  margin: 1.1rem 0 0;
  text-align: center;
}

.input-with-unit,
.inline-form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.input-with-unit span {
  min-width: 5rem;
  color: var(--text-muted);
}

.flash {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: opacity 250ms var(--ease), transform 250ms var(--ease);
}

.flash.fade-out {
  opacity: 0;
  transform: translateY(-0.4rem);
}

.flash-error {
  border-color: rgba(244, 111, 100, 0.35);
  background: rgba(244, 111, 100, 0.12);
  color: #ffd8d4;
}

.flash-success {
  border-color: rgba(68, 215, 168, 0.35);
  background: rgba(68, 215, 168, 0.12);
  color: #d7fff1;
}

.key-flash code {
  display: block;
  margin: 0.45rem 0;
  word-break: break-all;
}

.app-shell {
  display: grid;
  grid-template-columns: 17.5rem minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 1.2rem;
  border-right: 1px solid var(--line);
  background: rgba(17, 16, 13, 0.84);
  backdrop-filter: blur(22px);
}

.sidebar-head {
  padding: 0.5rem 0.35rem 1.35rem;
}

.sidebar-nav {
  display: grid;
  gap: 0.35rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.8rem;
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  font-weight: 800;
  transition: background 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease);
}

.sidebar-link:hover,
.sidebar-link.active {
  background: rgba(255, 250, 241, 0.09);
  color: var(--text);
}

.sidebar-link.active {
  box-shadow: inset 0 0 0 1px rgba(255, 107, 26, 0.28);
}

.nav-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.6;
}

.sidebar-link.active .nav-dot {
  background: var(--orange);
  opacity: 1;
}

.sidebar-footer {
  margin-top: auto;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.055);
}

.sidebar-footer p {
  overflow: hidden;
  margin-bottom: 0.8rem;
  color: var(--text-soft);
  font-size: 0.85rem;
  text-overflow: ellipsis;
}

.workspace {
  min-width: 0;
}

.workspace-main {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.mobile-topbar {
  display: none;
}

.page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.page-head h1 {
  font-size: 2.35rem;
}

.page-head p {
  max-width: 650px;
  margin-bottom: 0;
}

.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.metric-card {
  padding: 1rem;
}

.metric-label {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin: 0.4rem 0 0.2rem;
  font-size: 1.9rem;
  line-height: 1.1;
}

.usage-card {
  margin-bottom: 1rem;
  padding: 1rem;
}

.usage-card p {
  margin: 0;
}

.surface + .surface,
.result-panel {
  margin-top: 1rem;
}

.surface-head {
  margin-bottom: 1rem;
}

.surface-head p {
  margin-bottom: 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.75fr);
  gap: 1rem;
}

.settings-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.quiet-panel,
.action-panel {
  align-self: start;
}

.step-list,
.trust-list,
.plan-features {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.step-list li,
.trust-list li {
  display: grid;
  gap: 0.18rem;
}

.step-list span,
.trust-list span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

th {
  background: rgba(255, 250, 241, 0.055);
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

tbody tr {
  transition: background 160ms var(--ease);
}

tbody tr:hover {
  background: rgba(255, 250, 241, 0.04);
}

.table-action {
  text-align: right;
}

.empty-cell {
  color: var(--text-muted);
  text-align: center;
}

.pagination {
  margin-top: 1rem;
  flex-wrap: wrap;
}

.pagination-actions {
  display: flex;
  gap: 0.5rem;
}

.badge,
.status-pill,
.privacy-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 1.7rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.badge::before,
.status-pill::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: currentColor;
}

.badge-pending,
.status-pending {
  border: 1px solid rgba(244, 184, 74, 0.3);
  background: rgba(244, 184, 74, 0.13);
  color: var(--amber);
}

.badge-paid {
  border: 1px solid rgba(68, 215, 168, 0.3);
  background: rgba(68, 215, 168, 0.13);
  color: var(--jade);
}

.badge-expired,
.badge-cancelled {
  border: 1px solid rgba(244, 111, 100, 0.3);
  background: rgba(244, 111, 100, 0.13);
  color: var(--red);
}

.plans-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.2rem;
}

.plan-card.current {
  border-color: rgba(255, 107, 26, 0.5);
  box-shadow: 0 0 0 1px rgba(255, 107, 26, 0.24), var(--shadow-soft);
}

.plan-price {
  margin: 0.25rem 0 0;
  color: var(--text);
  font-size: 2.2rem;
  font-weight: 900;
}

.plan-price span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.plan-features {
  flex: 1;
  color: var(--text-soft);
}

.detail-grid {
  display: grid;
  gap: 0.2rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.detail-row:last-child {
  border-bottom: 0;
}

.detail-label {
  color: var(--text-muted);
  font-weight: 800;
}

.detail-row code {
  max-width: 70%;
  color: var(--orange-2);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-align: right;
  word-break: break-all;
}

.action-panel {
  display: grid;
  gap: 0.7rem;
}

.inline-form {
  margin-bottom: 1rem;
}

.empty-state {
  display: grid;
  place-items: center;
  padding: 3rem 1rem;
  color: var(--text-soft);
  text-align: center;
}

.empty-state h3 {
  margin-top: 1rem;
}

.empty-state p {
  max-width: 420px;
}

.payment-main {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(280px, 380px);
  align-items: start;
  justify-content: center;
  gap: 1rem;
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0;
}

.payment-card {
  text-align: center;
}

.payment-status h1 {
  margin-bottom: 0.4rem;
  font-size: 3rem;
}

.payment-status p {
  margin-bottom: 0.8rem;
}

.payment-status.paid h1,
.payment-status.expired h1 {
  font-size: 2rem;
}

.qr-panel {
  display: inline-flex;
  margin: 1.2rem auto;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--surface-2);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.qr-panel img {
  display: block;
  width: min(260px, 70vw);
  height: auto;
  border-radius: 0.45rem;
}

.address-box {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 0.85rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 241, 0.07);
  text-align: left;
}

.address-box span {
  min-width: 0;
  flex: 1;
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  word-break: break-all;
}

.privacy-chip {
  border: 1px solid var(--line);
  color: var(--text-soft);
}

.trust-panel {
  padding: 1.2rem;
}

.result-box {
  margin-top: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 241, 0.06);
  text-align: left;
}

.result-row {
  padding: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.result-row:last-child {
  border-bottom: 0;
}

.result-row strong {
  color: var(--text-muted);
}

.result-row code,
.result-row span {
  min-width: 0;
  color: var(--text);
  word-break: break-all;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  max-width: min(420px, calc(100vw - 2rem));
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(0.8rem);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-error {
  background: #ffe7e4;
  color: #5f120c;
}

.result-panel h3 {
  margin-bottom: 0.5rem;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.reveal {
  animation: reveal 520ms var(--ease) both;
}

.delay-1 {
  animation-delay: 80ms;
}

.delay-2 {
  animation-delay: 150ms;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero,
  .payment-main,
  .two-column,
  .settings-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 2rem;
    min-height: auto;
    padding: 2rem 0;
  }

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

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

  .sidebar {
    display: none;
  }

  .mobile-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(17, 16, 13, 0.9);
    backdrop-filter: blur(18px);
  }

  .workspace-main {
    padding-top: 1rem;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.35rem;
  }

  .site-nav,
  .payment-nav {
    width: min(100% - 1rem, 1180px);
    padding: 0.8rem 0;
  }

  .nav-actions {
    gap: 0.45rem;
  }

  .nav-link {
    display: none;
  }

  .marketing-main,
  .workspace-main,
  .payment-main {
    width: min(100% - 1rem, 1180px);
  }

  .section-band,
  .surface,
  .auth-panel,
  .payment-card,
  .trust-panel,
  .usage-card {
    padding: 1rem;
  }

  .page-head,
  .surface-head,
  .usage-card,
  .payment-footnotes {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-head h1,
  .payment-status h1 {
    font-size: 2rem;
  }

  .inline-form,
  .input-with-unit,
  .address-box {
    align-items: stretch;
    flex-direction: column;
  }

  .input-with-unit span {
    min-width: 0;
  }

  .payment-main {
    padding: 2rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
