:root {
            --bg-dark: #0f172a;
            --bg-darker: #020617;
            --primary: #3b82f6;
            --primary-glow: rgba(59, 130, 246, 0.5);
            --accent: #f59e0b;
            --accent-glow: rgba(245, 158, 11, 0.5);
            --surface: rgba(30, 41, 59, 0.7);
            --border: rgba(51, 65, 85, 0.5);
            --text-main: #f8fafc;
            --text-dim: #94a3b8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background-color: var(--bg-darker);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Abstract Background Gradients */
        .bg-gradient-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            overflow: hidden;
            background: var(--bg-darker);
        }

        .shape-1 {
            position: absolute;
            top: -10%;
            left: -10%;
            width: 50vw;
            height: 50vw;
            background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(80px);
            animation: float 15s ease-in-out infinite alternate;
        }

        .shape-2 {
            position: absolute;
            bottom: -20%;
            right: -10%;
            width: 60vw;
            height: 60vw;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(100px);
            animation: float 20s ease-in-out infinite alternate-reverse;
        }

        @keyframes float {
            0% {
                transform: translate(0, 0) scale(1);
            }

            100% {
                transform: translate(100px, 50px) scale(1.1);
            }
        }

        /* Navbar */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            font-family: 'Outfit', sans-serif;
            font-size: 28px;
            font-weight: 900;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            color: var(--primary);
            text-shadow: 0 0 15px var(--primary);
        }

        .logo span {
            background: linear-gradient(135deg, white, #94a3b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .btn-nav {
            padding: 10px 24px;
            background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px var(--primary-glow);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .btn-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--primary-glow);
            filter: brightness(1.1);
        }

        /* Hero Section */
        .hero {
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 100px 5% 50px;
        }

        .hero h1 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(40px, 6vw, 72px);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
            color: transparent;
            background: linear-gradient(to right, #fff, #94a3b8);
            -webkit-background-clip: text;
            background-clip: text;
            animation: fadeIn 1s ease-out;
        }

        .hero .highlight {
            background: linear-gradient(to right, #60a5fa, #3b82f6, #f59e0b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero p {
            font-size: 18px;
            color: var(--text-dim);
            max-width: 700px;
            margin-bottom: 40px;
            animation: fadeIn 1.5s ease-out;
        }

        .cta-group {
            display: flex;
            gap: 20px;
            animation: fadeIn 2s ease-out;
        }

        .btn-main {
            padding: 16px 36px;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px var(--accent-glow);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-main:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 40px var(--accent-glow);
        }

        /* Stats Strip */
        .stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 80px;
            flex-wrap: wrap;
        }

        .stat-item {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 20px 40px;
            backdrop-filter: blur(10px);
            text-align: center;
        }

        .stat-item h3 {
            font-family: 'Outfit';
            font-size: 36px;
            color: white;
            margin-bottom: 5px;
        }

        .stat-item p {
            color: var(--primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 12px;
            margin: 0;
        }

        /* Features Section */
        .features {
            padding: 100px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-family: 'Outfit';
            font-size: 42px;
            margin-bottom: 60px;
            background: linear-gradient(to right, #fff, #cbd5e1);
            -webkit-background-clip: text;
            color: transparent;
        }

        .grid-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 40px 30px;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .icon-box {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: rgba(59, 130, 246, 0.1);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 25px;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: white;
            font-family: 'Outfit';
        }

        .feature-card p {
            color: var(--text-dim);
            font-size: 15px;
        }

        footer {
            text-align: center;
            padding: 40px 5%;
            color: var(--text-dim);
            font-size: 14px;
            border-top: 1px solid var(--border);
            background: rgba(15, 23, 42, 0.8);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Setup mock image showcase */
        .dashboard-mockup {
            margin-top: 60px;
            width: 100%;
            max-width: 1100px;
            border-radius: 16px;
            border: 1px solid var(--border);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 100px var(--primary-glow);
            overflow: hidden;
            animation: fadeIn 2s ease-out;
            background: #0f172a;
            position: relative;
        }

        .mockup-header {
            background: #1e293b;
            height: 30px;
            display: flex;
            align-items: center;
            padding: 0 15px;
            gap: 8px;
        }

        .mockup-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        body {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        img {
            -webkit-user-drag: none;
            -khtml-user-drag: none;
            -moz-user-drag: none;
            -o-user-drag: none;
            user-drag: none;
        }
