:root {
  --dash-bg: #f7f7f5;
  --dash-surface: #fdf8f8;
  --dash-card: #fcfcfb;
  --dash-panel: #f3f2ef;
  --dash-low: #f7f3f2;
  --dash-container: #f1edec;
  --dash-high: #ebe7e6;
  --dash-variant: #e5e2e1;
  --dash-border: #e7e7e4;
  --dash-outline: #747878;
  --dash-ink: #1c1b1b;
  --dash-primary: #050505;
  --dash-on-primary: #fffffe;
  --dash-muted: #6b6b6b;
  --dash-soft: #444748;
  --dash-inverse: #313030;
  --dash-success: #10b981;
  --dash-success-text: #047857;
  --dash-danger: #ba1a1a;
  --dash-rose: #f43f5e;
  --dash-orange: #fb923c;
  --dash-purple: #a855f7;
  --dash-indigo: #6366f1;
  --dash-blue: #3b82f6;
  --dash-sky: #38bdf8;
  --dash-teal: #2dd4bf;
  --dash-focus: rgba(16, 185, 129, 0.34);
  --dash-container-width: 1280px;
  --dash-radius-sm: 4px;
  --dash-radius-lg: 8px;
  --dash-radius-xl: 12px;
  --dash-radius-2xl: 24px;
  --dash-radius-3xl: 28px;
  --dash-radius-full: 999px;
  --dash-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
  color-scheme: dark;
  --dash-bg: #151716;
  --dash-surface: #202321;
  --dash-card: #1b1e1c;
  --dash-panel: #222622;
  --dash-low: #242824;
  --dash-container: #2a2f2a;
  --dash-high: #303630;
  --dash-variant: #343a34;
  --dash-border: #303530;
  --dash-outline: #747878;
  --dash-ink: #f4f0ef;
  --dash-primary: #fffffe;
  --dash-on-primary: #151716;
  --dash-muted: #a7aaa8;
  --dash-soft: #c8c6c5;
  --dash-inverse: #f4f0ef;
  --dash-success: #2dd4bf;
  --dash-success-text: #6ee7d8;
  --dash-danger: #fca5a5;
  --dash-focus: rgba(45, 212, 191, 0.38);
}

.dashboard-page,
.dashboard-page * {
  box-sizing: border-box;
}

.dashboard-page {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(253, 248, 248, 0.58), rgba(247, 247, 245, 0) 360px),
    var(--dash-bg);
  color: var(--dash-ink);
  font-family: "Geist", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.dashboard-page.modal-open {
  overflow: hidden;
}

.dashboard {
  width: 100%;
  min-height: calc(100vh - 64px);
  padding: 72px 0 88px;
}

.dashboard-container {
  width: min(100%, var(--dash-container-width));
  margin: 0 auto;
  padding: 0 32px;
}

.dashboard svg,
.dashboard-toast svg,
.state-modal svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.section-chip {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  gap: 8px;
  border-radius: var(--dash-radius-full);
  background: var(--dash-variant);
  color: var(--dash-primary);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.section-chip-soft {
  border: 1px solid var(--dash-border);
  background: var(--dash-low);
  color: var(--dash-muted);
  font-weight: 600;
}

.hero-actions,
.tracked-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.pill-button,
.module-link,
.icon-link,
.icon-button,
.chip-remove {
  transition:
    background 180ms var(--dash-ease),
    border-color 180ms var(--dash-ease),
    color 180ms var(--dash-ease),
    opacity 180ms var(--dash-ease),
    transform 180ms var(--dash-ease);
}

.pill-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--dash-radius-full);
  padding: 0 20px;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.pill-button svg {
  width: 17px;
  height: 17px;
}

.pill-button-primary {
  background: var(--dash-primary);
  color: var(--dash-on-primary);
}

.pill-button-primary:hover {
  opacity: 0.9;
}

.pill-button-secondary {
  border-color: var(--dash-outline);
  background: transparent;
  color: var(--dash-primary);
}

.pill-button-secondary:hover {
  background: var(--dash-variant);
}

.pill-button-small {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.8125rem;
}

.icon-button,
.icon-link,
.chip-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-radius-full);
  background: var(--dash-surface);
  color: var(--dash-primary);
  cursor: pointer;
}

.icon-button,
.icon-link {
  width: 40px;
  height: 40px;
}

.icon-button:hover,
.icon-link:hover,
.chip-remove:hover {
  border-color: var(--dash-outline);
  background: var(--dash-variant);
}

