/* shared/css/ipk-tokens.css
 * InfoPeak brand tokens - loaded before style.css on every page.
 * Use var(--ipk-*) in product CSS instead of hardcoded hex values.
 */

:root {
    /* Brand palette */
    --ipk-violet:        #7C3AED;
    --ipk-dark:          #3B0764;
    --ipk-gradient:      135deg, #3B0764, #7C3AED;

    /* Semantic aliases */
    --ipk-primary:       var(--ipk-violet);
    --ipk-primary-dark:  var(--ipk-dark);

    /* Neutral */
    --ipk-text:          #061a40;
    --ipk-text-muted:    #64748b;
    --ipk-border:        #e2e8f0;
    --ipk-surface:       #ffffff;
    --ipk-surface-alt:   #f8fafc;

    /* Status */
    --ipk-success:       #10b981;
    --ipk-error:         #ef4444;
    --ipk-warning:       #f59e0b;
    --ipk-info:          #0353a4;
}
