/* ============================================================
   WALKELIA.COM — DESIGN TOKENS
   Clinical Blueprint system · The Architecture of Understanding
   Single source of truth. Load AFTER page stylesheets so these
   values win. Duplicate :root in homepage-white.css is retained
   as a fallback until Phase 3 cleanup.
   ============================================================ */

:root{
  /* Field */
  --bg:#FFFFFF;                       /* the page: white editorial field */
  --surface:#FAF8F3;                  /* the bench: warm ivory zones */
  --surface-deep:#F4F0E8;             /* pressed ivory: hover/active surfaces */

  /* Ink */
  --ink:#0B0E2A;
  --ink-2:#2A2F50;
  --ink-3:#6B6D7E;
  --ink-deep:#0B0E2A;                 /* dark-section background */
  --ink-deep-2:#080A1F;
  --on-dark:#F5F2EA;                  /* ivory text on dark */
  --on-dark-soft:rgba(245,242,234,.62);

  /* Signal & structure */
  --blue:#0033E5;                     /* structure: nodes, lines, grids, system */
  --blue-soft:rgba(0,51,229,.12);
  --coral:#FF3D2E;                    /* signal: decision, emphasis, pulse */
  --coral-soft:rgba(255,61,46,.10);

  /* Rules & grid */
  --rule:#0B0E2A;
  --rule-soft:rgba(11,14,42,.16);
  --rule-faint:rgba(11,14,42,.08);
  --grid-line:rgba(0,51,229,.05);     /* blueprint grid */

  /* Type */
  --serif:'DM Serif Display', Georgia, serif;
  --sans:'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:'JetBrains Mono', ui-monospace, SFMono-Regular, Consolas, monospace;
  --script:'Caveat', cursive;

  /* Motion */
  --ease:cubic-bezier(.22,.86,.16,1);
  --t-fast:.22s;
  --t-base:.45s;
  --t-slow:.85s;

  /* Layout */
  --container:1480px;
  --gutter:clamp(20px, 4vw, 56px);
}
