/* Shared design tokens for every standard Lia page — the marketing site
   (landing/pricing/about/privacidade, via site.css) and the app pages
   (login/invite/signup/admin). Single source of truth for the brand palette so
   a colour change happens in ONE place instead of being copy-pasted into every
   page's :root.

   Linked FIRST, before each page's own <style>/stylesheet — which may still add
   page-specific tokens (--bg, --card, --info, --shadow, ...) or override a value
   (its later :root wins the cascade).

   NOTE: super-admin.html deliberately keeps its own darker operator-console
   palette (--ink:#101815, --body:#3f4d47, ...) and does NOT use this file.

   Served from /assets with `maxAge: 7d` — bump the `?v=` on every <link> to this
   file whenever you change a value here, or browsers keep the old palette. */
:root {
  --green: #16b364;
  --green-600: #10a056;
  --green-700: #0c8a49;
  --green-soft: #e7f7ee;
  --green-tint: #f3faf5;
  /* alias: pricing/signup/admin call the same colour `--tint` */
  --tint: #f3faf5;
  --ink: #0c1a12;
  --body: #41514a;
  --muted: #7b8a82;
  --line: #e5ede8;
  --danger: #e5575b;
  --amber: #e8930c;
  --shadow-sm: 0 1px 2px rgba(13,40,26,.06);
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