.dashboard a:focus-visible,
.dashboard button:focus-visible,
.dashboard input:focus-visible,
.dashboard select:focus-visible,
.state-modal button:focus-visible,
.state-modal input:focus-visible {
  outline: 3px solid var(--dash-focus);
  outline-offset: 3px;
}

#dashboard-title:focus {
  outline: none;
}

.dashboard-loading {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 48px;
}

.loading-copy h1,
.sign-in-prompt h1,
.hero-copy h1 {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--dash-primary);
  font-size: 4rem;
  font-weight: 650;
  line-height: 1.05;
}

.loading-copy p,
.sign-in-prompt p,
.hero-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--dash-muted);
  font-size: 1.125rem;
  line-height: 1.6;
}

.sign-in-prompt {
  min-height: 620px;
  max-width: 760px;
  margin: 0 auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.sign-in-prompt .pill-button {
  margin-top: 28px;
}

.skeleton-layout {
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: 16px;
}

.skeleton-panel,
.skeleton-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-radius-3xl);
  background: var(--dash-panel);
}

.skeleton-panel {
  grid-row: span 2;
  padding: 32px;
}

.skeleton-panel::before,
.skeleton-card::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  animation: skeleton-sweep 1.8s infinite;
}

.skeleton-panel span,
.skeleton-panel strong,
.skeleton-panel p {
  display: block;
  border-radius: var(--dash-radius-full);
  background: var(--dash-high);
}

.skeleton-panel span {
  width: 126px;
  height: 26px;
}

.skeleton-panel strong {
  width: 72%;
  height: 64px;
  margin-top: 72px;
}

.skeleton-panel p {
  width: 92%;
  height: 18px;
  margin-top: 22px;
}

.skeleton-panel p:last-child {
  width: 58%;
}

.skeleton-card.short {
  min-height: 150px;
}

@keyframes skeleton-sweep {
  to {
    transform: translateX(100%);
  }
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: end;
  gap: 32px;
}

.hero-copy {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: center;
  padding: 28px 0 20px;
}

.hero-actions {
  margin-top: 32px;
}

.sync-line {
  color: var(--dash-muted);
  font-size: 0.8125rem;
  font-weight: 750;
}

.signal-panel {
  position: relative;
  min-height: 0;
  border: 1px solid var(--dash-border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--dash-card) 94%, var(--dash-panel));
  padding: 22px 24px;
}

.glass-console {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  backdrop-filter: none;
}

.console-header,
.readiness-row,
.profile-block-header,
.module-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.console-header {
  border-bottom: 1px solid var(--dash-border);
  padding-bottom: 16px;
  color: var(--dash-primary);
  font-size: 0.9375rem;
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: var(--dash-radius-full);
  background: transparent;
  color: var(--dash-muted);
  padding: 0;
  font-size: 0.75rem;
  font-weight: 800;
}

.status-pill svg {
  width: 15px;
  height: 15px;
}

.readiness-list {
  display: grid;
  gap: 0;
  margin-top: 0;
}

.readiness-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 50px;
  border-bottom: 1px solid var(--dash-border);
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: var(--dash-soft);
  font-size: 0.8125rem;
}

.readiness-label {
  color: var(--dash-soft);
  font-weight: 750;
}

.readiness-row strong {
  color: var(--dash-primary);
  min-width: 58px;
  text-align: right;
  font-size: 0.9375rem;
}

.dashboard-two-column {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  gap: 24px;
  margin-top: 24px;
}

.dashboard-module {
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-radius-3xl);
  background: var(--dash-card);
}

.module-heading h2 {
  margin: 0;
  color: var(--dash-primary);
  font-size: 1.75rem;
  font-weight: 650;
  line-height: 1.12;
}

.dashboard-module {
  margin-top: 24px;
  padding: 32px;
}

.dashboard-module-large {
  margin-top: 28px;
}

.module-heading {
  align-items: flex-start;
  margin-bottom: 28px;
}

.module-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-radius-full);
  background: var(--dash-low);
  color: var(--dash-primary);
  padding: 0 14px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.module-link:hover {
  border-color: var(--dash-outline);
  background: var(--dash-variant);
}

.module-link svg {
  width: 15px;
  height: 15px;
}

.action-list,
.tracked-list,
.profile-stack {
  display: grid;
  gap: 12px;
}

.action-item,
.tracked-item {
  display: grid;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-radius-2xl);
  background: var(--dash-surface);
  padding: 16px;
}

