/**
 * Aphasia Studio — Fleet Design Tokens
 *
 * Single source of truth for the action-color language used across ALL
 * exercise widgets (NEXT-UP fleet polish item 5):
 *
 *   BLUE  = "where to READ / LOOK"  (passages, prompts, directive instructions)
 *   GREEN = "CLICK HERE"            (primary actions, advance, submit, steppers)
 *   AMBER = "HELP lives here"       (hint buttons, hint boxes, scaffolds)
 *
 * Values were unified from the existing fleet: math/clock green action
 * surfaces, math directive-blue instruction band, and the fleet amber
 * hint family. Widget-local custom properties (--mp-*, --cp-*, --cal-*)
 * should migrate to reference these as files get touched.
 *
 * Loaded as a dependency of universal-header.css + shared-components.css,
 * so it precedes every widget stylesheet that uses the variables.
 */

:root {
    /* ---- READ / LOOK (soft blue) ---- */
    --as-read-bg: #eff6ff;
    --as-read-border: #dbeafe;
    --as-read-border-strong: #bfdbfe;
    --as-read-text: #1e40af;
    --as-read-accent: #2563eb;

    /* ---- ACTION / CLICK HERE (green) ---- */
    --as-action-bg: #ecfdf5;
    --as-action-bg-strong: #d1fae5;
    --as-action-border: #10b981;
    --as-action-text: #047857;
    --as-action-deep: #15803d;

    /* ---- HINT / HELP (amber) ---- */
    --as-hint-bg: #fef3c7;
    --as-hint-bg-soft: #fffbeb;
    --as-hint-border: #ca8a04;
    --as-hint-text: #92400e;
    --as-hint-solid: #b45309;

    /* ---- FEEDBACK ---- */
    --as-success: #16a34a;
    --as-success-bg: #f0fdf4;
    --as-danger: #dc2626;
    --as-danger-bg: #fef2f2;

    /* ---- NEUTRALS ---- */
    --as-text: #1f2937;
    --as-text-muted: #64748b;
    --as-border: #e5e7eb;
    --as-surface: #ffffff;
    --as-surface-soft: #f8fafc;

    /* ---- PROGRESS PIPS (shared nav) ---- */
    --as-pip-idle: #e2e8f0;
    --as-pip-current: #2563eb;
    --as-pip-correct: #22c55e;
    --as-pip-wrong: #f87171;
}
