      * {
            font-family: 'Inter', sans-serif;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            background: #0a0a0f;
            min-height: 100vh;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        /* Animated gradient background */
        .gradient-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at 20% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(167, 139, 250, 0.1) 0%, transparent 50%),
                #0a0a0f;
            z-index: -2;
        }

        /* Floating orbs */
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            z-index: -1;
            animation: float 20s infinite ease-in-out;
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            background: rgba(139, 92, 246, 0.3);
            top: -100px;
            left: -100px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 300px;
            height: 300px;
            background: rgba(124, 58, 237, 0.25);
            bottom: -50px;
            right: -50px;
            animation-delay: -5s;
        }

        .orb-3 {
            width: 250px;
            height: 250px;
            background: rgba(167, 139, 250, 0.2);
            top: 50%;
            left: 50%;
            animation-delay: -10s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

        /* Glassmorphism base styles */
        .glass {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .glass-strong {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 24px;
            transition: all 0.3s ease;
        }

        .glass-card:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(139, 92, 246, 0.3);
            transform: translateY(-4px);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(139, 92, 246, 0.1);
        }

        /* Navbar Styles */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            max-width: 100%;
            height: 70px;
            border-radius: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
            transition: transform 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
        }

        .navbar.hidden {
            transform: translateY(-100%);
        }

        .navbar.visible {
            transform: translateY(0);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 1001;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
        }

        /* Desktop Navigation */
        .nav-links-desktop {
            display: flex;
            align-items: center;
            gap: 8px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 10px 20px;
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(167, 139, 250, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 12px;
        }

        .nav-link:hover::before {
            opacity: 1;
        }

        .nav-link:hover {
            color: #fff;
        }

        .nav-link.active {
            color: #fff;
            background: rgba(139, 92, 246, 0.2);
        }

        /* Desktop Actions */
        .nav-actions-desktop {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1001;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn:hover {
            background: rgba(139, 92, 246, 0.2);
            border-color: rgba(139, 92, 246, 0.5);
        }

        .mobile-menu-btn svg {
            color: #fff;
            transition: transform 0.3s ease;
        }

        .mobile-menu-btn.active svg {
            transform: rotate(90deg);
        }

        /* Mobile Menu Overlay */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(10, 10, 15, 0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            padding: 100px 24px 40px;
        }

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

        .mobile-nav-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 24px;
            font-weight: 600;
            padding: 16px 32px;
            border-radius: 16px;
            transition: all 0.3s ease;
            transform: translateY(20px);
            opacity: 0;
        }

        .mobile-menu.active .mobile-nav-link {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-menu.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu.active .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
        .mobile-menu.active .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
        .mobile-menu.active .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
        .mobile-menu.active .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }

        .mobile-nav-link:hover,
        .mobile-nav-link.active {
            color: #fff;
            background: rgba(139, 92, 246, 0.2);
        }

        .mobile-actions {
            display: flex;
            flex-direction: column;
            gap: 16px;
            width: 100%;
            max-width: 300px;
            margin-top: 20px;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease 0.35s;
        }

        .mobile-menu.active .mobile-actions {
            transform: translateY(0);
            opacity: 1;
        }

        /* Buttons */
        .btn-glass {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            padding: 10px 24px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-glass:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
        }

        .btn-primary-glass {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(167, 139, 250, 0.8));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(139, 92, 246, 0.5);
            color: #fff;
            padding: 10px 24px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
        }

        .btn-primary-glass:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 24px 80px;
            position: relative;
        }

        .hero-content {
            text-align: center;
            max-width: 900px;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 32px;
        }

        .hero-title {
            font-size: clamp(36px, 8vw, 72px);
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -2px;
        }

        .hero-title span {
            background: linear-gradient(135deg, #8B5CF6, #A78BFA, #C4B5FD);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(15px, 2vw, 18px);
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 16px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0 16px;
        }

        .btn-large {
            padding: 16px 32px;
            font-size: 16px;
            border-radius: 16px;
        }

        /* Dashboard Preview */
        .dashboard-preview {
            margin-top: 60px;
            position: relative;
            padding: 0 16px;
        }

        .dashboard-frame {
            background: rgba(13, 13, 18, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 20px;
            box-shadow: 
                0 40px 80px rgba(0, 0, 0, 0.5),
                0 0 100px rgba(139, 92, 246, 0.1);
            transform: perspective(1000px) rotateX(5deg);
            transition: transform 0.5s ease;
            max-width: 900px;
            margin: 0 auto;
        }

        .dashboard-frame:hover {
            transform: perspective(1000px) rotateX(0deg);
        }

        .dashboard-inner {
            background: #0d0d12;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 16/10;
            position: relative;
        }

        /* Features Section */
        .features {
            padding: 100px 24px;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            padding: 0 16px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 16px;
        }

        .section-title {
            font-size: clamp(28px, 5vw, 48px);
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .feature-card {
            padding: 32px;
            border-radius: 24px;
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(167, 139, 250, 0.1));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            border: 1px solid rgba(139, 92, 246, 0.3);
        }

        .feature-icon svg {
            color: #A78BFA;
        }

        .feature-title {
            color: #fff;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .feature-desc {
            color: rgba(255, 255, 255, 0.5);
            font-size: 15px;
            line-height: 1.6;
        }

        /* Stats Section */
        .stats {
            padding: 80px 24px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .stat-card {
            text-align: center;
            padding: 32px 24px;
            border-radius: 20px;
        }

        .stat-number {
            font-size: clamp(24px, 4vw, 36px);
            font-weight: 800;
            color: #fff;
            margin-bottom: 8px;
            background: linear-gradient(135deg, #8B5CF6, #A78BFA);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-number.counting {
            animation: countPulse 0.3s ease;
        }

        @keyframes countPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

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

        /* CTA Section */
        .cta {
            padding: 100px 24px;
            position: relative;
        }

        .cta-card {
            max-width: 800px;
            margin: 0 auto;
            padding: 60px;
            border-radius: 32px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: clamp(24px, 4vw, 36px);
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }

        .cta-subtitle {
            color: rgba(255, 255, 255, 0.6);
            font-size: 16px;
            margin-bottom: 32px;
            padding: 0 16px;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer */
        .footer {
            padding: 60px 24px 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
            padding: 0 16px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .footer-desc {
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 8px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: rgba(139, 92, 246, 0.2);
            border-color: rgba(139, 92, 246, 0.5);
            color: #fff;
            transform: translateY(-2px);
        }

        .footer-column h4 {
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: #A78BFA;
            transform: translateX(4px);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            padding-left: 16px;
            padding-right: 16px;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.4);
            font-size: 13px;
        }

        .footer-legal {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: #A78BFA;
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }
        .stagger-5 { transition-delay: 0.5s; }
        .stagger-6 { transition-delay: 0.6s; }

        /* Responsive Breakpoints */

        /* Large tablets and small desktops */
        @media (max-width: 1024px) {
            .nav-links-desktop {
                gap: 4px;
            }

            .nav-link {
                padding: 8px 16px;
                font-size: 13px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        /* Tablets */
        @media (max-width: 900px) {
            .navbar {
                height: 64px;
                padding: 0 16px;
                top: 0;
                width: 100%;
                border-radius: 0;
            }

            .nav-links-desktop {
                display: none;
            }

            .nav-actions-desktop {
                display: none;
            }

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

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero {
                padding: 100px 16px 60px;
            }

            .features,
            .stats,
            .cta {
                padding: 60px 16px;
            }
        }

        /* Mobile phones */
        @media (max-width: 640px) {
            .navbar {
                top: 0;
                width: 100%;
                height: 60px;
                border-radius: 0;
                padding: 0 16px;
            }

            .logo-icon {
                width: 36px;
                height: 36px;
            }

            .nav-logo span {
                font-size: 18px;
            }

            .hero-title {
                font-size: 32px;
                letter-spacing: -1px;
            }

            .hero-subtitle {
                font-size: 15px;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn-large {
                width: 100%;
                padding: 14px 24px;
            }

            .dashboard-frame {
                padding: 12px;
                border-radius: 16px;
            }

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

            .feature-card {
                padding: 24px;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .stat-card {
                padding: 24px 16px;
            }

            .stat-number {
                font-size: 24px;
            }

            .stat-label {
                font-size: 12px;
            }

            .cta-card {
                padding: 40px 24px;
            }

            .cta-title {
                font-size: 24px;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }

            .footer-legal {
                justify-content: center;
            }
        }

        /* Small mobile phones */
        @media (max-width: 380px) {
            .hero-title {
                font-size: 28px;
            }

            .section-title {
                font-size: 24px;
            }

            .mobile-nav-link {
                font-size: 20px;
                padding: 12px 24px;
            }
        }
