/* ============================================================
   WithEase — "Kiwi" brand system
   Forest green = structure & trust. Leaf green = the single
   action / "live" colour. Mint = the soft background wash.
   Shares its palette with sister product Review Kiwi.
   Friendly consumer-fintech feel: chunky rounding, soft low
   elevation, pill buttons, a signature leaf-green FAB.
   ============================================================ */

:root {
  /* ---- Colour ---- */
  --forest:         #2E4A44;  /* deep forest — sidebar bg, dark sections */
  --forest-ink:     #26403A;  /* darkest — primary text, headings on light */
  --forest-tint:    #E7EFE7;  /* pale forest — subtle structural fills */

  --leaf:           #6FAE3F;  /* bright leaf — toggle-on, indicators, tints */
  --leaf-strong:    #5E9A32;  /* deeper leaf — filled buttons w/ WHITE text */
  --leaf-hover:     #538A2C;
  --leaf-ink:       #3B6115;  /* leaf-green text on pale backgrounds */
  --leaf-tint:      #E2F0D6;  /* mint-green pill / badge fills */

  --mint:           #F3F8EC;  /* app background wash */
  --surface:        #FFFFFF;  /* cards, panels */
  --border:         #DDE7D5;  /* hairline borders */
  --border-strong:  #C6D4BC;

  --text:           #26403A;
  --text-secondary: #3D5249;
  --text-muted:     #5E6E62;

  /* ---- Semantic status ---- */
  --success-text:   #3B6115;  --success-bg: #E2F0D6;
  --warning-text:   #8A5A0B;  --warning-bg: #FBEEDA;
  --danger-text:    #A32D2D;  --danger-bg:  #FCEBEB;

  /* ---- Shape & radius ---- */
  --radius-card:   16px;
  --radius-input:  12px;
  --radius-pill:   999px;
  --radius-sm:     10px;

  /* ---- Elevation ---- */
  --shadow-card: 0 1px 2px rgba(38,64,58,0.04), 0 4px 12px rgba(38,64,58,0.05);
  --shadow-fab:  0 4px 14px rgba(94,154,50,0.35);
  --shadow-pop:  0 8px 24px rgba(38,64,58,0.12);

  --sidebar-w: 250px;

  /* ---- Legacy aliases (kept so existing inline styles resolve) ---- */
  --ink: var(--forest-ink);
  --black: var(--forest-ink);
  --muted: var(--text-muted);
  --faint: var(--text-muted);
  --line: var(--border);
  --line-soft: var(--border);
  --bg: var(--surface);
  --bg-soft: var(--mint);
  --bg-sink: var(--forest-tint);
  --green: var(--success-text);
  --green-soft: var(--success-bg);
  --amber: var(--warning-text);
  --amber-soft: var(--warning-bg);
  --red: var(--danger-text);
  --red-soft: var(--danger-bg);
  --radius: var(--radius-card);
  --radius-lg: 20px;
  --shadow: var(--shadow-pop);
  --shadow-soft: var(--shadow-card);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--mint);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }
h1 { font-size: 24px; }
h2 { font-size: 18px; }
h3 { font-size: 16px; }
p { margin: 0; }

/* ---------- Buttons (pill) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--leaf-strong);
  color: #fff;
  cursor: pointer;
  transition: all 120ms ease;
  white-space: nowrap;
}
.btn:hover { background: var(--leaf-hover); }
.btn:active { transform: scale(0.98); }
.btn.block { width: 100%; }
.btn.lg { padding: 14px 26px; font-size: 15px; }

/* Forest button — structural confirms (Save changes, etc.)
   .navy kept as an alias for markup added before the palette swap */
.btn.forest, .btn.navy { background: var(--forest); color: #fff; }
.btn.forest:hover, .btn.navy:hover { background: var(--forest-ink); }

.btn.secondary {
  background: var(--surface);
  color: var(--text);
  border: 0.5px solid var(--border-strong);
}
.btn.secondary:hover { background: var(--forest-tint); }

.btn.ghost { background: transparent; color: var(--text-secondary); }
.btn.ghost:hover { background: var(--forest-tint); }

.btn:disabled { opacity: .4; cursor: not-allowed; }
.btn.small { padding: 8px 16px; font-size: 14px; }

/* ---------- Round FAB (signature control) ---------- */
.fab {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius-pill);
  background: var(--leaf-strong);
  color: #fff;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-fab);
  transition: all 120ms ease;
}
.fab:hover { background: var(--leaf-hover); }
.fab:active { transform: scale(0.96); }
.fab svg { width: 24px; height: 24px; }

