/* ============================================================
   Cosous — design tokens. SINGLE SOURCE OF TRUTH.

   Everything that renders Cosous branding pulls from here:
     src/assets/base.css      @imports it (help + legal pages)
     src/index.html           links it (landing page)
     src/404.html             links it
     app/src/styles.css       @imports it (the web app bundle)

   Two places deliberately keep their own inline copy:

     the pages under src/auth/ — these are what people land on from
       a confirmation email, often on a flaky mobile connection, and
       they must render even if a stylesheet request fails. The
       duplication buys reliability; it is not an oversight.

     extension/public/popup.css — a separate, unbundled artifact
       loaded from the extension package, with no access to this file.

   If you change a value here, update those two by hand.
   ============================================================ */

:root {
  --primary: #E8852B;
  --primary-soft: #F6E2C8;
  --accent: #E8852B;
  --ink: #2A2622;
  --muted: #7A736B;
  --bg: #F5F1E8;
  --card: #FFFFFF;
  --line: #E7E0D3;
  --radius: 20px;
  --shadow: 0 24px 50px rgba(42, 38, 34, .08);
}
