/*
 * pro.perty.id design tokens — THE single source of truth.
 *
 * Loaded two ways, because there are two kinds of head on this site:
 *  - wp_enqueue_style('propertyid-tokens') for theme/BuddyPress pages
 *    (the theme stylesheet depends on this handle);
 *  - a direct <link> in the plugin's hand-built shells (Router::shell(),
 *    the OAuth consent page), which never call wp_head().
 *
 * Print views (Avery/checklist/tags) intentionally keep their own
 * self-contained CSS — a printed page should not depend on anything.
 *
 * Change a color HERE, nowhere else.
 */
:root{
  --pid-ink:#17181a;
  --pid-muted:#6b7280;          /* neutral gray */
  --pid-line:#e4e4e7;
  --pid-accent:#dc2626;         /* red-600 */
  --pid-accent-ink:#b91c1c;     /* red-700 (hover) */
  --pid-accent-soft:#fee2e2;    /* red-100 tint */
  --pid-bg:#f4f4f5;             /* neutral zinc-100 */
  --pid-card:#ffffff;
  --pid-dark:#18181b;           /* neutral near-black */
  --pid-radius:16px;
  --pid-maxw:64rem;
}
