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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
            color: #fff;
        }

        /* Simplified floating shapes */
        .bg-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(142, 68, 173, 0.1));
            animation: float 15s infinite ease-in-out;
            z-index: 0;
        }

        .bg-shape:nth-child(1) {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .bg-shape:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 15%;
            animation-delay: 5s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Header with top CTA */
        .header {
            text-align: center;
            padding: 60px 0 40px 0;
            position: relative;
        }

        .header h1 {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #4facfe, #8e44ad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .header p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto 30px auto;
            line-height: 1.6;
        }

        /* Top CTA button */
        .top-cta {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(135deg, #4facfe, #8e44ad);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 40px;
        }

        .top-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(79, 172, 254, 0.6);
        }

        /* Simplified wave divider */
        .wave-divider {
            height: 60px;
            background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(142, 68, 173, 0.1));
            position: relative;
            margin: 40px 0;
            border-radius: 30px;
        }

        /* Tools grid */
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            padding: 40px 0;
        }

        .tool-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .tool-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #4facfe, #8e44ad);
            border-radius: 20px 20px 0 0;
        }

        .tool-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        }

        .tool-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #4facfe, #8e44ad);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px auto;
            font-size: 2rem;
            box-shadow: 0 10px 25px rgba(79, 172, 254, 0.3);
            transition: all 0.3s ease;
        }

        .tool-card:hover .tool-icon {
            transform: scale(1.1);
        }

        .tool-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
            text-align: center;
        }

        .tool-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 30px;
            text-align: center;
            font-size: 1rem;
        }

        .try-now-btn {
            display: block;
            width: 100%;
            padding: 15px 30px;
            background: linear-gradient(135deg, #4facfe, #8e44ad);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .try-now-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(79, 172, 254, 0.5);
        }

        /* Coming Soon cards */
        .coming-soon {
            opacity: 0.8;
            background: rgba(255, 255, 255, 0.03);
        }

        .coming-soon .tool-icon {
            background: linear-gradient(135deg, rgba(79, 172, 254, 0.3), rgba(142, 68, 173, 0.3));
            box-shadow: 0 10px 25px rgba(79, 172, 254, 0.15);
        }

        .coming-soon-label {
            display: inline-block;
            padding: 8px 16px;
            background: linear-gradient(135deg, #4facfe, #8e44ad);
            color: white;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            text-align: center;
            margin-top: 15px;
        }

        /* Stats section */
        .stats-section {
            padding: 60px 0;
            text-align: center;
        }

        .stats-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #4facfe, #8e44ad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stats-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            max-width: 500px;
            margin: 0 auto 40px auto;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .stat-item {
            padding: 25px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #4facfe, #8e44ad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
        }

        /* Mobile responsive design */
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }

            .header {
                padding: 40px 0 30px 0;
            }

            .header h1 {
                font-size: 2.5rem;
                margin-bottom: 15px;
            }
            
            .header p {
                font-size: 1.1rem;
                margin-bottom: 25px;
            }

            .top-cta {
                padding: 15px 30px;
                font-size: 1.1rem;
            }
            
            .tools-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                padding: 30px 0;
            }
            
            .tool-card {
                padding: 30px 25px;
            }

            .tool-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }

            .tool-title {
                font-size: 1.4rem;
            }

            .tool-description {
                font-size: 0.95rem;
            }

            .try-now-btn {
                padding: 14px 25px;
                font-size: 1rem;
            }

            .stats-section {
                padding: 40px 0;
            }

            .stats-title {
                font-size: 1.8rem;
            }

            .stats-subtitle {
                font-size: 1rem;
            }

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

            .stat-item {
                padding: 20px 15px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .header p {
                font-size: 1rem;
            }

            .top-cta {
                padding: 12px 25px;
                font-size: 1rem;
            }

            .tool-card {
                padding: 25px 20px;
            }

            .tool-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .tool-title {
                font-size: 1.3rem;
            }

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

            .stat-number {
                font-size: 1.8rem;
            }
        }

        /* Reduce motion for better performance */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
    