/* Pfad: css/vars.css */
/* * Branding Konzept - Technical Pilot
 * Strikt limitiertes Farbspektrum für maximale Rationalität und Kontrolle
 */

:root {
    /* Core Colors */
    --c-carbon: #111111;      /* Primärhintergrund */
    --c-cyan: #00A8A8;        /* Hauptakzent, Interaktionen */
    --c-cyan-light: #A3FFFF;  /* Mikro-Highlights, Hover */
    --c-mist: #C9D2D4;        /* Textfarbe, Linien */
    
    /* UI States & Alpha */
    --c-carbon-elevated: #1c1f22;
    --c-border: #2b2e31;
    --c-cyan-alpha: rgba(0, 168, 168, 0.15);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Transitions */
    --t-fast: 0.18s ease-out;
    --t-smooth: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}