:root {
    --bg-dark: #020204;
    --accent-blue: #00f2fe;
    --accent-cyan: #4facfe;
    --accent-purple: #7000ff;
    --accent-gold: #ffb703;
    --accent-pink: #f093fb;
    --text-main: #ffffff;
    --text-muted: #8a8f9d;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body, html {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

::-webkit-scrollbar { display: none; }

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 800; }

/* AMBIENT MESH BACKGROUND */
.ambient-mesh {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none; z-index: 0; overflow: hidden;
}

.ambient-orb {
    position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.18;
    animation: pulseOrb 12s infinite alternate ease-in-out;
}
.orb-1 { width: 600px; height: 600px; background: var(--accent-cyan); top: -200px; left: -100px; }
.orb-2 { width: 700px; height: 700px; background: var(--accent-purple); bottom: -200px; right: -100px; animation-delay: -6s; }

@keyframes pulseOrb {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(40px, 30px); }
}

/* HEADER NAVIGATION */
header {
    position: fixed;
    top: 24px; left: 50%; transform: translateX(-50%);
    z-index: 10000;
    display: flex; align-items: center; gap: 20px;
    background: rgba(10, 10, 16, 0.85);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    padding: 8px 24px; border-radius: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.brand-logo {
    font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.5rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.nav-tabs { display: flex; background: rgba(255,255,255,0.04); border-radius: 30px; padding: 4px; gap: 4px; }

.tab-btn {
    border: none; background: transparent; color: var(--text-muted);
    padding: 8px 18px; border-radius: 20px; font-size: 0.9rem; font-weight: 600;
    cursor: pointer; transition: all 0.3s ease;
    display: inline-flex; flex-direction: row; align-items: center; gap: 8px; white-space: nowrap;
}

.tab-btn:hover { color: #fff; }
.tab-btn[data-tab="home"] { background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue)) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; box-shadow: none !important; padding: 0 !important; }
.tab-btn.active[data-tab="vxa"] { background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue)); color: #000; box-shadow: 0 0 20px rgba(79, 172, 254, 0.5); }
.tab-btn.active[data-tab="individuals"] { background: var(--accent-cyan); color: #000; box-shadow: 0 0 20px rgba(79, 172, 254, 0.5); }
.tab-btn.active[data-tab="companies"] { background: var(--accent-pink); color: #000; box-shadow: 0 0 20px rgba(240, 147, 251, 0.5); }
.tab-btn.active[data-tab="ecosystem"] { background: var(--accent-blue); color: #000; box-shadow: 0 0 20px rgba(0, 242, 254, 0.5); }
.tab-btn.active[data-tab="competitors"] { background: linear-gradient(135deg, #ff3366, #ff8c00); color: #fff; box-shadow: 0 0 20px rgba(255, 51, 102, 0.5); }
.tab-btn.active[data-tab="staff"] { background: var(--accent-gold); color: #000; box-shadow: 0 0 20px rgba(255, 183, 3, 0.5); }

/* FLOATING RIGHT-EDGE SLIDE DOTS HUD PANEL */
.slide-dots-hud {
    position: fixed;
    right: 28px; top: 28px;
    z-index: 999999;
    display: flex; flex-direction: column; gap: 14px;
    background: rgba(12, 14, 22, 0.92);
    backdrop-filter: blur(25px);
    padding: 16px 20px; border-radius: 24px;
    border: 1px solid rgba(79, 172, 254, 0.35);
    box-shadow: 0 20px 50px rgba(0,0,0,0.9), 0 0 20px rgba(79, 172, 254, 0.15);
}

.hud-toggle-btn {
    align-self: flex-end;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    /* Perfectly center align with the 10px dot-pill (which has margin-right 7px) */
    margin-bottom: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.hud-toggle-btn:hover {
    background: rgba(79, 172, 254, 0.2);
    border-color: rgba(79, 172, 254, 0.6);
    color: var(--accent-cyan);
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(79, 172, 254, 0.4);
}

.dot-row {
    display: flex; align-items: center; justify-content: flex-end; gap: 12px;
    cursor: pointer; opacity: 0.5; transition: all 0.3s ease, gap 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-dots-hud.collapsed .dot-row {
    gap: 0px;
}

.dot-row:hover, .dot-row.active { opacity: 1; }

.dot-label {
    font-size: 0.8rem; font-weight: 700; color: #fff;
    letter-spacing: 0.5px; white-space: nowrap; pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    max-width: 200px;
    opacity: 1;
    overflow: hidden;
}

.slide-dots-hud.collapsed .dot-label {
    max-width: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
}

.dot-row.active .dot-label { color: var(--accent-cyan); text-shadow: 0 0 10px rgba(79, 172, 254, 0.6); }

.dot-pill {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.3); transition: all 0.3s ease;
    margin-right: 7px; /* Matches (24px button - 10px pill)/2 to perfectly center align */
}

.dot-row.active .dot-pill {
    background: var(--accent-cyan); transform: scale(1.5); box-shadow: 0 0 12px var(--accent-cyan);
}

/* MAIN CONTENT LAYOUT */
.tab-panel { display: none; width: 100%; min-height: 100vh; position: relative; z-index: 10; }
.tab-panel.active { display: block; }

/* SLIDE STAGE CONTAINERS FOR ROCK-SOLID PINNING */
.slide-stage {
    width: 100vw; height: 100vh;
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    box-sizing: border-box;
}

.slide {
    width: 100vw; height: 100vh;
    padding: 100px 6vw 60px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative; box-sizing: border-box;
}

.section-tag {
    display: inline-block; padding: 6px 18px; border-radius: 30px;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}

.tag-vxa { background: rgba(0, 242, 254, 0.1); color: var(--accent-cyan); border: 1px solid rgba(0, 242, 254, 0.3); }
.tag-individuals { background: rgba(79, 172, 254, 0.1); color: var(--accent-cyan); border: 1px solid rgba(79, 172, 254, 0.3); }
.tag-companies { background: rgba(240, 147, 251, 0.1); color: var(--accent-pink); border: 1px solid rgba(240, 147, 251, 0.3); }
.tag-ecosystem { background: rgba(0, 242, 254, 0.1); color: var(--accent-blue); border: 1px solid rgba(0, 242, 254, 0.3); }
.tag-staff { background: rgba(255, 183, 3, 0.1); color: var(--accent-gold); border: 1px solid rgba(255, 183, 3, 0.3); }

.slide-title {
    font-size: 3.5vw; text-align: center; margin-bottom: 12px; letter-spacing: -1.5px;
}
.grad-text-slide {
    background: linear-gradient(to right, #ffffff, #9aa0b4); background-attachment: fixed;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.slide-subtitle { font-size: 1.2rem; color: var(--text-muted); text-align: center; max-width: 750px; line-height: 1.6; margin-bottom: 40px; }

/* VXA INTRO LOGO */
.zoom-hero {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative; z-index: 2; width: 100%; height: 100%;
}
.vxa-title { font-size: 22vw; font-weight: 900; letter-spacing: -5px; margin-bottom: 0; }
.grad-text-vxa {
    background: linear-gradient(135deg, #ffffff, var(--accent-cyan)); background-attachment: fixed;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.vxa-title-sub { font-size: 2rem; color: var(--text-muted); font-weight: 400; letter-spacing: 12px; text-align: center; margin-top: -30px; text-transform: uppercase; }

.v-flip {
    display: inline-block;
}
.v-flip::before {
    content: "V";
    display: inline-block;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform-origin: center center;
    position: relative;
    top: 0.03em; /* Perfectly nudges the V to sit flush on the baseline */
    line-height: 1;
    padding: 0 0.1em;
    margin: 0 -0.1em;
}

/* Chrome/Opera Webkit bug fix: Transformed elements lose background-clip text inheritance, rendering invisible */
.vxa-title .v-flip::before { 
    background: linear-gradient(135deg, #ffffff, var(--accent-cyan)); background-attachment: fixed;
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
}
.slide-title .v-flip::before { 
    background: linear-gradient(to right, #ffffff, #9aa0b4); background-attachment: fixed;
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
}

/* DIGITAL CHAOS ORBIT STAGE */
.chaos-orbit-stage {
    position: relative;
    width: 100vw;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.chaos-center-text {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    background: rgba(10, 10, 15, 0.6);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}

.orbit-item {
    position: absolute;
    z-index: 5;
    background: rgba(25, 25, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    width: max-content;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    animation: floatChaos 7s ease-in-out infinite alternate;
    backdrop-filter: blur(10px);
}

.orbit-item i {
    font-size: 1.6rem;
}

@keyframes floatChaos {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(25px, -30px) rotate(4deg); }
}

/* AI HERO & 3D PHONE */
.ai-hero-card {
    width: 100%; max-width: 1050px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.08) 0%, rgba(112, 0, 255, 0.12) 100%);
    border: 1px solid rgba(79, 172, 254, 0.3); border-radius: 32px; padding: 45px; text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.ai-hero-card h3 { font-size: 2.5rem; margin-bottom: 16px; background: linear-gradient(to right, #ffffff, var(--accent-cyan), var(--accent-pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.ai-hero-card p { font-size: 1.15rem; color: var(--text-muted); line-height: 1.8; max-width: 850px; margin: 0 auto; }

.transformer-container { width: 100%; max-width: 1050px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 80px; align-items: center; justify-content: center; }
.face-selector { display: flex; flex-direction: column; gap: 20px; width: 100%; max-width: 400px; }
.face-card-btn { background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(0,0,0,0.5)); border: 1px solid rgba(255,255,255,0.1); padding: 20px; border-radius: 20px; cursor: pointer; transition: all 0.4s ease; display: flex; align-items: center; gap: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.face-card-btn:hover { background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(0,0,0,0.4)); transform: translateX(10px); }
.face-card-btn .f-icon { width: 55px; height: 55px; background: rgba(0,0,0,0.5); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; border: 1px solid rgba(255,255,255,0.1); box-shadow: inset 0 2px 10px rgba(255,255,255,0.05); flex-shrink: 0; }
.face-card-btn .f-content h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 5px; letter-spacing: 0.5px; text-transform: uppercase; }
.face-card-btn .f-content p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.4; margin: 0; }
.face-card-btn.active[data-face="public"] { border-color: #FF8A65; background: rgba(255, 138, 101, 0.1); box-shadow: 0 10px 40px rgba(255, 138, 101, 0.2); transform: scale(1.02); }
.face-card-btn.active[data-face="business"] { border-color: #90CAF9; background: rgba(144, 202, 249, 0.1); box-shadow: 0 10px 40px rgba(144, 202, 249, 0.2); transform: scale(1.02); }
.face-card-btn.active[data-face="private"] { border-color: #A5D6A7; background: rgba(165, 214, 167, 0.1); box-shadow: 0 10px 40px rgba(165, 214, 167, 0.2); transform: scale(1.02); }

.phone-bezel {
    width: 310px; height: 530px; background: #090a10; border: 10px solid #1c1d28; border-radius: 46px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.9); position: relative; overflow: hidden; margin: 0; flex-shrink: 0;
}
.dynamic-island { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 100px; height: 24px; background: #000; border-radius: 20px; z-index: 100; }
.screen-content { padding: 45px 20px 20px; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.avatar-glow { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple)); margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.app-link-card { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); padding: 12px 16px; border-radius: 14px; font-size: 0.85rem; display: flex; justify-content: space-between; margin-bottom: 8px; }

.mono-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1050px; width: 100%; }
.mono-card { background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 35px; border-radius: 24px; }
.mono-card h3 { font-size: 1.7rem; margin-bottom: 12px; }
.mono-card p { color: var(--text-muted); line-height: 1.6; }

/* ECOSYSTEM TIMELINE */
.milestone-stepper { width: 100%; max-width: 950px; position: relative; padding: 20px 0; margin-top: 60px; }
.stepper-line { position: absolute; top: 0; left: 50%; width: 4px; height: 100%; background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-pink), var(--accent-gold), #fff); transform: translateX(-50%) scaleY(0); transform-origin: top; z-index: 1; }
.step-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; position: relative; z-index: 10; }
.step-row:nth-child(even) { flex-direction: row-reverse; }
.step-card { width: 44%; background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 20px 24px; border-radius: 20px; }
.step-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--accent-cyan); box-shadow: 0 0 15px var(--accent-cyan); z-index: 10; position: relative; }

/* STAFF EARNINGS */
.staff-hero-card { background: linear-gradient(135deg, rgba(255, 183, 3, 0.08), rgba(0, 0, 0, 0.6)); border: 1px solid rgba(255, 183, 3, 0.25); border-radius: 32px; padding: 45px; width: 100%; max-width: 1050px; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px; }
.stat-badge { font-size: 3rem; font-weight: 900; color: var(--accent-gold); font-family: 'Outfit', sans-serif; }

/* =========================================================
   RESPONSIVE LAYOUT (LAPTOPS & TABLETS)
========================================================= */

@media (max-width: 1150px) {
    /* 1. Header & Navigation */
    header { width: 90%; max-width: 800px; padding: 6px 16px; }
    .tab-btn { font-size: 0.8rem; padding: 6px 12px; gap: 4px; }

    /* 2. Typography */
    .slide-title { font-size: 4.5vw; }
    .vxa-title { font-size: 20vw; }
    .vxa-title-sub { font-size: 1.5rem; letter-spacing: 8px; }

    /* 3. Grids & Panels */
    .transformer-container, .mono-grid, .calc-grid { gap: 20px; }
    .phone-bezel { transform: scale(0.9); }
    .chaos-center-text { max-width: 550px; }
}

@media (max-width: 900px) {
    /* Slide Layout adjustments */
    .slide { padding: 120px 4vw 80px; }
    
    header { width: 95%; top: 15px; padding: 8px 12px; flex-wrap: wrap; justify-content: center; border-radius: 20px; }
    .nav-tabs { flex-wrap: wrap; justify-content: center; border-radius: 15px; }
    
    .slide-title { font-size: 2.2rem; }
    .slide-subtitle { font-size: 1rem; }
    .vxa-title { font-size: 24vw; }

    /* Break grids to single column */
    .mono-grid, .calc-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
    .transformer-container { flex-direction: column; justify-content: center; gap: 20px; }
    .face-selector { width: 100%; max-width: 500px; margin: 0 auto; }
    .ai-hero-card p, .mono-card p { text-align: center; margin: 0 auto; }
    
    .ai-hero-card { padding: 30px; }
    .phone-bezel { transform: scale(0.85); margin: 20px auto 0; }
    
    /* 4. Chaos Orbit Stage (Slide 3) */
    .chaos-center-text { padding: 30px; max-width: 85vw; }
    .orbit-item { padding: 8px 12px; font-size: 0.8rem; gap: 8px; border-radius: 12px; }
    .orbit-item i { font-size: 1.1rem; }

    /* 5. Ecosystem Timeline */
    .milestone-stepper { padding-left: 10px; }
    .step-row, .step-row:nth-child(even) { flex-direction: row; justify-content: flex-start; margin-bottom: 30px; }
    .step-row > .step-card { order: 2; width: calc(100% - 40px); margin-left: 20px; text-align: left; }
    .step-row > .step-dot { order: 1; margin: 0; }
    .step-row > div:not(.step-card):not(.step-dot) { display: none; }
    .stepper-line { left: 20px; }
}

@media (max-width: 600px) {
    .slide-dots-hud { display: none; }
}

/* INDIVIDUALS NEW SLIDES UI COMPONENTS */
.split-comparison { display: flex; gap: 30px; margin-top: 20px; align-items: center; justify-content: center; flex-wrap: wrap; }
.bad-example, .good-example { background: rgba(20, 20, 25, 0.8); padding: 30px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); flex: 1; min-width: 280px; text-align: center; }
.bad-example { opacity: 0.7; filter: grayscale(50%); }
.bulky-btn { background: #333; color: white; padding: 15px; margin-bottom: 10px; border-radius: 10px; font-weight: bold; }

.tabs-ribbon { display: flex; gap: 15px; overflow-x: auto; padding: 20px; scrollbar-width: none; max-width: 800px; margin: 30px auto; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.ribbon-tab { background: rgba(255,255,255,0.1); padding: 12px 25px; border-radius: 30px; white-space: nowrap; font-weight: bold; cursor: pointer; }
.ribbon-tab.active { background: var(--accent-cyan); color: #000; }

.glass-demo-container { background: url('https://images.unsplash.com/photo-1550684848-fac1c5b4e853?q=80&w=800&auto=format&fit=crop') center/cover; border-radius: 30px; padding: 40px; margin-top: 30px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.glass-phone { background: rgba(255,255,255,0.1); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.3); border-radius: 40px; padding: 30px; max-width: 300px; margin: 0 auto; box-shadow: inset 0 0 20px rgba(255,255,255,0.1); }
.glass-header { font-size: 1.5rem; font-weight: bold; margin-bottom: 20px; text-align: center; }
.glass-card { background: rgba(0,0,0,0.4); padding: 15px; border-radius: 15px; margin-bottom: 10px; font-size: 0.9rem; text-align: center; }

.wallet-ui { position: relative; width: 100%; height: 350px; max-width: 400px; margin: 40px auto; }
.wallet-card { position: absolute; width: 100%; padding: 25px; border-radius: 20px; background: linear-gradient(135deg, #1e1e1e, #2a2a2a); border: 1px solid rgba(255,255,255,0.2); font-weight: bold; font-size: 1.1rem; box-shadow: 0 15px 30px rgba(0,0,0,0.4); transition: transform 0.3s; cursor: pointer; }
.wallet-card:hover { transform: translateY(-10px); z-index: 10; }
.card-1 { top: 0; z-index: 3; background: linear-gradient(135deg, #FF0055, #ff7b00); }
.card-2 { top: 70px; z-index: 2; transform: scale(0.95); background: linear-gradient(135deg, #00E5FF, #0077ff); }
.card-3 { top: 140px; z-index: 1; transform: scale(0.9); background: linear-gradient(135deg, #7C3AED, #c800ff); }

.nfc-showcase { text-align: center; margin-top: 40px; }
.nfc-icon { font-size: 5rem; color: var(--accent-blue); margin-bottom: 20px; filter: drop-shadow(0 0 20px var(--accent-blue)); }
.pulse { animation: pulseGlow 2s infinite; }
@keyframes pulseGlow { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.8; } 100% { transform: scale(1); opacity: 1; } }

.share-grid { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.share-icon { width: 120px; height: 120px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 25px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; transition: 0.3s; }
.share-icon i { font-size: 2.5rem; color: var(--accent-cyan); }
.share-icon:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,229,255,0.2); }



.analytics-chart { display: flex; align-items: flex-end; justify-content: center; gap: 15px; height: 200px; margin-top: 40px; border-bottom: 2px solid rgba(255,255,255,0.2); padding-bottom: 10px; }
.analytics-chart .bar { width: 40px; background: linear-gradient(to top, var(--accent-purple), var(--accent-pink)); border-radius: 5px 5px 0 0; }

.checkout-ui, .lead-form-ui { background: rgba(20,20,25,0.8); border: 1px solid rgba(255,255,255,0.1); padding: 40px; border-radius: 30px; max-width: 400px; margin: 30px auto; text-align: center; backdrop-filter: blur(10px); }
.checkout-btn { background: var(--accent-cyan); color: #000; border: none; padding: 15px 30px; font-size: 1.1rem; font-weight: bold; border-radius: 30px; cursor: pointer; transition: 0.3s; }
.checkout-btn:hover { background: #fff; transform: scale(1.05); }
.lead-input { width: 100%; padding: 15px; margin-bottom: 15px; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.2); border-radius: 15px; color: #fff; font-size: 1rem; }

/* VXA REAL APP PHONE SIMULATOR */
.vxa-real-app { background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=600&auto=format&fit=crop') center/cover; padding: 15px; gap: 3px; font-family: 'Inter', sans-serif; align-items: center; justify-content: flex-start; }
.vxa-real-app::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.3); backdrop-filter: blur(5px); z-index: 0; pointer-events: none; }
.vxa-top-card { position: relative; width: 100%; z-index: 1; background: linear-gradient(180deg, rgba(168, 108, 47, 0.85) 0%, rgba(68, 85, 60, 0.85) 100%); border-radius: 35px; padding: 15px 10px; display: flex; flex-direction: column; align-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.5); backdrop-filter: blur(10px); margin-bottom: 5px; }
.vxa-free-badge { background: rgba(255, 150, 50, 0.9); color: #00FF88; font-size: 0.6rem; font-weight: 800; letter-spacing: 2px; padding: 4px 15px; border-radius: 20px; margin-bottom: 10px; }
.vxa-side-icons { position: absolute; top: 15px; display: flex; flex-direction: column; gap: 12px; }
.vxa-side-icons.left { left: 10px; }
.vxa-side-icons.right { right: 10px; }
.vxa-icon-btn { width: 34px; height: 34px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 0.8rem; color: #fff; cursor: pointer; transition: 0.2s; }
.vxa-icon-btn:hover { background: rgba(255,255,255,0.3); }
.vxa-avatar-container { width: 85px; height: 85px; margin: 25px auto 10px; border-radius: 35px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.3); border: 2px solid rgba(255,255,255,0.3); }
.vxa-avatar-img { width: 100%; height: 100%; object-fit: cover; }
.vxa-profile-name { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 15px; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
.vxa-social-icons { display: flex; gap: 10px; margin-bottom: 10px; }
.vxa-icon-btn.small { width: 26px; height: 26px; font-size: 0.8rem; border-radius: 8px; }
.vxa-segmented-control { display: flex; background: rgba(0,0,0,0.2); border-radius: 20px; padding: 4px; width: 90%; justify-content: space-between; border: 1px solid rgba(255,255,255,0.1); }
.vxa-segment { flex: 1; text-align: center; font-size: 0.55rem; font-weight: 700; color: rgba(255,255,255,0.6); padding: 8px 5px; border-radius: 16px; display: flex; justify-content: center; align-items: center; gap: 5px; cursor: pointer; transition: 0.3s; }
.vxa-segment.active { background: #fff; color: #000; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.vxa-segment:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.05); }

.vxa-nav-bar { position: relative; z-index: 1; width: 100%; background: rgba(50, 60, 50, 0.8); border-radius: 15px; display: flex; padding: 4px; gap: 5px; margin-bottom: 5px; backdrop-filter: blur(5px); }
.vxa-nav-item { flex: 1; text-align: center; padding: 10px 0; font-size: 0.75rem; font-weight: bold; color: rgba(255,255,255,0.7); border-radius: 12px; cursor: pointer; transition: 0.2s; }
.vxa-nav-item.active { background: #FFA000; color: #000; }

.vxa-link-card { position: relative; z-index: 1; width: 100%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 15px; display: flex; padding: 12px 15px; justify-content: space-between; align-items: center; color: #fff; font-size: 0.8rem; font-weight: bold; backdrop-filter: blur(5px); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }

.vxa-video-card { position: relative; z-index: 1; width: 100%; background: #000; border-radius: 20px; overflow: hidden; height: 110px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.vxa-video-placeholder { text-align: center; color: #fff; opacity: 0.8; }


/* MEGA MENU DROPDOWN */
.nav-item-wrapper { position: relative; }
.mega-dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px; padding: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.5); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); opacity: 0; visibility: hidden; transition: all 0.3s ease; display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; width: max-content; z-index: 1000; pointer-events: none; }
/* Invisible hover bridge to prevent the mouse from losing hover in the gap */
.mega-dropdown::before { content: ''; position: absolute; top: -15px; left: 0; right: 0; height: 15px; background: transparent; }
.nav-item-wrapper:hover .mega-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(8px); pointer-events: auto; }
.mega-item { display: flex; align-items: center; gap: 12px; padding: 10px 18px; border-radius: 12px; background: rgba(255,255,255,0.03); color: #fff; text-decoration: none; border: 1px solid rgba(255,255,255,0.05); cursor: pointer; transition: 0.2s; font-size: 0.9rem; }
.mega-item:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.mega-item i { font-size: 1.5rem; }
.mega-item-cyan i { color: var(--accent-cyan); }
.mega-item-pink i { color: var(--accent-pink); }
.mega-item-gold i { color: var(--accent-gold); }


/* SCROLL BADGE */
.scroll-badge {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(20, 25, 35, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 10px 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 100;
    color: #aaa;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: badgeFloat 3s ease-in-out infinite;
}
.scroll-badge .mouse-icon {
    width: 20px;
    height: 30px;
    border: 2px solid #aaa;
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}
.scroll-badge .mouse-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 2px;
    margin-top: 4px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(8px); opacity: 0; }
}
@keyframes badgeFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #555;
    text-transform: uppercase;
    z-index: 1000; /* Higher than HUD */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.scroll-indicator .mouse-wheel {
    width: 20px;
    height: 30px;
    border: 2px solid #555;
    border-radius: 20px;
    position: relative;
    display: block;
    background: transparent;
    margin: 0;
    animation: none;
}
.scroll-indicator .wheel-dot {
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDownIndicator 2s infinite;
}
@keyframes scrollDownIndicator {
    0% { top: 5px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}
.slide-dots-hud.collapsed-vertical .dot-row { display: none; }
@keyframes scanLaser { 0% { top: 0; } 50% { top: 90%; } 100% { top: 0; } }