.action-item {
  grid-template-columns: 44px minmax(0, 1fr) auto auto;
}

.action-item.is-complete {
  background: var(--dash-low);
}

.review-check {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.review-check input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.review-check span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-radius-full);
  background: var(--dash-panel);
  color: transparent;
}

.review-check input:checked + span {
  border-color: rgba(16, 185, 129, 0.28);
  background: rgba(16, 185, 129, 0.15);
  color: var(--dash-success-text);
}

.action-content h3,
.tracked-copy h3,
.profile-block h3,
.empty-state h3 {
  margin: 0;
  color: var(--dash-primary);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.28;
}

.action-content p,
.tracked-copy p,
.empty-state p,
.profile-note {
  margin: 6px 0 0;
  color: var(--dash-muted);
  font-size: 0.875rem;
  line-height: 1.48;
}

.action-type,
.missing-source {
  border-radius: var(--dash-radius-full);
  background: var(--dash-low);
  color: var(--dash-muted);
  padding: 7px 10px;
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
}

.missing-source {
  border: 1px solid var(--dash-border);
}

.tracked-item {
  grid-template-columns: 48px minmax(0, 1fr) 40px;
}

.tracked-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-radius-xl);
  background: var(--dash-panel);
  color: var(--dash-primary);
}

.tracked-actions {
  margin-top: 10px;
}

.tracked-actions a,
.tracked-actions span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--dash-primary);
  font-size: 0.8125rem;
  font-weight: 800;
  text-decoration: none;
}

.tracked-actions a:hover {
  text-decoration: underline;
}

.tracked-actions svg {
  width: 14px;
  height: 14px;
}

.profile-block {
  border-top: 1px solid var(--dash-border);
  padding-top: 24px;
}

.profile-block:first-child {
  border-top: 0;
  padding-top: 0;
}

.profile-block-header {
  margin-bottom: 16px;
}

.profile-block h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.profile-block h3 svg {
  width: 18px;
  height: 18px;
  color: var(--dash-muted);
}

.favorite-states,
.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.state-chip {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-radius-full);
  background: var(--dash-low);
  color: var(--dash-soft);
  padding: 5px 6px 5px 14px;
  font-size: 0.8125rem;
  font-weight: 700;
}

.state-chip strong {
  color: var(--dash-primary);
}

.chip-remove {
  width: 28px;
  height: 28px;
  padding: 0;
}

.chip-remove svg {
  width: 14px;
  height: 14px;
}

.topic-item {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-radius-full);
  background: var(--dash-low);
  color: var(--dash-soft);
  padding: 0 14px 0 40px;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
}

.topic-item input {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 18px;
  accent-color: var(--dash-primary);
}

.topic-item:has(input:checked) {
  border-color: rgba(16, 185, 129, 0.28);
  background: rgba(16, 185, 129, 0.12);
  color: var(--dash-success-text);
}

.alert-settings {
  display: grid;
  gap: 14px;
}

.alert-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

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

.alert-toggle strong {
  color: var(--dash-primary);
  font-size: 0.9375rem;
}

.alert-toggle small,
.frequency-label {
  margin-top: 4px;
  color: var(--dash-muted);
  font-size: 0.8125rem;
}

.alert-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.alert-toggle:has(input:focus-visible) .toggle-slider {
  outline: 3px solid var(--dash-focus);
  outline-offset: 3px;
}

.toggle-slider {
  position: relative;
  width: 54px;
  height: 32px;
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-radius-full);
  background: var(--dash-high);
  transition: background 180ms var(--dash-ease), border-color 180ms var(--dash-ease);
}

.toggle-slider::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: var(--dash-radius-full);
  background: var(--dash-surface);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  transition: transform 180ms var(--dash-ease);
}

.alert-toggle input:checked + .toggle-slider {
  border-color: rgba(16, 185, 129, 0.28);
  background: var(--dash-success);
}

.alert-toggle input:checked + .toggle-slider::after {
  transform: translateX(22px);
}

.frequency-label {
  display: block;
  font-weight: 800;
}

.frequency-select,
.state-search {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-radius-full);
  background: var(--dash-surface);
  color: var(--dash-primary);
  padding: 0 14px;
  font: inherit;
  font-size: 0.875rem;
}

.frequency-select:disabled {
  color: var(--dash-muted);
  background: var(--dash-low);
}

