/* PJ · Cap — design tokens (thème clair / sombre) */
:root{
  --bg:#f7f6f3; --surface:#ffffff; --surface2:#efeee9; --surface3:#e7e6e0;
  --text:#13110d; --text2:#56544e; --text3:#8a877f;
  --border:rgba(19,17,13,.10); --border2:rgba(19,17,13,.18);
  --green:#1a9d6e; --greenbg:#e6f4ee; --red:#d8453f; --redbg:#fbeae9;
  --amber:#d99100; --amberbg:#fbf0d9; --blue:#2f76cc; --bluebg:#e8f1fb;
  --violet:#5a4ab0; --gold:#c79a3a; --teal:#1f8a8a;
  --radius:12px; --mono:'SF Mono',ui-monospace,'JetBrains Mono',Menlo,Consolas,monospace;
  --shadow:0 1px 3px rgba(19,17,13,.05),0 8px 24px rgba(19,17,13,.04);
}
html[data-theme="dark"]{
  --bg:#141310; --surface:#1e1d18; --surface2:#26241d; --surface3:#302d24;
  --text:#f4f2ea; --text2:#c2bfb4; --text3:#8a877f;
  --border:rgba(255,255,255,.10); --border2:rgba(255,255,255,.18);
  --greenbg:#15241c; --redbg:#2a1715; --amberbg:#2a2310; --bluebg:#142233;
  --shadow:0 1px 3px rgba(0,0,0,.3),0 8px 24px rgba(0,0,0,.25);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;background:var(--bg);color:var(--text);line-height:1.5;-webkit-font-smoothing:antialiased}
button,input,select{font-family:inherit;color:inherit}
button{cursor:pointer}
.num{font-variant-numeric:tabular-nums}
.mono{font-family:var(--mono)}
.g{color:var(--green)} .r{color:var(--red)} .a{color:var(--amber)} .b{color:var(--blue)} .muted{color:var(--text3)}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}
