/* CyberTools design tokens */

:root {
    --brand-dark: #0d1117;
    --brand-blue: #58a6ff;
    --brand-blue-strong: #1f6feb;
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 8px;
    --sidebar-width: 280px;
    --topnav-height: 64px;
    --trust-banner-height: 38px;
    --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.28);
    --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

:root[data-theme='dark'],
:root:not([data-theme]) {
    --bg: #0d1117;
    --bg-subtle: #010409;
    --surface: #161b22;
    --surface-2: #21262d;
    --surface-3: #30363d;
    --border: #30363d;
    --border-strong: #58a6ff;
    --text: #e6edf3;
    --text-muted: #8b949e;
    --text-soft: #c9d1d9;
    --accent: #58a6ff;
    --accent-2: #79c0ff;
    --accent-muted: rgba(88, 166, 255, 0.14);
    --warning: #d29922;
    --danger: #f85149;
    --success: #3fb950;
}

:root[data-theme='light'] {
    --bg: #ffffff;
    --bg-subtle: #f6f8fa;
    --surface: #ffffff;
    --surface-2: #f6f8fa;
    --surface-3: #eaeef2;
    --border: #d0d7de;
    --border-strong: #0969da;
    --text: #24292f;
    --text-muted: #57606a;
    --text-soft: #24292f;
    --accent: #0969da;
    --accent-2: #0550ae;
    --accent-muted: rgba(9, 105, 218, 0.1);
    --warning: #9a6500;
    --danger: #c62a3a;
    --success: #107c48;
}
