/* ============================================================
   NOVERE Capital — Design Tokens (SINGLE SOURCE OF TRUTH)
   Link this file in every page BEFORE the page's own <style>.
   Do not redeclare these tokens inline. Edit values only here.
   Light = :root  |  Dark = [data-theme="dark"]
   Theme is toggled by setting data-theme="dark" on <html>
   (persisted in localStorage key "novere-theme").
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-warm: #f7f4ef;
  --bg-panel: #faf8f5;
  --bg-card: #ffffff;
  --ink: #0c0c0c;
  --ink-2: #1a1a1a;
  --ink-mute: #0c0c0c;
  --ink-faint: #0c0c0c;
  --rule: #ece8e1;
  --orange: #D87614;
  --orange2: #D87614;
  --orange-soft: #ffeccc;
  --orange-deep: #cc6f00;
  --surface-strong: #0c0c0c;
  --on-strong: #ffffff;
  --up: #0a7f3f;
  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #0c0c0c;
  --bg-warm: #141414;
  --bg-panel: #161616;
  --bg-card: #1c1c1c;
  --ink: #f3f0ea;
  --ink-2: #d8d4cc;
  --ink-mute: #f3f0ea;
  --ink-faint: #f3f0ea;
  --rule: #2a2a2a;
  --orange: #FF8C00;
  --orange2: #D87614;
  --orange-soft: #3a2a16;
  --orange-deep: #ffb155;
  --surface-strong: #1c1c1c;
  --on-strong: #f3f0ea;
  --up: #34b06d;
  color-scheme: dark;
}

/* orange always reads on permanently-dark surfaces */
.utility, .panel-dark, .bigstat.dark, footer { --orange: #FF8C00; }
[data-theme="dark"] { --header-bg: rgba(12,12,12,0.82); }
