/* ============================================================
   SHARED DESIGN TOKENS — Parallel Media + quantmarketing
   Single source of truth for palette, type, and base primitives.
   Copied identically into both repos (separate Vercel projects);
   keep in sync. Components stay per-site.
   ============================================================ */
:root{
  --bg:#0a0a0a;--bg2:#121212;--card:#161616;--fg:#f5f5f5;--muted:#8a8a8a;--dim:#5a5a5a;--line:#242424;
  --accent:#d4ff00;--accentd:#7a9400;--good:#9be35a;--warn:#ffd24a;--bad:#ff6a55;--blue:#5ab0ff;--purple:#b98cff;
  --mono:'JetBrains Mono',ui-monospace,monospace;--sans:'Inter',system-ui,sans-serif;--serif:'Instrument Serif',Georgia,serif;
  /* legacy aliases for sub-page inline styles */
  --accent-dim:#7a9400;--warm:#d4ff00;--warm-dim:#7a9400;--bg-elev:#161616;--line-soft:#1a1a1a;
}
*{box-sizing:border-box;margin:0;padding:0}
html,body{overflow-x:hidden}
body{background:var(--bg);color:var(--fg);font-family:var(--sans);line-height:1.5;-webkit-font-smoothing:antialiased}
a{color:inherit;text-decoration:none}
.wrap{max-width:1180px;margin:0 auto;padding:0 24px}
.wrap.wide{max-width:1180px}
.mono{font-family:var(--mono)}
.serif{font-family:var(--serif)}
.accent{color:var(--accent)}
