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 Feature List With Icons</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-gray-50 flex justify-center min-h-screen pt-16 p-6 antialiased"> <div class="max-w-4xl w-full bg-white p-12 rounded-[3rem] shadow-3xl border border-white"> <div class="mb-12"> <h2 class="text-3xl font-black text-slate-900 tracking-tighter">Platform Architecture</h2> <p class="mt-4 text-slate-500 font-medium leading-relaxed">Our distributed systems are built on four core pillars of neural integrity and synchronization.</p> </div> <div class="grid grid-cols-1 md:grid-cols-2 gap-x-12 gap-y-10"> <!-- Item 1 --> <div class="flex gap-5 group"> <div class="h-10 w-10 bg-indigo-50 text-indigo-600 rounded-xl flex items-center justify-center shrink-0 group-hover:bg-indigo-600 group-hover:text-white transition-all shadow-sm"> <svg class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M13 10V3L4 14h7v7l9-11h-7z" /></svg> </div> <div class="space-y-2"> <h3 class="text-lg font-bold text-slate-800 tracking-tight">Kinetic Handshake</h3> <p class="text-sm text-slate-500 leading-relaxed">Execute 0ms latency synchronization between global nodes using our proprietary kinetic protocol hubs.</p> </div> </div> <!-- Item 2 --> <div class="flex gap-5 group"> <div class="h-10 w-10 bg-emerald-50 text-emerald-600 rounded-xl flex items-center justify-center shrink-0 group-hover:bg-emerald-600 group-hover:text-white transition-all shadow-sm"> <svg class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z" /></svg> </div> <div class="space-y-2"> <h3 class="text-lg font-bold text-slate-800 tracking-tight">Sovereign Encryption</h3> <p class="text-sm text-slate-500 leading-relaxed">Complete manifest sealing across the entire mesh. Your data remains atomic and verified in every cycle.</p> </div> </div> <!-- Item 3 --> <div class="flex gap-5 group"> <div class="h-10 w-10 bg-amber-50 text-amber-600 rounded-xl flex items-center justify-center shrink-0 group-hover:bg-amber-600 group-hover:text-white transition-all shadow-sm"> <svg class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10" /></svg> </div> <div class="space-y-2"> <h3 class="text-lg font-bold text-slate-800 tracking-tight">Cluster Sovereignty</h3> <p class="text-sm text-slate-500 leading-relaxed">Maintain full control over regional logic hubs with decentralized administrative clusters and audit trails.</p> </div> </div> <!-- Item 4 --> <div class="flex gap-5 group"> <div class="h-10 w-10 bg-rose-50 text-rose-600 rounded-xl flex items-center justify-center shrink-0 group-hover:bg-rose-600 group-hover:text-white transition-all shadow-sm"> <svg class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z" /></svg> </div> <div class="space-y-2"> <h3 class="text-lg font-bold text-slate-800 tracking-tight">Real-Time Audits</h3> <p class="text-sm text-slate-500 leading-relaxed">Get instant visibility into neural status cycles with automated logging and spectral analysis tools.</p> </div> </div> </div> </div> </body> </html>