/* ARIGEN Global Design Tokens */
:root {
    /* Brand Colors */
    --arigen-blue: #0096B4;
    --arigen-cyan: #00DCFA;
    --arigen-orange: #F58A00;
    --arigen-orange-hover: #FF8A00;

    /* Theme - Light (Default) */
    --bg-base: #F8FAFC;
    --bg-surface: #FFFFFF;
    --bg-elevated: #F1F5F9;
    --border-strict: #E2E8F0;
    --text-primary: #334155;
    --text-secondary: #64748B;
    --text-success: #10B981;
    --text-error: #EF4444;
    --text-info: #0EA5E9;
    --shadow-color: rgba(51, 65, 85, 0.08);

    /* Typography */
    --font-display: 'Gotham', 'Inter', sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Spacing & Misc */
    --header-height: 70px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --transition-fast: 0.2s ease;
}

/* Theme - Dark Overlay */
[data-theme="dark"] {
    --bg-base: #0F172A;
    --bg-surface: #1E293B;
    --bg-elevated: #334155;
    --border-strict: #475569;
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-success: #34D399;
    --text-error: #F87171;
    --text-info: #38BDF8;
    --shadow-color: rgba(0, 0, 0, 0.5);
}
