File size: 20,616 Bytes
70a5fe0 1e37053 f6167ab 1e37053 70a5fe0 1e37053 70a5fe0 1e37053 70a5fe0 1e37053 70a5fe0 1e37053 70a5fe0 1e37053 70a5fe0 1e37053 70a5fe0 1e37053 70a5fe0 1e37053 70a5fe0 1e37053 70a5fe0 1e37053 70a5fe0 1e37053 70a5fe0 1e37053 70a5fe0 3200020 70a5fe0 3200020 70a5fe0 9e28347 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CircaSnooze | Optimize Your Rhythm</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.waves.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/animejs@3.2.1/lib/anime.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Space Grotesk', sans-serif;
color: #FFA07A;
}
.gradient-bg {
background: linear-gradient(135deg, #2b5876 0%, #4e4376 100%);
}
.pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.glow-hover:hover {
filter: drop-shadow(0 0 8px rgba(118, 75, 162, 0.6));
}
.circa-card {
backdrop-filter: blur(10px);
background-color: rgba(255, 255, 255, 0.08);
}
</style>
</head>
<body class="min-h-screen text-white gradient-bg" id="vanta-bg">
<div class="container mx-auto px-4 py-8">
<!-- Header -->
<header class="flex justify-between items-center mb-12">
<div class="flex items-center space-x-2">
<i data-feather="moon" class="w-8 h-8"></i>
<h1 class="text-3xl font-bold">CircaSnooze</h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="sleep-calculator.html" class="hover:text-[#FFA07A] transition">Sleep</a>
<a href="scheduling.html" class="hover:text-[#FFA07A] transition">Schedule</a>
<a href="tasks.html" class="hover:text-[#FFA07A] transition">Tasks</a>
<a href="research.html" class="hover:text-[#FFA07A] transition">Research</a>
</nav>
<button class="md:hidden">
<i data-feather="menu" class="w-6 h-6"></i>
</button>
</header>
<!-- Hero Section -->
<section class="mb-20">
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<div>
<h2 class="text-4xl md:text-5xl font-bold mb-6">Sync With Your <span class="text-purple-300">Circadian Rhythm</span></h2>
<p class="text-lg mb-8 opacity-90">Optimize your sleep, supercharge your productivity, and unlock your natural biological potential with our AI-powered lifestyle orchestration.</p>
<div class="flex space-x-4">
<button onclick="location.href='sleep-calculator.html'" class="bg-[#4e4376] text-[#FFA07A] px-6 py-3 rounded-full font-semibold hover:bg-[#3a2a7a] transition glow-hover">
Start Sleeping Better
</button>
<button onclick="location.href='#features'" class="border border-[#FFA07A] text-[#FFA07A] px-6 py-3 rounded-full font-semibold hover:bg-[#4e4376] transition">
Explore Features
</button>
</div>
</div>
<div class="relative">
<div class="circa-card rounded-3xl p-8 shadow-2xl">
<div class="flex justify-between mb-6">
<h3 class="text-xl font-semibold">Sleep Calculator</h3>
<div class="flex space-x-2">
<button class="bg-purple-600 px-3 py-1 rounded-full text-sm">Sleep</button>
<button class="px-3 py-1 rounded-full text-sm hover:bg-white/10">Wake</button>
</div>
</div>
<div class="mb-6">
<label class="block mb-2">I want to</label>
<select class="w-full bg-white/10 border border-white/20 rounded-lg px-4 py-3 mb-4">
<option>Fall asleep at...</option>
<option>Wake up at...</option>
</select>
<div class="flex items-center">
<input type="time" class="bg-white/10 border border-white/20 rounded-lg px-4 py-3 w-full">
<button class="ml-2 bg-purple-600 p-3 rounded-lg">
<i data-feather="chevron-right" class="w-5 h-5"></i>
</button>
</div>
</div>
<div class="bg-purple-700/50 rounded-xl p-4">
<div class="flex items-center mb-2">
<i data-feather="clock" class="mr-2"></i>
<span class="font-medium">Sleep Windows</span>
</div>
<div class="grid grid-cols-3 gap-2 text-center">
<div class="bg-purple-900/50 rounded-lg py-2 px-1">
<div class="text-xs">10:30 PM</div>
<div class="text-xs opacity-70">5 cycles</div>
</div>
<div class="bg-purple-600 rounded-lg py-2 px-1">
<div class="text-xs">12:00 AM</div>
<div class="text-xs opacity-70">4.5 cycles</div>
</div>
<div class="bg-purple-900/50 rounded-lg py-2 px-1">
<div class="text-xs">1:30 AM</div>
<div class="text-xs opacity-70">4 cycles</div>
</div>
</div>
</div>
</div>
<div class="absolute -z-10 top-4 left-4 w-full h-full rounded-3xl border-2 border-white/20"></div>
</div>
</div>
</section>
<!-- Features Grid -->
<section class="mb-20">
<h2 class="text-3xl font-bold mb-12 text-center">Your All-In-One <span class="text-purple-300">Life Orchestrator</span></h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Feature 1 -->
<a href="scheduling.html" class="circa-card rounded-2xl p-6 hover:bg-white/10 transition">
<div class="w-12 h-12 rounded-lg bg-purple-600 flex items-center justify-center mb-4">
<i data-feather="clock" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Smart Scheduling</h3>
<p class="opacity-80">AI-powered calendar that understands your rhythms and optimizes your time.</p>
</a>
<!-- Feature 2 -->
<a href="tasks.html" class="circa-card rounded-2xl p-6 hover:bg-white/10 transition">
<div class="w-12 h-12 rounded-lg bg-pink-600 flex items-center justify-center mb-4">
<i data-feather="check-circle" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Task Genius</h3>
<p class="opacity-80">Never forget a task with our predictive reminder system and behavior analysis.</p>
</a>
<!-- Feature 3 -->
<a href="research.html" class="circa-card rounded-2xl p-6 hover:bg-white/10 transition">
<div class="w-12 h-12 rounded-lg bg-blue-600 flex items-center justify-center mb-4">
<i data-feather="bookmark" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Research Hub</h3>
<p class="opacity-80">Organize bookmarks, notes, and files with intelligent tagging and search.</p>
</a>
<!-- Feature 4 -->
<a href="media.html" class="circa-card rounded-2xl p-6 hover:bg-white/10 transition">
<div class="w-12 h-12 rounded-lg bg-green-600 flex items-center justify-center mb-4">
<i data-feather="music" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Media Maestro</h3>
<p class="opacity-80">Create playlists for focus, relaxation, or sleep with our biorhythm-aware suggestions.</p>
</a>
<!-- Feature 5 -->
<a href="assistant.html" class="circa-card rounded-2xl p-6 hover:bg-white/10 transition">
<div class="w-12 h-12 rounded-lg bg-yellow-600 flex items-center justify-center mb-4">
<i data-feather="zap" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-3">AI Assistant</h3>
<p class="opacity-80">Get personalized advice for productivity, health, shopping and problem solving.</p>
</a>
<!-- Feature 6 -->
<a href="patterns.html" class="circa-card rounded-2xl p-6 hover:bg-white/10 transition">
<div class="w-12 h-12 rounded-lg bg-red-600 flex items-center justify-center mb-4">
<i data-feather="activity" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Pattern Finder</h3>
<p class="opacity-80">Discover behavior patterns and get insights to optimize your daily routines.</p>
</a>
</div>
</section>
<!-- Wake Up Experience -->
<section class="mb-20">
<div class="circa-card rounded-3xl p-8 md:p-12 overflow-hidden">
<div class="grid md:grid-cols-2 gap-12 items-center">
<div>
<h2 class="text-3xl font-bold mb-6">Gentle <span class="text-purple-300">Wake-Up Experience</span></h2>
<p class="text-lg mb-6 opacity-90">Our circadian-aware alarm gradually increases in volume and light to wake you at the optimal point in your sleep cycle.</p>
<ul class="space-y-3 mb-8">
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-400 mr-2 mt-1"></i>
<span>Wake at the lightest sleep phase</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-400 mr-2 mt-1"></i>
<span>Customizable sunrise simulation</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-400 mr-2 mt-1"></i>
<span>Personalized morning playlist</span>
</li>
</ul>
<button class="bg-purple-600 px-6 py-3 rounded-full font-semibold hover:bg-purple-700 transition glow-hover">
Try Smart Alarm
</button>
</div>
<div class="relative">
<div class="bg-purple-900/50 rounded-2xl p-6">
<div class="flex items-center justify-between mb-6">
<h3 class="font-medium">Morning Routine</h3>
<div class="flex items-center text-xs">
<i data-feather="sun" class="w-4 h-4 mr-1"></i>
<span>Sunrise Mode</span>
</div>
</div>
<div class="space-y-4 mb-6">
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-purple-600 flex items-center justify-center mr-3">
<i data-feather="sunrise" class="w-5 h-5"></i>
</div>
<div>
<div class="font-medium">Light Therapy</div>
<div class="text-xs opacity-70">Gradual brightening</div>
</div>
</div>
<div class="text-sm">6:15 AM</div>
</div>
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-blue-600 flex items-center justify-center mr-3">
<i data-feather="music" class="w-5 h-5"></i>
</div>
<div>
<div class="font-medium">Morning Playlist</div>
<div class="text-xs opacity-70">Chill Vibes</div>
</div>
</div>
<div class="text-sm">6:30 AM</div>
</div>
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-green-600 flex items-center justify-center mr-3">
<i data-feather="coffee" class="w-5 h-5"></i>
</div>
<div>
<div class="font-medium">Hydration Reminder</div>
<div class="text-xs opacity-70">Water first!</div>
</div>
</div>
<div class="text-sm">6:45 AM</div>
</div>
</div>
<div class="flex justify-between items-center">
<div class="text-sm opacity-70">Tomorrow's forecast: Sunny</div>
<button class="bg-white text-purple-800 px-4 py-2 rounded-lg text-sm font-medium">
Customize
</button>
</div>
</div>
<div class="absolute -z-10 top-4 left-4 w-full h-full rounded-2xl border-2 border-white/20"></div>
</div>
</div>
</div>
</section>
<!-- CTA -->
<section class="text-center mb-20">
<h2 class="text-3xl font-bold mb-6">Ready to <span class="text-purple-300">Transform Your Rhythm</span>?</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto opacity-90">Join thousands who've optimized their sleep, supercharged their productivity, and taken control of their daily flow.</p>
<button class="bg-white text-purple-800 px-8 py-4 rounded-full font-bold hover:bg-purple-100 transition text-lg glow-hover">
Get Started - It's Free
</button>
</section>
<!-- Footer -->
<footer class="border-t border-white/20 pt-8 pb-12">
<div class="grid md:grid-cols-4 gap-8 mb-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<i data-feather="moon" class="w-6 h-6"></i>
<h3 class="text-xl font-bold">CircaSnooze</h3>
</div>
<p class="opacity-80">Your circadian rhythm optimization platform.</p>
</div>
<div>
<h4 class="font-semibold mb-4">Product</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-purple-200 transition">Features</a></li>
<li><a href="#" class="hover:text-purple-200 transition">Pricing</a></li>
<li><a href="#" class="hover:text-purple-200 transition">Apps</a></li>
<li><a href="#" class="hover:text-purple-200 transition">Integrations</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-purple-200 transition">Blog</a></li>
<li><a href="#" class="hover:text-purple-200 transition">Guides</a></li>
<li><a href="#" class="hover:text-purple-200 transition">Support</a></li>
<li><a href="#" class="hover:text-purple-200 transition">API</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-purple-200 transition">About</a></li>
<li><a href="#" class="hover:text-purple-200 transition">Careers</a></li>
<li><a href="#" class="hover:text-purple-200 transition">Privacy</a></li>
<li><a href="#" class="hover:text-purple-200 transition">Terms</a></li>
</ul>
</div>
</div>
<div class="flex flex-col md:flex-row justify-between items-center pt-6 border-t border-white/10">
<p class="mb-4 md:mb-0 opacity-70">© 2023 CircaSnooze. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#"><i data-feather="twitter" class="w-5 h-5 hover:text-purple-200 transition"></i></a>
<a href="#"><i data-feather="instagram" class="w-5 h-5 hover:text-purple-200 transition"></i></a>
<a href="#"><i data-feather="facebook" class="w-5 h-5 hover:text-purple-200 transition"></i></a>
<a href="#"><i data-feather="github" class="w-5 h-5 hover:text-purple-200 transition"></i></a>
</div>
</div>
</footer>
</div>
<script>
// Google Sign-In Handler
function handleGoogleSignIn() {
// In production, use Google OAuth API
console.log("Google sign-in initiated");
// Mock implementation for demo
alert("Google sign-in would be implemented here");
}
// Initialize Vanta.js background
VANTA.WAVES({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x2b5876,
shininess: 35.00,
waveHeight: 15.00,
waveSpeed: 0.85,
zoom: 0.85
});
// Initialize feather icons
feather.replace();
// Simple animation for features on scroll
document.addEventListener('DOMContentLoaded', function() {
anime({
targets: '.circa-card',
translateY: [20, 0],
opacity: [0, 1],
delay: anime.stagger(100),
easing: 'easeOutExpo'
});
});
</script>
</body>
</html>
|