        :root {
            --navy: #093069;
            --aqua: #27C9B7;
            --ice: #EBF5F4;
            --dark: #1A1A1A;
            --muted: #555555;
            --light-gray: #D0D0D0;
            --white: #FFFFFF;
        }

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

        html {
            scroll-behavior: smooth;
        }

        /* Focus styles for keyboard navigation */
        a:focus-visible,
        button:focus-visible {
            outline: 2px solid var(--aqua);
            outline-offset: 3px;
            border-radius: 2px;
        }

        body {
            font-family: 'Outfit', Arial, sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background: var(--white);
        }

        /* ---- NAV ---- */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(8px);
            padding: 0 0;
            transition: box-shadow 0.3s;
            border-bottom: 1px solid var(--light-gray);
        }

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

        .nav-inner {
            max-width: 1400px;
            width: 94%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
        }

        .nav-brand img {
            height: 36px;
            width: auto;
        }

        .nav-brand-text {
            color: var(--navy);
            font-weight: 600;
            font-size: 1.7rem;
            letter-spacing: 2px;
            font-variant: small-caps;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
            flex-shrink: 0;
            white-space: nowrap;
        }

        .nav-links a {
            color: var(--muted);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--navy);
        }

        .nav-cta {
            background: var(--aqua);
            color: var(--navy) !important;
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 600 !important;
            transition: background 0.2s, transform 0.2s !important;
        }

        .nav-cta:hover {
            background: #2ee0cc;
            transform: translateY(-1px);
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 12px;
            z-index: 101;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            pointer-events: none;
            background: var(--navy);
            border-radius: 2px;
            transition: transform 0.3s, opacity 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            background: var(--white);
            border-bottom: 1px solid var(--light-gray);
            padding: 20px 32px;
            z-index: 99;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .mobile-menu.open {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .mobile-menu a {
            color: var(--dark);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 400;
            padding: 8px 0;
            border-bottom: 1px solid var(--ice);
        }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

        .mobile-menu .nav-cta {
            text-align: center;
            margin-top: 8px;
        }

        /* ---- HERO ---- */
        .hero {
            background: var(--navy);
            padding: 140px 32px 100px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(39,201,183,0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(39,201,183,0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-inner {
            max-width: 1400px;
            width: 94%;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            text-align: left;
        }

        .hero-hook-row {
            margin-bottom: 48px;
            text-align: left;
        }

        .hero-columns {
            display: flex;
            align-items: center;
            gap: 48px;
        }

        .hero-photo {
            flex-shrink: 0;
            width: 260px;
            height: 320px;
            border-radius: 10px;
            overflow: hidden;
            opacity: 0;
            animation: fadeUp 0.6s ease forwards 0.5s;
            box-shadow: 0 16px 40px rgba(0,0,0,0.25);
        }

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

        .hero-text {
            flex: 1;
            text-align: left;
        }

        .hero-tagline {
            color: var(--aqua);
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 28px;
            opacity: 0;
            animation: fadeUp 0.6s ease forwards 0.2s;
        }

        .hero-hook {
            color: var(--white);
            font-size: 2.4rem;
            font-weight: 300;
            line-height: 1.35;
            margin-bottom: 28px;
            opacity: 0;
            animation: fadeUp 0.6s ease forwards 0.4s;
        }

        .hero-hook em {
            font-style: italic;
            color: var(--aqua);
        }

        .hero-body {
            color: rgba(255,255,255,0.75);
            font-size: 1.15rem;
            font-weight: 300;
            line-height: 1.7;
            max-width: 900px;
            margin-bottom: 48px;
            opacity: 0;
            animation: fadeUp 0.6s ease forwards 0.6s;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: flex-start;
            text-align: center;
            opacity: 0;
            animation: fadeUp 0.6s ease forwards 0.8s;
        }

        .hero-stat {
            text-align: center;
            flex: 1;
        }

        .hero-stat-num {
            color: var(--aqua);
            font-size: 2rem;
            font-weight: 600;
            line-height: 1.2;
        }

        .hero-stat-label {
            color: rgba(255,255,255,0.5);
            font-size: 0.85rem;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        /* ---- SECTION BASE ---- */
        section {
            padding: 100px 32px;
        }

        .section-inner {
            max-width: 1400px;
            width: 94%;
            margin: 0 auto;
        }

        .section-label {
            color: var(--aqua);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 20px;
            line-height: 1.3;
            font-variant: small-caps;
        }

        .section-body {
            color: var(--muted);
            font-size: 1rem;
            line-height: 1.7;
            font-weight: 300;
        }

        /* ---- LEADERSHIP (about) ---- */
        .leadership {
            background: var(--white);
            padding-bottom: 40px;
        }

        .leadership-text {
            color: var(--muted);
            font-size: 1.05rem;
            line-height: 1.8;
            font-weight: 300;
        }

        .leadership-text p {
            margin-bottom: 20px;
        }

        .leadership-text strong {
            color: var(--dark);
            font-weight: 500;
        }

        /* ---- LOGO BAR ---- */
        .logo-bar {
            padding: 40px 0;
            background: var(--white);
            overflow: hidden;
            position: relative;
        }
        .logo-bar::before,
        .logo-bar::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 80px;
            z-index: 2;
            pointer-events: none;
        }
        .logo-bar::before {
            left: 0;
            background: linear-gradient(to right, var(--white), transparent);
        }
        .logo-bar::after {
            right: 0;
            background: linear-gradient(to left, var(--white), transparent);
        }
        .logo-track {
            display: flex;
            align-items: center;
            gap: 64px;
            animation: scrollLogos 30s linear infinite;
            width: max-content;
        }
        .logo-item {
            flex-shrink: 0;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.45;
            filter: grayscale(100%);
            transition: opacity 0.3s, filter 0.3s;
        }
        .logo-item:hover {
            opacity: 0.8;
            filter: grayscale(0%);
        }
        .logo-item img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }
        .logo-placeholder {
            flex-shrink: 0;
            font-family: 'Outfit', Arial, sans-serif;
            font-size: 1rem;
            font-weight: 500;
            color: var(--navy);
            opacity: 0.35;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        @keyframes scrollLogos {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ---- ENGAGEMENT CARDS ---- */
        .engagements {
            background: var(--ice);
        }

        .engagement-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 36px;
        }

        .engagement-card {
            background: var(--white);
            border-left: 3px solid var(--aqua);
            padding: 28px 28px;
            border-radius: 0 6px 6px 0;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .engagement-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(9,48,105,0.08);
        }

        .engagement-card h3 {
            color: var(--navy);
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .engagement-card p {
            color: var(--muted);
            font-size: 0.9rem;
            line-height: 1.6;
            font-weight: 300;
            margin-bottom: 12px;
        }

        .engagement-card .best-for {
            color: var(--dark);
            font-size: 0.8rem;
            font-style: italic;
            line-height: 1.5;
        }

        .engagement-card .best-for strong {
            font-weight: 500;
            font-style: normal;
            color: var(--navy);
        }

        /* ---- PROOF POINTS ---- */
        .proof {
            background: var(--white);
        }

        .proof-list {
            margin-top: 28px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .proof-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 20px;
            background: var(--ice);
            border-radius: 6px;
            transition: transform 0.15s;
        }

        .proof-item:hover {
            transform: translateX(4px);
        }

        .proof-marker {
            width: 6px;
            min-height: 100%;
            background: var(--aqua);
            border-radius: 3px;
            flex-shrink: 0;
        }

        .proof-item p {
            color: var(--dark);
            font-size: 0.95rem;
            line-height: 1.6;
            font-weight: 300;
        }

        /* ---- BACKGROUND ---- */
        .background-section {
            background: var(--navy);
            color: var(--white);
        }

        .background-section .section-label {
            color: var(--aqua);
        }

        .background-section .section-title {
            color: var(--white);
            font-variant: small-caps;
        }

        .background-text {
            color: rgba(255,255,255,0.75);
            font-size: 1rem;
            line-height: 1.8;
            font-weight: 300;
        }

        .background-text p {
            margin-bottom: 20px;
        }

        .background-closer {
            color: var(--aqua);
            font-size: 1.15rem;
            font-weight: 500;
            font-style: italic;
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid rgba(39,201,183,0.2);
        }

        /* ---- CTA ---- */
        .cta-section {
            background: var(--ice);
            text-align: center;
            padding: 60px 32px;
        }

        .cta-headline {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 20px;
        }

        .cta-contact {
            color: var(--muted);
            font-size: 1rem;
            margin-bottom: 24px;
        }

        .cta-contact a {
            color: var(--navy);
            text-decoration: none;
            font-weight: 500;
        }

        .cta-contact a:hover {
            color: var(--aqua);
        }

        .cta-btn {
            display: inline-block;
            background: var(--navy);
            color: var(--white);
            padding: 14px 36px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.5px;
            transition: background 0.2s, transform 0.2s;
        }

        .cta-btn:hover {
            background: #0b3d85;
            transform: translateY(-2px);
        }

        /* ---- FOOTER ---- */
        footer {
            background: var(--navy);
            text-align: center;
            padding: 28px 32px;
            color: rgba(255,255,255,0.4);
            font-size: 0.8rem;
            font-weight: 300;
        }

        /* ---- ANIMATIONS ---- */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(16px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in.will-animate {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .fade-in.will-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ---- RESPONSIVE ---- */
        @media (max-width: 900px) {
            .nav-links {
                display: none !important;
                visibility: hidden;
                pointer-events: none;
            }

            .hamburger {
                display: flex;
            }

            .hero-inner {
                text-align: left;
            }

            .hero-columns {
                gap: 32px;
            }

            .hero-photo {
                width: 200px;
                height: 250px;
            }

            .hero-body {
                max-width: 100%;
            }

            .hero {
                padding: 120px 24px 60px;
            }

            .hero-hook {
                font-size: 1.4rem;
            }

            .hero-stats {
                gap: 24px;
            }

            .engagement-grid {
                grid-template-columns: 1fr;
            }

            section {
                padding: 60px 24px;
            }

            .section-title {
                font-size: 1.35rem;
            }
        }

        @media (max-width: 480px) {
            .hero-columns {
                flex-direction: column;
                align-items: center;
            }

            .hero-text {
                text-align: center;
            }

            .hero-stats {
                flex-direction: column;
                gap: 16px;
                justify-content: center;
            }

            .nav-inner {
                padding: 12px 20px;
            }
        }
