/* === Nevsky IP Scan — Design Tokens === */
/* Source of truth: /claim/index.html (reference design) */

* { margin: 0; padding: 0; box-sizing: border-box }

:root {
    /* Backgrounds */
    --bg: #0f1118;
    --bg2: #161922;
    --card: #1a1d2b;

    /* Accent */
    --accent: #c41e1e;
    --accent-dark: #9b1617;
    --accent-glow: rgba(196, 30, 30, 0.15);
    --accent-border: rgba(196, 30, 30, 0.3);

    /* Text */
    --text: #f0f0f5;
    --text2: #a4a3a8;
    --text3: #64647a;

    /* Risk levels */
    --risk-critical: #E53E3E;
    --risk-high: #ED8936;
    --risk-medium: #ECC94B;
    --risk-low: #48BB78;
    --risk-ok: #38B2AC;

    /* Status */
    --status-missing: #E53E3E;
    --status-weak: #ED8936;
    --status-present: #48BB78;

    /* UI */
    --border: #2d2d44;
    --radius: 12px;
    --radius-sm: 8px;

    /* Typography */
    --font: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', 'Manrope', sans-serif;

    /* Motion */
    --transition: 0.3s ease;
}

/* Light theme */
[data-theme="light"] {
    --bg: #f5f5f7;
    --bg2: #ffffff;
    --card: #f0f0f3;

    --accent: #9b1617;
    --accent-dark: #7a1112;
    --accent-glow: rgba(155, 22, 23, 0.12);
    --accent-border: rgba(155, 22, 23, 0.25);

    --text: #1a1a2e;
    --text2: #555570;
    --text3: #8888a0;

    --border: #d8d8e0;
}