.empty-state {
  min-height: 240px;
  display: grid;
  justify-items: start;
  align-content: center;
  border: 1px dashed var(--dash-border);
  border-radius: var(--dash-radius-2xl);
  background: var(--dash-low);
  padding: 32px;
}

.compact-empty {
  min-height: 320px;
}

.empty-state > svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--dash-muted);
}

.empty-state .pill-button {
  margin-top: 20px;
}

.dashboard-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2500;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(360px, calc(100vw - 48px));
  transform: translateY(16px);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--dash-radius-2xl);
  background: rgba(49, 48, 48, 0.92);
  color: #f4f0ef;
  padding: 14px 18px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.34);
  font-size: 0.875rem;
  font-weight: 700;
  transition: opacity 180ms var(--dash-ease), transform 180ms var(--dash-ease);
  backdrop-filter: blur(18px);
}

.dashboard-toast-message {
  min-width: 0;
}

.dashboard-toast-action {
  flex: 0 0 auto;
  border: 1px solid rgba(244, 240, 239, 0.5);
  border-radius: var(--dash-radius-full);
  background: transparent;
  color: #f4f0ef;
  padding: 7px 11px;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 800;
  cursor: pointer;
}

.dashboard-toast-action:hover,
.dashboard-toast-action:focus-visible {
  background: rgba(244, 240, 239, 0.14);
}

.dashboard-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.state-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 24px;
}

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

.state-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 27, 27, 0.38);
  backdrop-filter: blur(10px);
}

.state-modal-content {
  position: relative;
  width: min(620px, 100%);
  max-height: min(720px, calc(100vh - 48px));
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 18px;
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-radius-3xl);
  background: var(--dash-card);
  padding: 28px;
  box-shadow: 0 40px 80px -32px rgba(0, 0, 0, 0.34);
}

.state-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.state-modal-title {
  margin: 14px 0 0;
  color: var(--dash-primary);
  font-size: 2rem;
  font-weight: 650;
  line-height: 1.1;
}

.state-search-label {
  color: var(--dash-muted);
  font-size: 0.8125rem;
  font-weight: 800;
}

.state-search {
  border-radius: var(--dash-radius-xl);
}

.state-list {
  min-height: 0;
  overflow: auto;
  display: grid;
  gap: 8px;
  padding-right: 4px;
}

.state-option {
  min-height: 54px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-radius-xl);
  background: var(--dash-surface);
  color: var(--dash-ink);
  padding: 0 14px;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.state-option:hover {
  background: var(--dash-low);
}

.state-option.selected {
  border-color: rgba(16, 185, 129, 0.28);
  background: rgba(16, 185, 129, 0.11);
  cursor: default;
}

.state-code {
  color: var(--dash-primary);
  font-weight: 800;
}

.state-name,
.state-added,
.state-empty {
  color: var(--dash-muted);
  font-size: 0.875rem;
  font-weight: 700;
}

.state-added {
  color: var(--dash-success-text);
}

.state-empty {
  margin: 0;
  padding: 18px 4px;
}

@media (max-width: 1040px) {
  .dashboard {
    padding-top: 48px;
  }

  .dashboard-hero,
  .dashboard-loading,
  .dashboard-two-column {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .dashboard {
    padding: 32px 0 64px;
  }

  .dashboard-container {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
  }

  .dashboard-hero {
    order: 1;
  }

  .dashboard-module-large {
    order: 2;
    margin-top: 24px;
  }

  .dashboard-two-column {
    order: 3;
  }

  .loading-copy h1,
  .sign-in-prompt h1,
  .hero-copy h1 {
    font-size: 2.75rem;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .signal-panel,
  .dashboard-module,
  .state-modal-content {
    border-radius: var(--dash-radius-2xl);
    padding: 20px;
  }

  .module-heading,
  .profile-block-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .signal-panel {
    padding: 16px;
  }

  .readiness-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
  }

  .readiness-row {
    min-height: 42px;
    gap: 10px;
    padding: 0;
    font-size: 0.75rem;
  }

  .readiness-row strong {
    min-width: 42px;
    font-size: 0.8125rem;
  }

  .module-heading h2 {
    font-size: 1.5rem;
  }

  .action-item {
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }

  .action-item .icon-link,
  .action-item .missing-source {
    grid-column: 2 / -1;
    justify-self: start;
  }

  .tracked-item {
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
  }

  .tracked-item .bookmark-remove {
    grid-column: 2;
    justify-self: start;
  }

  .state-modal {
    padding: 12px;
  }

  .state-option {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .state-added {
    grid-column: 2;
  }
}

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