 *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box;}
            
            :root {
                --blue-main: #2EA3F2;
                --bg: #3A3A3A;
                --grid-dot: #1c2830;
                --header-bg: #252525;
                --footer-bg: #252525;
                --border: rgba(47, 196, 245, 0.18);
            }

            html, body {
                width: 100%;
                height: 100%;
                background: var(--bg);
                font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
                color: var(--blue-main);
                scroll-behavior: smooth;
                font-size: 1.25rem;
            }
    
            #bg {
                position: fixed;
                inset: 0;
                width: 100%;
                height: 100%;
                display: block;
                z-index: 0;
            }
        
            #shell {
                display: flex;
                flex-direction: column;
                min-height: 100vh;
                z-index: 10;
                
            }
        
            header {
                pointer-events: all;
                position: sticky;
                top: 0;
                z-index: 20;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0 5%;
                height: 160px;
                background: var(--header-bg);
                border-bottom: 1px solid var(--border);
                backdrop-filter: blur(8px);
                -webkit-backdrop-filter: blur(8px);
                flex-shrink: 0;
            }
            
            .logo {
                font-size: 1.75rem;
                font-weight: 700;
                letter-spacing: 0.3em;
                text-transform: uppercase;
                color: var(--blue-main);
                text-shadow: 0 0 18px rgba(47,196,245,0.4);
            }
        
            img.header-logo {
                height: 120px;
            }

            .logo span {
                color: rgba(47,196,245,0.4);
                font-weight: 400;
            }
        
            nav {
                display: flex;
                gap: 2rem;
                align-items: center;
            }
        
            nav a {
                font-size: 1.75rem;
                letter-spacing: 0.2em;
                text-transform: uppercase;
                color: #03a9f5;
                text-decoration: none;
                transition: color 0.2s;
                position: relative;
            }
        
            nav a::after {
                content: '';
                position: absolute;
                left: 0; bottom: -4px;
                width: 0; height: 1px;
                background: var(--blue-main);
                transition: width 0.2s;
            }
        
            nav a:hover { 
                color: var(--blue-main); 
            }
            nav a:hover::after { 
                width: 100%; 
            }
        
            main {
                text-align: center;
                flex: 1;
                pointer-events: all;
            }
        
            footer {
                pointer-events: all;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0 5%;
                height: 100px;
                background: var(--footer-bg);
                border-top: 1px solid var(--border);
                backdrop-filter: blur(8px);
                -webkit-backdrop-filter: blur(8px);
                flex-shrink: 0;
            }
        
            .contact-group {
                display: flex;
                gap: 2rem;
                align-items: center;
            }
        
            .contact-item {
                display: flex;
                align-items: center;
                gap: 0.5rem;
                font-size: 22pt;
                letter-spacing: 0.12em;
                color: #03a9f5;
                text-decoration: none;
                transition: color 0.2s;
            }
        
            .contact-item:hover { color: var(--blue-main); }
        
            .contact-item .icon {
                width: 12px;
                height: 12px;
                opacity: 0.6;
                flex-shrink: 0;
            }
        
            .contact-item:hover .icon { opacity: 1; }
        
            .footer-copy {
                font-size: 22pt;
                letter-spacing: 0.15em;
                color: #03a9f5;
                text-transform: uppercase;
                text-align: center;
            }

            .team-grid {
                display: grid; 
                grid-template-columns: repeat(3, 1fr); 
                gap: 1.5rem; 
                max-width: 1200px; 
                margin: 2rem auto; 
                padding: 0 5%;
            }
            @media (max-width: 760px) {
                
                .team-grid{
                    grid-template-columns: repeat(2, 1fr); 
                }
                html{
                    font-size: 10pt;
                }
                .logo, nav a{
                    font-size: 10pt;
                }
                .footer-copy, .contact-item {
                    font-size: 10pt;
                }
                
            }
            @media (max-width: 1305px) {
                html{
                    font-size: 10pt;
                }
                .logo, nav a{
                    font-size: 10pt;
                }
                .footer-copy, .contact-item {
                    font-size: 10pt;
                    justify-content: center;
                }
                footer {
                    flex-direction: column;
                    justify-content: center;
                    height: auto;
                    padding: 0.75rem 5%;
                    gap: 0.5rem;
                }
                .contact-group {
                    flex-direction: column;
                    gap: 10pt;
                }
                header {
                    height: 120px;
                }
                img.header-logo {
                    height: 50px;
                }
            }
            
            @media (max-width: 1760px) {
                .logo, nav a{
                    font-size: 16pt;
                }
                .footer-copy, .contact-item {
                    font-size: 16pt;
                }
            }