        :root {
            --primary: #111111;
            --accent: #2563EB;
            --text-main: #0a0a0a;
            --text-secondary: #525252;
            --bg-body: #ffffff;
            --bg-alt: #fafafa;
            --border-light: #e5e5e5;
            --radius-lg: 16px;
            --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;
            --font-mono: 'Fira Code', monospace;
        }

        * {
            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: 16px 32px;
            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;
            cursor: pointer;
        }

        .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 Section - Immersive Parallax */
        .hero-training {
            height: 90vh;
            min-height: 600px;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: #050505;
            color: white;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            /* Taller for parallax */
            opacity: 0.4;
            will-change: transform;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 2;
            width: 100%;
            padding-left: 5%;
            /* Offset for modern look */
        }

        .hero-tag {
            font-family: var(--font-mono);
            font-size: 13px;
            color: var(--accent);
            margin-bottom: 32px;
            display: inline-block;
            letter-spacing: 0.2em;
            border: 1px solid rgba(37, 99, 235, 0.3);
            padding: 8px 16px;
            border-radius: 99px;
            background: rgba(37, 99, 235, 0.1);
        }

        .hero-training h1 {
            font-size: 80px;
            margin-bottom: 32px;
            color: white;
            line-height: 1.05;
            letter-spacing: -0.04em;
        }

        .hero-training p {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin-bottom: 50px;
            font-weight: 300;
        }

        /* Pathways Section - Pro Cards */
        .pathways-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 80px;
        }

        .pathway-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid var(--border-light);
            transition: all 0.5s var(--ease-tech);
            position: relative;
        }

        .pathway-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
            border-color: transparent;
        }

        .pathway-image {
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .pathway-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
        }

        .pathway-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s var(--ease-tech);
        }

        .pathway-card:hover .pathway-image img {
            transform: scale(1.1);
        }

        .pathway-content {
            padding: 48px;
        }

        .pathway-label {
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--accent);
            margin-bottom: 20px;
            display: block;
            letter-spacing: 0.1em;
            font-weight: 600;
        }

        .pathway-list {
            list-style: none;
            margin: 32px 0;
        }

        .pathway-list li {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 16px;
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .pathway-list li::before {
            content: '';
            min-width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            margin-top: 10px;
        }

        .pathway-goal {
            background: #f8f9fa;
            padding: 24px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-main);
            border-left: 4px solid var(--primary);
            line-height: 1.6;
        }

        /* Features Section - Minimalist */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: var(--border-light);
            border: 1px solid var(--border-light);
            margin-top: 80px;
        }

        .feature-item {
            text-align: left;
            padding: 48px 32px;
            background: white;
            transition: background 0.3s;
        }

        .feature-item:hover {
            background: #fafafa;
        }

        .feature-number {
            font-family: var(--font-mono);
            font-size: 14px;
            color: var(--accent);
            margin-bottom: 24px;
            display: block;
        }

        .feature-item h4 {
            font-size: 20px;
            margin-bottom: 12px;
        }

        /* Support Section - Dark Tech */
        .support-section {
            background: #0a0a0a;
            color: white;
            overflow: hidden;
            padding: 160px 0;
        }

        .support-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 100px;
            align-items: center;
        }

        .support-content h2 {
            color: white;
            margin-bottom: 32px;
            font-size: 48px;
        }

        .support-content p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 18px;
            margin-bottom: 48px;
        }

        .support-list {
            list-style: none;
            margin-top: 0;
            display: grid;
            gap: 24px;
        }

        .support-list li {
            display: flex;
            align-items: flex-start;
            gap: 24px;
            padding: 32px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s;
        }

        .support-list li:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.1);
            transform: translateX(10px);
        }

        .support-icon-box {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
        }

        .support-visual {
            position: relative;
            height: 700px;
            border-radius: 32px;
            overflow: hidden;
        }

        .support-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(20%);
        }

        /* CTA Section */
        .cta-box {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        /* 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) {

            .pathways-grid,
            .support-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }

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

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

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