
        :root {
            --primary-blue: #3b82f6; /* Professional vibrant blue */
            --text-dark: #111827;
            --text-body: #6b7280;
            --bg-color: #ffffff;
            --border-light: #f3f4f6;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-dark);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            /* Added safe-area padding for modern mobile devices */
            padding-left: env(safe-area-inset-left, 0px);
            padding-right: env(safe-area-inset-right, 0px);
        }

        /* --- Global Utilities --- */
        .text-center { text-align: center; }
        
        .container {
            width: 100%;
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 2.75rem); /* Fluid typography */
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
            letter-spacing: -1px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: clamp(0.95rem, 2vw, 1.05rem);
            color: var(--text-body);
            max-width: 800px;
            margin: 0 auto 3rem auto;
            line-height: 1.6;
        }

        /* --- Section 1: Top Asymmetrical Collage --- */
        .collage-section {
            padding-top: clamp(3rem, 10vw, 6rem);
            position: relative;
        }

        .collage-wrapper {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: clamp(12px, 2.5vw, 24px); /* Fluid gap spacing */
            max-width: 1040px;
            margin: 0 auto;
        }

        .collage-col {
            display: flex;
            flex-direction: column;
            gap: clamp(12px, 2.5vw, 24px);
            flex: 1;
        }

        /* Precise staggering offsets based on the reference image, using clamp for scaling */
        .col-1 { margin-top: clamp(15px, 6vw, 60px); }
        .col-2 { margin-top: clamp(5px, 2vw, 20px); }
        .col-3 { margin-top: clamp(-20px, -2vw, -20px); } /* Highest point */
        .col-4 { margin-top: clamp(10px, 4vw, 40px); }

        /* Creative Shapes - Fully fluid with aspect-ratios */
        .shape {
            width: 100%;
            overflow: hidden;
            position: relative;
            background-color: #f8fafc;
            box-shadow: inset 0 0 20px rgba(0,0,0,0.02);
        }

        .shape img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            transition: transform 0.5s ease;
        }

        .shape:hover img {
            transform: scale(1.05);
        }

        /* Fluid geometry with dynamic heights based on aspect-ratios */
        .shape.arch-up { 
            border-radius: 999px 999px 0 0; /* Ensures perfect arch at any scale */
        }
        
        .shape.circle { 
            border-radius: 50%; 
            aspect-ratio: 1 / 1; 
        }
        
        /* Scaled aspects representing tall vs medium shapes */
        .h-tall { 
            aspect-ratio: 1 / 1.6; 
        }
        
        .h-med { 
            aspect-ratio: 1 / 1.35; 
        }

        /* --- The Massive Blurred Glow --- */
        .glow-wrapper {
            position: relative;
            width: 100%;
            height: 0;
            z-index: -1;
        }

        .glow-band {
            position: absolute;
            left: -10%;
            right: -10%;
            top: -150px;
            height: clamp(200px, 40vw, 350px);
            background: linear-gradient(90deg, rgba(254, 202, 202, 0.45) 0%, rgba(186, 230, 253, 0.5) 50%, rgba(167, 243, 208, 0.4) 100%);
            filter: blur(80px);
            pointer-events: none;
        }

        /* --- Section 2: Team Directory Grid --- */
        .team-directory-section {
            padding: clamp(4rem, 12vw, 8rem) 0 6rem 0;
        }

        .team-grid {
            display: grid;
            /* Auto-fit columns with minimal size logic, adapting beautifully to intermediate widths */
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: clamp(2.5rem, 5vw, 4rem) 2rem;
            margin-top: 4rem;
        }

        .team-card {
            text-align: left;
            display: flex;
            flex-direction: column;
        }

        .card-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 1.25rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
            background-color: var(--border-light);
        }

        .card-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
        }

        .card-name {
            font-size: 1rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 0.15rem;
            letter-spacing: -0.3px;
        }

        .card-role {
            font-size: 0.65rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .card-desc {
            font-size: 0.75rem;
            color: var(--text-body);
            line-height: 1.6;
            margin-bottom: 1.25rem;
            flex-grow: 1;
        }

        .card-socials {
            display: flex;
            gap: 12px;
            margin-top: auto;
        }

        .card-socials svg {
            width: 14px;
            height: 14px;
            fill: #cbd5e1;
            cursor: pointer;
            transition: fill 0.2s ease;
        }

        .card-socials svg:hover {
            fill: var(--text-dark);
        }

        /* --- Section 3: Bottom Info --- */
        .bottom-info-section {
            display: flex;
            align-items: center;
            gap: clamp(2rem, 5vw, 5rem);
            padding: 6rem 0;
            border-top: 1px solid var(--border-light);
            margin-top: 2rem;
        }

        .info-text {
            flex: 1.1;
        }

        .info-text h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: var(--text-dark);
            letter-spacing: -1px;
        }

        .info-text p {
            color: var(--text-body);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .info-image {
            flex: 0.9;
            border-radius: 16px;
            overflow: hidden;
            height: clamp(300px, 45vw, 500px);
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
        }

        .info-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* --- Responsive Viewport Adaptations --- */
        
        /* Tablet & IPads (Horizontal Collage stack) */
        @media (max-width: 900px) {
            .collage-wrapper {
                flex-wrap: wrap;
                gap: 20px;
            }
            .collage-col {
                width: calc(50% - 10px);
                flex: none;
                margin-top: 0 !important; /* Flatten offsets on smaller tablet viewports */
            }
            .bottom-info-section {
                flex-direction: column-reverse; /* Puts image below content on mobile/tablet */
                gap: 3rem;
                padding: 4rem 0;
            }
            .info-image {
                width: 100%;
            }
        }

        /* Small Screen Tablet to Mobile */
        @media (max-width: 640px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr); /* Maintains an orderly double grid on medium mobile */
                gap: 2.5rem 1.5rem;
            }
        }

        /* Micro & Narrow Displays (Single Column Fallback) */
        @media (max-width: 440px) {
            .team-grid {
                grid-template-columns: 1fr; /* Comfortably snaps to single column for readability */
                gap: 2.5rem 0;
            }
            .collage-col {
                width: 100%; /* Single column shapes on tiny screens */
            }
        }
    