/* ---------- Form controls ---------- */
label.field { display: block; margin-bottom: 16px; }
.field-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 7px;
}
.field-hint { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  min-height: 44px;
  padding: 11px 14px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-input);
  background: var(--surface);
  outline: none;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
input:focus, textarea:focus, select:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px var(--leaf-tint);
}
textarea { resize: vertical; min-height: 92px; }

.input-prefix {
  display: flex;
  align-items: center;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-input);
  overflow: hidden;
  background: var(--surface);
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.input-prefix:focus-within {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px var(--leaf-tint);
}
.input-prefix span {
  padding: 12px 4px 12px 16px;
  color: var(--text-muted);
  font-size: 24px;
  font-weight: 500;
}
.input-prefix input {
  border: none;
  box-shadow: none;
  font-size: 32px;
  font-weight: 600;
  padding-left: 4px;
  font-variant-numeric: tabular-nums;
}
.input-prefix input:focus { box-shadow: none; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.card-title { font-size: 16px; font-weight: 600; }
.card-sub { font-size: 14px; color: var(--text-muted); margin-top: 3px; }

/* ---------- Badges / status pills ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  background: var(--forest-tint);
  color: var(--text-secondary);
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge.paid    { background: var(--success-bg); color: var(--success-text); }
.badge.pending { background: var(--warning-bg); color: var(--warning-text); }
.badge.failed  { background: var(--danger-bg);  color: var(--danger-text); }
/* Method pills — neutral forest */
.badge.card, .badge.bank { background: var(--forest-tint); color: var(--forest); }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; }
table.data { width: 100%; border-collapse: collapse; font-size: 14px; }
table.data th {
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  padding: 12px 16px;
  border-bottom: 0.5px solid var(--border);
}
table.data td {
  padding: 15px 16px;
  border-bottom: 0.5px solid var(--border);
  color: var(--text);
}
table.data tr:last-child td { border-bottom: none; }
table.data tr:hover td { background: var(--mint); }
.amount { font-variant-numeric: tabular-nums; font-weight: 600; }

/* ============================================================
   Seller app shell — sidebar + topbar
   ============================================================ */
.shell { min-height: 100vh; display: flex; background: var(--mint); }

.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: var(--forest);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
}
.sidebar .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 22px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #fff;
}
.brand-mark {
  width: 28px; height: 28px;
  border-radius: var(--radius-pill);
  background: var(--leaf);
  color: #fff;
  display: grid; place-items: center;
  font-size: 15px; font-weight: 600;
}
.nav-group-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #8CA096;
  padding: 18px 12px 6px;
  font-weight: 500;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  color: #BFD1C8;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
  transition: background 120ms ease, color 120ms ease;
}
.nav-item:hover { background: rgba(255,255,255,0.04); color: #fff; }
.nav-item.active { background: rgba(255,255,255,0.06); color: #fff; }
.nav-item.active::before {
  content: "";
  position: absolute;
  left: -14px; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 22px;
  border-radius: 0 3px 3px 0;
  background: var(--leaf);
}
.nav-item .ic { width: 19px; height: 19px; flex-shrink: 0; }
.sidebar-foot { margin-top: auto; padding: 14px 10px 4px; }
.sidebar-foot .whoami { font-size: 13px; color: #93A79B; }
.sidebar-foot .whoami b { color: #BFD1C8; font-weight: 500; }

.main { flex: 1; min-width: 0; display: flex; flex-direction: column; }

.topbar {
  min-height: 72px;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  z-index: 20;
}
.topbar .page-title { font-size: 24px; font-weight: 600; letter-spacing: -0.01em; }
.topbar-right { display: flex; align-items: center; gap: 16px; }

.acct-menu {
  display: flex; align-items: center; gap: 8px;
  padding: 4px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  background: transparent;
  position: relative;
  transition: background 120ms ease;
}
.acct-menu:hover { background: var(--forest-tint); }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--forest);
  color: #fff; display: grid; place-items: center;
  font-size: 14px; font-weight: 500;
}
.acct-menu > svg { color: var(--text-muted); }
.acct-dropdown {
  position: absolute; top: 52px; right: 0;
  background: var(--surface); border: 0.5px solid var(--border);
  border-radius: var(--radius-card); box-shadow: var(--shadow-pop);
  min-width: 190px; padding: 6px; display: none; z-index: 40;
}
.acct-dropdown.open { display: block; }
.acct-dropdown a {
  display: block; padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 14px; color: var(--text);
}
.acct-dropdown a:hover { background: var(--forest-tint); }
.acct-dropdown .sep { height: 0.5px; background: var(--border); margin: 6px 4px; }

.mobile-menu-btn { display: none; }

.content { padding: 30px 28px 64px; max-width: 1120px; width: 100%; }
.page-head { margin-bottom: 26px; }
.page-head h1 { font-size: 24px; }
.page-head p { color: var(--text-muted); margin-top: 6px; font-size: 15px; }

/* ---------- Layout helpers ---------- */
.row { display: flex; gap: 16px; }
.row.wrap { flex-wrap: wrap; }
.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.spread { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.stack { display: flex; flex-direction: column; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}
.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}
.muted { color: var(--text-muted); }
.faint { color: var(--text-muted); }
.small { font-size: 13px; }
.center { text-align: center; }
.section-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: .05em;
  color: var(--text-muted); font-weight: 500; margin-bottom: 12px;
}

/* ---------- Stat cards ---------- */
.stat {
  background: var(--surface); border: 0.5px solid var(--border);
  border-radius: var(--radius-card); padding: 22px;
  box-shadow: var(--shadow-card);
}
.stat .label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; font-weight: 500; }
.stat .value { font-size: 28px; font-weight: 600; letter-spacing: -0.01em; margin-top: 10px; font-variant-numeric: tabular-nums; }
.stat .delta { font-size: 13px; margin-top: 6px; color: var(--leaf-ink); }
.stat .delta.flat { color: var(--text-muted); }

