:root {
  color-scheme: light;
  --ink: #172036;
  --muted: #64708a;
  --line: #dfe5f0;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-soft: #f6f8fc;
  --accent: #4f46e5;
  --accent-dark: #3730a3;
  --accent-soft: #eeefff;
  --success: #17765a;
  --success-soft: #eaf8f2;
  --danger: #b4233c;
  --danger-soft: #fff0f2;
  --warning: #8a5b00;
  --warning-soft: #fff7df;
  --shadow: 0 24px 70px rgba(25, 35, 65, 0.12);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #f3f6fb;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(99, 102, 241, 0.14), transparent 30rem),
    radial-gradient(circle at 92% 88%, rgba(14, 165, 233, 0.1), transparent 30rem),
    #f3f6fb;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(79, 70, 229, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 70, 229, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a {
  color: var(--accent-dark);
  text-underline-offset: 3px;
}

button,
input,
select {
  font: inherit;
}

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

[hidden] {
  display: none !important;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(145deg, #4f46e5, #6d5ce8 56%, #2677d7);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.24);
  font-family: Arial, "DejaVu Sans", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
}

.top-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.top-link:hover {
  color: var(--accent-dark);
}

.main {
  padding: 52px 0 80px;
}

.main--center {
  display: grid;
  min-height: calc(100vh - 152px);
  padding-top: 18px;
  place-items: start center;
}

.card {
  border: 1px solid rgba(209, 217, 232, 0.92);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.card--narrow {
  width: min(580px, 100%);
  padding: clamp(24px, 5vw, 42px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.lead {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.status-panel {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface-soft);
}

.status-panel--success {
  border-color: #bde4d6;
  background: var(--success-soft);
}

.status-panel--danger {
  border-color: #f4bdc7;
  background: var(--danger-soft);
}

.status-panel--warning {
  border-color: #efd994;
  background: var(--warning-soft);
}

.status-icon {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-weight: 850;
}

.status-panel--success .status-icon {
  color: var(--success);
  background: #d5f0e5;
}

.status-panel--danger .status-icon {
  color: var(--danger);
  background: #ffdde3;
}

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

.status-title {
  margin: 0;
  font-weight: 760;
}

.status-text {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.spinner {
  width: 34px;
  height: 34px;
  border: 3px solid #d9ddfa;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 7px 18px rgba(79, 70, 229, 0.17);
  font-weight: 720;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 120ms ease, background 120ms ease, box-shadow 120ms ease;
}

.button:hover {
  background: var(--accent-dark);
  box-shadow: 0 9px 24px rgba(79, 70, 229, 0.24);
  transform: translateY(-1px);
}

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

.button:focus-visible,
.field input:focus-visible,
.field select:focus-visible,
.scope-option:has(input:focus-visible),
.goal-option:has(input:focus-visible),
.consent-row:has(input:focus-visible) {
  outline: 3px solid rgba(79, 70, 229, 0.24);
  outline-offset: 2px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.button--secondary {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
  box-shadow: none;
}

.button--secondary:hover {
  border-color: #c9d0df;
  color: var(--accent-dark);
  background: #fbfcff;
  box-shadow: none;
}

.button--danger {
  border-color: #efbdc6;
  color: var(--danger);
  background: #fff;
  box-shadow: none;
}

.button--danger:hover {
  border-color: var(--danger);
  color: #fff;
  background: var(--danger);
  box-shadow: none;
}

.button--small {
  min-height: 36px;
  padding: 8px 11px;
  border-radius: 10px;
  font-size: 13px;
}

.button--wide {
  width: 100%;
}

.help {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.help summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
}

.help p:last-child {
  margin-bottom: 0;
}

.page-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.access-summary {
  margin-bottom: 26px;
  padding: 22px;
}

.access-code-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: end;
  gap: 12px 32px;
  margin-bottom: 26px;
  padding: 24px;
}

.access-code-card h2 {
  margin-top: 2px;
  font-size: clamp(20px, 3vw, 26px);
}

.access-code-card p:not(.eyebrow, .form-message) {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.access-code-example,
.access-code-input,
.access-code-output {
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.access-code-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
}

.access-code-input {
  text-transform: uppercase;
}

.access-code-card > .form-message {
  grid-column: 2;
}

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

.app-card {
  display: flex;
  min-height: 225px;
  flex-direction: column;
  padding: 24px;
}

.app-card__symbol {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  place-items: center;
  border-radius: 13px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-weight: 840;
}

.app-card p {
  margin: 8px 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.app-card .button {
  width: 100%;
  margin-top: auto;
}

.app-card[data-locked="true"] {
  box-shadow: none;
  opacity: 0.72;
}

.instruction-card {
  margin-top: 24px;
  padding: 24px;
}

.instruction-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.request-card {
  width: min(820px, 100%);
  padding: clamp(24px, 5vw, 42px);
}

.role-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 26px 0;
  padding: 13px 15px;
  border: 1px solid #d6d8fb;
  border-radius: 15px;
  background: var(--accent-soft);
}

.role-note__icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: var(--accent);
  font-weight: 800;
}

.role-note > span:last-child {
  display: grid;
  gap: 2px;
}

.role-note small,
.field-hint {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.request-form {
  gap: 22px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

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

.goal-option {
  position: relative;
  display: flex;
  min-height: 96px;
  align-items: flex-start;
  padding: 15px;
  border: 1px solid #cfd6e4;
  border-radius: 14px;
  cursor: pointer;
  background: #fff;
}

.goal-option:has(input:checked) {
  border-color: #9f9bf1;
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px #b4b1f7;
}

.field .goal-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  border: 0;
  opacity: 0;
}

.goal-option span {
  display: grid;
  gap: 6px;
}

.goal-option strong {
  font-size: 14px;
  line-height: 1.3;
}

.goal-option small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  line-height: 1.55;
}

.consent-row input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.private-link {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.private-link h2 {
  font-size: 18px;
}

.private-link p {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.admin-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.admin-login {
  width: min(480px, 100%);
  margin: 44px auto 0;
  padding: clamp(24px, 5vw, 38px);
}

.stack {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1.1fr auto;
  align-items: end;
  gap: 14px;
}

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

fieldset.field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.field > span,
.field-label {
  color: #35405a;
  font-size: 13px;
  font-weight: 720;
}

.field input,
.field select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #cfd6e4;
  border-radius: 11px;
  color: var(--ink);
  background: #fff;
}

.field input::placeholder {
  color: #929bb0;
}

.scope-options {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
}

.scope-option {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid #cfd6e4;
  border-radius: 10px;
  cursor: pointer;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.scope-option:has(input:checked) {
  border-color: #a9a7f6;
  color: var(--accent-dark);
  background: var(--accent-soft);
}

.scope-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.admin-panel {
  padding: 24px;
}

.request-list {
  display: grid;
  gap: 12px;
}

.request-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.request-item__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.request-item__meta,
.request-item__details p,
.request-item__granted {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.request-item__approved-actions {
  margin-top: 12px;
}

.request-item__details {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.request-item__details strong {
  color: var(--ink);
}

.request-item__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px auto;
  align-items: end;
  gap: 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.request-item__actions {
  padding-bottom: 4px;
}

.request-item__actions .button:disabled {
  cursor: not-allowed;
}

.request-item__granted {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.student-progress {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #d6d8fb;
  border-radius: 14px;
  background: linear-gradient(135deg, #fafaff, #f4f7ff);
}

.student-progress__heading,
.student-progress__footer,
.progress-section__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.student-progress__eyebrow {
  margin: 0 0 3px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.student-progress h4 {
  margin: 0;
  font-size: 16px;
}

.student-progress__updated,
.student-progress__footer,
.progress-detail__overview,
.progress-section__heading span,
.progress-detail__item span,
.progress-detail__item small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.student-progress__empty,
.student-progress__loading {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

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

.student-progress__metric {
  display: grid;
  gap: 3px;
  padding: 10px;
  border: 1px solid rgba(207, 214, 228, 0.82);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
}

.student-progress__metric span {
  color: var(--muted);
  font-size: 11px;
}

.student-progress__metric strong {
  font-size: 16px;
}

.student-progress__mastery,
.progress-section__track {
  height: 7px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe4f2;
}

.student-progress__mastery > span,
.progress-section__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4f46e5, #2677d7);
}

.student-progress__footer {
  margin-top: 12px;
}

.student-progress__details {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #d9def0;
}

.progress-detail__overview {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.progress-detail__overview span {
  padding: 5px 8px;
  border-radius: 8px;
  background: #fff;
}

.progress-detail__block {
  margin-top: 16px;
}

.progress-detail__block h5 {
  margin: 0 0 10px;
  font-size: 13px;
}

.progress-detail__sections,
.progress-detail__list {
  display: grid;
  gap: 9px;
}

.progress-section,
.progress-detail__item {
  padding: 10px 11px;
  border: 1px solid rgba(207, 214, 228, 0.82);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
}

.progress-section__heading strong,
.progress-detail__item strong {
  font-size: 12px;
}

.progress-section__track {
  height: 5px;
  margin-top: 7px;
}

.progress-section__fill--thermo {
  background: linear-gradient(90deg, #0f8a75, #23a58f);
}

.progress-section__fill--electro {
  background: linear-gradient(90deg, #bd6b00, #e19a24);
}

.progress-section__fill--quantum {
  background: linear-gradient(90deg, #9a3d78, #c4609c);
}

.progress-detail__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.progress-detail__item {
  display: grid;
  gap: 3px;
}

.progress-detail__item--diagnostic strong {
  color: var(--accent-dark);
  font-size: 17px;
}

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

.metric {
  color: var(--muted);
  font-size: 14px;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

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

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

th {
  color: var(--muted);
  background: #f8f9fc;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

td {
  font-size: 14px;
}

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

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

.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--success);
  background: var(--success-soft);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.badge--muted {
  color: var(--muted);
  background: #edf0f5;
}

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

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

.scope-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.scope-pill {
  padding: 4px 7px;
  border-radius: 7px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.scope-pill--goal {
  text-transform: none;
}

.empty-state {
  padding: 34px 18px;
  color: var(--muted);
  text-align: center;
}

.empty-state--bordered {
  margin: 0;
  border: 1px dashed var(--line);
  border-radius: 15px;
}

.form-message {
  min-height: 20px;
  margin: 2px 0 0;
  color: var(--danger);
  font-size: 13px;
  line-height: 1.5;
}

.form-message--success {
  color: var(--success);
}

dialog {
  width: min(600px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: 22px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 28px 90px rgba(12, 18, 38, 0.28);
}

dialog::backdrop {
  background: rgba(22, 29, 50, 0.54);
  backdrop-filter: blur(4px);
}

.dialog-body {
  padding: clamp(24px, 5vw, 36px);
}

.credential-note,
.one-time-note {
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.copy-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.copy-row input {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid #cfd6e4;
  border-radius: 11px;
  color: #35405a;
  background: #f8f9fc;
}

.copy-row .access-code-output {
  color: var(--accent-dark);
  font-size: clamp(16px, 4vw, 22px);
  text-align: center;
}

.credential-kind {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

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

@media (max-width: 900px) {
  .access-code-card {
    grid-template-columns: 1fr;
  }

  .access-code-card > .form-message {
    grid-column: 1;
  }

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

  .app-card {
    min-height: 0;
  }

  .app-card__symbol {
    margin-bottom: 20px;
  }

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

  .form-grid .actions {
    margin-top: 0;
  }

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

  .request-item__controls {
    grid-template-columns: 1fr 160px;
  }

  .request-item__actions {
    grid-column: 1 / -1;
  }

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

  .progress-detail__columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .shell,
  .admin-shell {
    width: min(100% - 20px, 1120px);
  }

  .topbar {
    min-height: 62px;
  }

  .top-link {
    font-size: 13px;
  }

  .main {
    padding-top: 28px;
  }

  .main--center {
    min-height: auto;
    padding-top: 14px;
  }

  .card {
    border-radius: 19px;
  }

  .page-heading {
    display: block;
  }

  .page-heading .actions {
    margin-top: 16px;
  }

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

  .access-code-form,
  .copy-row {
    grid-template-columns: 1fr;
  }

  .access-code-form .button,
  .copy-row .button {
    width: 100%;
  }

  .request-form__grid {
    grid-template-columns: 1fr;
  }

  .scope-options {
    flex-wrap: wrap;
  }

  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .request-item__controls {
    grid-template-columns: 1fr;
  }

  .request-item__actions {
    grid-column: auto;
  }

  .student-progress__heading,
  .student-progress__footer,
  .progress-section__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .student-progress__footer .button {
    width: 100%;
  }

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

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