/* SANU — design tokens (clair par défaut, sombre via [data-theme="sombre"]) */
:root, [data-theme="clair"] {
  --bg: #f4f6f8;
  --bg2: #eaeef1;
  --card: #ffffff;
  --card2: #f7f9fb;
  --text: #18222b;
  --text-soft: #43525e;
  --muted: #8696a3;
  --border: #e2e8ee;
  --primary: #1f8a4c;
  --primary-d: #156b3a;
  --primary-soft: #e3f4ea;
  --accent: #d4a017;        /* or / cauri */
  --success: #1f8a4c;
  --danger: #d64545;
  --warning: #e08a1e;
  --shadow: 0 1px 2px rgba(20,30,40,.06), 0 6px 20px rgba(20,30,40,.06);
  --radius: 14px;
}
[data-theme="sombre"] {
  --bg: #0f161c;
  --bg2: #0b1116;
  --card: #18222b;
  --card2: #1f2b35;
  --text: #eaf0f4;
  --text-soft: #b3c0cb;
  --muted: #7f8e9a;
  --border: #273442;
  --primary: #2fae62;
  --primary-d: #248a4d;
  --primary-soft: #143024;
  --accent: #e6b32e;
  --success: #2fae62;
  --danger: #e26a6a;
  --warning: #e6a23c;
  --shadow: 0 1px 2px rgba(0,0,0,.3), 0 8px 24px rgba(0,0,0,.35);
  --radius: 14px;
}
