
        @font-face {
            font-family: 'Helvetica Neue';
            src: local('Helvetica Neue'), local('HelveticaNeue'), local('Helvetica');
            font-weight: 100 900;
            font-style: normal;
        }
    


        /* ── Reset & Base ── */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
            background: #000000;
            color: #d0d5da;
            line-height: 1.7;
            overflow-x: hidden;
        }
        ::selection { background: rgba(26, 148, 143, 0.2); }
        img { max-width: 100%; display: block; }
        a { color: inherit; text-decoration: none; }

        /* ── Typography ── */
        h1, h2, h3 { font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif; font-weight: 500; letter-spacing: -0.02em; }
        .label {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #1a948f;
        }

        /* ── Layout ── */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
        section { padding: 7rem 0; }

        /* ── Navigation ── */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 1.2rem 0;
            transition: all 0.4s ease;
        }
        nav.at-top {
            background: transparent;
        }
        nav.scrolled {
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 0.8rem 0;
            box-shadow: 0 1px 20px rgba(0,0,0,0.4);
        }
        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            display: flex;
            align-items: center;
            height: 48px;
            position: relative;
        }
        .logo img {
            height: 42px;
            width: auto;
            transition: opacity 0.4s;
        }
        .logo-white { opacity: 1; }
        .logo-dark {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
        }
        nav.scrolled .logo-white { opacity: 1; }
        nav.scrolled .logo-dark { opacity: 0; }
        .nav-links { display: flex; gap: 2.5rem; align-items: center; }
        .nav-links a {
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.85);
            transition: color 0.3s;
            position: relative;
        }
        nav.scrolled .nav-links a { color: rgba(255,255,255,0.7); }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px; left: 0;
            width: 0; height: 1.5px;
            background: #1a948f;
            transition: width 0.3s ease;
        }
        .nav-links a:hover { color: #fff; }
        nav.scrolled .nav-links a:hover { color: #3fd4cb; }
        .nav-links a:hover::after { width: 100%; }
        .nav-contact {
            padding: 0.55rem 1.5rem;
            border: 1.5px solid rgba(255,255,255,0.5);
            border-radius: 3px;
            transition: all 0.3s;
        }
        nav.scrolled .nav-contact { border-color: #3fd4cb; color: #3fd4cb; }
        .nav-contact:hover {
            background: #1a948f;
            color: #fff !important;
            border-color: #1a948f;
        }

        /* Mobile nav */
        .nav-toggle { display: none; cursor: pointer; padding: 0.5rem; }
        .nav-toggle span {
            display: block; width: 24px; height: 2px;
            background: #fff; margin: 5px 0;
            transition: all 0.3s;
        }
        nav.scrolled .nav-toggle span { background: #fff; }

        /* ── Hero ── */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('/asset-5f1d3583.jpg');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }
        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                rgba(0,0,0,0.30) 0%,
                rgba(0,0,0,0.10) 40%,
                rgba(0,0,0,0.55) 100%
            );
        }
        .hero .container { position: relative; z-index: 2; }
        .hero-content { max-width: 720px; }
        .hero .label {
            color: #000;
            font-size: 1.1rem;
            letter-spacing: 0.18em;
            font-weight: 800;
            margin-bottom: 24px;
        }
        .hero h1 {
            font-size: clamp(2.5rem, 5.5vw, 4.5rem);
            font-weight: 300;
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin: 0 0 28px;
            color: #fff;
            position: relative;
            z-index: 3;
        }
        .hero h1 em {
            font-style: italic;
            font-weight: 400;
            color: #000;
        }
        .hero-sub {
            font-size: 1.1rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.85);
            max-width: 580px;
            margin-bottom: 40px;
            font-weight: 300;
            position: relative;
            z-index: 3;
        }
        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.35);
            color: #fff;
            text-decoration: none;
            font-size: 0.92rem;
            letter-spacing: 0.04em;
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
        }
        .hero-cta:hover {
            background: rgba(255,255,255,0.18);
            border-color: #fff;
        }
        .hero-cta svg { transition: transform 0.3s; }
        .hero-cta:hover svg { transform: translateX(4px); }

        .scroll-indicator {
            position: absolute;
            bottom: 40px; left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            color: rgba(255,255,255,0.6);
        }
        .scroll-indicator span {
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 0.7rem;
        }
        .scroll-line {
            width: 1px; height: 40px;
            background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }
        @keyframes scrollPulse {
            0%, 100% { opacity: 0.4; }
            50%      { opacity: 1; }
        }

        /* ── About ── */
        #about { background: #000; }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        .about-text h2 {
            font-size: clamp(1.9rem, 3vw, 2.6rem);
            margin: 1rem 0 1.5rem;
            color: #e8ecef;
            line-height: 1.2;
        }
        .about-text p {
            color: #8a9baa;
            font-size: 1rem;
            margin-bottom: 1.2rem;
            line-height: 1.8;
        }
        .about-visual {
            position: relative;
            height: 460px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }
        .about-visual img {
            width: 100%; height: 100%;
            object-fit: cover;
        }
        .about-visual .overlay-text {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(10,30,40,0.85), transparent);
            font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
            font-size: 1.15rem;
            font-style: italic;
            color: rgba(255,255,255,0.9);
            line-height: 1.5;
        }

        /* ── Key Numbers ── */
        .market-position {
            background: #0a0a0a;
            padding: 5rem 0;
        }
        .market-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }
        .market-stat {
            padding: 2rem 1rem;
        }
        .market-stat h3 {
            font-size: 2.4rem;
            color: #1a948f;
            margin-bottom: 0.4rem;
            font-weight: 400;
        }
        .market-stat p {
            font-size: 0.85rem;
            color: #8a9baa;
            line-height: 1.5;
        }

        /* ── Strategy ── */
        #strategy { background: #000; }
        .strategy-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
        .strategy-header h2 {
            font-size: clamp(1.9rem, 3vw, 2.6rem);
            margin: 1rem 0 1.2rem;
            color: #e8ecef;
        }
        .strategy-header p {
            color: #8a9baa;
            font-size: 1rem;
        }
        .strategy-phases {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        .phase-card {
            padding: 2rem 1.5rem;
            border: 1px solid #1a1a1a;
            border-radius: 6px;
            transition: all 0.4s;
            position: relative;
            background: #0a0a0a;
        }
        .phase-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, #1a948f, #22b8b0);
            border-radius: 6px 6px 0 0;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .phase-card:hover {
            border-color: rgba(26, 148, 143, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(26, 148, 143, 0.08);
        }
        .phase-card:hover::before { opacity: 1; }
        .phase-label {
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #1a948f;
            margin-bottom: 0.8rem;
        }
        .phase-card h3 {
            font-size: 1.1rem;
            color: #e8ecef;
            margin-bottom: 0.8rem;
        }
        .phase-card p {
            font-size: 0.88rem;
            color: #8a9baa;
            line-height: 1.7;
        }
        .principles-bar {
            background: rgba(26, 148, 143, 0.08);
            border: 1px solid rgba(26, 148, 143, 0.2);
            border-radius: 6px;
            padding: 1.8rem 2.5rem;
            text-align: center;
        }
        .principles-bar h4 {
            font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #1a948f;
            margin-bottom: 0.8rem;
        }
        .principles-bar p {
            color: #8a9baa;
            font-size: 0.92rem;
        }

        /* ── Investment Structures ── */
        #investments { background: #0a0a0a; }
        .investments-header { max-width: 700px; margin-bottom: 3.5rem; }
        .investments-header h2 {
            font-size: clamp(1.9rem, 3vw, 2.6rem);
            margin: 1rem 0 1.2rem;
            color: #e8ecef;
        }
        .investments-header p {
            color: #8a9baa;
            font-size: 1rem;
        }
        .structure-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 3.5rem;
        }
        .structure-card {
            padding: 2.5rem;
            border: 1px solid #1a1a1a;
            border-radius: 6px;
            background: #0f0f0f;
            transition: all 0.3s;
        }
        .structure-card:hover {
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
            border-color: rgba(26, 148, 143, 0.3);
        }
        .structure-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px; height: 36px;
            border-radius: 50%;
            background: #1a948f;
            color: #fff;
            font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
            font-size: 1rem;
            margin-bottom: 1.2rem;
        }
        .structure-card h3 {
            font-size: 1.25rem;
            color: #e8ecef;
            margin-bottom: 1rem;
        }
        .structure-card ul { list-style: none; padding: 0; }
        .structure-card li {
            font-size: 0.92rem;
            color: #8a9baa;
            padding: 0.4rem 0 0.4rem 1.2rem;
            position: relative;
        }
        .structure-card li::before {
            content: '';
            position: absolute;
            left: 0; top: 0.85rem;
            width: 5px; height: 5px;
            border-radius: 50%;
            background: #1a948f;
        }
        .checklist {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            text-align: center;
        }
        .check-item {
            padding: 1.5rem 1rem;
            background: #0a0a0a;
            border: 1px solid #1a1a1a;
            border-radius: 6px;
            transition: all 0.3s;
        }
        .check-item:hover {
            border-color: rgba(26, 148, 143, 0.25);
            box-shadow: 0 4px 20px rgba(26, 148, 143, 0.06);
        }
        .check-icon {
            width: 64px; height: 64px;
            border-radius: 50%;
            background: rgba(26, 148, 143, 0.12);
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1rem;
            color: #1a948f;
        }
        .check-icon svg {
            width: 30px; height: 30px;
        }
        .check-item h4 {
            font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
            font-size: 0.82rem;
            font-weight: 600;
            color: #e8ecef;
            margin-bottom: 0.4rem;
        }
        .check-item p {
            font-size: 0.78rem;
            color: #8a9baa;
            line-height: 1.5;
        }

        /* ── Case Study ── */
        .case-study { background: #000; }
        .case-study-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        .case-text h2 {
            font-size: clamp(1.9rem, 3vw, 2.4rem);
            margin: 1rem 0 1rem;
            color: #e8ecef;
        }
        .case-text > p {
            color: #8a9baa;
            font-size: 0.98rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        .case-metrics {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        .case-metric h3 {
            font-size: 1.8rem;
            color: #1a948f;
            font-weight: 400;
            margin-bottom: 0.2rem;
        }
        .case-metric p {
            font-size: 0.82rem;
            color: #8a9baa;
            line-height: 1.5;
        }
        .case-image {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: 380px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }
        .case-image img {
            width: 100%; height: 100%;
            object-fit: cover;
        }
        .case-video {
            margin-top: 3.5rem;
        }
        .case-video video {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }
        .case-video-label {
            text-align: center;
            margin-top: 1rem;
            font-size: 0.82rem;
            color: #8a9baa;
        }

        /* ── Partnership Banner ── */
        .partnership-banner {
            padding: 6rem 0;
            background: linear-gradient(135deg, #050d12, #0a1a22, #0f2530);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .partnership-banner::before {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(26,148,143,0.12) 0%, transparent 70%);
        }
        .partnership-banner .container { position: relative; }
        .partnership-banner .divider {
            width: 50px; height: 2px;
            background: #1a948f;
            margin: 0 auto 2.5rem;
        }
        .partnership-banner blockquote {
            font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
            font-size: clamp(1.3rem, 2.5vw, 2rem);
            font-style: italic;
            color: rgba(255,255,255,0.85);
            max-width: 750px;
            margin: 0 auto 1.5rem;
            line-height: 1.5;
        }
        .partnership-banner cite {
            font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
            font-style: normal;
            font-size: 0.72rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #3fd4cb;
        }

        /* ── Team ── */
        #team { background: #000; }
        .team-header { text-align: center; max-width: 800px; margin: 0 auto 4rem; }
        .team-header h2 {
            font-size: clamp(1.9rem, 3vw, 2.6rem);
            margin: 1rem 0 1.2rem;
            color: #e8ecef;
        }
        .team-header p { color: #8a9baa; font-size: 1rem; }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            max-width: 960px;
            margin: 0 auto;
        }
        .team-card { text-align: center; }
        .team-card.team-center { grid-column: 2; }
        .team-grid.team-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 620px; }
        .team-photo {
            width: 170px; height: 170px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            overflow: hidden;
            border: 3px solid #1a1a1a;
            transition: border-color 0.3s;
            background: #111;
        }
        .team-photo img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.4s, filter 0.4s;
            filter: grayscale(100%);
        }
        .team-card:hover .team-photo {
            border-color: #1a948f;
        }
        .team-card:hover .team-photo img {
            transform: scale(1.05);
        }
        .team-card h3 {
            font-size: 1.15rem;
            color: #e8ecef;
            margin-bottom: 0.3rem;
        }
        .team-card .role {
            font-size: 0.8rem;
            color: #1a948f;
            letter-spacing: 0.04em;
            margin-bottom: 0.6rem;
        }
        .team-stats {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 0.8rem;
        }
        .team-stats .ts { text-align: center; }
        .team-stats .ts strong {
            display: block;
            font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
            font-size: 1.05rem;
            color: #1a948f;
            font-weight: 400;
        }
        .team-stats .ts span {
            font-size: 0.62rem;
            color: #8a9baa;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }
        .team-logos {
            display: flex;
            justify-content: center;
            gap: 0.6rem;
            margin-top: 0.8rem;
            flex-wrap: wrap;
        }
        .team-logos span {
            font-size: 0.66rem;
            color: #8a9baa;
            padding: 0.25rem 0.6rem;
            border: 1px solid #2a2a2a;
            border-radius: 3px;
        }

        /* ── Contact ── */
        #contact { background: #0a0a0a; }
        .contact-header {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 4rem;
        }
        .contact-header h2 {
            font-size: clamp(1.9rem, 3vw, 2.6rem);
            margin: 1rem 0 1.2rem;
            color: #e8ecef;
        }
        .contact-intro {
            color: #8a9baa;
            font-size: 1rem;
            line-height: 1.8;
            margin: 0;
        }
        .contact-blocks {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            max-width: 980px;
            margin: 0 auto;
            padding-top: 3rem;
            border-top: 1px solid #1a1a1a;
        }
        .contact-block .label { margin-bottom: 0.7rem; }
        .contact-block-body {
            color: #c0c8d0;
            font-size: 0.95rem;
            line-height: 1.7;
            margin: 0;
        }
        .contact-block .email-wrapper a {
            font-size: 0.95rem;
        }
        .contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
        .form-group label {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #8a9baa;
            margin-bottom: 0.5rem;
            display: block;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            background: #111;
            border: 1px solid #2a2a2a;
            border-radius: 4px;
            padding: 0.9rem 1rem;
            color: #d0d5da;
            font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
            font-size: 0.95rem;
            transition: border-color 0.3s;
            outline: none;
        }
        .form-group input:focus,
        .form-group textarea:focus { border-color: #1a948f; box-shadow: 0 0 0 3px rgba(26,148,143,0.08); }
        .form-group textarea { resize: vertical; min-height: 120px; }
        .submit-btn {
            background: #1a948f;
            color: #fff;
            border: none;
            padding: 1rem 2.5rem;
            font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s;
            align-self: flex-start;
        }
        .submit-btn:hover { background: #158580; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,148,143,0.25); }

        @media (max-width: 768px) {
            .contact-blocks {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding-top: 2.5rem;
            }
            .contact-header { margin-bottom: 3rem; }
        }

        /* ── News ── */
        #news { background: #000; }
        .news-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
        .news-header h2 {
            font-size: clamp(2rem, 3.2vw, 2.8rem);
            color: #e8ecef;
            margin: 1rem 0 1.2rem;
        }
        .news-header p {
            color: #8a9baa;
            font-size: 1rem;
            line-height: 1.8;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        .news-card {
            background: #0a0a0a;
            border: 1px solid #1a1a1a;
            border-radius: 6px;
            padding: 2.2rem 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            transition: all 0.35s ease;
            text-decoration: none;
            color: inherit;
            position: relative;
        }
        .news-card:hover {
            border-color: #1a948f;
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.5);
        }
        .news-card .news-tag {
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #1a948f;
        }
        .news-card h3 {
            font-size: 1.15rem;
            color: #e8ecef;
            line-height: 1.45;
            font-weight: 500;
            letter-spacing: -0.01em;
            margin: 0;
        }
        .news-card .news-meta {
            font-size: 0.78rem;
            color: #7a8090;
            margin-top: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 1rem;
            border-top: 1px solid #1a1a1a;
        }
        .news-card .news-source { letter-spacing: 0.05em; }
        .news-card .news-arrow {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            color: #1a948f;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: transform 0.3s;
        }
        .news-card:hover .news-arrow { transform: translateX(3px); }
        @media (max-width: 768px) {
            .news-grid { grid-template-columns: 1fr; gap: 1.25rem; }
            .news-card { padding: 1.8rem 1.5rem; }
        }

        /* ── Footer ── */
        footer {
            padding: 3rem 0;
            border-top: 1px solid #1a1a1a;
            background: #000;
        }
        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .footer-inner p {
            font-size: 0.8rem;
            color: #a0adb8;
        }
        .footer-links { display: flex; gap: 2rem; }
        .footer-links a {
            font-size: 0.75rem;
            color: #a0adb8;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: #1a948f; }

        /* ── Bio Modal ── */
        .team-card { cursor: pointer; }
        .bio-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }
        .bio-modal-overlay.active { display: flex; }
        .bio-modal {
            background: #0a0a0a;
            border: 1px solid #1a1a1a;
            border-radius: 10px;
            max-width: 640px;
            width: 100%;
            max-height: 85vh;
            overflow-y: auto;
            padding: 3rem;
            position: relative;
            animation: modalIn 0.3s ease;
        }
        @keyframes modalIn {
            from { opacity: 0; transform: translateY(20px) scale(0.97); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        .bio-modal-close {
            position: absolute;
            top: 1.2rem; right: 1.2rem;
            background: none; border: none;
            color: #8a9baa; font-size: 1.5rem;
            cursor: pointer; line-height: 1;
            transition: color 0.2s;
        }
        .bio-modal-close:hover { color: #fff; }
        .bio-modal-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.8rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #1a1a1a;
        }
        .bio-modal-photo {
            width: 80px; height: 80px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 2px solid #1a1a1a;
        }
        .bio-modal-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
        .bio-modal-header h3 {
            font-size: 1.3rem;
            color: #e8ecef;
            margin-bottom: 0.2rem;
        }
        .bio-modal-header .role {
            font-size: 0.8rem;
            color: #1a948f;
            letter-spacing: 0.04em;
        }
        .bio-modal p {
            font-size: 0.92rem;
            color: #8a9baa;
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        .bio-modal p:last-child { margin-bottom: 0; }
        .bio-modal strong { color: #c0c8d0; }

        /* ── Animations ── */
        .fade-in {
            opacity: 0;
            transform: translateY(25px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .fade-in.visible { opacity: 1; transform: translateY(0); }
        .fade-in-delay-1 { transition-delay: 0.1s; }
        .fade-in-delay-2 { transition-delay: 0.2s; }
        .fade-in-delay-3 { transition-delay: 0.3s; }
        .fade-in-delay-4 { transition-delay: 0.4s; }

        /* ── Responsive ── */
        @media (max-width: 1024px) {
            .strategy-phases { grid-template-columns: repeat(2, 1fr); }
            .checklist { grid-template-columns: repeat(3, 1fr); }
            .market-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 968px) {
            .about-grid { grid-template-columns: 1fr; gap: 3rem; }
            .structure-grid { grid-template-columns: 1fr; }
            .case-study-inner { grid-template-columns: 1fr; }
            section { padding: 5rem 0; }
            .about-visual { height: 350px; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%; left: 0; right: 0;
                background: rgba(0,0,0,0.98);
                backdrop-filter: blur(20px);
                padding: 2rem;
                gap: 1.5rem;
                box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            }
            .nav-links.active a { color: #8a9baa; }
            .nav-links.active .nav-contact { border-color: #3fd4cb; color: #3fd4cb; }
            .nav-toggle { display: block; }
            .strategy-phases { grid-template-columns: 1fr; }
            .checklist { grid-template-columns: repeat(2, 1fr); }
            .market-grid { grid-template-columns: repeat(2, 1fr); }
            .team-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
            .team-card.team-center { grid-column: auto; }
            .team-grid.team-grid-2 { grid-template-columns: 1fr; max-width: 340px; }
            .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
        }
        @media (max-width: 480px) {
            .checklist { grid-template-columns: 1fr; }
            .case-metrics { grid-template-columns: 1fr; }
            .market-grid { grid-template-columns: 1fr; }
        }

        /* ── Email contact dropdown ── */
        .email-wrapper {
            position: relative;
            display: inline-block;
        }
        .email-wrapper > a:first-child {
            cursor: pointer;
        }
        .email-menu {
            display: none;
            position: absolute;
            top: calc(100% + 14px);
            left: 50%;
            transform: translateX(-50%);
            background: rgba(15, 15, 15, 0.98);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 6px;
            min-width: 240px;
            z-index: 100;
            overflow: hidden;
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .email-menu.visible { display: block; }
        .email-menu > a,
        .email-menu > button {
            display: block;
            width: 100%;
            padding: 11px 18px;
            color: #d0d5da;
            font-size: 0.85rem;
            font-family: inherit;
            font-weight: 400;
            letter-spacing: 0;
            text-transform: none;
            text-decoration: none;
            text-align: left;
            background: none;
            border: none;
            cursor: pointer;
            transition: background 0.18s ease, color 0.18s ease;
        }
        .email-menu > a + button {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        .email-menu > a:hover,
        .email-menu > button:hover {
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
        }
    