/*
 * ARA design tokens — single source of truth.
 *
 * Edit the variables here to retheme the entire app.
 * The companion file lib/theme.ts mirrors these for inline-style usage.
 */

:root {
    /* Brand */
    --ara-accent: #f6de84;
    --ara-accent-soft: rgba(246, 222, 132, 0.9);
    --ara-accent-glow: rgb(250, 234, 177);

    /* Neutrals */
    --ara-bg: #09090b;
    --ara-surface: rgba(255, 255, 255, 0.04);
    --ara-surface-strong: rgba(255, 255, 255, 0.08);
    --ara-border: rgba(255, 255, 255, 0.1);

    /* Text */
    --ara-text: rgba(255, 255, 255, 0.8);
    --ara-text-strong: rgba(255, 255, 255, 0.95);
    --ara-text-muted: rgba(255, 255, 255, 0.55);
    --ara-text-on-accent: rgba(0, 0, 0, 0.9);

    /* Status */
    --ara-live: #dc2626;
    --ara-success: rgba(100, 220, 100, 0.85);
    --ara-error: rgba(245, 88, 88, 0.85);

    /* Type */
    --ara-font: "Sentient", -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;

    /* Radii */
    --ara-radius-sm: 8px;
    --ara-radius-md: 12px;
    --ara-radius-lg: 16px;
}
