/* * NAMESPACE: nv- 
         * All classes use this prefix to prevent conflicts.
         */

        :root {
            --nv-font: 'Inter Tight', sans-serif;
            --nv-white: #ffffff;
            --nv-black: #000000;
            --nv-card-bg: #ffffff;
            --nv-padding: 3rem;
        }

        /* Component Reset */
        body, html {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            overflow: hidden; /* Prevent scrolling on the hero */
            background-color: #050510; /* Fallback color */
        }

        .nv-wrapper {
            position: relative;
            width: 100vw;
            height: 100vh;
            font-family: var(--nv-font);
            color: var(--nv-white);
            box-sizing: border-box;
            overflow: hidden;
        }

        .nv-wrapper * {
            box-sizing: border-box;
        }

        /* --- Background Video --- */
        .nv-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            opacity: 0.7; /* Slight dim for text readability */
        }

        /* Gradient Overlay to ensure text pops */
        .nv-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 5, 40, 0.562) 0%, rgba(20, 10, 60, 0.244) 100%);
            z-index: 2;
        }

        /* --- Main Content Grid --- */
        .nv-container {
            position: relative;
            z-index: 3;
            width: 100%;
            height: 100%;
            padding: var(--nv-padding);
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            grid-template-areas: 
                "hero services"
                "details card";
        }

        /* 1. Main Typography (Top Left / Center area) */
        .nv-hero-text {
            grid-area: hero;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            padding-top: 2vh;
        }

        .nv-title-main {
            font-size: 16vw; /* Massive responsive text */
            font-weight: 600;
            line-height: 0.85;
            letter-spacing: -0.04em;
            margin: 0;
            margin-left: -0.5vw; /* Visual alignment fix */
        }

        .nv-title-sub {
            font-size: 5vw;
            font-weight: 600;
            letter-spacing: -0.04em;
            margin-top: 0;
            margin-left: 30vw; /* Indent to match design */
            line-height: 0.8;
        }

        /* 2. Services List (Top Right) */
        .nv-services {
            grid-area: services;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            text-align: right;
            padding-top: 4rem;
            gap: 1rem;
        }

        .nv-service-item {
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            color: #dcdcdc;
        }

        /* 3. Description (Bottom Left) */
        .nv-description {
            grid-area: details;
            display: flex;
            align-items: flex-end;
            padding-bottom: 1rem;
        }

        .nv-desc-text {
            max-width: 400px;
            font-size: 1.25rem;
            line-height: 1.4;
            font-weight: 400;
            letter-spacing: -0.02em;
        }

        /* 4. Team Card & Copyright (Bottom Right area) */
        .nv-bottom-right {
            grid-area: card;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-end;
            position: relative;
        }

        /* Copyright (Centered visually at bottom, but placed in grid) */
        .nv-copyright {
            position: absolute;
            bottom: 1rem;
            left: -20%; /* Pull towards center */
            font-size: 0.9rem;
            color: #d2d2d2;
            white-space: nowrap;
        }

        /* The White Card */
        .nv-card {
            color: var(--nv-black);
            padding: 0.8rem;
            border-radius: 20px;
            width: 320px;
            display: flex;
            gap: 0.3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .nv-card-image {
            width: 100px;
            height: 100%;
            border-radius: 8px;
            object-fit: cover;
            background-color: #ddd;
        }

        .nv-card-content {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 0.2rem 0;
            flex: 1;
        }

        .nv-card-role {
            font-size: 0.8rem;
            color: #666;
            margin-bottom: 9px;
            font-weight: 500;
        }

        .nv-card-name {
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: -0.03em;
            margin-bottom: auto;
        }

        .nv-card-btn {
            background-color: #000;
            color: #fff;
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            width: fit-content;
            text-decoration: none;
            gap: 8px;
            transition: transform 0.2s ease;
        }

        .nv-card-btn:hover {
            transform: scale(1.05);
        }

        .nv-arrow {
            width: 10px;
            height: 10px;
            fill: none;
            stroke: white;
            stroke-width: 2;
        }

        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .nv-container {
                padding: 2rem;
                grid-template-areas: 
                    "hero hero"
                    "services services"
                    "card card"
                    "details details";
                grid-template-rows: auto auto auto 1fr;
                gap: 2rem;
            }

            .nv-services {
                align-items: flex-start;
                text-align: left;
                padding-top: 0;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 1.5rem;
            }

            .nv-bottom-right {
                align-items: flex-start;
            }

            .nv-copyright {
                position: static;
                margin-top: 2rem;
            }

            .nv-title-sub {
                margin-left: 0; /* Align left on mobile */
            }
        }