/* ---------- Toggle switch ---------- */
.switch { position: relative; display: inline-block; width: 46px; height: 28px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider {
  position: absolute; inset: 0; cursor: pointer;
  background: var(--border-strong); border-radius: var(--radius-pill);
  transition: background 150ms ease;
}
.switch .slider:before {
  content: ""; position: absolute; height: 22px; width: 22px;
  left: 3px; top: 3px; background: #fff; border-radius: 50%;
  transition: transform 150ms cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 1px 3px rgba(38,64,58,.25);
}
.switch input:checked + .slider { background: var(--leaf); }
.switch input:checked + .slider:before { transform: translateX(18px); }

/* ---------- Checklist ---------- */
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 0.5px solid var(--border);
  font-size: 15px;
}
.checklist li:last-child { border-bottom: none; }
.check {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-size: 13px;
  border: 1.5px solid var(--border-strong); color: transparent;
}
.check.done { background: var(--leaf); border-color: var(--leaf); color: #fff; }
.checklist li.done .label { color: var(--text-muted); }
.checklist li .label { flex: 1; }
.checklist li a { color: var(--leaf-ink); font-weight: 500; }

/* ---------- Tabs ---------- */
.tabs {
  display: inline-flex; padding: 4px; gap: 4px;
  background: var(--forest-tint); border-radius: var(--radius-pill);
}
.tab {
  padding: 9px 20px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 500;
  color: var(--text-secondary); cursor: pointer; border: none; background: transparent;
  font-family: inherit; transition: all 120ms ease;
}
.tab.active { background: var(--surface); color: var(--text); box-shadow: var(--shadow-card); }

/* ---------- Copy field ---------- */
.copy-field {
  display: flex; align-items: center; gap: 8px;
  border: 0.5px solid var(--border); border-radius: var(--radius-input);
  padding: 6px 6px 6px 14px; background: var(--mint);
}
.copy-field .url {
  flex: 1; font-size: 13.5px; color: var(--text-secondary);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}

/* ---------- QR panel ---------- */
.qr-box {
  display: inline-flex; padding: 18px; background: var(--surface);
  border: 0.5px solid var(--border); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.qr-box canvas, .qr-box img { display: block; border-radius: 8px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--forest); color: #fff; padding: 13px 22px;
  border-radius: var(--radius-pill); font-size: 14px; font-weight: 500;
  opacity: 0; pointer-events: none; transition: all 220ms ease; z-index: 100;
  box-shadow: var(--shadow-pop);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   Auth / login screen
   ============================================================ */
.auth-wrap {
  min-height: 100vh; display: grid; place-items: center;
  padding: 24px;
  background: radial-gradient(1000px 460px at 50% -10%, var(--forest-tint), var(--mint));
}
.auth-card {
  width: 100%; max-width: 410px; background: var(--surface);
  border: 0.5px solid var(--border); border-radius: var(--radius-card);
  padding: 36px; box-shadow: var(--shadow-pop);
}
.auth-brand {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  font-weight: 600; font-size: 20px; letter-spacing: -0.01em; margin-bottom: 6px;
}

/* ============================================================
   Customer phone frame (standalone pages)
   ============================================================ */
.phone-stage {
  min-height: 100vh;
  background: radial-gradient(800px 400px at 50% 0%, var(--forest-tint), var(--mint));
  display: grid; place-items: center; padding: 28px 16px;
}
.phone {
  width: 390px; max-width: 100%;
  background: var(--surface); border-radius: 34px;
  border: 0.5px solid var(--border);
  box-shadow: 0 30px 70px rgba(38,64,58,.16);
  overflow: hidden; position: relative;
  min-height: 760px; display: flex; flex-direction: column;
}
.phone-notch { height: 26px; display: grid; place-items: center; }
.phone-notch::after {
  content: ""; width: 120px; height: 6px; border-radius: var(--radius-pill); background: var(--border);
}
.phone-body { flex: 1; padding: 8px 22px 26px; display: flex; flex-direction: column; }
.pay-brand {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 20px 0 8px; text-align: center;
}
.pay-logo {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--forest-tint); border: 0.5px solid var(--border);
  display: grid; place-items: center; font-size: 22px; font-weight: 600;
  color: var(--forest);
}
.pay-biz { font-size: 18px; font-weight: 600; }
.pay-amount-big {
  font-size: 46px; font-weight: 600; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums; text-align: center; margin: 8px 0;
}
.pay-secured {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  color: var(--text-muted); font-size: 12.5px; margin-top: auto; padding-top: 20px;
}
.pay-method {
  display: flex; align-items: center; gap: 14px;
  border: 0.5px solid var(--border); border-radius: var(--radius-card);
  padding: 16px; cursor: pointer; transition: all 120ms ease; background: var(--surface);
  width: 100%; text-align: left; font-family: inherit;
}
.pay-method:hover { border-color: var(--forest); background: var(--forest-tint); }
.pay-method .m-ic {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; background: var(--forest-tint); color: var(--forest);
  font-weight: 600;
}
.pay-method .m-title { font-weight: 600; font-size: 15px; }
.pay-method .m-sub { font-size: 12.5px; color: var(--text-muted); }
.pay-method .chev { margin-left: auto; color: var(--text-muted); font-size: 20px; }

.step { display: none; flex-direction: column; flex: 1; }
.step.active { display: flex; }
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--text-muted); margin-bottom: 8px; cursor: pointer;
  background: none; border: none; font-family: inherit; padding: 6px 0;
}
.back-link:hover { color: var(--text); }

