/* storetargeting — identity tokens.
   Direction 2a from the identity package: Sanzo Wada anchor, Chinese Blue ink on an Ivory Buff
   ground, Turquoise Green reserved for availability and CTAs, warm ramp for the bad news.
   Committed single (light) theme — the identity is a printed cream surface, so every colour is
   painted explicitly rather than inherited from the viewer's theme.
   Typefaces are self-hosted: no external font requests, which is also what the privacy page
   promises. */

@import url("/fonts/fonts.css");

:root{
  color-scheme:light;

  /* Wada anchor */
  --blue:#1E4E68;        /* Chinese Blue   · dominant: ink, headlines, mark ring   */
  --green:#00A28A;       /* Turquoise Green· accent: store dot, in-stock, CTAs     */
  --green-ink:#00867A;   /*                  text-size green on cream             */
  --green-deep:#06342C;
  --green-pale:#D9F0EA;
  --cream:#F1E7CE;       /* Ivory Buff     · ground                                */
  --olive:#6B7A6E;       /* Slate Olive    · secondary text, borders, muted data   */
  --brick:#A03A2A;       /* warm ramp      · out of stock, wasted spend            */
  --amber:#E0A857;
  --sand:#EFD9A8;

  /* roles used by the pages */
  --paper:var(--cream);
  --panel:#FBF6E9;
  --ink:#1B3A4B;
  --head:#163C52;
  --muted:#5E6E62;
  --line:#DFD5B8;
  --line-soft:#E8E0C9;
  --accent:var(--blue);
  --accent-ink:#F1E7CE;
  --on:var(--green-ink);
  --on-dot:var(--green);
  --off:var(--brick);
  --track:#E4DBC2;

  --radius:10px;
  --maxw:1000px;

  /* Space Grotesk sets headlines and the wordmark, Manrope the body, Plex Mono every figure. */
  --font-display:"Space Grotesk",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
  --font-sans:"Manrope",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  --font-mono:"IBM Plex Mono",ui-monospace,"SF Mono",Menlo,monospace;
}
