:root {
  --bg: #eef2f7;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --surface-tint: #edf7f5;
  --line: #d8e0eb;
  --line-strong: #b8c4d4;
  --text: #111827;
  --muted: #627084;
  --primary: #2563eb;
  --primary-strong: #1d4ed8;
  --primary-soft: #dbeafe;
  --teal: #0f766e;
  --teal-soft: #ccfbf1;
  --amber: #b45309;
  --amber-soft: #fef3c7;
  --danger: #dc2626;
  --danger-soft: #fee2e2;
  --success: #14804a;
  --success-soft: #dcfce7;
  --shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  --radius: 8px;
  --radius-sm: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(238, 242, 247, 0.86) 40%, #e7edf5 100%),
    repeating-linear-gradient(90deg, rgba(37, 99, 235, 0.05) 0 1px, transparent 1px 96px);
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

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

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

.hidden {
  display: none !important;
}

.site-shell {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px;
}

.top-hero,
.panel,
.status-banner,
.notice,
.tabs {
  border-radius: var(--radius);
}

.top-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.97) 0%, rgba(30, 41, 59, 0.98) 58%, rgba(15, 118, 110, 0.9) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.top-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #2dd4bf, #fbbf24);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.top-hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.top-hero h1,
.panel-head h2,
.panel-head h3 {
  margin: 0;
}

.top-hero h1 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.hero-text {
  max-width: 840px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-metrics span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  min-width: 0;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.hero-actions,
.tabs,
.toolbar,
.range-switch,
.two-col,
.auth-grid,
.form-stack,
.list-stack,
.docs-grid,
.stack-col {
  display: grid;
  gap: 16px;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
}

.status-banner,
.notice {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(180, 83, 9, 0.22);
  background: var(--amber-soft);
  color: #7c3f05;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.status-banner {
  position: sticky;
  top: 12px;
  z-index: 20;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.09);
}

.status-banner.success {
  border-color: rgba(20, 128, 74, 0.22);
  background: var(--success-soft);
  color: #166534;
}

.status-banner.error {
  border-color: rgba(220, 38, 38, 0.22);
  background: var(--danger-soft);
  color: #991b1b;
}

.status-banner.warn {
  border-color: rgba(180, 83, 9, 0.22);
  background: var(--amber-soft);
  color: #7c3f05;
}

