:root {
    --strapped-gray: #161616;
    --strapped-blue: #0e58a7;
    --strapped-blue-dark: #0a417b;
    
    --primary-gradient: linear-gradient(135deg, #0e58a7 0%, #0a417b 100%);
    --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
}

/* Dark Mode */
[data-theme="dark"] {
    --bg: #1a1a2e;
    --ink: #e8eaed;
    --sub: #9ca3af;
    --line: #404050;
    --ring: #505060;
    --accent: #667eea;
    --accent-dark: #764ba2;
    --ok: #10b981;
    --warn: #ef4444;
    --radius: 12px;
    --soft: 0 4px 12px rgba(102, 126, 234, 0.12);
    --soft-lg: 0 8px 24px rgba(102, 126, 234, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}