:root {
  --bg: #fff8f2;
  --bg-peach: #ffe8d6;
  --surface: #ffffff;
  --cream: #fff3e8;
  --primary: #ff7a1a;
  --primary-hover: #ee6a0c;
  --primary-soft: #fff0e4;
  --text: #1a1a1a;
  --text-secondary: #6f675f;
  --border: #ece4db;
  --success: #16803c;
  --success-soft: #e8f6ee;
  --danger: #dc3b3b;
  --danger-soft: #fdeeee;
  --warning: #d97706;
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 8px 30px rgba(40, 22, 8, 0.06);
  --sidebar: 248px;
  --font: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 100% -10%, rgba(255, 140, 60, 0.22), transparent 55%),
    radial-gradient(900px 420px at -10% 110%, rgba(255, 160, 90, 0.18), transparent 50%),
    var(--bg);
  line-height: 1.45;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; }

.skip-link {
  position: absolute; left: -999px; top: 8px;
}
.skip-link:focus { left: 8px; background: #fff; padding: 8px 12px; z-index: 20; }

.logo {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.03em;
}
.brand-logo { height: 48px; width: auto; display: block; }
.brand-logo.lg { height: 56px; }
.public-header .brand-logo { height: 58px; }
.sidebar .brand-logo { height: 46px; }
.ico { flex-shrink: 0; display: inline-block; vertical-align: middle; }
.flag { width: 28px; height: 28px; border-radius: 99px; object-fit: cover; display: block; }
.pill-btn { border-radius: 999px; padding: 12px 22px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent; border-radius: var(--radius); padding: 12px 18px;
  font-weight: 700; cursor: pointer; background: var(--cream); color: var(--text);
}
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-ghost { background: transparent; border-color: var(--border); }
.btn-success { background: var(--success); color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field span { font-size: 13px; color: var(--text-secondary); font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 14px; background: #fff;
}
.input-icon { position: relative; }
.input-icon input { padding-left: 42px; }
.input-icon .ico { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #9a9188; }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.muted { color: var(--text-secondary); }
.h1 { font-size: clamp(32px, 5vw, 56px); line-height: 1.05; letter-spacing: -0.04em; margin: 0 0 12px; }
.h2 { font-size: 28px; letter-spacing: -0.03em; margin: 0 0 6px; }
.accent { color: var(--primary); }

.shell { min-height: 100vh; display: flex; }
.sidebar {
  width: var(--sidebar); padding: 22px 16px; display: flex; flex-direction: column; gap: 18px;
}
.nav-list { display: flex; flex-direction: column; gap: 4px; }
.nav-list a {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 12px; color: #3f3a36;
}
.nav-list a.active { background: var(--primary-soft); color: var(--primary); font-weight: 700; }
.nav-list svg { width: 18px; height: 18px; }
.sidebar-user {
  margin-top: auto; display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 14px;
  background: #fff; border: 1px solid var(--border);
}
.main { flex: 1; padding: 24px 28px calc(28px + var(--safe-bottom)); }
.topbar { display: flex; justify-content: flex-end; align-items: center; gap: 16px; margin-bottom: 18px; }
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-secondary); }
.icon-btn { position: relative; border: 0; background: transparent; cursor: pointer; }
.dot {
  position: absolute; top: -4px; right: -6px; background: var(--primary); color: #fff;
  border-radius: 99px; min-width: 16px; height: 16px; font-size: 10px; display: grid; place-items: center;
}

.avatar {
  width: 40px; height: 40px; border-radius: 99px; background: #f3e6d8; display: grid; place-items: center;
  font-weight: 800; overflow: hidden; flex-shrink: 0;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.online-dot { width: 8px; height: 8px; border-radius: 99px; background: #22c55e; display: inline-block; }
.online-dot.away { background: #eab308; }
.online-dot.off { background: #c4bbb3; }

.hero-match {
  display: flex; align-items: center; gap: 16px; padding: 22px 24px; border-radius: var(--radius-lg);
  background: linear-gradient(90deg, #ffe1c4, #fff3cc); margin: 18px 0;
}
.hero-match h2 { margin: 0; }
.circle-btn {
  margin-left: auto; width: 48px; height: 48px; border-radius: 99px; border: 0; background: var(--primary); color: #fff; cursor: pointer;
}

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat-card { padding: 16px; }
.stat-card .label { color: var(--text-secondary); font-size: 13px; }
.stat-card .value { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; margin: 8px 0; }
.bar { height: 4px; background: #f1e8df; border-radius: 99px; overflow: hidden; }
.bar > span { display: block; height: 100%; background: var(--primary); }

.split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 14px; margin-top: 14px; }
.progress-card, .map-card { padding: 18px; }
.streak-card {
  margin-top: 14px; padding: 14px 18px; border-radius: var(--radius-lg);
  background: var(--primary-soft); display: flex; align-items: center; gap: 12px;
}

.public-header, .public-footer { max-width: 1120px; margin: 0 auto; padding: 20px 24px; display: flex; align-items: center; gap: 24px; }
.public-nav { margin: 0 auto; display: flex; gap: 22px; color: var(--text-secondary); }
.hero { max-width: 1120px; margin: 0 auto; padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-actions { display: flex; gap: 12px; margin: 22px 0; flex-wrap: wrap; }
.video-preview {
  position: relative; border-radius: 20px; overflow: hidden; min-height: 420px;
  background: #1c1917; color: #fff;
}
.video-preview img, .video-preview video { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.mission-float {
  position: absolute; right: 16px; bottom: 16px; width: 220px; background: #fff; color: var(--text);
  border-radius: 14px; padding: 14px; box-shadow: var(--shadow);
}
.mission-float small { letter-spacing: 0.08em; color: var(--text-secondary); font-size: 11px; }
.steps {
  max-width: 1120px; margin: 12px auto 32px; background: var(--cream); border-radius: 18px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 18px;
}
.trust { text-align: center; color: var(--text-secondary); padding-bottom: 40px; }

.auth-wrap { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.auth-card { width: min(440px, 100%); padding: 36px 32px; text-align: center; }
.auth-card .field { text-align: left; }
.oauth { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.oauth .btn { background: #fff; border-color: var(--border); }
.hr { display: flex; align-items: center; gap: 10px; color: var(--text-secondary); font-size: 13px; margin: 16px 0; }
.hr::before, .hr::after { content: ""; height: 1px; background: var(--border); flex: 1; }

.list-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.list-row:last-child { border-bottom: 0; }
.pill { border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 700; }
.pill.ok { background: var(--success-soft); color: var(--success); }
.pill.bad { background: var(--danger-soft); color: var(--danger); }
.pill.warn { background: #fff4e5; color: var(--warning); }

.empty { padding: 32px; text-align: center; color: var(--text-secondary); }
.toast-wrap { position: fixed; right: 16px; bottom: 16px; display: flex; flex-direction: column; gap: 8px; z-index: 40; }
.toast { background: #1a1a1a; color: #fff; padding: 12px 14px; border-radius: 10px; min-width: 220px; }

.modal-backdrop { position: fixed; inset: 0; background: rgba(20,12,8,.35); display: none; place-items: center; z-index: 50; padding: 16px; }
.modal-backdrop.open { display: grid; }
.modal { width: min(420px, 100%); padding: 22px; }

.match-body-page { background: #fbf6f0; }
.match-screen { height: 100vh; display: grid; grid-template-rows: 72px 1fr 96px; padding: 0; }
.match-header { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 22px; }
.match-header .right { justify-self: end; display: flex; align-items: center; gap: 10px; }
.match-body { display: grid; grid-template-columns: 1fr 280px; gap: 16px; padding: 0 18px 12px; min-height: 0; }
.match-videos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; min-height: 0; }
.video-tile { position: relative; background: #1a1613; border-radius: 32px; overflow: hidden; min-height: 0; }
.video-tile video { width: 100%; height: 100%; object-fit: cover; }
.video-chip {
  position: absolute; left: 14px; top: 14px; display: inline-flex; align-items: center; gap: 6px;
  background: rgba(20,16,12,.55); color: #fff; border-radius: 999px; padding: 6px 10px; font-size: 13px;
}
.match-status {
  position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-weight: 700;
  background: rgba(20,16,12,.25); pointer-events: none;
}
.match-status[hidden] { display: none; }
.mission-panel { display: flex; flex-direction: column; gap: 12px; }
.mission-card, .confirm-card { padding: 18px; }
.mission-card small { letter-spacing: .08em; font-size: 11px; }
.mission-card p { font-size: 22px; font-weight: 800; letter-spacing: -.03em; }
.match-controls { display: flex; justify-content: center; align-items: center; gap: 12px; padding-bottom: var(--safe-bottom); }
.ctrl {
  width: 52px; height: 52px; border-radius: 99px; border: 0; background: #fff; cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow);
}
.ctrl.end { background: var(--danger); color: #fff; width: 58px; height: 58px; }
.ctrl.next { width: auto; padding: 0 20px; border-radius: 999px; font-weight: 800; display: inline-flex; gap: 8px; align-items: center; }

.lead { font-size: 18px; max-width: 480px; }
.social-proof { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.avatar-stack { display: flex; }
.avatar-stack .avatar { margin-left: -10px; border: 2px solid #fff; }
.avatar-stack .avatar:first-child { margin-left: 0; }
.proof-stat { display: flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 700; }
.hero-visual { position: relative; }
.radar {
  position: absolute; inset: -40px; border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 38px, rgba(255,122,26,.12) 38px 39px);
  pointer-events: none;
}
.preview-person { min-height: 420px; background: #1c1917; position: relative; overflow: hidden; }
.preview-photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
}
.preview-chip, .preview-fs {
  position: absolute; top: 14px; display: inline-flex; align-items: center; gap: 6px;
  background: rgba(20,16,12,.5); color: #fff; border: 0; border-radius: 999px; padding: 6px 10px;
}
.preview-chip { left: 14px; }
.preview-fs { right: 14px; width: 36px; height: 36px; place-items: center; display: grid; padding: 0; }
.preview-controls {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  display: flex; gap: 10px; background: rgba(20,16,12,.55); padding: 8px 12px; border-radius: 999px; color: #fff;
}
.preview-controls .end { color: #ff6b6b; }
.steps { align-items: center; }
.step { padding: 12px; }
.step .ico { color: var(--primary); margin-bottom: 8px; }
.step-arrow { color: #d9cfc4; display: grid; place-items: center; }
.trust-line { display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; }

.hero-ico {
  width: 52px; height: 52px; border-radius: 16px; background: rgba(255,255,255,.55);
  display: grid; place-items: center; color: var(--primary);
}
.bar.thick { height: 8px; }
.page-head { display: flex; justify-content: space-between; align-items: flex-start; }

.meet-page { max-width: 980px; }
.meet-logo { margin: 0 auto 18px; display: flex; justify-content: center; }
.circle-back {
  width: 42px; height: 42px; border-radius: 99px; background: #fff; border: 1px solid var(--border);
  display: grid; place-items: center;
}
.meet-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.tabs { display: flex; gap: 8px; margin-top: 18px; }
.tab {
  border: 0; border-radius: 999px; padding: 10px 16px; background: #fff; cursor: pointer; font-weight: 700;
}
.tab.active { background: var(--primary-soft); color: var(--primary); }
.meet-list { padding: 8px 8px 12px; overflow: hidden; }
.select-row {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--border); cursor: pointer;
}
.select-row input { position: absolute; opacity: 0; pointer-events: none; }
.flag-wrap { width: 36px; height: 36px; border-radius: 99px; background: #f4ebe3; display: grid; place-items: center; overflow: hidden; }
.radio-check {
  margin-left: auto; width: 22px; height: 22px; border: 2px solid #d9d0c8; border-radius: 99px;
  display: grid; place-items: center; color: transparent;
}
.select-row:has(input:checked) .radio-check { background: var(--primary); border-color: var(--primary); color: #fff; }
.select-row.is-locked { color: inherit; text-decoration: none; opacity: .72; }
.lock-pill {
  margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-soft); color: var(--primary); border-radius: 999px; padding: 6px 10px; font-size: 12px; font-weight: 800;
}
.plus-lock-banner {
  display: flex; align-items: center; gap: 10px; margin: 10px 12px; padding: 12px 14px;
  border-radius: 14px; background: var(--primary-soft); color: var(--primary); text-decoration: none; font-weight: 700;
}
.plus-perks { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.plus-perks li { display: flex; align-items: center; gap: 10px; }
.plus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.plus-card { padding: 22px; }
.plus-price { font-size: 28px; font-weight: 800; margin: 8px 0 16px; }

.pending-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.pending-card { padding: 16px; text-align: center; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.avatar.lg { width: 64px; height: 64px; font-size: 22px; }
.avatar.xl { width: 96px; height: 96px; font-size: 32px; position: relative; }
.edit-badge {
  position: absolute; right: 0; bottom: 0; width: 28px; height: 28px; border-radius: 99px;
  background: #fff; border: 1px solid var(--border); display: grid; place-items: center;
}
.cta-card {
  margin-top: 12px; padding: 18px; border-radius: var(--radius-lg); background: var(--primary); color: #fff;
  display: flex; align-items: center; gap: 12px;
}
.active-row { background: var(--primary-soft); border-radius: 14px; }
.unread {
  margin-left: auto; min-width: 20px; height: 20px; border-radius: 99px; background: var(--primary); color: #fff;
  display: grid; place-items: center; font-size: 11px; font-weight: 800;
}
.chat-head { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.circle-btn.send { margin-left: 0; width: 44px; height: 44px; }
.filter-ico { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: #9a9188; }
.daily-hero { padding: 20px; background: linear-gradient(90deg, #ffe1c4, #fff3cc); display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; }
.daily-goals { display: flex; gap: 18px; }
.progress-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 16px 0; }
.profile-hero { padding: 24px; display: flex; gap: 20px; align-items: center; }
.profile-meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--text-secondary); margin: 8px 0; }
.profile-meta span { display: inline-flex; align-items: center; gap: 6px; }
.status-ico { width: 32px; height: 32px; border-radius: 99px; display: grid; place-items: center; background: var(--cream); }
.status-ico.completed { background: var(--success-soft); color: var(--success); }
.status-ico.exposed { background: #fff4e5; color: var(--warning); }
.status-ico.denied, .status-ico.failed { background: var(--danger-soft); color: var(--danger); }
.bottom-nav a { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 11px; color: var(--text-secondary); }

.messages-layout { display: grid; grid-template-columns: 320px 1fr; gap: 16px; min-height: calc(100vh - 120px); }
.chat-thread { display: flex; flex-direction: column; min-height: 520px; }
.bubbles { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 8px; overflow: auto; }
.bubble { max-width: 70%; padding: 10px 12px; border-radius: 14px; background: #fff; border: 1px solid var(--border); }
.bubble.me { margin-left: auto; background: #ffe8d4; border-color: transparent; }
.chat-input { display: flex; gap: 8px; padding: 12px; }

.search { width: 100%; padding: 12px 14px 12px 40px; border: 1px solid var(--border); border-radius: 12px; }
.search-wrap { position: relative; margin: 16px 0; }
.search-wrap .ico { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); }

.world-map { height: 140px; background:
  radial-gradient(circle at 20% 40%, var(--primary) 3px, transparent 4px),
  radial-gradient(circle at 48% 38%, var(--primary) 3px, transparent 4px),
  radial-gradient(circle at 70% 45%, var(--primary) 3px, transparent 4px),
  radial-gradient(circle at 35% 58%, var(--primary) 3px, transparent 4px),
  linear-gradient(#efe8e0, #efe8e0);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 80'><path fill='black' d='M20 40c10-20 30-25 50-18 20 6 25-10 48-8 20 2 30 18 42 16 14-2 28 8 28 18-18 10-40 8-58 12-22 4-30 10-52 8C50 66 28 70 14 58 8 52 12 48 20 40z'/></svg>") center / contain no-repeat;
}

.bottom-nav { display: none; }
.mobile-only { display: none; }

.meet-list { display: flex; flex-direction: column; max-height: min(72vh, 680px); }
.meet-scroll { overflow: auto; flex: 1; min-height: 0; }
.meet-continue {
  flex-shrink: 0; margin: 8px 12px 12px; position: sticky; bottom: 0; z-index: 4;
  box-shadow: 0 -8px 18px rgba(255,248,242,.9);
}

.modal-x {
  position: absolute; right: 12px; top: 12px; border: 0; background: transparent; cursor: pointer;
}
.mission-modal { position: relative; text-align: center; padding: 28px 22px 18px; width: min(420px, 100%); }
.mission-modal h2 { margin: 8px 0 12px; }
.mission-modal .btn { margin-top: 8px; }
.mission-modal-ico {
  width: 64px; height: 64px; border-radius: 99px; display: grid; place-items: center; margin: 0 auto 8px;
}
.mission-modal-ico.ok { background: var(--success-soft); color: var(--success); box-shadow: 0 0 0 8px rgba(22,128,60,.08); }
.mission-modal-ico.bad { background: var(--primary-soft); color: var(--primary); box-shadow: 0 0 0 8px rgba(255,122,26,.1); }
.mission-modal-prompt { font-size: 22px; font-weight: 800; letter-spacing: -.03em; }
.mission-rewards { display: flex; justify-content: center; gap: 22px; margin: 12px 0; font-weight: 800; }

.admin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 16px; overflow: hidden; }
.admin-table th, .admin-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border); font-size: 14px; }
.admin-table th { color: var(--text-secondary); font-size: 12px; letter-spacing: .04em; }
.warn-card { padding: 16px 18px; margin-bottom: 16px; display: flex; gap: 12px; align-items: flex-start; }
.video-ticket { width: 100%; max-height: 360px; background: #111; border-radius: 14px; }

.public-header { flex-wrap: wrap; }
.public-nav { flex-wrap: wrap; }

@media (max-width: 1024px) {
  .stat-row, .split, .hero, .steps, .messages-layout, .match-body, .meet-grid, .match-videos, .progress-grid, .daily-hero, .plus-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .sidebar { display: none; }
  .bottom-nav, .mobile-only { display: flex; }
  .bottom-nav {
    position: fixed; left: 0; right: 0; bottom: 0; background: #fff; border-top: 1px solid var(--border);
    justify-content: space-around; padding: 8px 8px calc(8px + var(--safe-bottom)); z-index: 30;
  }
  .main { padding: 16px 16px calc(96px + var(--safe-bottom)); }
  .match-screen { grid-template-rows: 56px 1fr auto 78px; height: 100dvh; }
  .match-header { padding: 0 12px; grid-template-columns: auto 1fr auto; gap: 8px; }
  .match-header .right { gap: 4px; }
  .match-header .btn { padding: 8px 10px; font-size: 13px; }
  .mission-panel { position: sticky; bottom: 78px; max-height: 42vh; overflow: auto; }
  .match-videos { min-height: 220px; }
  .video-tile { min-height: 180px; border-radius: 18px; }
  .match-controls { padding-bottom: calc(10px + var(--safe-bottom)); }
  .meet-list { max-height: calc(100dvh - 220px); }
  .auth-card { padding: 24px 18px; }
  .hero { padding: 12px 16px 24px; }
  .h1 { font-size: 36px; }
  .public-header { padding: 12px 16px; gap: 12px; }
  .public-nav { width: 100%; order: 3; gap: 12px; overflow: auto; }
  .messages-layout { min-height: calc(100dvh - 160px); }
  .chat-thread { min-height: 360px; }
  .admin-table { display: block; overflow-x: auto; }
  .modal { width: min(100%, 420px); }
}

@media (max-width: 640px) {
  .h1 { font-size: 30px; }
  .h2 { font-size: 24px; }
  .hero-actions .btn { width: 100%; }
  .brand-logo, .public-header .brand-logo { height: 42px; }
  .match-videos { grid-template-columns: 1fr; }
  .video-tile#localTile { min-height: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
