<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Coolez Dark Design</title>
    <script src="https://cdn.tailwindcss.com"></script>
    
    
</head>
<body class="text-white antialiased">

    <div class="hero-glow min-h-screen flex flex-col items-center px-6">
        
        <!-- Navbar -->
        <nav class="w-full max-w-6xl flex justify-between items-center py-8">
            <div class="flex items-center gap-2 font-extrabold text-2xl tracking-tight text-white">
                <span class="text-yellow-400">⚡</span> Coolez
            </div>
            <div class="hidden md:flex gap-10 text-white font-medium opacity-80">
                <a href="#" class="hover:opacity-100 transition">Services</a>
                <a href="#" class="hover:opacity-100 transition">Results</a>
                <a href="#" class="hover:opacity-100 transition">Why Me</a>
            </div>
            <button class="border border-white/20 px-6 py-2.5 rounded-full text-sm font-bold text-white bg-white/5 hover:bg-white/10 transition">
                Book A Free Call 🤙
            </button>
        </nav>

        <!-- Hero Section -->
        <div class="mt-24 text-center max-w-5xl">
            <h1 class="text-6xl md:text-8xl font-black tracking-tight mb-8 leading-[1.1] text-white">
                Generating Unlimited <br>
                Leads to <span class="relative inline-block text-white">Sales <span class="absolute -top-6 -right-12 text-5xl">🚀</span></span>
            </h1>
            <p class="text-white opacity-70 text-xl md:text-2xl mb-12 max-w-3xl mx-auto font-medium">
                Scale your revenue with high-intent lead generation strategies that actually convert.
            </p>
            <button class="bg-blue-600 hover:bg-blue-500 text-white px-10 py-5 rounded-2xl text-xl font-extrabold shadow-2xl shadow-blue-600/30 transition-all transform hover:scale-105">
                Book A Free Call 🤙
            </button>
        </div>

        <!-- Dashboard Cards Section -->
        <div class="mt-28 grid grid-cols-1 md:grid-cols-2 gap-8 w-full max-w-5xl mb-24">
            
            <!-- Growth Card -->
            <div class="bg-[#0f1218]/80 border border-white/10 p-10 rounded-[35px] backdrop-blur-md">
                <p class="text-xs font-black uppercase tracking-[0.2em] text-white/40 mb-8">Growth Trajectory</p>
                <div class="flex items-end gap-3 h-40">
                    <div class="bg-blue-900/40 w-full rounded-t-md border-t border-blue-500/30" style="height: 45%;"></div>
                    <div class="bg-blue-800/50 w-full rounded-t-md border-t border-blue-500/40" style="height: 65%;"></div>
                    <div class="bg-blue-700/60 w-full rounded-t-md border-t border-blue-500/50" style="height: 40%;"></div>
                    <div class="bg-blue-600/70 w-full rounded-t-md border-t border-blue-400/60" style="height: 90%;"></div>
                    <div class="bg-blue-500/80 w-full rounded-t-md border-t border-blue-300/70" style="height: 55%;"></div>
                    <div class="bg-blue-400/90 w-full rounded-t-md border-t border-blue-200/80" style="height: 95%;"></div>
                    <div class="bg-blue-600 w-full rounded-t-md border-t border-blue-400" style="height: 70%;"></div>
                </div>
            </div>

            <!-- Leads & Stats Card -->
            <div class="bg-[#0f1218]/80 border border-white/10 p-10 rounded-[35px] backdrop-blur-md flex flex-col justify-between">
                <div>
                    <div class="flex items-center gap-5 mb-2">
                        <span class="text-5xl">🔥</span>
                        <h3 class="text-4xl font-black text-white">1.1K | $838K</h3>
                    </div>
                    <p class="text-xs font-black text-white/40 tracking-[0.2em] uppercase ml-16">Generated Leads</p>
                </div>
                
                <div class="flex gap-16 mt-12 ml-2">
                    <div>
                        <p class="text-3xl font-black text-white">5.5%</p>
                        <p class="text-[11px] text-white/40 uppercase font-black tracking-widest mt-1">Open Rate</p>
                    </div>
                    <div>
                        <p class="text-3xl font-black text-white">15.7%</p>
                        <p class="text-[11px] text-white/40 uppercase font-black tracking-widest mt-1">Reply Rate</p>
                    </div>
                </div>
            </div>

        </div>
    </div>

</body>
</html>