.auth-grid,
.two-col {
  margin-top: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel,
.tabs {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.panel {
  padding: 22px;
}

.panel-head,
.toolbar,
.item-top,
.item-meta,
.summary-row,
.payment-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.panel-head h2 {
  font-size: 1.35rem;
}

.panel-head h3 {
  font-size: 1.08rem;
}

.helper,
.muted,
.item-meta,
.payment-status {
  color: var(--muted);
}

.helper {
  margin: 14px 0 0;
  line-height: 1.7;
}

.register-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 14px;
}

.form-stack {
  margin-top: 16px;
}

.input-row {
  position: relative;
  display: block;
}

.input-row .textarea {
  padding-right: 72px;
}

.field-action,
.icon-button,
.sort-btn {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.field-action {
  position: absolute;
  top: 10px;
  right: 10px;
  min-height: 32px;
  padding: 6px 10px;
  color: var(--muted);
}

.field-action:hover,
.icon-button:hover,
.sort-btn:hover {
  border-color: var(--line-strong);
  background: var(--surface-soft);
  color: var(--primary-strong);
}

.form-feedback {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(220, 38, 38, 0.16);
  border-radius: var(--radius-sm);
  background: var(--danger-soft);
  color: #991b1b;
  line-height: 1.55;
}

.form-feedback.success {
  border-color: rgba(20, 128, 74, 0.18);
  background: var(--success-soft);
  color: #166534;
}

.form-feedback.warn {
  border-color: rgba(180, 83, 9, 0.2);
  background: var(--amber-soft);
  color: #7c3f05;
}

.field {
  display: grid;
  gap: 8px;
}

.field > span,
.field label,
.field > label {
  color: #334155;
  font-size: 0.9rem;
  font-weight: 700;
}

.input {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.input:hover {
  border-color: var(--line-strong);
}

.input:focus {
  border-color: rgba(37, 99, 235, 0.72);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.input:disabled {
  background: #eef2f7;
  color: #64748b;
}

.textarea {
  min-height: 108px;
  resize: vertical;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  cursor: pointer;
  background: #fff;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.button:focus-visible,
.tab:focus-visible,
.range-btn:focus-visible,
.plan-card:focus-within,
.code-card:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.2);
  outline-offset: 2px;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.button.is-loading {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-muted {
  background: #edf2f7;
  color: #718096;
}

.button.is-loading::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  animation: spin 0.75s linear infinite;
}

.button-primary {
  border-color: transparent;
  background: var(--primary);
  color: #fff;
}

.button-primary:hover {
  border-color: transparent;
  background: var(--primary-strong);
}

.button-danger {
  border-color: rgba(220, 38, 38, 0.2);
  background: var(--danger-soft);
  color: var(--danger);
}

.button-danger:hover {
  border-color: rgba(220, 38, 38, 0.34);
  background: #fecaca;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
}

.tabs {
  position: sticky;
  top: 12px;
  z-index: 10;
  margin-top: 18px;
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.tab,
.range-btn {
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.tab:hover,
.range-btn:hover {
  background: var(--surface-soft);
  color: var(--text);
}

.tab.active,
.range-btn.active {
  border-color: rgba(37, 99, 235, 0.12);
  background: var(--primary-soft);
  color: var(--primary-strong);
}

.tab-panel {
  display: none;
  margin-top: 18px;
}

.tab-panel.active {
  display: block;
  animation: fadeUp 0.2s ease both;
}

.toolbar {
  margin-top: 16px;
}

.range-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.stats-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  min-height: 142px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.stat-card strong {
  display: block;
  margin-top: 12px;
  color: #0f172a;
  font-size: clamp(1.45rem, 2.8vw, 2.05rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.sub {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.chart-list,
.plan-list {
  display: grid;
  gap: 12px;
}

.chart-item,
.plan-card,
.item-card,
.summary-card,
.doc-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.chart-item:hover,
.plan-card:hover,
.item-card:hover,
.doc-card:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.07);
}

.plan-card {
  display: grid;
  gap: 12px;
}

.plan-card.is-selected {
  border-color: rgba(37, 99, 235, 0.4);
  background: #eff6ff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.12);
}

.item-card.is-selected {
  border-color: rgba(15, 118, 110, 0.36);
  background: #f0fdfa;
}

.chart-bar {
  margin-top: 12px;
  height: 9px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.chart-bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  transition: width 0.28s ease;
}

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

.data-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  background: #fff;
}

.data-table th,
.data-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.94rem;
  line-height: 1.45;
  vertical-align: top;
}

.data-table tbody tr:hover {
  background: #f8fafc;
}

.data-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f8fafc;
  color: #475569;
  font-weight: 800;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sort-btn {
  min-height: 34px;
  padding: 7px 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.sort-btn.active {
  border-color: rgba(37, 99, 235, 0.18);
  background: var(--primary-soft);
  color: var(--primary-strong);
}

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

.account-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field.full {
  grid-column: 1 / -1;
}

.code-card {
  position: relative;
  margin: 0 0 16px;
  padding: 15px 16px;
  border: 1px solid #1e293b;
  border-radius: var(--radius);
  background: #0f172a;
  color: #f8fafc;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
  line-height: 1.65;
}

.code-card.copiable {
  cursor: copy;
}

.code-card.copiable:hover {
  border-color: #38bdf8;
}

.badge,
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.badge {
  padding: 5px 10px;
}

.chip {
  padding: 7px 11px;
  background: var(--surface-tint);
  color: var(--teal);
}

.badge.ok {
  background: var(--success-soft);
  color: var(--success);
}

.badge.warn {
  background: var(--amber-soft);
  color: var(--amber);
}

.badge.error {
  background: var(--danger-soft);
  color: var(--danger);
}

.payment-box {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(219, 234, 254, 0.65), rgba(204, 251, 241, 0.52)),
    #f8fafc;
  color: var(--muted);
  text-align: center;
  padding: 18px;
}

.payment-box img {
  display: block;
  width: min(260px, 68vw);
  height: auto;
  margin: 0 auto 12px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.step {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  font-weight: 800;
}

.step b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #475569;
  font-size: 0.8rem;
}

.step.active {
  border-color: rgba(37, 99, 235, 0.22);
  background: var(--primary-soft);
  color: var(--primary-strong);
}

.step.active b,
.step.done b {
  background: var(--primary);
  color: #fff;
}

.step.done {
  border-color: rgba(20, 128, 74, 0.18);
  background: var(--success-soft);
  color: var(--success);
}

.order-action {
  width: fit-content;
  min-height: 38px;
  padding: 8px 12px;
}

.docs-guide {
  display: grid;
  gap: 18px;
  margin-top: 14px;
}

.docs-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.45fr);
  gap: 18px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(239, 246, 255, 0.96), rgba(240, 253, 250, 0.9)),
    #fff;
}

.docs-eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.docs-hero h2 {
  margin: 0;
  font-size: 1.55rem;
}

.docs-hero p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.docs-status {
  display: grid;
  align-content: center;
  gap: 8px;
}

.docs-status span {
  padding: 9px 11px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.8);
  color: #334155;
  font-size: 0.88rem;
  font-weight: 800;
}

.docs-nav {
  position: sticky;
  top: 74px;
  z-index: 8;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.docs-nav a {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary-strong);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.docs-nav a:hover {
  border-color: rgba(37, 99, 235, 0.28);
  background: var(--primary-soft);
}

.docs-notice {
  padding: 14px 16px;
  border: 1px solid rgba(180, 83, 9, 0.2);
  border-radius: var(--radius);
  background: var(--amber-soft);
  color: #7c3f05;
  line-height: 1.7;
}

.docs-notice code,
.docs-section code {
  padding: 2px 5px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
}

.docs-section {
  scroll-margin-top: 140px;
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.docs-section-head {
  display: grid;
  gap: 5px;
}

.docs-section-head h3 {
  margin: 0;
  font-size: 1.12rem;
}

.docs-section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.docs-code-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.docs-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.doc-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.icon-button {
  min-height: 34px;
  padding: 7px 10px;
  color: var(--primary-strong);
  font-size: 0.86rem;
}

.doc-card pre {
  margin: 12px 0 0;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: #0f172a;
  color: #f8fafc;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
  line-height: 1.65;
}

.empty-state {
  margin: 0;
  padding: 18px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: #f8fafc;
  color: var(--muted);
  text-align: center;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .auth-grid,
  .two-col,
  .docs-grid,
  .docs-code-list,
  .docs-hero,
  .account-grid {
    grid-template-columns: 1fr;
  }

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

  .top-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-shell {
    padding: 12px 12px calc(88px + env(safe-area-inset-bottom));
  }

  .top-hero,
  .panel {
    padding: 18px;
  }

  .top-hero h1 {
    font-size: 1.9rem;
  }

  .hero-actions,
  .tabs,
  .range-switch {
    width: 100%;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .button,
  .range-btn {
    width: 100%;
  }

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

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

  .status-banner {
    position: static;
  }

  .docs-nav {
    position: static;
  }

  .docs-hero {
    padding: 16px;
  }

  #logged-app:not(.hidden) .tabs {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin: 0;
    padding: 6px;
    border-color: rgba(184, 196, 212, 0.72);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  }

  .tab {
    width: 100%;
    min-height: 44px;
    padding: 8px 4px;
    font-size: 0.82rem;
  }

  .hero-metrics span {
    width: 100%;
  }

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

  .panel-head,
  .item-top,
  .item-meta,
  .summary-row,
  .payment-status {
    align-items: stretch;
  }

  .table-actions,
  .doc-card-head {
    width: 100%;
  }

  .sort-btn,
  .icon-button {
    flex: 1 1 0;
    min-height: 40px;
  }

  .stepper {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .step {
    min-height: 42px;
    padding: 8px 10px;
    font-size: 0.86rem;
  }

  .table-wrap {
    -webkit-overflow-scrolling: touch;
  }

  .data-table {
    min-width: 760px;
  }

  .order-action {
    width: 100%;
  }
}

@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;
  }
}
