        :root {
            --deep-blue: #2F3E78;
            --bright-blue: #3B63D1;
            --teal: #4FA6A3;
            --light-bg: #F5F7FB;
            --dark-navy: #1F2A55;
            --slate: #6B738F;
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 1.5rem;
            --spacing-lg: 2rem;
            --spacing-xl: 3rem;
            --spacing-2xl: 4rem;
            --spacing-3xl: 6rem;
        }

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

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--dark-navy);
            line-height: 1.6;
            overflow-x: hidden;
            background: #ffffff;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4 {
            font-weight: 600;
            line-height: 1.2;
            color: var(--dark-navy);
        }

        h1 { font-size: 3rem; }
        h2 { font-size: 2rem; }
        h3 { font-size: 1.25rem; }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(8px);
            z-index: 1000;
            border-bottom: 1px solid rgba(31, 42, 85, 0.05);
        }

        .header-container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0.625rem var(--spacing-lg);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-navy);
            letter-spacing: -0.01em;
        }

        .logo img {
            height: 62px;
            width: auto;
            display: block;
        }

        .nav {
            display: flex;
            gap: var(--spacing-lg);
            align-items: center;
        }

        .nav-link {
            color: var(--slate);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9375rem;
            transition: color 0.15s ease;
            cursor: pointer;
        }

        .nav-link:hover,
        .nav-link:focus {
            color: var(--dark-navy);
            outline: none;
        }

        .cta-button {
            background: var(--bright-blue);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9375rem;
            transition: background 0.15s ease;
            border: none;
            cursor: pointer;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .cta-button:hover,
        .cta-button:focus {
            background: var(--deep-blue);
        }

        .secondary-button {
            background: white;
            color: var(--bright-blue);
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9375rem;
            transition: background 0.15s ease;
            border: 1px solid var(--bright-blue);
            cursor: pointer;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .secondary-button:hover,
        .secondary-button:focus {
            background: var(--light-bg);
        }

        /* Hero Section */
        .hero {
            padding: 160px var(--spacing-lg) var(--spacing-xl);
            max-width: 1240px;
            margin: 0 auto;
        }

        .hero-content {
            max-width: 720px;
        }

        .hero h1 {
            font-size: 3rem;
            color: var(--dark-navy);
            margin-bottom: var(--spacing-md);
            font-weight: 600;
        }

        .hero h1 .highlight {
            color: var(--teal);
        }

        .hero-tagline {
            font-size: 1.75rem;
            font-weight: 500;
            color: var(--dark-navy);
            line-height: 1.3;
            margin-bottom: var(--spacing-md);
            max-width: 650px;
        }

        .hero-text {
            font-size: 1.25rem;
            color: var(--slate);
            line-height: 1.6;
            margin-bottom: var(--spacing-lg);
            max-width: 650px;
        }

        .hero-ctas {
            display: flex;
            gap: var(--spacing-sm);
            flex-wrap: wrap;
        }

        /* Section Styles */
        .section {
            padding: var(--spacing-3xl) var(--spacing-lg);
            max-width: 1240px;
            margin: 0 auto;
        }

        .section-alt {
            background: var(--light-bg);
        }

        .section-header {
            max-width: 720px;
            margin-bottom: var(--spacing-xl);
        }

        .section-header-center {
            max-width: 720px;
            margin: 0 auto var(--spacing-xl);
            text-align: center;
        }

        .section-title {
            font-size: 2rem;
            color: var(--dark-navy);
            margin-bottom: var(--spacing-sm);
            font-weight: 600;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--slate);
            line-height: 1.6;
        }

        /* Cards */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--spacing-lg);
        }

        .card {
            background: white;
            padding: var(--spacing-lg);
            border-radius: 8px;
            border: 1px solid rgba(31, 42, 85, 0.06);
        }

        .card-stat {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--bright-blue);
            margin-bottom: var(--spacing-sm);
        }

        .card-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: var(--spacing-sm);
        }

        .card-text {
            font-size: 0.9375rem;
            color: var(--slate);
            line-height: 1.6;
        }

        /* Flywheel Section - Desktop */
        .flywheel-section {
            background: white;
        }

        .flywheel-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .flywheel-visual {
            margin: var(--spacing-2xl) auto;
            position: relative;
            min-height: 650px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .rotating-circles {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .circle-ring {
            position: absolute;
            border: 2px dashed rgba(59, 99, 209, 0.15);
            border-radius: 50%;
            animation: rotate 60s linear infinite;
        }

        .circle-ring:nth-child(1) {
            width: 480px;
            height: 480px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .circle-ring:nth-child(2) {
            width: 580px;
            height: 580px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-duration: 80s;
            animation-direction: reverse;
        }

        .circle-ring:nth-child(3) {
            width: 680px;
            height: 680px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-duration: 100s;
        }

        @keyframes rotate {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        .flywheel-center {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: var(--bright-blue);
            color: white;
            font-size: 1.125rem;
            font-weight: 600;
            padding: var(--spacing-lg);
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .flywheel-items {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .flywheel-item {
            position: absolute;
            width: 180px;
            min-height: 110px;
            padding: var(--spacing-md) var(--spacing-sm);
            background: white;
            border-radius: 8px;
            border: 1px solid rgba(31, 42, 85, 0.06);
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .flywheel-item-title {
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 0.5rem;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .flywheel-item-text {
            font-size: 0.8125rem;
            color: var(--slate);
            line-height: 1.3;
        }

        /* About Section */
        .about-section {
            background: var(--light-bg);
        }

        .about-eyebrow {
            font-size: 0.8125rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--slate);
            margin-bottom: var(--spacing-sm);
        }

        .about-layout {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: var(--spacing-2xl);
            align-items: start;
        }

        .about-intro {
            position: sticky;
            top: 120px;
        }

        .about-intro h2 {
            font-size: 2rem;
            margin-bottom: var(--spacing-md);
        }

        .about-intro-text {
            font-size: 1.0625rem;
            color: var(--slate);
            line-height: 1.7;
        }

        .about-blocks {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-xl);
        }

        .about-block {
            border-left: 2px solid rgba(31, 42, 85, 0.08);
            padding-left: var(--spacing-lg);
        }

        .about-block h3 {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: var(--spacing-sm);
        }

        .about-block p {
            color: var(--slate);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: var(--spacing-sm);
            max-width: 600px;
        }

        .about-block p:last-child {
            margin-bottom: 0;
        }

        .serve-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: var(--spacing-md);
            margin-top: var(--spacing-md);
        }

        .serve-card {
            background: white;
            padding: var(--spacing-md);
            border-radius: 8px;
            border: 1px solid rgba(31, 42, 85, 0.06);
        }

        .serve-card h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 0.5rem;
        }

        .serve-card p {
            font-size: 0.9375rem;
            color: var(--slate);
            line-height: 1.6;
            margin: 0;
        }

        /* Team Section */
        .team-section {
            background: white;
        }

        .team-header-title {
            font-size: 2.5rem;
            color: var(--dark-navy);
            margin-bottom: var(--spacing-sm);
            font-weight: 600;
            text-align: center;
        }

        .team-header-title .highlight {
            color: var(--teal);
        }

        .team-section-label {
            text-align: center;
            margin-bottom: 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--slate);
        }

        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--spacing-xl);
            max-width: 720px;
            margin: 0 auto var(--spacing-3xl);
        }

        .advisors-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-xl);
        }

        .advisors-grid-centered {
            grid-template-columns: repeat(2, 1fr);
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }

        .team-member {
            text-align: center;
            position: relative;
        }

        .team-member-link {
            text-decoration: none;
            color: inherit;
            display: block;
            transition: transform 0.15s ease;
        }

        .team-member-link:hover,
        .team-member-link:focus {
            transform: translateY(-2px);
            outline: none;
        }

        .team-avatar {
            width: 136px;
            height: 136px;
            border-radius: 50%;
            background: var(--bright-blue);
            margin: 0 auto var(--spacing-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            font-weight: 600;
            transition: box-shadow 0.15s ease;
        }

        .team-member-link:hover .team-avatar,
        .team-member-link:focus .team-avatar {
            box-shadow: 0 4px 12px rgba(47, 62, 120, 0.15);
        }

        .team-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            object-position: 50% 25%;
        }

        .team-avatar img.avatar-liz {
            object-position: 50% 10%;
        }

        .team-member-name {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 0.25rem;
        }

        .team-member-link:hover .team-member-name,
        .team-member-link:focus .team-member-name {
            color: var(--bright-blue);
        }

        .team-role {
            font-size: 0.9375rem;
            color: var(--teal);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .team-descriptor {
            font-size: 0.875rem;
            color: var(--slate);
            line-height: 1.5;
            opacity: 0.85;
        }

        /* Leadership members slightly larger */
        .leadership-grid .team-avatar {
            width: 152px;
            height: 152px;
        }

        .leadership-grid .team-member-name {
            font-size: 1.25rem;
        }

        .leadership-grid .team-role {
            font-size: 1rem;
        }

        .leadership-grid .team-descriptor {
            font-size: 0.9375rem;
        }

        /* What Unites Us Section */
        .unites-section {
            background: var(--light-bg);
            padding: var(--spacing-3xl) var(--spacing-lg);
        }

        .unites-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--spacing-lg);
        }

        .unite-card {
            background: white;
            padding: var(--spacing-lg);
            border-radius: 8px;
            border: 1px solid rgba(31, 42, 85, 0.06);
        }

        .unite-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: var(--spacing-sm);
        }

        .unite-card p {
            font-size: 0.9375rem;
            color: var(--slate);
            line-height: 1.6;
        }

        /* Hiring Section */
        .hiring-section {
            background: var(--deep-blue);
            color: white;
            padding: var(--spacing-3xl) var(--spacing-lg);
        }

        .hiring-content {
            max-width: 1240px;
            margin: 0 auto;
            text-align: center;
        }

        .hiring-box {
            margin-bottom: var(--spacing-2xl);
        }

        .hiring-box p {
            margin-bottom: var(--spacing-xl);
        }

        .hiring-section h2 {
            color: white;
            margin-bottom: var(--spacing-sm);
        }

        .hiring-section > .hiring-content > p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.0625rem;
            line-height: 1.6;
            margin-bottom: var(--spacing-lg);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hiring-section .cta-button {
            background: var(--teal);
            color: white;
        }

        .hiring-section .cta-button:hover,
        .hiring-section .cta-button:focus {
            background: #3d8d8a;
        }

        .hiring-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.12);
            margin: var(--spacing-2xl) 0;
        }

        .hiring-section h3 {
            font-size: 1.75rem;
            margin-bottom: var(--spacing-xl);
            color: white;
        }

        .qualities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: var(--spacing-lg);
        }

        .quality-item {
            text-align: center;
        }

        .quality-item h4 {
            font-size: 1.125rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.5rem;
        }

        .quality-item p {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        /* Final CTA */
        .final-cta {
            background: var(--dark-navy);
            padding: var(--spacing-3xl) var(--spacing-lg);
            text-align: center;
            color: white;
        }

        .final-cta-content {
            max-width: 720px;
            margin: 0 auto;
        }

        .final-cta h2 {
            font-size: 2rem;
            color: white;
            margin-bottom: var(--spacing-sm);
        }

        .final-cta p {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            margin-bottom: var(--spacing-lg);
        }

        .final-cta .cta-button {
            background: white;
            color: var(--dark-navy);
        }

        .final-cta .cta-button:hover,
        .final-cta .cta-button:focus {
            background: var(--light-bg);
        }

        /* Footer */
        .footer {
            background: var(--dark-navy);
            color: white;
            padding: var(--spacing-2xl) var(--spacing-lg) var(--spacing-lg);
        }

        .footer-content {
            max-width: 1240px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: var(--spacing-xl);
            margin-bottom: var(--spacing-lg);
        }

        .footer-brand h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: white;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.6;
            font-size: 0.9375rem;
        }

        .footer-section h4 {
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            font-size: 0.9375rem;
            transition: color 0.15s ease;
        }

        .footer-links a:hover,
        .footer-links a:focus {
            color: white;
            outline: none;
        }

        .footer-bottom {
            max-width: 1240px;
            margin: 0 auto;
            padding-top: var(--spacing-lg);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.875rem;
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(31, 42, 85, 0.8);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            padding: var(--spacing-lg);
        }

        .modal-content {
            background: white;
            padding: var(--spacing-lg);
            border-radius: 8px;
            max-width: 540px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: var(--spacing-md);
        }

        .modal-header h2 {
            font-size: 1.5rem;
        }

        .close-button {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--slate);
            cursor: pointer;
            padding: 0.5rem;
            line-height: 1;
            transition: color 0.15s ease;
            min-width: 44px;
            min-height: 44px;
        }

        .close-button:hover,
        .close-button:focus {
            color: var(--dark-navy);
            outline: none;
        }

        .form-group {
            margin-bottom: var(--spacing-md);
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--dark-navy);
            font-weight: 600;
            font-size: 0.9375rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid rgba(31, 42, 85, 0.15);
            border-radius: 6px;
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            transition: border-color 0.15s ease;
            min-height: 44px;
        }

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

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-button {
            width: 100%;
            background: var(--bright-blue);
            color: white;
            padding: 0.875rem;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.15s ease;
            min-height: 48px;
        }

        .submit-button:hover,
        .submit-button:focus {
            background: var(--deep-blue);
        }

        /* Mobile Responsiveness - Mobile First */
        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            width: 24px;
            height: 2px;
            background: var(--dark-navy);
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            :root {
                --spacing-3xl: 3.5rem;
                --spacing-2xl: 2.5rem;
            }

            body {
                line-height: 1.7;
            }

            /* Mobile header tuning */
            .header { padding: 10px 0; }
            .logo img { height: 38px; }

            h1 { 
                font-size: 1.75rem;
                line-height: 1.3;
            }
            
            h2 { 
                font-size: 1.5rem;
                line-height: 1.3;
            }

            .hero {
                padding: 100px var(--spacing-md) 3.5rem;
            }

            .hero-text {
                font-size: 1.0625rem;
                line-height: 1.7;
            }

            .hero-tagline {
                font-size: 1.25rem;
            }

            .section {
                padding: 3.5rem var(--spacing-md);
            }

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

            .section-subtitle {
                font-size: 1rem;
                line-height: 1.7;
            }

            .hero-ctas {
                flex-direction: column;
                width: 100%;
            }

            .hero-ctas button {
                width: 100%;
            }

            .nav {
                display: none;
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: var(--spacing-lg);
                gap: var(--spacing-md);
                box-shadow: 0 4px 12px rgba(31, 42, 85, 0.15);
                z-index: 999;
            }

            .nav.mobile-open {
                display: flex;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .nav .nav-link,
            .nav .secondary-button,
            .nav .cta-button {
                width: 100%;
                text-align: center;
                justify-content: center;
            }

            /* Mobile Flywheel - Stacked Layout */
            .flywheel-visual {
                min-height: auto;
                position: static;
                display: block;
                padding: 0;
                margin: var(--spacing-lg) 0;
            }

            .rotating-circles {
                display: none;
            }

            .flywheel-center {
                position: static;
                width: 100%;
                height: auto;
                border-radius: 8px;
                padding: var(--spacing-lg);
                margin-bottom: var(--spacing-lg);
                font-size: 1.125rem;
            }

            .flywheel-items {
                position: static;
                display: flex;
                flex-direction: column;
                gap: var(--spacing-md);
            }

            .flywheel-item {
                position: static !important;
                width: 100%;
                transform: none !important;
                padding: var(--spacing-md);
                min-height: auto;
            }

            .flywheel-item-title {
                -webkit-line-clamp: unset;
                display: block;
                font-size: 1rem;
            }

            .flywheel-item-text {
                white-space: normal;
                font-size: 0.875rem;
                line-height: 1.6;
            }

            /* Mobile About Layout */
            .about-layout {
                grid-template-columns: 1fr;
                gap: var(--spacing-lg);
            }

            .about-intro {
                position: static;
            }

            .about-intro h2 {
                font-size: 1.5rem;
            }

            .about-intro-text {
                font-size: 1rem;
                line-height: 1.7;
            }

            .about-block {
                padding-left: var(--spacing-md);
            }

            .about-block p {
                font-size: 0.9375rem;
                line-height: 1.7;
            }

            /* Mobile Team */
            .team-header-title {
                font-size: 1.75rem;
            }

            .leadership-grid {
                grid-template-columns: 1fr;
                gap: var(--spacing-lg);
                max-width: 100%;
            }

            .advisors-grid,
            .advisors-grid-centered {
                grid-template-columns: 1fr;
                gap: var(--spacing-md);
                max-width: 100%;
            }

            .team-member-link {
                padding: var(--spacing-md);
                border-radius: 8px;
                transition: background 0.15s ease;
            }

            .team-member-link:active {
                background: var(--light-bg);
            }

            .leadership-grid .team-avatar,
            .team-avatar {
                width: 120px;
                height: 120px;
            }

            .leadership-grid .team-member-name,
            .team-member-name {
                font-size: 1.125rem;
            }

            .leadership-grid .team-role,
            .team-role {
                font-size: 0.9375rem;
            }

            .leadership-grid .team-descriptor,
            .team-descriptor {
                font-size: 0.875rem;
            }

            /* Mobile Cards */
            .cards-grid,
            .serve-grid,
            .qualities-grid,
            .unites-grid {
                grid-template-columns: 1fr;
                gap: var(--spacing-md);
            }

            .card,
            .serve-card,
            .unite-card {
                padding: var(--spacing-md);
            }

            .card-text,
            .serve-card p,
            .unite-card p {
                line-height: 1.7;
            }

            /* Mobile Footer */
            .footer-content {
                grid-template-columns: 1fr;
                gap: var(--spacing-lg);
            }

            .footer-bottom {
                flex-direction: column;
                gap: var(--spacing-sm);
                text-align: center;
            }

            /* Mobile Dark Sections */
            .hiring-section,
            .unites-section {
                padding: 3.5rem var(--spacing-md);
            }

            .hiring-section h2,
            .final-cta h2 {
                font-size: 1.5rem;
            }

            .hiring-section h3 {
                font-size: 1.25rem;
            }

            .hiring-section > .hiring-content > p,
            .final-cta p {
                font-size: 1rem;
                line-height: 1.7;
            }

            .quality-item p {
                line-height: 1.7;
            }
        }

        /* ── Email signup bar ── */
        .signup-section {
            padding-top: var(--spacing-lg) !important;
        }

        .hero-email-input {
            padding: 0.75rem 1.25rem;
            border-radius: 6px;
            border: 1px solid rgba(31,42,85,0.2);
            font-size: 1rem;
            font-family: inherit;
            color: #1F2A55;
            background: white;
            outline: none;
            width: 240px;
        }
        .hero-email-input:focus { border-color: var(--bright-blue); }
        .hero-secondary-ctas {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
            margin-top: var(--spacing-sm);
            flex-wrap: wrap;
        }
        .signup-bar-section {
            display: flex;
            justify-content: center;
            margin: 0 0 var(--spacing-lg);
        }
        .signup-bar {
            background: #1F2A55;
            border-radius: 8px;
            padding: 12px 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            width: 650px;
            max-width: 100%;
        }
        .signup-bar-text {
            color: rgba(255,255,255,0.75);
            font-size: 0.9375rem;
        }
        .signup-bar-input {
            padding: 6px 12px;
            border-radius: 4px;
            border: 1px solid rgba(31,42,85,0.15);
            font-size: 0.9375rem;
            width: 200px;
            background: white;
            color: #1F2A55;
            font-family: inherit;
            outline: none;
        }
        .signup-bar-input:focus {
            border-color: rgba(31,42,85,0.4);
        }
        .signup-bar-btn {
            padding: 6px 14px;
            background: #4FA6A3;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 0.9375rem;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
            white-space: nowrap;
            transition: background 0.15s;
        }
        .signup-bar-btn:hover { background: #3d8885; }
        .signup-bar-success {
            color: var(--teal);
            font-size: 0.9375rem;
            font-weight: 600;
            display: none;
        }

        /* ===== Multi-page additions ===== */
        .page-hero {
            padding: 150px var(--spacing-lg) var(--spacing-2xl);
            max-width: 1240px;
            margin: 0 auto;
        }
        .page-hero-content {
            max-width: 760px;
        }
        .page-hero h1 {
            font-size: 2.75rem;
            line-height: 1.15;
            color: var(--dark-navy);
            font-weight: 600;
            margin-bottom: var(--spacing-md);
        }
        .page-hero .hero-text {
            font-size: 1.1875rem;
            color: var(--slate);
            max-width: 680px;
        }
        .page-hero .hero-ctas {
            margin-top: var(--spacing-lg);
        }

        /* How-it-works steps */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: var(--spacing-lg);
        }
        .step-card {
            background: #ffffff;
            border: 1px solid rgba(31, 42, 85, 0.08);
            border-radius: 16px;
            padding: var(--spacing-lg);
        }
        .step-number {
            font-size: 0.9375rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            color: var(--teal);
            margin-bottom: var(--spacing-sm);
        }
        .step-card h3 {
            font-size: 1.1875rem;
            color: var(--dark-navy);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .step-card p {
            color: var(--slate);
            font-size: 0.9375rem;
        }

        /* 3-up capability grid */
        .cards-grid-3 {
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        }

        @media (max-width: 768px) {
            .page-hero {
                padding: 110px var(--spacing-md) 3rem;
            }
            .page-hero h1 {
                font-size: 2rem;
            }
        }

        /* Current-page nav highlight */
        .nav-link.active {
            color: var(--dark-navy);
            font-weight: 600;
        }

        /* ===== Nav dropdown (Who We Serve) ===== */
        .nav-item.dropdown {
            position: relative;
            display: inline-flex;
            align-items: center;
        }
        .dropdown-toggle {
            background: none;
            border: none;
            padding: 0;
            margin: 0;
            font: inherit;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .dropdown-caret {
            font-size: 0.7em;
            line-height: 1;
            transition: transform 0.15s ease;
        }
        .dropdown.open .dropdown-caret {
            transform: rotate(180deg);
        }
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            min-width: 250px;
            background: #ffffff;
            border: 1px solid rgba(31, 42, 85, 0.08);
            border-radius: 12px;
            box-shadow: 0 12px 28px rgba(31, 42, 85, 0.14);
            padding: 0.5rem;
            display: none;
            z-index: 1001;
        }
        .dropdown:hover .dropdown-menu,
        .dropdown.open .dropdown-menu {
            display: block;
        }
        .dropdown-link {
            display: block;
            padding: 0.625rem 0.875rem;
            border-radius: 8px;
            color: var(--slate);
            text-decoration: none;
            font-size: 0.9375rem;
            font-weight: 500;
            white-space: nowrap;
            transition: background 0.12s ease, color 0.12s ease;
        }
        .dropdown-link:hover,
        .dropdown-link:focus {
            background: var(--light-bg);
            color: var(--dark-navy);
        }
        .dropdown-link.active {
            color: var(--dark-navy);
            font-weight: 600;
        }
        .dropdown-toggle.active {
            color: var(--dark-navy);
            font-weight: 600;
        }

        /* Dropdown on mobile: expand inline instead of floating */
        @media (max-width: 768px) {
            .nav-item.dropdown {
                width: 100%;
                flex-direction: column;
            }
            .dropdown-toggle {
                width: 100%;
                justify-content: center;
            }
            .dropdown-menu {
                position: static;
                transform: none;
                left: auto;
                min-width: 0;
                width: 100%;
                border: none;
                box-shadow: none;
                padding: 0;
                margin-top: 0.75rem;
            }
            .dropdown:hover .dropdown-menu {
                display: none;
            }
            .dropdown.open .dropdown-menu {
                display: block;
            }
            .dropdown-link {
                text-align: center;
                white-space: normal;
            }
        }
