/* theme.css — RAMPF AI V2.0 Design Tokens */
:root {
    /* Colors — RAMPF AI's signature navy + red accent */
    --rampf-ai-950: #070b14;
    --rampf-ai-900: #0a101d;
    --rampf-ai-850: #0e1525;
    --rampf-ai-800: #111a2e;
    --rampf-ai-700: #182440;
    --rampf-ai-600: #1f3055;
    
    /* RAMPF Red Accent Scale (mapped to --teal-* for compatibility) */
    --teal-950: #2a0a10;
    --teal-900: #3d0f18;
    --teal-800: #8b1228;
    --teal-700: #bf1535;
    --teal-600: #b81c2e;
    --teal-500: #d0203a;
    --teal-400: #e63e55;
    --teal-300: #ef7085;
    --teal-200: #f5a3b0;
    --teal-100: #fad5db;
    
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --success: #48bb78;
    --warning: #ecc94b;
    --error: #f56565;
    --info: #4299e1;
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'SF Mono', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
    
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 0.9375rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    
    /* Border radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-teal: 0 0 20px rgba(204, 0, 51, 0.2);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
}

/* Light theme override */
[data-theme="light"] {
    --rampf-ai-950: #ffffff;
    --rampf-ai-900: #f8fafc;
    --rampf-ai-850: #f1f5f9;
    --rampf-ai-800: #e2e8f0;
    --rampf-ai-700: #cbd5e1;
    --rampf-ai-600: #94a3b8;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
}

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

body {
    font-family: var(--font-sans);
    background: var(--rampf-ai-950);
    color: var(--text-primary);
    height: 100vh;
    overflow: hidden;
    line-height: 1.6;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--rampf-ai-950);
}

::-webkit-scrollbar-thumb {
    background: var(--rampf-ai-600);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--teal-700);
}

/* Selection */
::selection {
    background: var(--teal-800);
    color: white;
}
