/* Design tokens — ported verbatim from the Wise Command Deck artifact's
   :root blocks (index.html). Do not hand-edit values here without also
   updating the artifact if it's still the design reference; see PLAN.md §6. */
:root{
  --bg:#F7F5F1; --surface:#FFFFFF; --surface-2:#F1EFE9; --surface-hover:#EAE7DF;
  --border:#E4E0D6; --border-strong:#D4CFC0;
  --text:#211E18; --text-muted:#6F6A5C; --text-faint:#9C9686;
  --accent:#C8791F; --accent-hover:#AD6414; --accent-soft:#FBEBD6; --accent-ink:#7A4A12;
  --accent-2:#2F6F62; --accent-2-soft:#E2EFEB;
  --good:#2F7D4F; --good-soft:#E4F3E8;
  --warn:#B8790A; --warn-soft:#FCEFD8;
  --critical:#BC3B30; --critical-soft:#FBE7E4;
  --info:#3D6FB4; --info-soft:#E7EEF8;
  --violet:#6C579C; --violet-soft:#ECE7F5;
  --muted:#9C9686;
  --shadow-sm:0 1px 2px rgba(38,32,15,.05);
  --shadow:0 1px 2px rgba(38,32,15,.04), 0 12px 28px -16px rgba(38,32,15,.18);
  --shadow-lg:0 24px 56px -20px rgba(38,32,15,.38);
  --radius-sm:8px; --radius:12px; --radius-lg:18px;
  --font-display:'Lexend',system-ui,sans-serif;
  --font-body:'Public Sans',system-ui,-apple-system,sans-serif;
  --font-mono:'JetBrains Mono',ui-monospace,'SFMono-Regular',monospace;
  --sidebar-bg:#181510; --sidebar-bg-2:#1F1B14; --sidebar-border:#2C271D;
  --sidebar-text:#E9E4D8; --sidebar-text-muted:#A69E8C; --sidebar-active:#2A2419;
}
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --bg:#15130F; --surface:#1D1A14; --surface-2:#242019; --surface-hover:#2B261D;
    --border:#332D22; --border-strong:#423A2B;
    --text:#F1EDE2; --text-muted:#B0A891; --text-faint:#7C7460;
    --accent:#E8A245; --accent-hover:#F0B564; --accent-soft:#3B2C14; --accent-ink:#F5C989;
    --accent-2:#5FA391; --accent-2-soft:#1B322D;
    --good:#5FBD84; --good-soft:#16301F;
    --warn:#E3AC3E; --warn-soft:#3A2C0F;
    --critical:#E5766A; --critical-soft:#3B1D19;
    --info:#7FA8DE; --info-soft:#1B2A3E;
    --violet:#AE97D9; --violet-soft:#2A2440; --muted:#7C7460;
    --shadow-sm:0 1px 2px rgba(0,0,0,.3);
    --shadow:0 1px 2px rgba(0,0,0,.3), 0 16px 34px -18px rgba(0,0,0,.6);
    --shadow-lg:0 26px 60px -20px rgba(0,0,0,.7);
    --sidebar-bg:#0E0C09; --sidebar-bg-2:#131110; --sidebar-border:#242019;
    --sidebar-text:#EDE8DB; --sidebar-text-muted:#948C78; --sidebar-active:#1E1B14;
  }
}
:root[data-theme="dark"]{
  --bg:#15130F; --surface:#1D1A14; --surface-2:#242019; --surface-hover:#2B261D;
  --border:#332D22; --border-strong:#423A2B;
  --text:#F1EDE2; --text-muted:#B0A891; --text-faint:#7C7460;
  --accent:#E8A245; --accent-hover:#F0B564; --accent-soft:#3B2C14; --accent-ink:#F5C989;
  --accent-2:#5FA391; --accent-2-soft:#1B322D;
  --good:#5FBD84; --good-soft:#16301F;
  --warn:#E3AC3E; --warn-soft:#3A2C0F;
  --critical:#E5766A; --critical-soft:#3B1D19;
  --info:#7FA8DE; --info-soft:#1B2A3E;
  --violet:#AE97D9; --violet-soft:#2A2440; --muted:#7C7460;
  --shadow-sm:0 1px 2px rgba(0,0,0,.3);
  --shadow:0 1px 2px rgba(0,0,0,.3), 0 16px 34px -18px rgba(0,0,0,.6);
  --shadow-lg:0 26px 60px -20px rgba(0,0,0,.7);
  --sidebar-bg:#0E0C09; --sidebar-bg-2:#131110; --sidebar-border:#242019;
  --sidebar-text:#EDE8DB; --sidebar-text-muted:#948C78; --sidebar-active:#1E1B14;
}
