/* ── Tokens design system — partagés entre toutes les pages ── */
:root {
  --blue:      #018ffa;
  --blue-dk:   #0075d1;
  --blue-50:   #e8f4ff;
  --blue-100:  #bfdfff;
  --gold:      #feb019;
  --navy:      #0f172a;
  --text:      #013A6B;
  --text-2:    #374151;
  --text-3:    #64748b;
  --text-4:    #94a3b8;
  --bg:        #f1f5f9;
  --surface:   #ffffff;
  --border:    #e2e8f0;
  --border-lt: #e1e7ee; /*#f1f5f9;*/
  --r:         12px;
  --r-sm:      8px;
  --sh-sm:     0 2px 6px rgba(0,0,0,.07);
  --sh:        0 4px 12px rgba(0,0,0,.09);
  --tr:        .18s cubic-bezier(.4,0,.2,1);
}
body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
