/* ============================================================
   DynaWorks — Shared design tokens
   Φορτώνεται ΠΡΙΝ από nav.css, the-engine.css και κάθε άλλο CSS.
   ============================================================ */

:root {
  /* Typography — matches the site's real fonts:
     'Space Grotesk' is used for all headings/display text (and was
     already the font used by the old navbar clock, just with a
     generic `monospace` fallback keyword instead of a real mono
     webfont — the site never loaded one). 'Inter' is the body font,
     loaded separately in base.njk and used via the `body` rule in
     style.css — not needed here since --dw-font-sans covers the
     heading-style elements these tokens are used for (logo, nav
     labels, engine title). */
  --dw-font-sans: "Space Grotesk", system-ui, sans-serif;
  --dw-font-mono: "Space Grotesk", ui-monospace, monospace;

  /* Brand palette — accent matches --primary in style.css */
  --dw-bg: #f5f1e8; /* matches --beige in style.css */
  --dw-ink: #1a1a1a;
  --dw-muted: #8a887f;
  --dw-accent: #ff6b35;
  --dw-line: #d6d3c7;
  --dw-success: #1d9e75;

  /* Panel */
  --dw-panel-bg: #1a1a1a;
  --dw-panel-fg: #efede6;
  --dw-panel-muted: #6b6961;
  --dw-panel-w: 420px;

  /* Motion */
  --dw-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}
