:root {
  color-scheme: light;
  --navy-950: #050d1a;
  --navy-900: #071428;
  --navy-800: #0c203b;
  --navy-700: #153456;
  --blue-700: #0749b4;
  --blue-600: #075bd8;
  --blue-500: #0c73f2;
  --blue-100: #dcecff;
  --blue-50: #eff6ff;
  --ink: #101828;
  --muted: #667085;
  --line: #e4e9f1;
  --surface: #ffffff;
  --canvas: #f4f6fa;
  --success: #087a55;
  --success-bg: #eaf8f2;
  --warning: #a15c00;
  --warning-bg: #fff5df;
  --danger: #c03744;
  --danger-bg: #fff0f1;
  --purple: #6547c4;
  --radius: 16px;
  --shadow: 0 12px 34px rgba(10, 27, 52, .08);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.45;
}

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

button { cursor: pointer; }

a { color: inherit; }

.hidden { display: none !important; }

.boot-screen,
.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 12% 20%, rgba(12, 115, 242, .18), transparent 30%),
    radial-gradient(circle at 88% 84%, rgba(7, 73, 180, .14), transparent 34%),
    var(--navy-950);
}

.boot-screen { align-content: center; gap: 24px; }

.boot-logo { width: 92px; height: 92px; border-radius: 24px; object-fit: cover; }

.boot-spinner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.18);
  border-top-color: var(--blue-500);
  animation: spin .8s linear infinite;
}

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

.auth-card {
  width: min(100%, 460px);
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 30px 80px rgba(0,0,0,.34);
}

.auth-brand { display: flex; align-items: center; gap: 15px; margin-bottom: 32px; }
.auth-brand img { width: 58px; height: 58px; border-radius: 16px; object-fit: cover; }
.wordmark strong { display: block; letter-spacing: .2em; font-size: 20px; color: var(--navy-900); }
.wordmark span { display: block; color: var(--blue-600); letter-spacing: .32em; font-size: 11px; margin-top: 2px; }
.auth-card h1 { margin: 0 0 8px; font-size: 28px; letter-spacing: -.03em; }
.auth-card > p { color: var(--muted); margin: 0 0 25px; }
.auth-note { margin: 20px 0 0; font-size: 13px; color: var(--muted); text-align: center; }
.auth-back { margin-top: 14px; width: 100%; }

