/**
 * tokens.css — YWD design tokens (colour, shadow, type). Theme-aware:
 * defaults are light; `@media (prefers-color-scheme: dark)` supplies dark;
 * the `:root[data-theme="…"]` blocks let the in-app toggle override the OS
 * preference in both directions. Style components through these tokens only.
 */
:root{
  --brand:#215C9B; --brand-dk:#163E6A;
  --accent:#15AEDF; --accent-dk:#0D7398; --accent-wash:#E6F7FC;
  --paper:#faf9f5; --ground:#E7EAEE; --surface:#FFFFFF; --surface-2:#F6F8FA;
  --ink:#131920; --ink-2:#39424E; --muted:#697787; --faint:#98A5B4;
  --line:#E1E6EC; --line-2:#EEF1F5;
  --ok:#178246; --ok-ink:#0F6B39; --ok-wash:#E7F6EE;
  --warn:#E39A16; --warn-ink:#8A5A02; --warn-wash:#FDF4E1;
  --crit:#C0362C; --crit-ink:#8E241C; --crit-wash:#FBECEA;
  --info:#164F72; --info-wash:#EAF2FB;
  --due:#6D4AB8; --due-ink:#4E2E93; --due-wash:#F0EBFB;
  --frame:#0A2038;
  --shadow:0 1px 2px rgba(16,32,54,.05), 0 6px 18px rgba(16,32,54,.07);
  --shadow-lg:0 12px 40px rgba(16,32,54,.20);
  --mono:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  --sans:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}
@media (prefers-color-scheme:dark){
  :root{
    --paper:#101E2B; --ground:#05090F; --surface:#182A39; --surface-2:#132330;
    --ink:#EAF0F6; --ink-2:#C4D0DB; --muted:#93A6B7; --faint:#5F7183;
    --line:#274056; --line-2:#1D3145;
    --accent:#3AC4EE; --accent-dk:#15AEDF; --accent-wash:#0E2E3C;
    --ok:#48BC7C; --ok-ink:#93E6B8; --ok-wash:#0F2C20;
    --warn:#ECB24A; --warn-ink:#F3D48C; --warn-wash:#2E2412;
    --crit:#E56D62; --crit-ink:#F4ABA3; --crit-wash:#301613;
    --info:#7BB0D4; --info-wash:#112738;
    --due:#A78BDE; --due-ink:#C9B4F0; --due-wash:#211A34;
    --frame:#02060B;
    --shadow:0 1px 2px rgba(0,0,0,.5), 0 8px 22px rgba(0,0,0,.45);
    --shadow-lg:0 16px 46px rgba(0,0,0,.65);
  }
}
:root[data-theme="light"]{ --paper:#faf9f5;--ground:#E7EAEE;--surface:#fff;--surface-2:#F6F8FA;--ink:#131920;--ink-2:#39424E;--muted:#697787;--faint:#98A5B4;--line:#E1E6EC;--line-2:#EEF1F5;--accent:#15AEDF;--accent-dk:#0D7398;--accent-wash:#E6F7FC;--ok:#178246;--ok-ink:#0F6B39;--ok-wash:#E7F6EE;--warn:#E39A16;--warn-ink:#8A5A02;--warn-wash:#FDF4E1;--crit:#C0362C;--crit-ink:#8E241C;--crit-wash:#FBECEA;--info:#164F72;--info-wash:#EAF2FB;--due:#6D4AB8;--due-ink:#4E2E93;--due-wash:#F0EBFB;--frame:#0A2038;--shadow:0 1px 2px rgba(16,32,54,.05),0 6px 18px rgba(16,32,54,.07);--shadow-lg:0 12px 40px rgba(16,32,54,.20);}
:root[data-theme="dark"]{ --paper:#101E2B;--ground:#05090F;--surface:#182A39;--surface-2:#132330;--ink:#EAF0F6;--ink-2:#C4D0DB;--muted:#93A6B7;--faint:#5F7183;--line:#274056;--line-2:#1D3145;--accent:#3AC4EE;--accent-dk:#15AEDF;--accent-wash:#0E2E3C;--ok:#48BC7C;--ok-ink:#93E6B8;--ok-wash:#0F2C20;--warn:#ECB24A;--warn-ink:#F3D48C;--warn-wash:#2E2412;--crit:#E56D62;--crit-ink:#F4ABA3;--crit-wash:#301613;--info:#7BB0D4;--info-wash:#112738;--due:#A78BDE;--due-ink:#C9B4F0;--due-wash:#211A34;--frame:#02060B;--shadow:0 1px 2px rgba(0,0,0,.5),0 8px 22px rgba(0,0,0,.45);--shadow-lg:0 16px 46px rgba(0,0,0,.65);}