.success-tick {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--success-bg); color: var(--success-text);
  display: grid; place-items: center; margin: 0 auto 8px;
  animation: pop .4s ease;
}
@keyframes pop { 0%{transform:scale(.6);opacity:0} 60%{transform:scale(1.08)} 100%{transform:scale(1);opacity:1} }

.receipt {
  border: 0.5px solid var(--border); border-radius: var(--radius-card);
  padding: 4px 16px; margin-top: 20px; background: var(--mint);
}
.receipt .line {
  display: flex; justify-content: space-between; padding: 13px 0;
  border-bottom: 0.5px dashed var(--border-strong); font-size: 14px;
}
.receipt .line:last-child { border-bottom: none; }
.receipt .line .k { color: var(--text-muted); }
.receipt .line .v { font-weight: 500; font-variant-numeric: tabular-nums; }

/* ============================================================
   Index / concept map
   ============================================================ */
.index-wrap { max-width: 880px; margin: 0 auto; padding: 60px 24px 80px; }
.index-note {
  display: inline-block; font-size: 13px; color: var(--text-secondary);
  background: var(--forest-tint); padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 20px;
}
.screen-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.screen-link {
  display: flex; align-items: center; gap: 14px;
  border: 0.5px solid var(--border); border-radius: var(--radius-card);
  padding: 18px; transition: all 120ms ease; background: var(--surface);
  box-shadow: var(--shadow-card);
}
.screen-link:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--shadow-pop); }
.screen-num {
  width: 36px; height: 36px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: var(--forest-tint); display: grid; place-items: center;
  font-size: 13px; font-weight: 600; color: var(--forest);
}
.screen-link .t { font-weight: 600; font-size: 15px; }
.screen-link .d { font-size: 13px; color: var(--text-muted); margin-top: 1px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .screen-grid { grid-template-columns: 1fr; }

  .sidebar {
    position: fixed; left: 0; top: 0; z-index: 60;
    transform: translateX(-100%); transition: transform .22s ease;
    box-shadow: 0 0 60px rgba(38,64,58,.3);
  }
  .sidebar.open { transform: translateX(0); }
  .mobile-menu-btn {
    display: grid; place-items: center; width: 40px; height: 40px;
    border: 0.5px solid var(--border); border-radius: var(--radius-sm);
    background: var(--surface); cursor: pointer; color: var(--text);
  }
  .scrim {
    position: fixed; inset: 0; background: rgba(38,64,58,.4); z-index: 55;
    display: none;
  }
  .scrim.open { display: block; }
  .content { padding: 22px 18px 54px; }
  .topbar { padding: 10px 16px; }
  .topbar .page-title { font-size: 20px; }
}

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