.field { display: grid; gap: 7px; }
.field + .field { margin-top: 16px; }
.field label, .field > span { font-size: 13px; font-weight: 650; color: #344054; }
.field small { color: var(--muted); font-size: 12px; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field-row.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.field-row + .field-row, .field-row + .field, .field + .field-row { margin-top: 16px; }

input, select, textarea {
  width: 100%;
  border: 1px solid #d3d9e3;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}

textarea { min-height: 106px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(12,115,242,.12); }
input::placeholder, textarea::placeholder { color: #98a2b3; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  box-shadow: 0 8px 18px rgba(7,91,216,.18);
  transition: transform .15s, box-shadow .15s, opacity .15s;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(7,91,216,.25); }
.btn:disabled { cursor: wait; opacity: .6; transform: none; }
.btn.block { width: 100%; margin-top: 20px; }
.btn.secondary { background: #fff; color: #344054; border-color: #d7dde7; box-shadow: none; }
.btn.secondary:hover { border-color: #aeb8c8; box-shadow: 0 4px 12px rgba(16,24,40,.07); }
.btn.ghost { color: var(--blue-700); background: transparent; box-shadow: none; padding-inline: 10px; }
.btn.success { background: var(--success); box-shadow: none; }
.btn.danger { background: var(--danger); box-shadow: none; }
.btn.small { min-height: 34px; padding: 6px 10px; font-size: 13px; border-radius: 8px; }

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

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 20% 0, rgba(16,111,238,.20), transparent 34%),
    var(--navy-950);
  color: #d7e2f2;
  padding: 22px 16px 18px;
  z-index: 10;
}

.brand { display: flex; align-items: center; gap: 12px; padding: 4px 8px 24px; border-bottom: 1px solid rgba(255,255,255,.10); }
.brand img { width: 48px; height: 48px; border-radius: 13px; object-fit: cover; box-shadow: 0 8px 20px rgba(0,0,0,.35); }
.brand strong { display: block; color: #fff; letter-spacing: .15em; font-size: 15px; }
.brand span { display: block; color: #6bb0ff; letter-spacing: .28em; font-size: 9px; margin-top: 2px; }
.brand em { display: block; color: #9fb0c8; font-style: normal; font-size: 11px; margin-top: 4px; letter-spacing: .06em; }

.nav { display: grid; gap: 6px; margin-top: 22px; }
.nav button {
  width: 100%;
  display: grid;
  grid-template-columns: 25px 1fr auto;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #aebdd1;
  padding: 11px 12px;
  text-align: left;
  font-weight: 650;
}
.nav button:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav button.active { color: #fff; background: linear-gradient(90deg, rgba(12,115,242,.34), rgba(12,115,242,.12)); box-shadow: inset 3px 0 0 var(--blue-500); }
.nav-icon { width: 21px; text-align: center; font-size: 17px; }
.nav-count { min-width: 23px; padding: 2px 6px; border-radius: 99px; background: rgba(255,255,255,.10); text-align: center; font-size: 11px; }

.sidebar-foot { margin-top: auto; padding: 14px 9px 0; border-top: 1px solid rgba(255,255,255,.10); }
.owner { display: flex; align-items: center; gap: 10px; min-width: 0; }
.avatar { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #247de7, #17478a); font-weight: 800; }
.owner-text { min-width: 0; }
.owner-text strong, .owner-text span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.owner-text strong { color: #fff; font-size: 12px; }
.owner-text span { color: #8598b3; font-size: 10px; }
.logout { margin-top: 10px; border: 0; background: transparent; color: #8fa2bd; font-size: 12px; padding: 4px 0; }
.logout:hover { color: #fff; }

.main { min-width: 0; }
.topbar {
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 30px;
  background: rgba(244,246,250,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(213,220,230,.85);
}
.topbar h1 { margin: 0; font-size: 23px; letter-spacing: -.025em; }
.topbar p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.top-actions { display: flex; align-items: center; gap: 10px; }
.mobile-menu { display: none; }

.content { width: min(100%, 1500px); margin: 0 auto; padding: 26px 30px 48px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.section-head h2 { margin: 0 0 4px; font-size: 20px; letter-spacing: -.02em; }
.section-head p { margin: 0; color: var(--muted); font-size: 13px; }
.section-actions { display: flex; align-items: center; gap: 10px; }

.kpi-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; margin-bottom: 20px; }
.kpi {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  padding: 19px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 6px 22px rgba(10,27,52,.04);
}
.kpi::after { content: ""; position: absolute; width: 80px; height: 80px; border-radius: 50%; right: -30px; top: -28px; background: var(--blue-50); }
.kpi.warn::after { background: var(--warning-bg); }
.kpi.success::after { background: var(--success-bg); }
.kpi.danger::after { background: var(--danger-bg); }
.kpi-label { color: var(--muted); font-size: 12px; font-weight: 650; }
.kpi-value { margin-top: 13px; font-size: 30px; font-weight: 800; letter-spacing: -.04em; }
.kpi-value.compact { font-size: 18px; line-height: 1.25; letter-spacing: -.02em; overflow-wrap: anywhere; }
.kpi-meta { margin-top: 6px; color: var(--muted); font-size: 11px; }

.dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: 18px; }
.stack { display: grid; gap: 18px; align-content: start; }
.report-filters { display: grid; grid-template-columns: repeat(4, minmax(150px, 1fr)); gap: 10px; margin-bottom: 15px; }
.report-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-bottom: 18px; }
.report-bars { display: grid; gap: 12px; }
.report-bar-row > div:first-child { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 5px; }
.report-bar-row strong { font-size: 12px; font-weight: 700; }
.report-bar-row span { color: var(--muted); font-size: 11px; font-variant-numeric: tabular-nums; }
.report-track { height: 7px; overflow: hidden; border-radius: 99px; background: #edf1f6; }
.report-track i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue-500), var(--blue-700)); }
.report-empty { margin: 0; color: var(--muted); font-size: 12px; }
.integration-panel { margin-bottom: 18px; }
.integration-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.integration-row { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 18px; border-bottom: 1px solid var(--line); }
.integration-row:nth-child(odd) { border-right: 1px solid var(--line); }
.integration-row:nth-last-child(-n + 2) { border-bottom: 0; }
.integration-row > span { font-size: 12px; font-weight: 650; }
.report-leads { margin-bottom: 18px; }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 6px 22px rgba(10,27,52,.04); overflow: hidden; }
.panel-head { min-height: 62px; padding: 15px 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); }
.panel-head h3 { margin: 0; font-size: 15px; }
.panel-head p { margin: 2px 0 0; color: var(--muted); font-size: 11px; }
.panel-body { padding: 17px 18px; }

.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.data-table th { padding: 11px 14px; text-align: left; color: var(--muted); background: #f9fafc; border-bottom: 1px solid var(--line); font-size: 10px; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }
.data-table td { padding: 13px 14px; border-bottom: 1px solid #edf0f5; font-size: 13px; vertical-align: middle; }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr:hover { background: #fbfdff; }
.data-table .clickable { cursor: pointer; }
.primary-cell strong, .primary-cell span { display: block; }
.primary-cell strong { font-size: 13px; color: #1d2939; }
.primary-cell span { color: var(--muted); font-size: 11px; margin-top: 2px; max-width: 260px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 8px; border-radius: 99px; background: #eef2f7; color: #475467; font-size: 10px; font-weight: 750; white-space: nowrap; }
.badge.blue { color: var(--blue-700); background: var(--blue-50); }
.badge.green { color: var(--success); background: var(--success-bg); }
.badge.amber { color: var(--warning); background: var(--warning-bg); }
.badge.red { color: var(--danger); background: var(--danger-bg); }
.badge.purple { color: var(--purple); background: #f2efff; }
.badge.dark { color: #fff; background: var(--navy-700); }
.country { display: inline-flex; gap: 7px; align-items: center; white-space: nowrap; }
.country-flag { font-size: 17px; line-height: 1; }

.toolbar { display: grid; grid-template-columns: minmax(220px, 1fr) 180px 180px; gap: 10px; margin-bottom: 15px; }
.search { position: relative; }
.search input { padding-left: 37px; }
.search::before { content: "⌕"; position: absolute; left: 13px; top: 8px; color: #7f8b9f; font-size: 21px; z-index: 1; }

.empty { min-height: 210px; display: grid; place-items: center; text-align: center; padding: 30px; color: var(--muted); }
.empty-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; margin: 0 auto 12px; background: var(--blue-50); color: var(--blue-600); font-size: 22px; }
.empty strong { display: block; color: var(--ink); margin-bottom: 5px; }
.empty p { max-width: 400px; margin: 0; font-size: 12px; }

.lead-list { display: grid; gap: 10px; }
.lead-line { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 12px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; }
.lead-line:hover { border-color: #b9d5fa; background: #fbfdff; }
.lead-line strong { font-size: 13px; }
.lead-line p { margin: 3px 0 0; color: var(--muted); font-size: 11px; }

.task-list { display: grid; }
.task-row { display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: 10px; align-items: start; padding: 12px 0; border-bottom: 1px solid #edf0f5; }
.task-row:last-child { border-bottom: 0; }
.task-check { width: 19px; height: 19px; margin: 1px 0 0; padding: 0; accent-color: var(--blue-600); }
.task-copy strong { display: block; font-size: 12px; }
.task-copy span { display: block; color: var(--muted); font-size: 10px; margin-top: 3px; }
.task-row.done .task-copy strong { color: #8a94a6; text-decoration: line-through; }

.payment-line { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 12px; align-items: center; padding: 13px 0; border-bottom: 1px solid #edf0f5; }
.payment-line:last-child { border-bottom: 0; }
.payment-line strong { display: block; font-size: 13px; }
.payment-line span { display: block; color: var(--muted); font-size: 10px; margin-top: 2px; }
.money { font-variant-numeric: tabular-nums; font-weight: 800; white-space: nowrap; }
.overdue { color: var(--danger); }

.ai-card { padding: 18px; border-radius: var(--radius); color: #fff; background: linear-gradient(135deg, #0a1d39, #073f91); box-shadow: var(--shadow); }
.ai-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.ai-orb { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.13); font-size: 20px; }
.ai-card h3 { margin: 14px 0 5px; font-size: 17px; }
.ai-card p { margin: 0; color: #c1d2e9; font-size: 11px; }
.ai-card .badge { background: rgba(255,255,255,.13); color: #d8e9ff; }

.modal { width: min(94vw, 680px); max-height: 91vh; padding: 0; border: 0; border-radius: 20px; background: transparent; overflow: visible; }
.modal.wide { width: min(95vw, 980px); }
.modal::backdrop { background: rgba(3, 10, 22, .62); backdrop-filter: blur(3px); }
.modal-shell { max-height: 91vh; display: flex; flex-direction: column; margin: 0; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 90px rgba(0,0,0,.30); }
.modal-head { flex: 0 0 auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 20px 22px 16px; border-bottom: 1px solid var(--line); }
.modal-head h2 { margin: 1px 0 0; font-size: 21px; letter-spacing: -.025em; }
.eyebrow { margin: 0; color: var(--blue-600); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.icon-btn { width: 35px; height: 35px; border-radius: 50%; border: 1px solid var(--line); color: #667085; background: #fff; font-size: 23px; line-height: 1; }
.icon-btn:hover { color: var(--ink); background: #f7f9fc; }
.modal-body { overflow-y: auto; padding: 20px 22px 23px; }
.modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }

.detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 270px; gap: 20px; }
.detail-section { padding: 15px; border: 1px solid var(--line); border-radius: 13px; background: #fbfcfe; }
.detail-section + .detail-section { margin-top: 13px; }
.detail-section h3 { margin: 0 0 11px; font-size: 13px; }
.meta-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.meta-item span { display: block; color: var(--muted); font-size: 10px; margin-bottom: 3px; }
.meta-item strong, .meta-item a { display: block; font-size: 12px; overflow-wrap: anywhere; }
.message-box { min-height: 82px; padding: 12px; border-radius: 10px; background: #fff; border: 1px solid var(--line); font-size: 12px; white-space: pre-wrap; overflow-wrap: anywhere; }
.message-box.translated { border-color: #bcd8ff; background: var(--blue-50); }
.translate-tools { margin-top: 11px; display: flex; gap: 9px; flex-wrap: wrap; }
.ai-workbench { display: grid; gap: 12px; padding: 15px; border-radius: 13px; color: #dbe9fc; background: var(--navy-900); }
.ai-workbench h3 { margin: 0; color: #fff; font-size: 14px; }
.ai-workbench p { margin: -6px 0 0; color: #9fb3cf; font-size: 10px; }
.ai-workbench label { color: #cbd9ec; font-size: 11px; font-weight: 650; }
.ai-workbench textarea, .ai-workbench select { margin-top: 6px; background: #102746; color: #fff; border-color: #294867; }
.ai-workbench textarea::placeholder { color: #8299b8; }
.ai-output { min-height: 100px; padding: 11px; border: 1px dashed #45698f; border-radius: 10px; background: #0b1b32; color: #fff; white-space: pre-wrap; font-size: 12px; }

.pipeline { display: grid; grid-template-columns: repeat(5, minmax(165px, 1fr)); gap: 12px; min-width: 900px; }
.pipeline-wrap { overflow-x: auto; padding-bottom: 5px; }
.pipe-column { min-height: 410px; padding: 11px; border-radius: 14px; background: #e9edf4; }
.pipe-head { display: flex; align-items: center; justify-content: space-between; padding: 2px 3px 10px; font-size: 11px; font-weight: 800; }
.pipe-count { padding: 2px 7px; border-radius: 99px; background: rgba(255,255,255,.8); color: var(--muted); font-size: 10px; }
.pipe-card { padding: 12px; border-radius: 11px; background: #fff; border: 1px solid #dde3ec; box-shadow: 0 4px 12px rgba(10,27,52,.05); cursor: pointer; }
.pipe-card + .pipe-card { margin-top: 8px; }
.pipe-card:hover { border-color: #9ec7f8; }
.pipe-card strong { display: block; font-size: 12px; }
.pipe-card > span { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pipe-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 11px; }

.toast-region { position: fixed; right: 20px; bottom: 20px; z-index: 30; display: grid; gap: 10px; width: min(360px, calc(100vw - 40px)); }
.toast { display: grid; grid-template-columns: 25px 1fr; gap: 10px; padding: 13px 15px; border-radius: 12px; color: #fff; background: var(--navy-900); box-shadow: 0 14px 36px rgba(0,0,0,.25); animation: toast-in .2s ease-out; }
.toast.error { background: #8f2833; }
.toast strong { display: block; font-size: 12px; }
.toast span { display: block; opacity: .78; font-size: 10px; margin-top: 2px; }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } }

.skeleton { border-radius: 8px; background: linear-gradient(90deg,#edf0f5 25%,#f7f8fa 50%,#edf0f5 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }

@media (max-width: 1120px) {
  .kpi-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .dashboard-grid { grid-template-columns: 1fr; }
  .report-filters { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .app-shell { display: block; }
  .sidebar { position: fixed; left: 0; width: 250px; transform: translateX(-103%); transition: transform .2s; box-shadow: 20px 0 50px rgba(0,0,0,.25); }
  .sidebar.open { transform: translateX(0); }
  .topbar { height: 68px; padding: 0 17px; }
  .mobile-menu { display: inline-grid; place-items: center; }
  .topbar-copy { margin-right: auto; }
  .topbar h1 { font-size: 19px; }
  .topbar p { display: none; }
  .content { padding: 18px 15px 40px; }
  .toolbar { grid-template-columns: 1fr 1fr; }
  .report-grid { grid-template-columns: 1fr; }
  .search { grid-column: 1 / -1; }
  .field-row, .field-row.three { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .auth-card { padding: 25px 20px; }
  .kpi-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .kpi { min-height: 114px; padding: 15px; }
  .kpi-value { font-size: 24px; }
  .section-head { align-items: flex-start; }
  .section-head p { display: none; }
  .top-actions .secondary { display: none; }
  .modal { width: 96vw; max-height: 94vh; }
  .modal-shell { max-height: 94vh; border-radius: 17px; }
  .modal-body, .modal-head { padding-left: 17px; padding-right: 17px; }
  .meta-grid { grid-template-columns: 1fr; }
  .toolbar { grid-template-columns: 1fr; }
  .search { grid-column: auto; }
  .report-filters, .integration-list { grid-template-columns: 1fr; }
  .integration-row, .integration-row:nth-child(odd) { border-right: 0; border-bottom: 1px solid var(--line); }
  .integration-row:last-child { border-bottom: 0; }
}

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