/* ========================================
   LOGIN PAGE STYLES (ORIGINAL)
   ======================================== */

        :root {
            --text-dark: #1a1a1a;
            --text-gray: #6b6b6b;
            --text-white: #ffffff;
            --text-light-gray: #8a8a8a;
            --button-gray: #4a5c67;
            --line-light-gray: #dfdddd;
            --border-gray: #e0e0e0;
            --bg-light: #f8f8f6;
            --bg-white: #f8fbf6;
            --bg-cream: #f5f5f2;
            --navy: #1c2b39;
            --icon-gray: #5a6a7a;
            --accent-gold: #c9a227;
            
            --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        /* LOADING SCREEN */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-white);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
        }
        
        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        
        .loader-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            animation: loaderPulse 2s var(--ease-smooth) infinite;
        }
        
        .loader-logo-box {
            font-family: 'Montserrat', sans-serif;
            border: 2px solid var(--text-dark);
            color: var(--text-dark);
            padding: 12px 10px;
            font-weight: 700;
            font-size: 1.75rem;
            letter-spacing: 0.05em;
            line-height: 1;
            position: relative;
            overflow: hidden;
        }
        
        .loader-logo-box::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(26, 26, 26, 0.08), transparent);
            animation: loaderShimmer 1.5s infinite;
        }
        
        .loader-logo-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.75rem;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            line-height: 1.3;
            font-weight: 500;
        }
        
        .loader-progress {
            margin-top: 40px;
            width: 120px;
            height: 2px;
            background: var(--border-gray);
            border-radius: 2px;
            overflow: hidden;
        }
        
        .loader-progress-bar {
            height: 100%;
            width: 0%;
            background: var(--text-dark);
            border-radius: 2px;
            transition: width 0.3s var(--ease-out-expo);
        }
        
        .loader-text {
            margin-top: 16px;
            font-family: 'Inter', sans-serif;
            font-size: 0.7rem;
            color: var(--text-light-gray);
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }
        
        @keyframes loaderPulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.02); opacity: 0.85; }
        }
        
        @keyframes loaderShimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        body.is-loading { overflow: hidden; }
        body.is-loading > *:not(.loading-screen) { opacity: 0; }
        body:not(.is-loading) > *:not(.loading-screen) {
            opacity: 1;
            transition: opacity 0.4s var(--ease-out-expo) 0.2s;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        section, header, footer, div { max-width: 100%; }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-white);
            color: var(--text-dark);
            line-height: 1.6;
            font-size: 16px;
            width: 100%;
            overflow-x: hidden;
            max-width: 100vw;
        }

        /* HEADER */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--bg-white);
            transition: box-shadow 0.3s var(--ease-smooth);
        }

        header.scrolled {
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
        }

        .header-inner {
            max-width: 100%;
            margin: 0 auto;
            padding: 12px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-box {
            font-family: 'Montserrat', sans-serif;
            border: 1.5px solid var(--text-dark);
            color: var(--text-dark);
            padding: 7px 5px;
            font-weight: 700;
            font-size: 1.25rem;
            letter-spacing: 0.05em;
            line-height: 1;
        }

        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.6rem;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            line-height: 1.3;
            font-weight: 500;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 0;
        }

        nav {
            display: flex;
            align-items: center;
        }

        nav a {
            font-family: 'Inter', sans-serif;
            text-decoration: none;
            color: var(--text-light-gray);
            font-size: .8rem;
            font-weight: 300;
            padding: 8px 20px;
            transition: color 0.2s;
        }

        nav a:hover { color: var(--text-dark); }
        nav a.active { font-weight: 600; color: var(--text-gray); }

        .nav-dots {
            display: flex;
            flex-wrap: wrap;
            width: 18px;
            gap: 4px;
            margin: 6px 0 7px 24px;
        }

        .nav-dots span {
            width: 2px;
            height: 2px;
            background: var(--line-light-gray);
            border-radius: 50%;
        }
        
        .nav-platform {
            padding-right: 40px;
            border-right: 1px solid var(--line-light-gray);
        }
        
        .nav-career { padding-left: 8px; }

	.hero-overlay {
            padding-bottom: 50px;
        }

        .btn-login {
            font-family: 'Inter', sans-serif;
            border: none;
            background: var(--button-gray);
            color: var(--text-white);
            padding: 2px 24px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 300;
            text-decoration: none;
            margin-left: 8px;
            transition: all 0.2s;
        }

        .btn-login:hover { background: var(--text-dark); color: #fff; }

        /* LEADERSHIP SECTION */
        .leadership-section {
            margin-top: 64px;
            padding: 60px 40px 100px;
            background: var(--bg-white);
        }

        .leadership-title {
            font-family: 'Inter', sans-serif;
            font-size: clamp(5rem, 12vw, 10rem);
            font-weight: 300;
            font-style: italic;
            color: var(--text-dark);
            text-align: center;
            line-height: 1;
            margin-bottom: 30px;
        }

        .leadership-divider {
            width: 100%;
            height: 1px;
            background: var(--border-gray);
            margin-bottom: 30px;
        }

        .leadership-tagline {
            font-family: 'Inter', sans-serif;
            font-size: clamp(1.25rem, 3vw, 2rem);
            font-weight: 200;
            color: var(--text-dark);
            line-height: 1.4;
            margin-bottom: 60px;
        }

        .leadership-tagline strong {
            font-weight: 700;
        }

        /* TEAM GRID */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .team-member {
            display: flex;
            flex-direction: column;
        }

        .team-member-photo {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
            border-radius: 4px;
            margin-bottom: 20px;
            border-radius: 16px 16px 0 0;
            border: 1px solid #d6d6d6;
        }

        .team-member-name {
            font-family: 'Inter', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: 0.02em;
            margin-bottom: 5px;
        }

        .team-member-title {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--text-gray);
        }

        /* SIDE TEXT */
        .side-text {
            position: absolute;
            right: 3rem;
            top: 5rem;
            transform: translateY(-50%) rotate(90deg);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.6rem;
            letter-spacing: 0.35em;
            color: var(--text-light-gray);
            text-transform: uppercase;
            transform-origin: center center;
            white-space: nowrap;
            z-index: 100;
        }
        
        .login-form {
            padding: 2rem 1.5rem;
            border-radius: 8px;
            display: inline-grid;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            background: var(--bg-cream);
            border: 1px solid var(--border-gray);
            border-radius: 4px;
            color: var(--color-white);
            font-family: var(--font-body);
            font-size: 0.95rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--color-gold);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-submit {
            width: 100%;
            padding: 1rem 2rem;
            background: var(--button-gray);
            color: var(--text-white);
            border: none;
            border-radius: 4px;
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s var(--transition-smooth);
        }

        .form-submit:hover {
            background: var(--navy);
            transform: translateY(-2px);
        }

        /* FOOTER */
        .footer {
            background: var(--bg-cream);
            color: var(--text-dark);
            padding: 60px 24px 24px;
        }

        .footer-container {
            width: 100%;
            max-width: 100%;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--border-gray);
        }

        .footer-tagline {
            font-size: 0.85rem;
            color: var(--text-gray);
            line-height: 1.7;
            max-width: 300px;
            margin-top: 10px;
        }

        .footer-col h4 {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            color: var(--text-light-gray);
        }

        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.75rem; }
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: var(--text-dark); }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
        }

        .footer-copyright {
            font-size: 0.8rem;
            color: var(--text-light-gray);
        }

        .footer-social { display: flex; gap: 1rem; }
        .footer-social a { color: var(--text-gray); transition: color 0.3s; }
        .footer-social a:hover { color: var(--text-dark); }
        .footer-social svg { width: 20px; height: 20px; }

        /* ANIMATIONS */
        [data-scroll], .team-member {
            will-change: transform, opacity, filter;
        }
        
        .visible { will-change: auto; }
        
        [data-scroll] {
            opacity: 0;
            transform: translateY(50px);
            filter: blur(8px);
            transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo), filter 0.8s var(--ease-out-expo);
        }

        [data-scroll].visible {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }

        .team-member {
            opacity: 0;
            transform: translateY(40px);
            filter: blur(6px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo), filter 0.6s var(--ease-out-expo);
        }

        .team-member.visible {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }

        .team-member:nth-child(1) { transition-delay: 0.1s; }
        .team-member:nth-child(2) { transition-delay: 0.2s; }
        .team-member:nth-child(3) { transition-delay: 0.3s; }

        /* MOBILE MENU */
        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(26, 26, 26, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s var(--ease-smooth), visibility 0.4s;
            z-index: 1000;
            backdrop-filter: blur(4px);
        }

        .mobile-menu-overlay.active { opacity: 1; visibility: visible; }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            flex-direction: column;
            gap: 5px;
            z-index: 1003;
        }

        .mobile-menu-btn span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text-dark);
            transition: all 0.3s var(--ease-out-expo);
        }

        .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
        .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        body.menu-open { overflow: hidden; }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .team-grid { 
                grid-template-columns: repeat(3, 1fr); 
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn { display: flex; }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: min(320px, 85vw);
                height: 100vh;
                background: var(--bg-white);
                flex-direction: column;
                padding: 80px 32px 40px;
                box-shadow: -4px 0 24px rgba(0,0,0,0.15);
                transition: right 0.4s var(--ease-out-expo);
                z-index: 1001;
                align-items: flex-start;
                overflow-y: auto;
            }

            nav.active { right: 0; }

            nav a {
                padding: 16px 0;
                font-size: 1.1rem;
                color: var(--text-dark);
                border-bottom: 1px solid var(--line-light-gray);
                width: 100%;
            }

            .nav-dots, .btn-login { display: none; }
            .nav-platform { border-right: none; padding-right: 0; }

            .leadership-section { padding: 40px 20px 80px; }
            .leadership-title { font-size: 4rem; margin-bottom: 20px; }
            .leadership-tagline { font-size: 1.1rem; margin-bottom: 40px; }

            .team-grid { 
                grid-template-columns: 1fr; 
                gap: 40px;
                max-width: 350px;
            }

            .team-member-photo {
                max-width: 100%;
            }

            .footer-top { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
            .side-text { display: none; }
        }

        @media (max-width: 480px) {
            .leadership-title { font-size: 3rem; }
        }
