
        :root {
            --primary: #111111;
            --accent: #2563EB;
            --text-main: #0a0a0a;
            --text-secondary: #525252;
            --bg-body: #ffffff;
            --bg-alt: #fafafa;
            --border-light: #e5e5e5;
            --radius-lg: 12px;
            --radius-md: 8px;
            --radius-sm: 4px;
            --container-width: 1140px;
            --header-height: 70px;
            --ease-tech: cubic-bezier(0.16, 1, 0.3, 1);
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-main);
            background-color: var(--bg-body);
            line-height: 1.5;
            overflow-x: hidden;
            font-size: 16px;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--text-main);
        }

        h1 {
            font-size: 64px;
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -0.03em;
        }

        h2 {
            font-size: 42px;
            line-height: 1.1;
            margin-bottom: 0.6em;
        }

        h3 {
            font-size: 24px;
            line-height: 1.3;
            margin-bottom: 0.4em;
        }

        p {
            color: var(--text-secondary);
            font-weight: 400;
            line-height: 1.6;
            margin-bottom: 1.5em;
        }

        a {
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: 120px 0;
            position: relative;
        }

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

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            border-radius: var(--radius-md);
            font-size: 15px;
            font-weight: 600;
            transition: all 0.2s var(--ease-tech);
            border: 1px solid transparent;
            letter-spacing: 0.01em;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .btn-primary:hover {
            background-color: #000;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 9999;
            border-bottom: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        .logo {
            font-weight: 600;
            font-size: 19px;
            color: var(--text-main);
            letter-spacing: -0.01em;
        }

        .nav-menu {
            display: flex;
            gap: 32px;
        }

        .nav-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-main);
            opacity: 0.7;
            transition: opacity 0.2s;
        }

        .nav-link:hover {
            opacity: 1;
            color: var(--text-main);
        }

        /* Mobile Menu Styles - Premium */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 6px;
            width: 30px;
            height: 30px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 10001;
            padding: 0;
        }

        .mobile-menu-btn span {
            width: 100%;
            height: 2px;
            background-color: var(--text-main);
            transition: all 0.3s var(--ease-tech);
            border-radius: 2px;
        }

        .mobile-menu-close {
            position: absolute;
            top: 24px;
            right: 24px;
            background: none;
            border: none;
            cursor: pointer;
            width: 40px;
            height: 40px;
            z-index: 10002;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-menu-close span {
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: var(--text-main);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-menu-close span:nth-child(1) {
            transform: rotate(45deg);
        }

        .mobile-menu-close span:nth-child(2) {
            transform: rotate(-45deg);
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 10000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s var(--ease-tech);
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-link {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 700;
            color: var(--text-main);
            margin: 12px 0;
            opacity: 0;
            transform: translateY(20px);
            transition: color 0.3s ease;
            text-decoration: none;
        }

        .mobile-nav-link:hover {
            color: var(--accent);
        }

        /* Button Animation State */
        .mobile-menu-btn.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-10px);
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        @media (max-width: 960px) {
            .nav-menu {
                display: none;
            }

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

            .header-inner .btn-primary {
                display: none;
            }
        }

        /* Hero Immersive */
        .hero-immersive {
            position: relative;
            height: 90vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            color: white;
            margin-bottom: 0;
            /* Remove margin to flow into next section */
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            /* Taller for parallax */
            z-index: 1;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.4);
            /* Darken for text readability */
        }

        .hero-content-immersive {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 0 24px;
        }

        .hero-content-immersive h1 {
            color: white;
            font-size: 72px;
            margin-bottom: 24px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .hero-content-immersive p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 24px;
            max-width: 700px;
            margin: 0 auto 40px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        /* Sticky Section */
        .sticky-wrapper {
            padding: 120px 0;
            background: white;
        }

        .sticky-container {
            display: flex;
            gap: 80px;
            position: relative;
        }

        .sticky-visual {
            width: 50%;
            height: 80vh;
            position: sticky;
            top: 100px;
            border-radius: var(--radius-lg);
            overflow: hidden;
        }

        .sticky-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .sticky-content {
            width: 50%;
            padding-top: 40px;
            padding-bottom: 40px;
        }

        .sticky-block {
            min-height: 60vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            opacity: 0.3;
            transition: opacity 0.5s;
        }

        .sticky-block.active {
            opacity: 1;
        }

        /* Mission & Vision - Immersive Redesign */
        .mv-section {
            padding: 0;
            overflow: hidden;
        }

        .mv-row {
            display: flex;
            min-height: 600px;
        }

        .mv-row.reverse {
            flex-direction: row-reverse;
        }

        .mv-visual {
            flex: 1;
            position: relative;
            overflow: hidden;
        }

        .mv-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s var(--ease-tech);
        }

        .mv-row:hover .mv-visual img {
            transform: scale(1.05);
        }

        .mv-content-wrapper {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px;
            background: white;
            position: relative;
            z-index: 2;
        }

        .mv-inner {
            max-width: 500px;
        }

        .mv-label {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 20px;
            display: block;
        }

        .mv-title {
            font-size: 48px;
            margin-bottom: 30px;
            line-height: 1.1;
        }

        .mv-text {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 30px;
        }

        .mv-highlight {
            padding-left: 20px;
            border-left: 3px solid var(--accent);
            font-style: italic;
            color: var(--text-main);
            font-weight: 500;
        }

        @media (max-width: 1024px) {

            .mv-row,
            .mv-row.reverse {
                flex-direction: column;
                min-height: auto;
            }

            .mv-visual {
                height: 400px;
            }

            .mv-content-wrapper {
                padding: 60px 24px;
            }
        }

        /* Enhanced Cards */
        .mv-card {
            background: white;
            padding: 50px;
            border-radius: 24px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 100%;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            transition: transform 0.4s var(--ease-tech);
        }

        .mv-card:hover {
            transform: translateY(-10px);
        }

        /* Values Grid - Premium Redesign */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 80px;
        }

        .value-card {
            background: #f9f9f9;
            padding: 60px 50px;
            border-radius: 32px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s var(--ease-tech);
            border: 1px solid transparent;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .value-card:hover {
            background: white;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
            transform: translateY(-8px);
        }

        .value-number {
            position: absolute;
            top: 30px;
            right: 40px;
            font-size: 120px;
            font-weight: 800;
            color: rgba(0, 0, 0, 0.03);
            line-height: 0.8;
            transition: all 0.4s var(--ease-tech);
            font-family: var(--font-heading);
            letter-spacing: -0.05em;
        }

        .value-card:hover .value-number {
            color: rgba(37, 99, 235, 0.08);
            transform: scale(1.1);
        }

        .value-icon-wrapper {
            width: 70px;
            height: 70px;
            background: white;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 32px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            font-size: 32px;
            position: relative;
            z-index: 2;
            transition: transform 0.3s var(--ease-tech);
        }

        .value-card:hover .value-icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }

        .value-title {
            font-size: 32px;
            margin-bottom: 16px;
            position: relative;
            z-index: 2;
        }

        .value-desc {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 0;
            position: relative;
            z-index: 2;
            max-width: 90%;
        }

        /* Model Section */
        .model-section {
            background: #000;
            color: white;
        }

        .model-section h2,
        .model-section p {
            color: white;
        }

        .model-section p {
            opacity: 0.8;
        }

        .status-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 60px 0;
        }

        .status-card {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: var(--radius-lg);
        }

        .status-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .status-title {
            font-size: 24px;
            font-weight: 700;
            color: white;
        }

        .status-badge {
            background: var(--accent);
            color: white;
            padding: 4px 12px;
            border-radius: 99px;
            font-size: 12px;
            font-weight: 600;
        }

        .status-features li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
        }

        .status-features li::before {
            content: '✓';
            color: var(--accent);
            font-weight: bold;
        }

        .tools-banner {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            padding: 40px;
            border-radius: var(--radius-lg);
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Footer */
        footer {
            background: var(--bg-alt);
            padding: 80px 0 40px;
            font-size: 12px;
            color: var(--text-secondary);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 60px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .footer-col h4 {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 16px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 8px;
        }

        /* Animations */
        .reveal-text {
            opacity: 0;
            transform: translateY(30px);
        }

        @media (max-width: 1024px) {

            .mission-vision-grid,
            .status-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

            .hero-content-immersive h1 {
                font-size: 48px;
            }

            .sticky-container {
                flex-direction: column;
            }

            .sticky-visual {
                width: 100%;
                height: 400px;
                position: relative;
                top: 0;
            }

            .sticky-content {
                width: 100%;
            }

            .sticky-block {
                min-height: auto;
                margin-bottom: 60px;
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .values-grid {
                grid-template-columns: 1fr;
            }

            .nav-menu {
                display: none;
            }
        }
    