/* tokens.css · Builderhood Blvd
   The 52 brand tokens are declared by kit/reference.css :root (vendored, untouched) and are identical to
   design.fundamental.fans (repo map §5a, verified 18 Sept 2026). This file only ADDS:
   1) declared fallbacks for the 27 custom properties reference.css consumes but never declares
      (a missing var is a silent recolour), and 2) the few site-level aliases the shell uses.
   Never redefine a brand token here; override in kit/overrides.css if a site rule truly differs. */
:root{
  /* fallbacks for vars reference.css uses without declaring */
  --pc-m: var(--teal);            /* postcard margin colour; the Garden sets it per card to the card's accent */
  --status-ink: var(--ink-md);    /* set by markup on .status-window[data-state] */
  --status-paper: #e8eae5;
  --column-ink: var(--ink-md);
  --button-color: var(--teal);
  --ix-ink: var(--ink);
  --ix-paper: var(--card);
  --ix-origin: 50% 50%;
  --ix-tilt: 0deg;
  --paper-tilt: 0deg;
  --placed-tilt: 0deg;
  --curl-angle: 180deg;
  --curl-depth: 0px;
  --curl-radius: 0px;
  --shadow-radius: 0px;
  --shadow-tilt: 0deg;
  --peek-shift: 0px;
  --entry-delay: 0ms;
  --entry-from: 0px;
  --rule-offset: 0px;
  --row-pencil: var(--ink-lt);
  --row-tone: var(--card);
  --sample-ink: var(--ink);
  --sample-top: var(--card);
  --sample-bottom: var(--page);
  --chart-width: 100%;
  --cue-width: 0%;
  /* site aliases */
  --blvd-ground: var(--page);     /* the warm surround the page card sits on */
  --blvd-paper: var(--card);      /* the page card */
  --blvd-accent: var(--teal);
  --blvd-radius: 12px;            /* 9 to 14 px is the lock */
}
/* the six Power-Up Principle colours as the design site prints them (design-system-site/index.html L1378-1383) */
:root{ --pu-fun:#E98817; --pu-simple:#E2C90F; --pu-clear:#88C339; --pu-true:#509DA7; --pu-inspiring:#4788DD; --pu-unifying:#7A4380; }
