/* ==========================================================================
   HAIKS MODERN RAW - SSoT Central Style Sheet 
   Brand: HAIKS AI-Powered Software Lab
   Version: 2.0 (Production Ready)
   ========================================================================== 
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

:root {
    /* Core Palette - Modern Raw */
    --color-bg-obsidian: #0A0B1E;      /* Głęboka czerń laboratoryjna */
    --color-bg-navy: #001F3F;          /* HAIKS Navy */
    --color-accent-cyan: #00F2FF;      /* Electric Cyan */
    --color-accent-purple: #8A2BE2;    /* Deep Purple */
    --color-accent-mint: #2EC4B6;      /* Modern Mint (zapasowy akcent) */
    
    /* Typography & UI */
    --color-text-main: #E0E0E6;
    --color-text-muted: #888888;
    --color-glass-border: rgba(255, 255, 255, 0.1);
    --color-glass-bg: rgba(255, 255, 255, 0.03);
}

/* --------------------------------------------------------------------------
   BASE RESET & TYPOGRAPHY
   -------------------------------------------------------------------------- */
body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--color-bg-obsidian); 
    color: var(--color-text-main); 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* --------------------------------------------------------------------------
   TEXT EFFECTS & GRADIENTS
   -------------------------------------------------------------------------- */
.text-gradient {
    background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.link-cyan {
    color: var(--color-accent-cyan);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
.link-cyan:hover {
    color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   GLASSMORPHISM & CARDS
   -------------------------------------------------------------------------- */
.glass-panel { 
    background: var(--color-glass-bg); 
    border: 1px