.vxr_vxl_main_box {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0f 0%, #0d1117 50%, #0a0a0f 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.vxr_vxl_canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vxr_vxl_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 20% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 40%);
    z-index: 2;
    pointer-events: none;
}

.vxr_vxl_container {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vxr_vxl_nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.vxr_vxl_logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: opacity 0.3s ease;
}

.vxr_vxl_logo:hover {
    opacity: 0.8;
}

.vxr_vxl_logo_icon {
    width: 40px;
    height: 40px;
    color: #a855f7;
}

.vxr_vxl_nav_links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vxr_vxl_nav_link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.vxr_vxl_nav_link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.vxr_vxl_nav_link_accent {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #fff;
}

.vxr_vxl_nav_link_accent:hover {
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
}

.vxr_vxl_burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 100;
}

.vxr_vxl_burger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.vxr_vxl_burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.vxr_vxl_burger.active span:nth-child(2) {
    opacity: 0;
}

.vxr_vxl_burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.vxr_vxl_mobile_menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.vxr_vxl_mobile_menu.active {
    opacity: 1;
    visibility: visible;
}

.vxr_vxl_mobile_link {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    padding: 16px 32px;
    transition: all 0.3s ease;
}

.vxr_vxl_mobile_link:hover {
    color: #a855f7;
}

.vxr_vxl_mobile_link_accent {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    border-radius: 12px;
    margin-top: 16px;
}

.vxr_vxl_hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0 80px;
}

.vxr_vxl_hero_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
}

.vxr_vxl_badge_dot {
    width: 8px;
    height: 8px;
    background: #a855f7;
    border-radius: 50%;
    animation: vxr_vxl_pulse 2s infinite;
}

@keyframes vxr_vxl_pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.vxr_vxl_hero_badge span:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.vxr_vxl_hero_title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 24px;
    letter-spacing: -0.03em;
}

.vxr_vxl_hero_title span {
    display: block;
}

.vxr_vxl_hero_title_accent {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vxr_vxl_hero_text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 0 40px;
}

.vxr_vxl_hero_buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
}

.vxr_vxl_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vxr_vxl_btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.vxr_vxl_btn_primary {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #fff;
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.3);
}

.vxr_vxl_btn_primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
}

.vxr_vxl_btn_primary:hover svg {
    transform: translateX(4px);
}

.vxr_vxl_btn_secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.vxr_vxl_btn_secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.vxr_vxl_hero_stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.vxr_vxl_stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.vxr_vxl_stat_num {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vxr_vxl_stat_label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.vxr_vxl_scroll_indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.vxr_vxl_scroll_indicator span {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: vxr_vxl_scroll 2s infinite;
}

@keyframes vxr_vxl_scroll {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(12px); }
}

@media (max-width: 1024px) {
    .vxr_vxl_hero_stats {
        gap: 32px;
    }
    .vxr_vxl_stat_num {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .vxr_vxl_nav_links {
        display: none;
    }
    .vxr_vxl_burger {
        display: flex;
    }
    .vxr_vxl_mobile_menu {
        display: flex;
    }
    .vxr_vxl_hero {
        padding: 60px 0;
    }
    .vxr_vxl_hero_text {
        font-size: 16px;
    }
    .vxr_vxl_btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    .vxr_vxl_hero_stats {
        gap: 24px;
    }
    .vxr_vxl_stat_num {
        font-size: 24px;
    }
    .vxr_vxl_stat_label {
        font-size: 12px;
    }
    .vxr_vxl_scroll_indicator {
        display: none;
    }
}

.vxr_vxl_canvas.vxr962E4 {
    width: 1132px;
    height: 1132px;
}