/* tokens.css — Única fuente de verdad: paleta, tipografías y medidas. */
:root{
  /* paleta — tinta oscura y cálida */
  --bg:#0c0c0e;
  --bg-soft:#121215;
  --ink:#e9e6df;
  --ink-soft:#b6b2a8;
  --mut:#7b776f;
  --line:#242329;          /* hairline */
  --line-strong:#3a3942;
  --accent:#c7a44e;        /* por defecto; cada mundo lo sobreescribe en runtime */

  /* tipografías */
  --serif:"Charter","Iowan Old Style","Palatino Linotype",Georgia,"Times New Roman",serif;
  --sans:-apple-system,BlinkMacSystemFont,"Helvetica Neue","Segoe UI",Arial,sans-serif;
  --mono:ui-monospace,"SF Mono",Menlo,Consolas,monospace;

  /* medidas */
  --col-nav:240px;
  --col-feed:620px;
  --col-panel:300px;
  --pad:20px;
}
