Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Nexus 2050 | Future Interface</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/gsap.min.js"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap'); | |
| :root { | |
| --neon-blue: #00f7ff; | |
| --neon-pink: #ff00f7; | |
| --neon-purple: #9d00ff; | |
| --dark-bg: #0a0a14; | |
| } | |
| body { | |
| font-family: 'Rajdhani', sans-serif; | |
| background-color: var(--dark-bg); | |
| color: white; | |
| overflow-x: hidden; | |
| } | |
| h1, h2, h3, .font-orbitron { | |
| font-family: 'Orbitron', sans-serif; | |
| } | |
| .neon-text-blue { | |
| text-shadow: 0 0 10px rgba(0, 247, 255, 0.7), 0 0 20px rgba(0, 247, 255, 0.5); | |
| } | |
| .neon-text-pink { | |
| text-shadow: 0 0 10px rgba(255, 0, 247, 0.7), 0 0 20px rgba(255, 0, 247, 0.5); | |
| } | |
| .glow-box { | |
| box-shadow: 0 0 15px rgba(0, 247, 255, 0.5); | |
| border: 1px solid rgba(0, 247, 255, 0.3); | |
| background: rgba(10, 20, 30, 0.7); | |
| backdrop-filter: blur(10px); | |
| } | |
| .holographic-card { | |
| background: linear-gradient(135deg, rgba(157, 0, 255, 0.1) 0%, rgba(0, 247, 255, 0.1) 100%); | |
| border: 1px solid rgba(0, 247, 255, 0.2); | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .holographic-card::before { | |
| content: ''; | |
| position: absolute; | |
| top: -50%; | |
| left: -50%; | |
| width: 200%; | |
| height: 200%; | |
| background: linear-gradient( | |
| to bottom right, | |
| transparent 45%, | |
| rgba(0, 247, 255, 0.1) 50%, | |
| transparent 55% | |
| ); | |
| transform: rotate(30deg); | |
| animation: hologram 6s linear infinite; | |
| } | |
| @keyframes hologram { | |
| 0% { transform: rotate(30deg) translateX(-50%); } | |
| 100% { transform: rotate(30deg) translateX(50%); } | |
| } | |
| .cyber-input { | |
| background: rgba(0, 0, 0, 0.3); | |
| border: 1px solid var(--neon-blue); | |
| color: white; | |
| padding: 12px 15px; | |
| font-family: 'Rajdhani', sans-serif; | |
| font-weight: 500; | |
| transition: all 0.3s; | |
| } | |
| .cyber-input:focus { | |
| outline: none; | |
| box-shadow: 0 0 10px var(--neon-blue); | |
| border-color: var(--neon-pink); | |
| } | |
| .cyber-btn { | |
| background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue)); | |
| color: white; | |
| border: none; | |
| padding: 12px 30px; | |
| font-family: 'Orbitron', sans-serif; | |
| font-weight: 700; | |
| text-transform: uppercase; | |
| letter-spacing: 2px; | |
| position: relative; | |
| overflow: hidden; | |
| transition: all 0.3s; | |
| } | |
| .cyber-btn:hover { | |
| box-shadow: 0 0 15px var(--neon-blue); | |
| transform: translateY(-2px); | |
| } | |
| .cyber-btn::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: -100%; | |
| width: 100%; | |
| height: 100%; | |
| background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); | |
| transition: all 0.5s; | |
| } | |
| .cyber-btn:hover::before { | |
| left: 100%; | |
| } | |
| .scanline { | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .scanline::after { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| background: linear-gradient( | |
| to bottom, | |
| transparent 0%, | |
| rgba(0, 247, 255, 0.05) 50%, | |
| transparent 100% | |
| ); | |
| animation: scan 8s linear infinite; | |
| pointer-events: none; | |
| } | |
| @keyframes scan { | |
| 0% { transform: translateY(-100%); } | |
| 100% { transform: translateY(100%); } | |
| } | |
| .grid-pattern { | |
| background-image: | |
| linear-gradient(rgba(0, 247, 255, 0.1) 1px, transparent 1px), | |
| linear-gradient(90deg, rgba(0, 247, 255, 0.1) 1px, transparent 1px); | |
| background-size: 50px 50px; | |
| } | |
| .neon-pulse { | |
| animation: pulse 2s infinite alternate; | |
| } | |
| @keyframes pulse { | |
| from { opacity: 0.7; } | |
| to { opacity: 1; } | |
| } | |
| .floating { | |
| animation: floating 6s ease-in-out infinite; | |
| } | |
| @keyframes floating { | |
| 0% { transform: translateY(0px); } | |
| 50% { transform: translateY(-15px); } | |
| 100% { transform: translateY(0px); } | |
| } | |
| .terminal-text { | |
| font-family: 'Courier New', monospace; | |
| color: var(--neon-blue); | |
| text-shadow: 0 0 5px var(--neon-blue); | |
| } | |
| .blink { | |
| animation: blink 1s step-end infinite; | |
| } | |
| @keyframes blink { | |
| from, to { opacity: 1; } | |
| 50% { opacity: 0; } | |
| } | |
| </style> | |
| </head> | |
| <body class="min-h-screen grid-pattern"> | |
| <!-- Floating Particles Background --> | |
| <div id="particles-js" class="fixed inset-0 -z-10 opacity-20"></div> | |
| <!-- Augmented Reality Navigation --> | |
| <nav class="fixed top-0 left-0 right-0 z-50 py-4 px-6 backdrop-blur-md bg-black bg-opacity-50 border-b border-gray-800"> | |
| <div class="max-w-7xl mx-auto flex justify-between items-center"> | |
| <div class="flex items-center space-x-2"> | |
| <div class="w-10 h-10 rounded-full bg-gradient-to-br from-purple-600 to-blue-500 flex items-center justify-center"> | |
| <i class="fas fa-atom text-white text-xl"></i> | |
| </div> | |
| <span class="text-xl font-orbitron font-bold neon-text-blue">NEXUS-2050</span> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-8"> | |
| <a href="#" class="text-white hover:text-blue-400 transition font-orbitron uppercase text-sm tracking-wider">Home</a> | |
| <a href="#" class="text-white hover:text-blue-400 transition font-orbitron uppercase text-sm tracking-wider">Services</a> | |
| <a href="#" class="text-white hover:text-blue-400 transition font-orbitron uppercase text-sm tracking-wider">Tech</a> | |
| <a href="#" class="text-white hover:text-blue-400 transition font-orbitron uppercase text-sm tracking-wider">About</a> | |
| <a href="#" class="text-white hover:text-blue-400 transition font-orbitron uppercase text-sm tracking-wider">Contact</a> | |
| </div> | |
| <div class="flex items-center space-x-4"> | |
| <button class="cyber-btn text-xs px-4 py-2">Login</button> | |
| <button class="md:hidden text-white text-2xl"> | |
| <i class="fas fa-bars"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section with Holographic Display --> | |
| <section class="pt-32 pb-20 px-6 relative overflow-hidden"> | |
| <div class="max-w-7xl mx-auto grid grid-cols-1 lg:grid-cols-2 gap-12 items-center"> | |
| <div class="relative z-10"> | |
| <div class="mb-6 flex items-center"> | |
| <div class="h-px w-16 bg-gradient-to-r from-blue-400 to-purple-600"></div> | |
| <span class="ml-4 text-blue-400 font-orbitron uppercase tracking-widest text-sm">Welcome to 2050</span> | |
| </div> | |
| <h1 class="text-5xl md:text-6xl lg:text-7xl font-bold font-orbitron mb-6 leading-tight neon-text-blue"> | |
| The Future Is <span class="text-transparent bg-clip-text bg-gradient-to-r from-blue-400 to-purple-600">Now</span> | |
| </h1> | |
| <p class="text-lg text-gray-300 mb-8 max-w-lg"> | |
| Experience the next generation of digital interaction with our quantum-powered interfaces, neural networks, and augmented reality solutions. | |
| </p> | |
| <div class="flex flex-wrap gap-4"> | |
| <button class="cyber-btn"> | |
| Explore Tech <i class="fas fa-arrow-right ml-2"></i> | |
| </button> | |
| <button class="px-6 py-3 border border-blue-400 text-blue-400 hover:bg-blue-400 hover:bg-opacity-10 transition flex items-center"> | |
| <i class="fas fa-play mr-2"></i> Watch Demo | |
| </button> | |
| </div> | |
| <div class="mt-12 flex items-center space-x-8"> | |
| <div class="flex items-center space-x-2"> | |
| <div class="w-3 h-3 rounded-full bg-green-400 animate-pulse"></div> | |
| <span class="text-sm text-gray-400">Quantum Online</span> | |
| </div> | |
| <div class="flex items-center space-x-2"> | |
| <div class="w-3 h-3 rounded-full bg-purple-400 animate-pulse"></div> | |
| <span class="text-sm text-gray-400">Neural Active</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="relative h-96 lg:h-auto"> | |
| <div class="absolute inset-0 glow-box rounded-2xl overflow-hidden scanline"> | |
| <div class="holographic-card w-full h-full flex items-center justify-center p-8"> | |
| <div class="text-center"> | |
| <div class="w-24 h-24 mx-auto mb-6 rounded-full bg-gradient-to-br from-blue-500 to-purple-600 flex items-center justify-center"> | |
| <i class="fas fa-brain text-3xl text-white"></i> | |
| </div> | |
| <h3 class="font-orbitron text-xl mb-2 neon-text-pink">NEURAL INTERFACE</h3> | |
| <p class="text-gray-300 mb-4">Direct brain-computer connection established</p> | |
| <div class="terminal-text text-left bg-black bg-opacity-50 p-4 rounded-lg mb-4"> | |
| <div>> Initializing quantum sync...</div> | |
| <div>> Neural pathways connected <span class="text-green-400">✓</span></div> | |
| <div>> Downloading consciousness...</div> | |
| <div class="flex items-center">> Ready for upload <span class="blink">_</span></div> | |
| </div> | |
| <button class="cyber-btn text-xs px-4 py-2"> | |
| Begin Experience | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Floating elements around hologram --> | |
| <div class="absolute -top-10 -left-10 w-20 h-20 rounded-full bg-blue-500 bg-opacity-20 blur-xl floating" style="animation-delay: 0s;"></div> | |
| <div class="absolute -bottom-10 -right-10 w-24 h-24 rounded-full bg-purple-500 bg-opacity-20 blur-xl floating" style="animation-delay: 1s;"></div> | |
| <div class="absolute top-1/4 -right-16 w-16 h-16 rounded-full bg-pink-500 bg-opacity-20 blur-xl floating" style="animation-delay: 2s;"></div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Futuristic Services Grid --> | |
| <section class="py-20 px-6 bg-black bg-opacity-50 relative"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-4xl font-bold font-orbitron mb-4 neon-text-blue">Next-Gen Solutions</h2> | |
| <p class="text-gray-400 max-w-2xl mx-auto">Harnessing quantum computing, AI, and neural interfaces to revolutionize your digital experience</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Service 1 --> | |
| <div class="glow-box rounded-xl p-8 transition-all hover:translate-y-2 hover:shadow-lg hover:shadow-blue-500/20"> | |
| <div class="w-16 h-16 rounded-lg bg-gradient-to-br from-blue-500 to-blue-700 mb-6 flex items-center justify-center"> | |
| <i class="fas fa-atom text-2xl text-white"></i> | |
| </div> | |
| <h3 class="font-orbitron text-xl mb-3">Quantum Computing</h3> | |
| <p class="text-gray-400 mb-4">Access our quantum cloud for problems too complex for classical computers.</p> | |
| <div class="flex items-center text-blue-400 text-sm font-orbitron"> | |
| <span>Explore Qubits</span> | |
| <i class="fas fa-arrow-right ml-2"></i> | |
| </div> | |
| </div> | |
| <!-- Service 2 --> | |
| <div class="glow-box rounded-xl p-8 transition-all hover:translate-y-2 hover:shadow-lg hover:shadow-purple-500/20"> | |
| <div class="w-16 h-16 rounded-lg bg-gradient-to-br from-purple-500 to-purple-700 mb-6 flex items-center justify-center"> | |
| <i class="fas fa-brain text-2xl text-white"></i> | |
| </div> | |
| <h3 class="font-orbitron text-xl mb-3">Neural Interfaces</h3> | |
| <p class="text-gray-400 mb-4">Control devices with your thoughts using our brain-computer interface technology.</p> | |
| <div class="flex items-center text-purple-400 text-sm font-orbitron"> | |
| <span>Connect Mind</span> | |
| <i class="fas fa-arrow-right ml-2"></i> | |
| </div> | |
| </div> | |
| <!-- Service 3 --> | |
| <div class="glow-box rounded-xl p-8 transition-all hover:translate-y-2 hover:shadow-lg hover:shadow-pink-500/20"> | |
| <div class="w-16 h-16 rounded-lg bg-gradient-to-br from-pink-500 to-pink-700 mb-6 flex items-center justify-center"> | |
| <i class="fas fa-vr-cardboard text-2xl text-white"></i> | |
| </div> | |
| <h3 class="font-orbitron text-xl mb-3">Augmented Reality</h3> | |
| <p class="text-gray-400 mb-4">Seamless AR integration for work, play, and everything in between.</p> | |
| <div class="flex items-center text-pink-400 text-sm font-orbitron"> | |
| <span>Enter Metaverse</span> | |
| <i class="fas fa-arrow-right ml-2"></i> | |
| </div> | |
| </div> | |
| <!-- Service 4 --> | |
| <div class="glow-box rounded-xl p-8 transition-all hover:translate-y-2 hover:shadow-lg hover:shadow-green-500/20"> | |
| <div class="w-16 h-16 rounded-lg bg-gradient-to-br from-green-500 to-green-700 mb-6 flex items-center justify-center"> | |
| <i class="fas fa-dna text-2xl text-white"></i> | |
| </div> | |
| <h3 class="font-orbitron text-xl mb-3">Bio-Enhancement</h3> | |
| <p class="text-gray-400 mb-4">Upgrade your biological systems with our cybernetic implants.</p> | |
| <div class="flex items-center text-green-400 text-sm font-orbitron"> | |
| <span>Enhance Now</span> | |
| <i class="fas fa-arrow-right ml-2"></i> | |
| </div> | |
| </div> | |
| <!-- Service 5 --> | |
| <div class="glow-box rounded-xl p-8 transition-all hover:translate-y-2 hover:shadow-lg hover:shadow-yellow-500/20"> | |
| <div class="w-16 h-16 rounded-lg bg-gradient-to-br from-yellow-500 to-yellow-700 mb-6 flex items-center justify-center"> | |
| <i class="fas fa-robot text-2xl text-white"></i> | |
| </div> | |
| <h3 class="font-orbitron text-xl mb-3">AI Companions</h3> | |
| <p class="text-gray-400 mb-4">Personalized artificial intelligence that grows with you.</p> | |
| <div class="flex items-center text-yellow-400 text-sm font-orbitron"> | |
| <span>Meet Your AI</span> | |
| <i class="fas fa-arrow-right ml-2"></i> | |
| </div> | |
| </div> | |
| <!-- Service 6 --> | |
| <div class="glow-box rounded-xl p-8 transition-all hover:translate-y-2 hover:shadow-lg hover:shadow-red-500/20"> | |
| <div class="w-16 h-16 rounded-lg bg-gradient-to-br from-red-500 to-red-700 mb-6 flex items-center justify-center"> | |
| <i class="fas fa-rocket text-2xl text-white"></i> | |
| </div> | |
| <h3 class="font-orbitron text-xl mb-3">Space Tech</h3> | |
| <p class="text-gray-400 mb-4">Commercial space travel and off-world colonization solutions.</p> | |
| <div class="flex items-center text-red-400 text-sm font-orbitron"> | |
| <span>Reach Stars</span> | |
| <i class="fas fa-arrow-right ml-2"></i> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Quantum Data Visualization --> | |
| <section class="py-20 px-6 relative overflow-hidden"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center"> | |
| <div class="relative"> | |
| <div class="glow-box rounded-2xl p-8 scanline"> | |
| <div class="flex justify-between items-start mb-8"> | |
| <div> | |
| <h3 class="font-orbitron text-xl mb-2">Quantum Data Stream</h3> | |
| <p class="text-gray-400 text-sm">Real-time qubit entanglement visualization</p> | |
| </div> | |
| <div class="flex items-center space-x-2"> | |
| <div class="w-2 h-2 rounded-full bg-green-400 animate-pulse"></div> | |
| <span class="text-xs text-gray-400">ACTIVE</span> | |
| </div> | |
| </div> | |
| <div class="mb-6"> | |
| <div class="flex justify-between text-xs text-gray-400 mb-1"> | |
| <span>Qubit Integrity</span> | |
| <span>98.7%</span> | |
| </div> | |
| <div class="w-full bg-gray-800 rounded-full h-2"> | |
| <div class="bg-gradient-to-r from-blue-400 to-purple-600 h-2 rounded-full" style="width: 98.7%"></div> | |
| </div> | |
| </div> | |
| <div class="grid grid-cols-3 gap-4 mb-8"> | |
| <div class="bg-gray-900 bg-opacity-50 p-4 rounded-lg"> | |
| <div class="text-gray-400 text-xs mb-1">Entanglement</div> | |
| <div class="font-orbitron text-lg">1.4M</div> | |
| </div> | |
| <div class="bg-gray-900 bg-opacity-50 p-4 rounded-lg"> | |
| <div class="text-gray-400 text-xs mb-1">Coherence</div> | |
| <div class="font-orbitron text-lg">87.3µs</div> | |
| </div> | |
| <div class="bg-gray-900 bg-opacity-50 p-4 rounded-lg"> | |
| <div class="text-gray-400 text-xs mb-1">Fidelity</div> | |
| <div class="font-orbitron text-lg">99.2%</div> | |
| </div> | |
| </div> | |
| <div class="terminal-text bg-black bg-opacity-70 p-4 rounded-lg h-40 overflow-y-auto"> | |
| <div>> Initializing quantum data stream...</div> | |
| <div>> Establishing entanglement network...</div> | |
| <div class="text-green-400">> Quantum sync established</div> | |
| <div>> Analyzing superposition states...</div> | |
| <div>> Calculating probability amplitudes...</div> | |
| <div class="text-purple-400">> Quantum computation in progress</div> | |
| <div>> Preparing results for classical interface...</div> | |
| <div class="blink">> _</div> | |
| </div> | |
| </div> | |
| <div class="absolute -bottom-8 -left-8 w-32 h-32 rounded-full bg-blue-500 bg-opacity-10 blur-3xl -z-10"></div> | |
| </div> | |
| <div> | |
| <h2 class="text-4xl font-bold font-orbitron mb-6 neon-text-blue">Quantum Data Processing</h2> | |
| <p class="text-gray-300 mb-6"> | |
| Our quantum systems process information at speeds unimaginable with classical computers. Experience exponential performance gains for complex problem solving, optimization, and machine learning tasks. | |
| </p> | |
| <div class="space-y-4 mb-8"> | |
| <div class="flex items-start"> | |
| <div class="w-6 h-6 rounded-full bg-blue-500 flex items-center justify-center mt-1 mr-4 flex-shrink-0"> | |
| <i class="fas fa-check text-xs text-white"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-orbitron text-lg mb-1">Molecular Simulation</h4> | |
| <p class="text-gray-400 text-sm">Accurate modeling of molecular structures for drug discovery and materials science.</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="w-6 h-6 rounded-full bg-purple-500 flex items-center justify-center mt-1 mr-4 flex-shrink-0"> | |
| <i class="fas fa-check text-xs text-white"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-orbitron text-lg mb-1">Financial Modeling</h4> | |
| <p class="text-gray-400 text-sm">Quantum algorithms for portfolio optimization and risk analysis.</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="w-6 h-6 rounded-full bg-pink-500 flex items-center justify-center mt-1 mr-4 flex-shrink-0"> | |
| <i class="fas fa-check text-xs text-white"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-orbitron text-lg mb-1">AI Training</h4> | |
| <p class="text-gray-400 text-sm">Exponentially faster neural network training with quantum processors.</p> | |
| </div> | |
| </div> | |
| </div> | |
| <button class="cyber-btn"> | |
| Request Quantum Access | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Neural Interface Demo --> | |
| <section class="py-20 px-6 bg-gradient-to-b from-black to-gray-900 relative overflow-hidden"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-4xl font-bold font-orbitron mb-4 neon-text-pink">Neural Connection</h2> | |
| <p class="text-gray-400 max-w-2xl mx-auto">Direct brain-to-computer interface with thought-controlled applications</p> | |
| </div> | |
| <div class="grid grid-cols-1 lg:grid-cols-3 gap-8"> | |
| <div class="holographic-card rounded-2xl p-8 h-full"> | |
| <div class="w-16 h-16 rounded-full bg-gradient-to-br from-pink-500 to-purple-600 mb-6 mx-auto flex items-center justify-center"> | |
| <i class="fas fa-mind-share text-2xl text-white"></i> | |
| </div> | |
| <h3 class="font-orbitron text-xl mb-3 text-center">Thought Control</h3> | |
| <p class="text-gray-300 text-center mb-4">Navigate interfaces and control devices with your mind using our non-invasive neural sensors.</p> | |
| <div class="flex justify-center"> | |
| <div class="text-xs bg-pink-900 bg-opacity-50 text-pink-400 px-3 py-1 rounded-full">ACTIVE</div> | |
| </div> | |
| </div> | |
| <div class="holographic-card rounded-2xl p-8 h-full"> | |
| <div class="w-16 h-16 rounded-full bg-gradient-to-br from-blue-500 to-cyan-600 mb-6 mx-auto flex items-center justify-center"> | |
| <i class="fas fa-memory text-2xl text-white"></i> | |
| </div> | |
| <h3 class="font-orbitron text-xl mb-3 text-center">Memory Augmentation</h3> | |
| <p class="text-gray-300 text-center mb-4">Enhance your cognitive abilities with our cloud-connected memory extension system.</p> | |
| <div class="flex justify-center"> | |
| <div class="text-xs bg-blue-900 bg-opacity-50 text-blue-400 px-3 py-1 rounded-full">BETA</div> | |
| </div> | |
| </div> | |
| <div class="holographic-card rounded-2xl p-8 h-full"> | |
| <div class="w-16 h-16 rounded-full bg-gradient-to-br from-purple-500 to-indigo-600 mb-6 mx-auto flex items-center justify-center"> | |
| <i class="fas fa-users-cog text-2xl text-white"></i> | |
| </div> | |
| <h3 class="font-orbitron text-xl mb-3 text-center">Shared Consciousness</h3> | |
| <p class="text-gray-300 text-center mb-4">Experience true collaboration with direct mind-to-mind communication channels.</p> | |
| <div class="flex justify-center"> | |
| <div class="text-xs bg-purple-900 bg-opacity-50 text-purple-400 px-3 py-1 rounded-full">COMING SOON</div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-16 glow-box rounded-2xl p-8 max-w-4xl mx-auto relative overflow-hidden"> | |
| <div class="absolute top-0 left-0 w-full h-1 bg-gradient-to-r from-pink-500 via-purple-500 to-blue-500"></div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8"> | |
| <div> | |
| <h3 class="font-orbitron text-xl mb-4">Neural Sync Calibration</h3> | |
| <p class="text-gray-300 mb-6">Connect your neural interface and calibrate the system for optimal performance.</p> | |
| <div class="space-y-4"> | |
| <div> | |
| <label class="block text-gray-400 text-sm mb-2">Brainwave Frequency</label> | |
| <input type="range" min="0" max="100" value="75" class="w-full h-2 bg-gray-700 rounded-lg appearance-none cursor-pointer"> | |
| </div> | |
| <div> | |
| <label class="block text-gray-400 text-sm mb-2">Neural Sensitivity</label> | |
| <input type="range" min="0" max="100" value="60" class="w-full h-2 bg-gray-700 rounded-lg appearance-none cursor-pointer"> | |
| </div> | |
| <div> | |
| <label class="block text-gray-400 text-sm mb-2">Interface Mode</label> | |
| <select class="cyber-input w-full"> | |
| <option>Standard Cognition</option> | |
| <option>Enhanced Focus</option> | |
| <option>Creative Flow</option> | |
| <option>Deep Meditation</option> | |
| </select> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="flex flex-col justify-between"> | |
| <div> | |
| <div class="flex justify-between text-sm text-gray-400 mb-1"> | |
| <span>Neural Connection</span> | |
| <span>84%</span> | |
| </div> | |
| <div class="w-full bg-gray-800 rounded-full h-2 mb-6"> | |
| <div class="bg-gradient-to-r from-pink-500 to-purple-600 h-2 rounded-full" style="width: 84%"></div> | |
| </div> | |
| <div class="terminal-text bg-black bg-opacity-70 p-4 rounded-lg h-32 overflow-y-auto mb-4"> | |
| <div>> Scanning neural patterns...</div> | |
| <div class="text-pink-400">> Detected alpha waves: 12.4Hz</div> | |
| <div>> Calibrating interface...</div> | |
| <div>> Establishing quantum neural link...</div> | |
| <div class="text-purple-400">> Connection stability: 84%</div> | |
| <div class="blink">> _</div> | |
| </div> | |
| </div> | |
| <button class="cyber-btn w-full"> | |
| <i class="fas fa-brain mr-2"></i> Initiate Neural Sync | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Futuristic CTA --> | |
| <section class="py-32 px-6 relative overflow-hidden"> | |
| <div class="max-w-4xl mx-auto text-center"> | |
| <h2 class="text-5xl font-bold font-orbitron mb-6 neon-text-blue">Ready for the Future?</h2> | |
| <p class="text-xl text-gray-300 mb-8 max-w-2xl mx-auto"> | |
| Join thousands of early adopters experiencing tomorrow's technology today. | |
| </p> | |
| <div class="flex flex-col sm:flex-row gap-4 justify-center"> | |
| <button class="cyber-btn px-8 py-4 text-lg"> | |
| Get Started <i class="fas fa-arrow-right ml-2"></i> | |
| </button> | |
| <button class="px-8 py-4 border border-blue-400 text-blue-400 hover:bg-blue-400 hover:bg-opacity-10 transition text-lg flex items-center justify-center"> | |
| <i class="fas fa-headset mr-2"></i> Contact Sales | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Animated floating elements --> | |
| <div class="absolute top-1/4 left-1/4 w-16 h-16 rounded-full bg-blue-500 bg-opacity-10 blur-xl floating" style="animation-delay: 0s;"></div> | |
| <div class="absolute top-1/3 right-1/4 w-20 h-20 rounded-full bg-purple-500 bg-opacity-10 blur-xl floating" style="animation-delay: 1s;"></div> | |
| <div class="absolute bottom-1/4 left-1/3 w-24 h-24 rounded-full bg-pink-500 bg-opacity-10 blur-xl floating" style="animation-delay: 2s;"></div> | |
| </section> | |
| <!-- Cyberpunk Footer --> | |
| <footer class="bg-black bg-opacity-70 border-t border-gray-800 py-12 px-6"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-12"> | |
| <div> | |
| <div class="flex items-center space-x-2 mb-6"> | |
| <div class="w-8 h-8 rounded-full bg-gradient-to-br from-blue-500 to-purple-600 flex items-center justify-center"> | |
| <i class="fas fa-atom text-white text-sm"></i> | |
| </div> | |
| <span class="text-xl font-orbitron font-bold">NEXUS-2050</span> | |
| </div> | |
| <p class="text-gray-400 text-sm mb-6"> | |
| Pioneering the future of human-computer interaction through quantum computing, neural interfaces, and augmented reality. | |
| </p> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-blue-400 transition"> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-purple-400 transition"> | |
| <i class="fab fa-discord"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-pink-400 transition"> | |
| <i class="fab fa-instagram"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-green-400 transition"> | |
| <i class="fab fa-github"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div> | |
| <h4 class="font-orbitron text-lg mb-6 text-white">Technology</h4> | |
| <ul class="space-y-3"> | |
| <li><a href="#" class="text-gray-400 hover:text-blue-400 transition text-sm">Quantum Computing</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-blue-400 transition text-sm">Neural Interfaces</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-blue-400 transition text-sm">Augmented Reality</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-blue-400 transition text-sm">AI Systems</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-blue-400 transition text-sm">Biotech</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-orbitron text-lg mb-6 text-white">Resources</h4> | |
| <ul class="space-y-3"> | |
| <li><a href="#" class="text-gray-400 hover:text-purple-400 transition text-sm">Documentation</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-purple-400 transition text-sm">API Reference</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-purple-400 transition text-sm">Neural SDK</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-purple-400 transition text-sm">Quantum Simulator</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-purple-400 transition text-sm">Research Papers</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-orbitron text-lg mb-6 text-white">Stay Updated</h4> | |
| <p class="text-gray-400 text-sm mb-4"> | |
| Subscribe to our quantum newsletter for the latest in future tech. | |
| </p> | |
| <div class="flex"> | |
| <input type="email" placeholder="Your email" class="cyber-input flex-grow rounded-r-none"> | |
| <button class="cyber-btn rounded-l-none px-4"> | |
| <i class="fas fa-paper-plane"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-gray-500 text-sm mb-4 md:mb-0"> | |
| © 2050 Nexus Technologies. All rights reserved. | |
| </p> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-500 hover:text-blue-400 transition text-sm">Privacy Policy</a> | |
| <a href="#" class="text-gray-500 hover:text-blue-400 transition text-sm">Terms of Service</a> | |
| <a href="#" class="text-gray-500 hover:text-blue-400 transition text-sm">Cookies</a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <!-- Floating Action Button --> | |
| <div class="fixed bottom-8 right-8 z-50"> | |
| <button class="w-14 h-14 rounded-full bg-gradient-to-br from-blue-500 to-purple-600 flex items-center justify-center text-white shadow-lg hover:shadow-xl hover:shadow-blue-500/30 transition-all"> | |
| <i class="fas fa-comment-dots text-xl"></i> | |
| </button> | |
| </div> | |
| <script> | |
| // Initialize animations | |
| document.addEventListener('DOMContentLoaded', function() { | |
| // GSAP animations | |
| gsap.from("nav", {duration: 1, y: -50, opacity: 0, ease: "power2.out"}); | |
| gsap.from(".hero-content", {duration: 1.2, y: 50, opacity: 0, delay: 0.3, ease: "power2.out"}); | |
| gsap.from(".holographic-card", {duration: 1.2, scale: 0.9, opacity: 0, delay: 0.5, ease: "back.out(1.7)"}); | |
| // Animate service cards on scroll | |
| gsap.utils.toArray(".glow-box").forEach(box => { | |
| gsap.from(box, { | |
| scrollTrigger: { | |
| trigger: box, | |
| start: "top 80%", | |
| toggleActions: "play none none none" | |
| }, | |
| y: 50, | |
| opacity: 0, | |
| duration: 0.8, | |
| ease: "power2.out" | |
| }); | |
| }); | |
| // Particle.js would normally go here, but we'll simulate it with CSS | |
| }); | |
| // Terminal text animation | |
| function typeWriter(element, text, i = 0) { | |
| if (i < text.length) { | |
| element.innerHTML += text.charAt(i); | |
| i++; | |
| setTimeout(() => typeWriter(element, text, i), Math.random() * 100 + 50); | |
| } | |
| } | |
| // Initialize terminal typing effects | |
| document.querySelectorAll('.terminal-text').forEach(terminal => { | |
| const lines = terminal.innerHTML.split('<div>'); | |
| terminal.innerHTML = ''; | |
| lines.forEach((line, index) => { | |
| if (line.trim() === '') return; | |
| const lineDiv = document.createElement('div'); | |
| if (index === 0) lineDiv.innerHTML = '>'; | |
| terminal.appendChild(lineDiv); | |
| typeWriter(lineDiv, line.replace('>', '').trim()); | |
| }); | |
| }); | |
| </script> | |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=akash1313/akashmarketing" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |