/* ============================================================================
   UNIQ design tokens — ported from Uni.CRM. Light theme is the default here.
   ============================================================================ */

:root,
.uniq-dark {
    --uniq-bg: #060a14;
    --uniq-surface: #0a1220;
    --uniq-surface2: #0f1a2c;
    --uniq-surface3: #162238;
    --uniq-line: rgba(170, 195, 230, 0.08);
    --uniq-line-strong: rgba(170, 195, 230, 0.16);
    --uniq-text: #e6ecf5;
    --uniq-text-dim: #8a97ad;
    --uniq-text-mute: #5d6a80;
    --uniq-accent: #2f7ccb;
    --uniq-accent-soft: rgba(47, 124, 203, 0.16);
    --uniq-accent-line: rgba(47, 124, 203, 0.38);
    --uniq-brand: #e8413d;
    --uniq-brand-soft: rgba(232, 65, 61, 0.14);
    --uniq-brand-line: rgba(232, 65, 61, 0.38);
    --uniq-ok: #5fa98c;
    --uniq-warn: #d8a860;
    --uniq-bad: #e8413d;
    --uniq-info: #6b9bc4;
}

.uniq-light {
    --uniq-bg: #f2f5fa;
    --uniq-surface: #ffffff;
    --uniq-surface2: #f6f9fd;
    --uniq-surface3: #ebf0f7;
    --uniq-line: rgba(0, 71, 155, 0.10);
    --uniq-line-strong: rgba(0, 71, 155, 0.22);
    --uniq-text: #0b1a30;
    --uniq-text-dim: #4d6075;
    --uniq-text-mute: #8293a8;
    --uniq-accent: #00479b;
    --uniq-accent-soft: rgba(0, 71, 155, 0.08);
    --uniq-accent-line: rgba(0, 71, 155, 0.28);
    --uniq-brand: #db0d08;
    --uniq-brand-soft: rgba(219, 13, 8, 0.08);
    --uniq-brand-line: rgba(219, 13, 8, 0.30);
    --uniq-ok: #1f7a48;
    --uniq-warn: #8a5a10;
    --uniq-bad: #db0d08;
    --uniq-info: #2e6494;
}

/* Typography utilities */
.uniq-sans { font-family: 'Inter', 'Geist', system-ui, sans-serif; }
.uniq-mono { font-family: 'JetBrains Mono', 'Geist Mono', ui-monospace, monospace; font-variant-numeric: tabular-nums; }
.uniq-caps { letter-spacing: .06em; text-transform: uppercase; }
.uniq-mute { color: var(--uniq-text-mute); }
.uniq-num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
