Toggle navigation
☰
HTML
CSS
Scripting
Database
<!doctype html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Tailwind CSS Featured Pricing Card</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-indigo-950 flex justify-center min-h-screen pt-16 p-6 antialiased"> <div class="w-full max-w-2xl relative"> <!-- Background Glow --> <div class="absolute -inset-4 bg-linear-to-r from-indigo-500 via-purple-500 to-rose-500 rounded-[4rem] blur-3xl opacity-20 animate-pulse"></div> <div class="relative bg-slate-900 rounded-[3.5rem] shadow-4xl border border-white/5 overflow-hidden flex flex-col md:flex-row h-full"> <!-- Main Content --> <div class="p-12 flex-1 space-y-8"> <div class="inline-flex items-center gap-2 px-3 py-1 bg-indigo-500/10 text-indigo-400 text-[10px] font-black uppercase tracking-widest rounded-full italic ring-1 ring-indigo-500/20">Recommended Platform Tier</div> <div class="space-y-4"> <h2 class="text-4xl font-black text-white tracking-tighter leading-none">Vanguard Sync.</h2> <p class="text-sm text-slate-400 font-medium leading-relaxed pr-12">The industry-standard manifest synchronization protocol. Full sovereignty over sectoral data streams and neural integrity verification.</p> </div> <div class="grid grid-cols-2 gap-4"> <div class="flex items-center gap-3"> <div class="h-5 w-5 bg-indigo-500/20 text-indigo-400 rounded-lg flex items-center justify-center"> <svg class="h-3 w-3" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="M5 13l4 4L19 7" /></svg> </div> <span class="text-[10px] font-bold text-slate-300 uppercase tracking-widest italic">1TB Mesh Sync</span> </div> <div class="flex items-center gap-3"> <div class="h-5 w-5 bg-indigo-500/20 text-indigo-400 rounded-lg flex items-center justify-center"> <svg class="h-3 w-3" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="M5 13l4 4L19 7" /></svg> </div> <span class="text-[10px] font-bold text-slate-300 uppercase tracking-widest italic">Dedicated Hub</span> </div> <div class="flex items-center gap-3"> <div class="h-5 w-5 bg-indigo-500/20 text-indigo-400 rounded-lg flex items-center justify-center"> <svg class="h-3 w-3" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="M5 13l4 4L19 7" /></svg> </div> <span class="text-[10px] font-bold text-slate-300 uppercase tracking-widest italic">Neural Audit</span> </div> <div class="flex items-center gap-3"> <div class="h-5 w-5 bg-indigo-500/20 text-indigo-400 rounded-lg flex items-center justify-center"> <svg class="h-3 w-3" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="M5 13l4 4L19 7" /></svg> </div> <span class="text-[10px] font-bold text-slate-300 uppercase tracking-widest italic">Tier 2 Support</span> </div> </div> </div> <!-- Pricing Panel --> <div class="w-full md:w-72 bg-white/5 border-l border-white/5 p-12 flex flex-col justify-center items-center text-center backdrop-blur-3xl"> <div class="mb-10 text-[10px] font-black text-slate-500 uppercase tracking-widest leading-tight">Sync Access Commitment</div> <div class="mb-10 flex flex-col items-center"> <div class="flex items-baseline gap-1"> <span class="text-xs font-black text-indigo-400">$</span> <span class="text-6xl font-black text-white tracking-tighter">99</span> </div> <span class="text-[9px] font-black text-slate-500 uppercase tracking-widest mt-2">Per Deployment / Mo</span> </div> <button class="w-full py-5 bg-indigo-600 text-white rounded-[2rem] text-xs font-black uppercase tracking-widest hover:bg-white hover:text-slate-900 transition-all shadow-xl shadow-indigo-900/40 cursor-pointer italic">Initialize Sync</button> </div> </div> </div> </body> </html>