Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Digital Quantum Clone - Your Future, Reimagined</title> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/anime.min.js"></script> | |
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Montserrat:wght@300;400;500&display=swap" rel="stylesheet"> | |
<style> | |
body { | |
font-family: 'Montserrat', sans-serif; | |
background-color: #081C24; | |
color: #C6D2D9; | |
overflow-x: hidden; | |
} | |
h1, h2, h3, h4 { | |
font-family: 'Manrope', sans-serif; | |
} | |
.gradient-bg { | |
background: linear-gradient(135deg, #081C24 0%, #0DBAB1 100%); | |
background-size: 200% 200%; | |
animation: gradient 15s ease infinite; | |
} | |
@keyframes gradient { | |
0% { background-position: 0% 50%; } | |
50% { background-position: 100% 50%; } | |
100% { background-position: 0% 50%; } | |
} | |
.avatar-container { | |
perspective: 1000px; | |
} | |
.avatar { | |
transform-style: preserve-3d; | |
transition: transform 0.5s ease; | |
} | |
.hover-rotate:hover { | |
transform: rotateY(15deg) rotateX(-5deg); | |
} | |
.tab-content { | |
display: none; | |
} | |
.tab-content.active { | |
display: block; | |
animation: fadeIn 0.5s ease; | |
} | |
@keyframes fadeIn { | |
from { opacity: 0; transform: translateY(10px); } | |
to { opacity: 1; transform: translateY(0); } | |
} | |
.nav-blur { | |
backdrop-filter: blur(10px); | |
background-color: rgba(8, 28, 36, 0.7); | |
} | |
.cursor-trail { | |
position: fixed; | |
width: 20px; | |
height: 20px; | |
border-radius: 50%; | |
background-color: rgba(13, 186, 177, 0.3); | |
pointer-events: none; | |
transform: translate(-50%, -50%); | |
z-index: 9999; | |
mix-blend-mode: screen; | |
} | |
.underline-animation { | |
position: relative; | |
display: inline-block; | |
} | |
.underline-animation::after { | |
content: ''; | |
position: absolute; | |
width: 0; | |
height: 2px; | |
bottom: -2px; | |
left: 0; | |
background-color: #0DBAB1; | |
transition: width 0.3s ease; | |
} | |
.underline-animation:hover::after { | |
width: 100%; | |
} | |
.fade-up { | |
opacity: 0; | |
transform: translateY(20px); | |
transition: opacity 0.6s ease, transform 0.6s ease; | |
} | |
.fade-up.visible { | |
opacity: 1; | |
transform: translateY(0); | |
} | |
.modal { | |
opacity: 0; | |
visibility: hidden; | |
transition: all 0.3s ease; | |
} | |
.modal.active { | |
opacity: 1; | |
visibility: visible; | |
} | |
</style> | |
</head> | |
<body> | |
<!-- Cursor Trail --> | |
<div class="cursor-trail"></div> | |
<!-- Navigation --> | |
<nav id="navbar" class="fixed top-0 left-0 right-0 z-50 py-4 transition-all duration-300 nav-blur"> | |
<div class="container mx-auto px-6 flex justify-between items-center"> | |
<div class="text-2xl font-bold text-cyan-400">DQC</div> | |
<div class="hidden md:flex space-x-8"> | |
<a href="#features" class="text-gray-300 hover:text-cyan-400 transition-colors underline-animation">Features</a> | |
<a href="#assistants" class="text-gray-300 hover:text-cyan-400 transition-colors underline-animation">Assistants</a> | |
<a href="#impact" class="text-gray-300 hover:text-cyan-400 transition-colors underline-animation">Impact</a> | |
<a href="#contact" class="text-gray-300 hover:text-cyan-400 transition-colors underline-animation">Contact</a> | |
</div> | |
<button class="bg-gradient-to-r from-cyan-500 to-teal-500 text-white px-6 py-2 rounded-full font-medium hover:opacity-90 transition-opacity"> | |
Get Started | |
</button> | |
</div> | |
</nav> | |
<!-- Hero Section --> | |
<section class="gradient-bg min-h-screen flex items-center justify-center pt-20 pb-16 px-4"> | |
<div class="container mx-auto flex flex-col md:flex-row items-center"> | |
<div class="md:w-1/2 mb-12 md:mb-0 fade-up"> | |
<h1 class="text-4xl md:text-6xl font-bold text-white mb-6"> | |
Your <span class="text-cyan-400">Digital Clone</span>, Reimagined | |
</h1> | |
<p class="text-xl text-gray-300 mb-8 max-w-lg"> | |
Experience the future of AI with your personalized digital avatar. Secure, intelligent, and uniquely you. | |
</p> | |
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> | |
<button class="bg-cyan-500 hover:bg-cyan-600 text-white px-8 py-3 rounded-full font-medium transition-colors"> | |
Create Your Clone | |
</button> | |
<button class="border border-cyan-400 text-cyan-400 hover:bg-cyan-400 hover:text-gray-900 px-8 py-3 rounded-full font-medium transition-colors"> | |
Learn More | |
</button> | |
</div> | |
</div> | |
<div class="md:w-1/2 flex justify-center avatar-container fade-up"> | |
<div class="avatar hover-rotate relative w-64 h-64 md:w-80 md:h-80"> | |
<div class="absolute inset-0 bg-gradient-to-br from-cyan-400 to-teal-500 rounded-2xl shadow-2xl"></div> | |
<div class="absolute inset-1 bg-gray-900 rounded-xl flex items-center justify-center"> | |
<div class="text-center p-4"> | |
<div class="w-24 h-24 md:w-32 md:h-32 bg-gray-800 rounded-full mx-auto mb-4 flex items-center justify-center"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-16 w-16 text-cyan-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" /> | |
</svg> | |
</div> | |
<h3 class="text-xl font-bold text-cyan-400">Your AI Clone</h3> | |
<p class="text-sm text-gray-400">Quantum Secured</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Features Section --> | |
<section id="features" class="py-20 px-4"> | |
<div class="container mx-auto"> | |
<div class="text-center mb-16 fade-up"> | |
<h2 class="text-3xl md:text-4xl font-bold text-white mb-4"> | |
Revolutionary <span class="text-cyan-400">Features</span> | |
</h2> | |
<p class="text-gray-400 max-w-2xl mx-auto"> | |
DQC isn't just another AI assistant. It's a quantum leap in personalized digital interaction. | |
</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
<div class="bg-gray-800 rounded-xl p-6 fade-up" style="transition-delay: 0.1s"> | |
<div class="w-12 h-12 bg-cyan-500 rounded-lg flex items-center justify-center mb-4"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z" /> | |
</svg> | |
</div> | |
<h3 class="text-xl font-bold text-white mb-2">Quantum Encryption</h3> | |
<p class="text-gray-400"> | |
Unbreakable security protecting your data with state-of-the-art quantum encryption technology. | |
</p> | |
</div> | |
<div class="bg-gray-800 rounded-xl p-6 fade-up" style="transition-delay: 0.2s"> | |
<div class="w-12 h-12 bg-cyan-500 rounded-lg flex items-center justify-center mb-4"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z" /> | |
</svg> | |
</div> | |
<h3 class="text-xl font-bold text-white mb-2">Self-Learning AI</h3> | |
<p class="text-gray-400"> | |
Your digital clone evolves with you, learning your patterns, preferences, and personality. | |
</p> | |
</div> | |
<div class="bg-gray-800 rounded-xl p-6 fade-up" style="transition-delay: 0.3s"> | |
<div class="w-12 h-12 bg-cyan-500 rounded-lg flex items-center justify-center mb-4"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 8h10M7 12h4m1 8l-4-4H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-3l-4 4z" /> | |
</svg> | |
</div> | |
<h3 class="text-xl font-bold text-white mb-2">Natural Conversations</h3> | |
<p class="text-gray-400"> | |
Human-like interactions that understand context, emotion, and nuance in communication. | |
</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Assistants Section --> | |
<section id="assistants" class="py-20 px-4 bg-gray-900"> | |
<div class="container mx-auto"> | |
<div class="text-center mb-16 fade-up"> | |
<h2 class="text-3xl md:text-4xl font-bold text-white mb-4"> | |
Specialized <span class="text-cyan-400">AI Assistants</span> | |
</h2> | |
<p class="text-gray-400 max-w-2xl mx-auto"> | |
Choose from our range of expert AI assistants or create your own specialized clone. | |
</p> | |
</div> | |
<!-- Tab Navigation --> | |
<div class="flex flex-wrap justify-center mb-8 fade-up"> | |
<button class="tab-btn active px-6 py-3 font-medium text-white bg-cyan-500 rounded-l-lg" data-tab="doctor"> | |
Doctor | |
</button> | |
<button class="tab-btn px-6 py-3 font-medium text-gray-300 bg-gray-800" data-tab="lawyer"> | |
Lawyer | |
</button> | |
<button class="tab-btn px-6 py-3 font-medium text-gray-300 bg-gray-800" data-tab="coach"> | |
Sports Coach | |
</button> | |
<button class="tab-btn px-6 py-3 font-medium text-gray-300 bg-gray-800 rounded-r-lg" data-tab="finance"> | |
Financial | |
</button> | |
</div> | |
<!-- Tab Content --> | |
<div class="tab-content active fade-up" id="doctor"> | |
<div class="bg-gray-800 rounded-xl p-8 md:p-12 grid grid-cols-1 md:grid-cols-2 gap-8"> | |
<div> | |
<h3 class="text-2xl font-bold text-cyan-400 mb-4">AI Medical Assistant</h3> | |
<p class="text-gray-300 mb-6"> | |
Your personal AI doctor provides preliminary medical diagnosis, psychological support, and health data analysis. | |
</p> | |
<ul class="space-y-3"> | |
<li class="flex items-start"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-cyan-400 mt-1 mr-2" viewBox="0 0 20 20" fill="currentColor"> | |
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" /> | |
</svg> | |
<span class="text-gray-300">Analyzes symptoms and suggests possible diagnoses</span> | |
</li> | |
<li class="flex items-start"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-cyan-400 mt-1 mr-2" viewBox="0 0 20 20" fill="currentColor"> | |
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" /> | |
</svg> | |
<span class="text-gray-300">Provides psychological support and stress management</span> | |
</li> | |
<li class="flex items-start"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-cyan-400 mt-1 mr-2" viewBox="0 0 20 20" fill="currentColor"> | |
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" /> | |
</svg> | |
<span class="text-gray-300">Studies medical history and suggests solutions</span> | |
</li> | |
</ul> | |
</div> | |
<div class="flex items-center justify-center"> | |
<div class="relative w-64 h-64"> | |
<div class="absolute inset-0 bg-gradient-to-br from-cyan-400 to-teal-500 rounded-full opacity-20 animate-pulse"></div> | |
<div class="absolute inset-4 bg-gray-900 rounded-full flex items-center justify-center"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-32 w-32 text-cyan-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19.428 15.428a2 2 0 00-1.022-.547l-2.387-.477a6 6 0 00-3.86.517l-.318.158a6 6 0 01-3.86.517L6.05 15.21a2 2 0 00-1.806.547M8 4h8l-1 1v5.172a2 2 0 00.586 1.414l5 5c1.26 1.26.367 3.414-1.415 3.414H4.828c-1.782 0-2.674-2.154-1.414-3.414l5-5A2 2 0 009 10.172V5L8 4z" /> | |
</svg> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="tab-content fade-up" id="lawyer"> | |
<div class="bg-gray-800 rounded-xl p-8 md:p-12 grid grid-cols-1 md:grid-cols-2 gap-8"> | |
<div> | |
<h3 class="text-2xl font-bold text-cyan-400 mb-4">AI Legal Assistant</h3> | |
<p class="text-gray-300 mb-6"> | |
Your personal AI lawyer helps with legal analysis, document preparation, and risk assessment. | |
</p> | |
<ul class="space-y-3"> | |
<li class="flex items-start"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-cyan-400 mt-1 mr-2" viewBox="0 0 20 20" fill="currentColor"> | |
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" /> | |
</svg> | |
<span class="text-gray-300">Analyzes laws and documents with precision</span> | |
</li> | |
<li class="flex items-start"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-cyan-400 mt-1 mr-2" viewBox="0 0 20 20" fill="currentColor"> | |
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" /> | |
</svg> | |
<span class="text-gray-300">Prepares contracts, complaints, and legal documents</span> | |
</li> | |
<li class="flex items-start"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-cyan-400 mt-1 mr-2" viewBox="0 0 20 20" fill="currentColor"> | |
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" /> | |
</svg> | |
<span class="text-gray-300">Assesses risks and predicts legal consequences</span> | |
</li> | |
</ul> | |
</div> | |
<div class="flex items-center justify-center"> | |
<div class="relative w-64 h-64"> | |
<div class="absolute inset-0 bg-gradient-to-br from-cyan-400 to-teal-500 rounded-full opacity-20 animate-pulse"></div> | |
<div class="absolute inset-4 bg-gray-900 rounded-full flex items-center justify-center"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-32 w-32 text-cyan-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" 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> | |
</div> | |
</div> | |
</div> | |
<div class="tab-content fade-up" id="coach"> | |
<div class="bg-gray-800 rounded-xl p-8 md:p-12 grid grid-cols-1 md:grid-cols-2 gap-8"> | |
<div> | |
<h3 class="text-2xl font-bold text-cyan-400 mb-4">AI Sports Coach</h3> | |
<p class="text-gray-300 mb-6"> | |
Your personal AI fitness coach creates training programs, corrects technique, and provides nutrition plans. | |
</p> | |
<ul class="space-y-3"> | |
<li class="flex items-start"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-cyan-400 mt-1 mr-2" viewBox="0 0 20 20" fill="currentColor"> | |
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" /> | |
</svg> | |
<span class="text-gray-300">Creates personalized training programs</span> | |
</li> | |
<li class="flex items-start"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-cyan-400 mt-1 mr-2" viewBox="0 0 20 20" fill="currentColor"> | |
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" /> | |
</svg> | |
<span class="text-gray-300">Analyzes movements and corrects technique</span> | |
</li> | |
<li class="flex items-start"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-cyan-400 mt-1 mr-2" viewBox="0 0 20 20" fill="currentColor"> | |
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" /> | |
</svg> | |
<span class="text-gray-300">Provides personalized nutrition plans</span> | |
</li> | |
</ul> | |
</div> | |
<div class="flex items-center justify-center"> | |
<div class="relative w-64 h-64"> | |
<div class="absolute inset-0 bg-gradient-to-br from-cyan-400 to-teal-500 rounded-full opacity-20 animate-pulse"></div> | |
<div class="absolute inset-4 bg-gray-900 rounded-full flex items-center justify-center"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-32 w-32 text-cyan-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" /> | |
</svg> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="tab-content fade-up" id="finance"> | |
<div class="bg-gray-800 rounded-xl p-8 md:p-12 grid grid-cols-1 md:grid-cols-2 gap-8"> | |
<div> | |
<h3 class="text-2xl font-bold text-cyan-400 mb-4">AI Financial Assistant</h3> | |
<p class="text-gray-300 mb-6"> | |
Your personal AI financial advisor helps with budgeting, investments, and financial planning. | |
</p> | |
<ul class="space-y-3"> | |
<li class="flex items-start"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-cyan-400 mt-1 mr-2" viewBox="0 0 20 20" fill="currentColor"> | |
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" /> | |
</svg> | |
<span class="text-gray-300">Analyzes income and optimizes your budget</span> | |
</li> | |
<li class="flex items-start"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-cyan-400 mt-1 mr-2" viewBox="0 0 20 20" fill="currentColor"> | |
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" /> | |
</svg> | |
<span class="text-gray-300">Provides investment advice and risk assessment</span> | |
</li> | |
<li class="flex items-start"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-cyan-400 mt-1 mr-2" viewBox="0 0 20 20" fill="currentColor"> | |
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" /> | |
</svg> | |
<span class="text-gray-300">Identifies suspicious transactions and fraud</span> | |
</li> | |
</ul> | |
</div> | |
<div class="flex items-center justify-center"> | |
<div class="relative w-64 h-64"> | |
<div class="absolute inset-0 bg-gradient-to-br from-cyan-400 to-teal-500 rounded-full opacity-20 animate-pulse"></div> | |
<div class="absolute inset-4 bg-gray-900 rounded-full flex items-center justify-center"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-32 w-32 text-cyan-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1M21 12a9 9 0 11-18 0 9 9 0 0118 0z" /> | |
</svg> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Quantum Encryption Section --> | |
<section class="py-20 px-4"> | |
<div class="container mx-auto"> | |
<div class="bg-gradient-to-r from-gray-900 to-cyan-900 rounded-2xl p-8 md:p-12 grid grid-cols-1 md:grid-cols-2 gap-8 fade-up"> | |
<div> | |
<h2 class="text-3xl font-bold text-white mb-4"> | |
Quantum <span class="text-cyan-400">Encryption</span> | |
</h2> | |
<p class="text-gray-300 mb-6"> | |
Your digital clone is protected by unbreakable quantum encryption, ensuring your data remains secure and private. | |
</p> | |
<button id="quantum-btn" class="bg-cyan-500 hover:bg-cyan-600 text-white px-6 py-3 rounded-lg font-medium transition-colors flex items-center"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 mr-2" viewBox="0 0 20 20" fill="currentColor"> | |
<path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z" clip-rule="evenodd" /> | |
</svg> | |
How It Works | |
</button> | |
</div> | |
<div class="flex items-center justify-center"> | |
<div class="relative w-full max-w-md"> | |
<div class="absolute inset-0 bg-gradient-to-br from-cyan-400 to-teal-500 rounded-xl opacity-20 animate-pulse"></div> | |
<div class="relative bg-gray-900 rounded-lg p-6"> | |
<div class="flex justify-between items-center mb-4"> | |
<div class="text-sm font-medium text-cyan-400">Quantum Encryption</div> | |
<div class="flex space-x-2"> | |
<div class="w-3 h-3 rounded-full bg-red-500"></div> | |
<div class="w-3 h-3 rounded-full bg-yellow-500"></div> | |
<div class="w-3 h-3 rounded-full bg-green-500"></div> | |
</div> | |
</div> | |
<div class="space-y-3"> | |
<div class="flex items-center"> | |
<div class="w-2 h-2 rounded-full bg-cyan-400 mr-2"></div> | |
<div class="h-2 bg-gray-700 rounded-full w-24"></div> | |
</div> | |
<div class="flex items-center"> | |
<div class="w-2 h-2 rounded-full bg-cyan-400 mr-2"></div> | |
<div class="h-2 bg-gray-700 rounded-full w-32"></div> | |
</div> | |
<div class="flex items-center"> | |
<div class="w-2 h-2 rounded-full bg-cyan-400 mr-2"></div> | |
<div class="h-2 bg-gray-700 rounded-full w-28"></div> | |
</div> | |
<div class="flex items-center"> | |
<div class="w-2 h-2 rounded-full bg-cyan-400 mr-2"></div> | |
<div class="h-2 bg-gray-700 rounded-full w-36"></div> | |
</div> | |
</div> | |
<div class="mt-6 flex justify-center"> | |
<div class="w-16 h-16 rounded-full border-4 border-cyan-400 flex items-center justify-center"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 text-cyan-400 animate-spin" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 15l8-8m0 0l-8-8m8 8H4" /> | |
</svg> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Impact Section --> | |
<section id="impact" class="py-20 px-4 bg-gray-900"> | |
<div class="container mx-auto"> | |
<div class="text-center mb-16 fade-up"> | |
<h2 class="text-3xl md:text-4xl font-bold text-white mb-4"> | |
The <span class="text-cyan-400">Impact</span> | |
</h2> | |
<p class="text-gray-400 max-w-2xl mx-auto"> | |
DQC isn't just a product—it's a movement that redefines human-AI interaction. | |
</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
<div class="bg-gray-800 rounded-xl p-6 fade-up" style="transition-delay: 0.1s"> | |
<div class="w-16 h-16 bg-cyan-500 rounded-lg flex items-center justify-center mb-4 mx-auto"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" 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> | |
<h3 class="text-xl font-bold text-white mb-2 text-center">Security Meets Intelligence</h3> | |
<p class="text-gray-400 text-center"> | |
Your data remains safeguarded by quantum-grade encryption while you enjoy lightning-fast, accurate information retrieval. | |
</p> | |
</div> | |
<div class="bg-gray-800 rounded-xl p-6 fade-up" style="transition-delay: 0.2s"> | |
<div class="w-16 h-16 bg-cyan-500 rounded-lg flex items-center justify-center mb-4 mx-auto"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z" /> | |
</svg> | |
</div> | |
<h3 class="text-xl font-bold text-white mb-2 text-center">Personalization Redefined</h3> | |
<p class="text-gray-400 text-center"> | |
Your digital clone evolves with you, offering bespoke interactions that mirror your unique personality and expertise. | |
</p> | |
</div> | |
<div class="bg-gray-800 rounded-xl p-6 fade-up" style="transition-delay: 0.3s"> | |
<div class="w-16 h-16 bg-cyan-500 rounded-lg flex items-center justify-center mb-4 mx-auto"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z" /> | |
</svg> | |
</div> | |
<h3 class="text-xl font-bold text-white mb-2 text-center">Empowered Communication</h3> | |
<p class="text-gray-400 text-center"> | |
Experience conversations that feel truly human, as our AI adapts to your tone, context, and emotional cues. | |
</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- CTA Section --> | |
<section class="py-20 px-4 gradient-bg"> | |
<div class="container mx-auto text-center fade-up"> | |
<h2 class="text-3xl md:text-4xl font-bold text-white mb-6"> | |
Ready to Create Your <span class="text-cyan-400">Digital Clone</span>? | |
</h2> | |
<p class="text-xl text-gray-300 mb-8 max-w-2xl mx-auto"> | |
Join the revolution of personalized AI and experience the future today. | |
</p> | |
<button class="bg-white hover:bg-gray-100 text-gray-900 px-8 py-4 rounded-full font-bold text-lg transition-colors shadow-lg"> | |
Get Started Now | |
</button> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer id="contact" class="bg-gray-900 py-12 px-4"> | |
<div class="container mx-auto"> | |
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8"> | |
<div> | |
<h3 class="text-xl font-bold text-white mb-4">DQC</h3> | |
<p class="text-gray-400"> | |
Your personalized digital clone, powered by quantum encryption and advanced AI. | |
</p> | |
</div> | |
<div> | |
<h4 class="text-lg font-semibold text-white mb-4">Product</h4> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-cyan-400 transition-colors">Features</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-cyan-400 transition-colors">Pricing</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-cyan-400 transition-colors">Assistants</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-cyan-400 transition-colors">Security</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="text-lg font-semibold text-white mb-4">Company</h4> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-cyan-400 transition-colors">About</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-cyan-400 transition-colors">Careers</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-cyan-400 transition-colors">Blog</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-cyan-400 transition-colors">Contact</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="text-lg font-semibold text-white mb-4">Connect</h4> | |
<div class="flex space-x-4"> | |
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center text-gray-400 hover:text-cyan-400 hover:bg-gray-700 transition-colors"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="currentColor" viewBox="0 0 24 24"> | |
<path d="M22.675 0h-21.35c-.732 0-1.325.593-1.325 1.325v21.351c0 .731.593 1.324 1.325 1.324h11.495v-9.294h-3.128v-3.622h3.128v-2.671c0-3.1 1.893-4.788 4.659-4.788 1.325 0 2.463.099 2.795.143v3.24l-1.918.001c-1.504 0-1.795.715-1.795 1.763v2.313h3.587l-.467 3.622h-3.12v9.293h6.116c.73 0 1.323-.593 1.323-1.325v-21.35c0-.732-.593-1.325-1.325-1.325z" /> | |
</svg> | |
</a> | |
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center text-gray-400 hover:text-cyan-400 hover:bg-gray-700 transition-colors"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="currentColor" viewBox="0 0 24 24"> | |
<path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z" /> | |
</svg> | |
</a> | |
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center text-gray-400 hover:text-cyan-400 hover:bg-gray-700 transition-colors"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="currentColor" viewBox="0 0 24 24"> | |
<path d="M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z" /> | |
</svg> | |
</a> | |
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center text-gray-400 hover:text-cyan-400 hover:bg-gray-700 transition-colors"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="currentColor" viewBox="0 0 24 24"> | |
<path d="M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z" /> | |
</svg> | |
</a> | |
</div> | |
</div> | |
</div> | |
<div class="pt-8 border-t border-gray-800 text-center"> | |
<p class="text-gray-400"> | |
© 2023 Digital Quantum Clone. All rights reserved. | |
</p> | |
</div> | |
</div> | |
</footer> | |
<!-- Quantum Encryption Modal --> | |
<div id="quantum-modal" class="modal fixed inset-0 z-50 flex items-center justify-center bg-black bg-opacity-70 p-4"> | |
<div class="bg-gray-900 rounded-xl max-w-2xl w-full p-8 relative"> | |
<button id="close-modal" class="absolute top-4 right-4 text-gray-400 hover:text-white"> | |
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" /> | |
</svg> | |
</button> | |
<h3 class="text-2xl font-bold text-cyan-400 mb-4">Quantum Encryption Explained</h3> | |
<div class="prose prose-invert text-gray-300"> | |
<p> | |
Quantum encryption uses the principles of quantum mechanics to secure data in a way that is fundamentally unbreakable. Unlike traditional encryption methods that rely on mathematical complexity, quantum encryption is based on the laws of physics. | |
</p> | |
<p class="mt-4"> | |
Our system uses quantum key distribution (QKD) which allows two parties to produce a shared random secret key known only to them, which can then be used to encrypt and decrypt messages. The security of QKD relies on the foundations of quantum mechanics, where any attempt to eavesdrop on the key exchange will disturb the quantum states being transmitted and can be detected by the communicating parties. | |
</p> | |
<div class="mt-6 bg-gray-800 rounded-lg p-4"> | |
<h4 class="font-bold text-white mb-2">Key Benefits:</h4> | |
<ul class="list-disc pl-5 space-y-1"> | |
<li>Unbreakable security based on physics rather than mathematics</li> | |
<li>Immediate detection of any eavesdropping attempts</li> | |
<li>Future-proof against quantum computing threats</li> | |
<li>Secure communication channels immune to conventional hacking</li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
</div> | |
<script> | |
// Cursor Trail Effect | |
const cursor = document.querySelector('.cursor-trail'); | |
document.addEventListener('mousemove', (e) => { | |
cursor.style.left = e.pageX + 'px'; | |
cursor.style.top = e.pageY + 'px'; | |
// Create a new trail element | |
const trail = document.createElement('div'); | |
trail.className = 'cursor-trail'; | |
trail.style.left = e.pageX + 'px'; | |
trail.style.top = e.pageY + 'px'; | |
trail.style.opacity = '0.3'; | |
trail.style.transform = 'translate(-50%, -50%) scale(0.5)'; | |
document.body.appendChild(trail); | |
// Remove the trail element after animation | |
setTimeout(() => { | |
trail.style.opacity = '0'; | |
trail.style.transform = 'translate(-50%, -50%) scale(2)'; | |
setTimeout(() => { | |
trail.remove(); | |
}, 300); | |
}, 500); | |
}); | |
// Scroll effect for navbar | |
window.addEventListener('scroll', () => { | |
const navbar = document.getElementById('navbar'); | |
if (window.scrollY > 50) { | |
navbar.classList.add('shadow-lg'); | |
navbar.classList.add('py-3'); | |
navbar.classList.remove('py-4'); | |
} else { | |
navbar.classList.remove('shadow-lg'); | |
navbar.classList.remove('py-3'); | |
navbar.classList.add('py-4'); | |
} | |
}); | |
// Tab functionality | |
const tabBtns = document.querySelectorAll('.tab-btn'); | |
const tabContents = document.querySelectorAll('.tab-content'); | |
tabBtns.forEach(btn => { | |
btn.addEventListener('click', () => { | |
// Remove active class from all buttons and contents | |
tabBtns.forEach(b => b.classList.remove('active')); | |
tabContents.forEach(c => c.classList.remove('active')); | |
// Add active class to clicked button | |
btn.classList.add('active'); | |
// Show corresponding content | |
const tabId = btn.getAttribute('data-tab'); | |
document.getElementById(tabId).classList.add('active'); | |
// Update button styles | |
tabBtns.forEach(b => { | |
if (b.classList.contains('active')) { | |
b.classList.remove('bg-gray-800'); | |
b.classList.remove('text-gray-300'); | |
b.classList.add('bg-cyan-500'); | |
b.classList.add('text-white'); | |
} else { | |
b.classList.add('bg-gray-800'); | |
b.classList.add('text-gray-300'); | |
b.classList.remove('bg-cyan-500'); | |
b.classList.remove('text-white'); | |
} | |
// Handle rounded corners | |
if (b === tabBtns[0]) { | |
b.classList.add('rounded-l-lg'); | |
b.classList.remove('rounded-r-lg'); | |
} else if (b === tabBtns[tabBtns.length - 1]) { | |
b.classList.add('rounded-r-lg'); | |
b.classList.remove('rounded-l-lg'); | |
} else { | |
b.classList.remove('rounded-l-lg'); | |
b.classList.remove('rounded-r-lg'); | |
} | |
}); | |
}); | |
}); | |
// Modal functionality | |
const quantumBtn = document.getElementById('quantum-btn'); | |
const quantumModal = document.getElementById('quantum-modal'); | |
const closeModal = document.getElementById('close-modal'); | |
quantumBtn.addEventListener('click', () => { | |
quantumModal.classList.add('active'); | |
document.body.style.overflow = 'hidden'; | |
}); | |
closeModal.addEventListener('click', () => { | |
quantumModal.classList.remove('active'); | |
document.body.style.overflow = 'auto'; | |
}); | |
// Close modal when clicking outside | |
quantumModal.addEventListener('click', (e) => { | |
if (e.target === quantumModal) { | |
quantumModal.classList.remove('active'); | |
document.body.style.overflow = 'auto'; | |
} | |
}); | |
// Scroll animation with Intersection Observer | |
const fadeElements = document.querySelectorAll('.fade-up'); | |
const observer = new IntersectionObserver((entries) => { | |
entries.forEach(entry => { | |
if (entry.isIntersecting) { | |
entry.target.classList.add('visible'); | |
} | |
}); | |
}, { | |
threshold: 0.1 | |
}); | |
fadeElements.forEach(el => { | |
observer.observe(el); | |
}); | |
// Smooth scrolling for anchor links | |
document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
anchor.addEventListener('click', function (e) { | |
e.preventDefault(); | |
const targetId = this.getAttribute('href'); | |
const targetElement = document.querySelector(targetId); | |
window.scrollTo({ | |
top: targetElement.offsetTop - 100, | |
behavior: 'smooth' | |
}); | |
}); | |
}); | |
</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=Onekee/dqc-template-3" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |