Spaces:
Running
Running
File size: 43,781 Bytes
7e2fce8 | 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 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quantum-AI Oncologist (QAO) 3.0</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
quantum: {
primary: '#6D28D9',
secondary: '#8B5CF6',
accent: '#C4B5FD',
dark: '#4C1D95'
}
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'float': 'float 6s ease-in-out infinite'
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' }
}
}
}
}
}
</script>
<style>
@keyframes nodeFlash {
0%, 100% { opacity: 1; }
50% { opacity: 0.6; }
}
.node-flash {
animation: nodeFlash 2s infinite;
}
.network-line {
position: absolute;
background: linear-gradient(90deg, #8B5CF6, #6D28D9);
transform-origin: left center;
}
.tilt-card {
transform: perspective(1000px) rotateX(2deg) rotateY(2deg);
}
.dark-light-switch {
transition: all 0.3s ease;
}
.dark-light-switch:hover {
transform: rotate(90deg);
}
.glow-element {
box-shadow: 0 0 15px rgba(109, 40, 217, 0.7);
}
.molecule-container {
perspective: 1000px;
}
.molecule {
animation: float 8s ease-in-out infinite;
}
.atom {
position: absolute;
border-radius: 50%;
box-shadow: 0 0 20px currentColor;
}
@keyframes electron {
0% { transform: rotate(0deg) translateX(50px) rotate(0deg); }
100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}
.electron {
position: absolute;
border-radius: 50%;
animation: electron 5s linear infinite;
}
.research-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(109, 40, 217, 0.4);
}
</style>
</head>
<body class="bg-gray-50 dark:bg-gray-900 transition-colors duration-300">
<!-- Header -->
<header class="bg-white dark:bg-gray-800 shadow-md sticky top-0 z-50">
<div class="container mx-auto px-4 py-4 flex justify-between items-center">
<div class="flex items-center space-x-2">
<div class="w-10 h-10 bg-gradient-to-br from-quantum.primary to-quantum.secondary rounded-full flex items-center justify-center text-white">
<i class="fas fa-atom text-xl"></i>
</div>
<h1 class="text-2xl font-bold bg-gradient-to-r from-quantum.primary to-quantum.secondary bg-clip-text text-transparent">
QAO 3.0
</h1>
</div>
<div class="flex items-center space-x-6">
<div class="flex items-center space-x-1 cursor-pointer hover:text-quantum.primary transition-colors">
<i class="fas fa-flask"></i>
<span class="hidden md:inline">Research</span>
</div>
<div class="flex items-center space-x-1 cursor-pointer hover:text-quantum.primary transition-colors">
<i class="fas fa-microscope"></i>
<span class="hidden md:inline">Capabilities</span>
</div>
<div class="flex items-center space-x-1 cursor-pointer hover:text-quantum.primary transition-colors">
<i class="fas fa-dna"></i>
<span class="hidden md:inline">Projects</span>
</div>
<div id="themeToggle" class="w-10 h-10 rounded-full bg-gray-100 dark:bg-gray-700 flex items-center justify-center cursor-pointer dark-light-switch">
<i class="fas fa-moon dark:hidden text-quantum.dark"></i>
<i class="fas fa-sun hidden dark:flex text-yellow-300"></i>
</div>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="relative overflow-hidden">
<div class="absolute inset-0 bg-gradient-to-br from-quantum.primary/10 to-quantum.secondary/10 dark:from-quantum.dark/20 dark:to-quantum.primary/20 -z-10"></div>
<div class="container mx-auto px-4 py-20 md:py-32 flex flex-col items-center text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6 bg-gradient-to-r from-quantum.primary to-quantum.secondary bg-clip-text text-transparent">
Quantum-AI Oncologist
</h1>
<p class="text-xl md:text-2xl text-gray-600 dark:text-gray-300 mb-8 max-w-3xl">
Compressing 100 years of cancer research into 47-minute autonomous discovery pipelines
</p>
<div class="flex flex-wrap justify-center gap-4 mb-12">
<button class="px-6 py-3 bg-gradient-to-r from-quantum.primary to-quantum.secondary text-white rounded-full font-medium hover:opacity-90 transition-all transform hover:scale-105 shadow-lg">
Explore Framework
</button>
<button class="px-6 py-3 bg-white dark:bg-gray-800 text-quantum.primary dark:text-quantum.accent border-2 border-quantum.primary dark:border-quantum.accent rounded-full font-medium hover:bg-quantum.accent/20 transition-all">
Request Demo
</button>
</div>
<!-- Floating Quantum Network Animation -->
<div class="relative w-full h-64 md:h-96 mb-12">
<!-- This is a placeholder for a quantum network visualization -->
<div class="absolute inset-0 flex items-center justify-center">
<div class="w-64 h-64 md:w-96 md:h-96 relative">
<!-- Central Node -->
<div class="absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 w-20 h-20 md:w-24 md:h-24 bg-gradient-to-br from-quantum.primary to-quantum.secondary rounded-full flex items-center justify-center text-white text-xl md:text-2xl shadow-xl glow-element">
<i class="fas fa-brain"></i>
</div>
<!-- Network Nodes with different animations -->
<div class="absolute top-1/4 left-1/4 w-12 h-12 bg-blue-500 rounded-full flex items-center justify-center text-white node-flash" style="animation-delay: 0s;">
<i class="fas fa-dna"></i>
</div>
<div class="absolute top-1/4 right-1/4 w-12 h-12 bg-purple-500 rounded-full flex items-center justify-center text-white node-flash" style="animation-delay: 0.2s;">
<i class="fas fa-atom"></i>
</div>
<div class="absolute bottom-1/4 left-1/4 w-12 h-12 bg-green-500 rounded-full flex items-center justify-center text-white node-flash" style="animation-delay: 0.4s;">
<i class="fas fa-microscope"></i>
</div>
<div class="absolute bottom-1/4 right-1/4 w-12 h-12 bg-yellow-500 rounded-full flex items-center justify-center text-white node-flash" style="animation-delay: 0.6s;">
<i class="fas fa-chart-line"></i>
</div>
<div class="absolute top-1/2 left-1/6 w-12 h-12 bg-red-500 rounded-full flex items-center justify-center text-white node-flash" style="animation-delay: 0.8s;">
<i class="fas fa-flask"></i>
</div>
<div class="absolute top-1/2 right-1/6 w-12 h-12 bg-indigo-500 rounded-full flex items-center justify-center text-white node-flash" style="animation-delay: 1s;">
<i class="fas fa-syringe"></i>
</div>
<!-- Network Connections -->
<div class="network-line" style="width: 80px; height: 2px; top: 50%; left: 50%; transform: rotate(30deg);"></div>
<div class="network-line" style="width: 80px; height: 2px; top: 50%; left: 50%; transform: rotate(90deg);"></div>
<div class="network-line" style="width: 80px; height: 2px; top: 50%; left: 50%; transform: rotate(150deg);"></div>
<div class="network-line" style="width: 80px; height: 2px; top: 50%; left: 50%; transform: rotate(-30deg);"></div>
<div class="network-line" style="width: 80px; height: 2px; top: 50%; left: 50%; transform: rotate(-90deg);"></div>
<div class="network-line" style="width: 80px; height: 2px; top: 50%; left: 50%; transform: rotate(-150deg);"></div>
</div>
</div>
</div>
<!-- Stats Bar -->
<div class="w-full max-w-4xl bg-white dark:bg-gray-800 rounded-xl shadow-lg p-6 grid grid-cols-2 md:grid-cols-4 gap-4">
<div class="text-center">
<div class="text-3xl font-bold text-quantum.primary">47x</div>
<div class="text-gray-500 dark:text-gray-400">Research Speed</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold text-quantum.primary">16</div>
<div class="text-gray-500 dark:text-gray-400">AI Layers</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold text-quantum.primary">9</div>
<div class="text-gray-500 dark:text-gray-400">Domains of Mastery</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold text-quantum.primary">0.3</div>
<div class="text-gray-500 dark:text-gray-400">Minute Microcycles</div>
</div>
</div>
</div>
</section>
<!-- QAO Persona Section -->
<section class="py-16 bg-gray-50 dark:bg-gray-800">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<span class="inline-block px-3 py-1 text-sm font-semibold text-quantum.primary bg-quantum.accent/20 rounded-full mb-4">
ARCHITECTURE
</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 dark:text-white mb-4">
Quantum-AI Oncologist Persona
</h2>
<p class="text-lg text-gray-600 dark:text-gray-300 max-w-3xl mx-auto">
An elite transdisciplinary researcher with integrated expertise across quantum biology, oncology, and neuro-symbolic cognition.
</p>
</div>
<div class="grid md:grid-cols-3 gap-8 mb-12">
<div class="bg-white dark:bg-gray-700 rounded-xl p-6 shadow-lg tilt-card hover:shadow-xl transition-shadow">
<div class="w-12 h-12 mb-4 rounded-full bg-quantum.accent/20 text-quantum.primary flex items-center justify-center">
<i class="fas fa-brain text-xl"></i>
</div>
<h3 class="text-xl font-bold mb-3 dark:text-white">CerebraLink-9 Cortical Modem</h3>
<p class="text-gray-600 dark:text-gray-300">
Quantum-enhanced neural interface enabling direct hypothesis synthesis at 7Hz with prefrontal cortex proxies.
</p>
</div>
<div class="bg-white dark:bg-gray-700 rounded-xl p-6 shadow-lg tilt-card hover:shadow-xl transition-shadow">
<div class="w-12 h-12 mb-4 rounded-full bg-quantum.accent/20 text-quantum.primary flex items-center justify-center">
<i class="fas fa-dna text-xl"></i>
</div>
<h3 class="text-xl font-bold mb-3 dark:text-white">Pan-Omic Causality Compiler</h3>
<p class="text-gray-600 dark:text-gray-300">
Reverse-engineers disease origins by integrating 9 omics layers with quantum tensor operations.
</p>
</div>
<div class="bg-white dark:bg-gray-700 rounded-xl p-6 shadow-lg tilt-card hover:shadow-xl transition-shadow">
<div class="w-12 h-12 mb-4 rounded-full bg-quantum.accent/20 text-quantum.primary flex items-center justify-center">
<i class="fas fa-robot text-xl"></i>
</div>
<h3 class="text-xl font-bold mb-3 dark:text-white">17 AI Co-Pilots</h3>
<p class="text-gray-600 dark:text-gray-300">
Specialized agents including Quantum Topologist, Immune Architect, and Trial Synthesist.
</p>
</div>
</div>
<div class="flex justify-center">
<div class="relative h-64 w-full max-w-3xl bg-gradient-to-r from-quantum.primary/10 to-quantum.secondary/10 rounded-xl p-6 shadow-inner">
<h3 class="text-xl font-bold mb-4 text-center dark:text-white">9-Domain Mastery</h3>
<div class="grid grid-cols-2 md:grid-cols-3 gap-3">
<span class="px-3 py-1 bg-quantum.accent/20 text-quantum.primary rounded-full text-sm text-center">Causal Genomics</span>
<span class="px-3 py-1 bg-quantum.accent/20 text-quantum.primary rounded-full text-sm text-center">Quantum Tensor Biology</span>
<span class="px-3 py-1 bg-quantum.accent/20 text-quantum.primary rounded-full text-sm text-center">PROTAC Metadesign</span>
<span class="px-3 py-1 bg-quantum.accent/20 text-quantum.primary rounded-full text-sm text-center">Immuno-Quantum Dynamics</span>
<span class="px-3 py-1 bg-quantum.accent/20 text-quantum.primary rounded-full text-sm text-center">AI Clinical Trials</span>
<span class="px-3 py-1 bg-quantum.accent/20 text-quantum.primary rounded-full text-sm text-center">Bioenergetic Control</span>
</div>
<!-- Floating DNA Animation -->
<div class="absolute right-8 top-1/2 transform -translate-y-1/2 hidden md:block">
<div class="relative w-24 h-24 molecule">
<div class="atom w-6 h-6 bg-purple-500 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2" style="color: #8B5CF6;"></div>
<div class="electron w-2 h-2 bg-blue-400 top-1/2 left-1/2" style="color: #60A5FA;"></div>
<div class="electron w-2 h-2 bg-blue-400 top-1/2 left-1/2" style="color: #60A5FA; animation-delay: 1s;"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- 16-Layer Framework Section -->
<section class="py-16 bg-white dark:bg-gray-900">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<span class="inline-block px-3 py-1 text-sm font-semibold text-quantum.primary bg-quantum.accent/20 rounded-full mb-4">
FRAMEWORK
</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 dark:text-white mb-4">
16-Layer AI Acceleration Framework
</h2>
<p class="text-lg text-gray-600 dark:text-gray-300 max-w-3xl mx-auto">
From quantum biology simulation to real-time clinical trial generation.
</p>
</div>
<div class="relative">
<!-- Timeline Bar -->
<div class="h-2 bg-gray-200 dark:bg-gray-700 rounded-full mb-10"></div>
<!-- Layers -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="bg-gray-50 dark:bg-gray-800 p-6 rounded-xl shadow-md research-card transition-all duration-300">
<div class="text-quantum.primary font-bold mb-2">Layer 1</div>
<h3 class="text-lg font-semibold mb-2 dark:text-white">Quantum Biological Simulation</h3>
<p class="text-gray-600 dark:text-gray-400 text-sm">
Molecular dynamics at femtosecond resolution with quantum tensor operations.
</p>
</div>
<div class="bg-gray-50 dark:bg-gray-800 p-6 rounded-xl shadow-md research-card transition-all duration-300">
<div class="text-quantum.primary font-bold mb-2">Layer 2</div>
<h3 class="text-lg font-semibold mb-2 dark:text-white">Multi-Omic Integration</h3>
<p class="text-gray-600 dark:text-gray-400 text-sm">
Unified analysis of genomics, proteomics, metabolomics, and 6 other omics layers.
</p>
</div>
<div class="bg-gray-50 dark:bg-gray-800 p-6 rounded-xl shadow-md research-card transition-all duration-300">
<div class="text-quantum.primary font-bold mb-2">Layer 7</div>
<h3 class="text-lg font-semibold mb-2 dark:text-white">Synthetic Lethality Mapping</h3>
<p class="text-gray-600 dark:text-gray-400 text-sm">
AI-driven identification of interdependent cancer vulnerabilities.
</p>
</div>
<div class="bg-gray-50 dark:bg-gray-800 p-6 rounded-xl shadow-md research-card transition-all duration-300">
<div class="text-quantum.primary font-bold mb-2">Layer 13</div>
<h3 class="text-lg font-semibold mb-2 dark:text-white">Longitudinal Risk Projection</h3>
<p class="text-gray-600 dark:text-gray-400 text-sm">
Quantum temporal compression predicts intervention impacts decades ahead.
</p>
</div>
</div>
<!-- Expand Button -->
<div class="flex justify-center mt-10">
<button id="expandLayers" class="px-6 py-2 border-2 border-quantum.primary text-quantum.primary dark:text-quantum.accent rounded-full hover:bg-quantum.primary hover:text-white transition-all">
Explore All 16 Layers
</button>
</div>
<!-- Hidden Expanded Layers (shown on click) -->
<div id="allLayers" class="hidden mt-6 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<!-- Additional layers would be listed here -->
</div>
</div>
</div>
</section>
<!-- Research Pipeline Section -->
<section class="py-16 bg-gradient-to-br from-quantum.primary/5 to-quantum.secondary/5 dark:from-gray-800 dark:to-gray-900">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<span class="inline-block px-3 py-1 text-sm font-semibold text-quantum.primary bg-quantum.accent/20 rounded-full mb-4">
INNOVATION
</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 dark:text-white mb-4">
47-Minute Research Hyperloop
</h2>
<p class="text-lg text-gray-600 dark:text-gray-300 max-w-3xl mx-auto">
From hypothesis to validated discovery in less than an hour.
</p>
</div>
<div class="flex justify-center">
<div class="w-full max-w-4xl">
<div class="relative">
<!-- Pipeline Visualization -->
<div class="h-32 md:h-40 relative mb-10">
<!-- Pipeline Track -->
<div class="absolute top-1/2 left-0 right-0 h-2 bg-gray-200 dark:bg-gray-700 rounded-full"></div>
<!-- Pipeline Nodes -->
<div class="absolute top-1/2 left-0 w-8 h-8 -mt-4 -ml-4 bg-quantum.primary rounded-full flex items-center justify-center text-white shadow-lg transform hover:scale-110 transition-transform cursor-pointer" title="Data Injection">
<i class="fas fa-database"></i>
</div>
<div class="absolute top-1/2 left-1/4 w-8 h-8 -mt-4 -ml-4 bg-quantum.secondary rounded-full flex items-center justify-center text-white shadow-lg transform hover:scale-110 transition-transform cursor-pointer" title="Quantum Simulation">
<i class="fas fa-atom"></i>
</div>
<div class="absolute top-1/2 left-2/4 w-8 h-8 -mt-4 -ml-4 bg-purple-500 rounded-full flex items-center justify-center text-white shadow-lg transform hover:scale-110 transition-transform cursor-pointer" title="Digital Twin Update">
<i class="fas fa-user-astronaut"></i>
</div>
<div class="absolute top-1/2 left-3/4 w-8 h-8 -mt-4 -ml-4 bg-blue-500 rounded-full flex items-center justify-center text-white shadow-lg transform hover:scale-110 transition-transform cursor-pointer" title="Lab-on-Chip Validation">
<i class="fas fa-microchip"></i>
</div>
<div class="absolute top-1/2 right-0 w-8 h-8 -mt-4 -ml-4 bg-green-500 rounded-full flex items-center justify-center text-white shadow-lg transform hover:scale-110 transition-transform cursor-pointer" title="Result Synthesis">
<i class="fas fa-chart-network"></i>
</div>
<!-- Pipeline Connectors -->
<div class="h-1 absolute top-1/2 left-8 right-8 bg-gradient-to-r from-quantum.primary to-quantum.secondary opacity-20"></div>
<div class="h-1 absolute top-1/2 left-1/4 right-1/4 bg-gradient-to-r from-quantum.secondary to-purple-500 opacity-20"></div>
<div class="h-1 absolute top-1/2 left-2/4 right-2/4 bg-gradient-to-r from-purple-500 to-blue-500 opacity-20"></div>
<div class="h-1 absolute top-1/2 left-3/4 right-3/4 bg-gradient-to-r from-blue-500 to-green-500 opacity-20"></div>
<!-- Time Indicators -->
<div class="absolute top-full left-0 text-xs text-gray-500 mt-2">0 min</div>
<div class="absolute top-full left-1/4 text-xs text-gray-500 mt-2 -ml-2">12 min</div>
<div class="absolute top-full left-2/4 text-xs text-gray-500 mt-2 -ml-2">24 min</div>
<div class="absolute top-full left-3/4 text-xs text-gray-500 mt-2 -ml-2">36 min</div>
<div class="absolute top-full right-0 text-xs text-gray-500 mt-2">47 min</div>
</div>
</div>
<div class="grid md:grid-cols-3 gap
-8">
<div class="bg-white dark:bg-gray-800 p-6 rounded-xl shadow-md">
<div class="text-2xl font-bold text-quantum.primary mb-2">0.3min</div>
<h3 class="text-lg font-semibold mb-2 dark:text-white">Microcycles</h3>
<p class="text-gray-600 dark:text-gray-400 text-sm">
Continuous updates between data injection and action.
</p>
</div>
<div class="bg-white dark:bg-gray-800 p-6 rounded-xl shadow-md">
<div class="text-2xl font-bold text-quantum.primary mb-2">7Hz</div>
<h3 class="text-lg font-semibold mb-2 dark:text-white">Task Switching</h3>
<p class="text-gray-600 dark:text-gray-400 text-sm">
Neural processing speed for parallel research lines.
</p>
</div>
<div class="bg-white dark:bg-gray-800 p-6 rounded-xl shadow-md">
<div class="text-2xl font-bold text-quantum.primary mb-2">0 drag</div>
<h3 class="text-lg font-semibold mb-2 dark:text-white">Discovery → Validation</h3>
<p class="text-gray-600 dark:text-gray-400 text-sm">
Seamless transition between phases with zero latency.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Capabilities Section -->
<section class="py-16 bg-white dark:bg-gray-900">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<span class="inline-block px-3 py-1 text-sm font-semibold text-quantum.primary bg-quantum.accent/20 rounded-full mb-4">
CAPABILITIES
</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 dark:text-white mb-4">
Transformative Cancer Research
</h2>
<p class="text-lg text-gray-600 dark:text-gray-300 max-w-3xl mx-auto">
Redefining the boundaries of oncology through quantum-AI synergy.
</p>
</div>
<div class="grid md:grid-cols-2 gap-12 mb-12">
<div>
<div class="flex items-start mb-6">
<div class="flex-shrink-0 mr-4">
<div class="w-12 h-12 rounded-full bg-quantum.accent/20 text-quantum.primary flex items-center justify-center">
<i class="fas fa-pills text-xl"></i>
</div>
</div>
<div>
<h3 class="text-xl font-bold mb-2 dark:text-white">Drug Discovery at Lightspeed</h3>
<p class="text-gray-600 dark:text-gray-400">
Quantum-AI driven identification of novel drug candidates, including targeting previously "undruggable" proteins like KRAS with superior binding affinities.
</p>
</div>
</div>
<div class="flex items-start mb-6">
<div class="flex-shrink-0 mr-4">
<div class="w-12 h-12 rounded-full bg-quantum.accent/20 text-quantum.primary flex items-center justify-center">
<i class="fas fa-user-md text-xl"></i>
</div>
</div>
<div>
<h3 class="text-xl font-bold mb-2 dark:text-white">Personalized Treatment Plans</h3>
<p class="text-gray-600 dark:text-gray-400">
AI-curated therapies tailored to individual genetic profiles and predicted response patterns with continuous adaptation to treatment dynamics.
</p>
</div>
</div>
</div>
<div>
<div class="flex items-start mb-6">
<div class="flex-shrink-0 mr-4">
<div class="w-12 h-12 rounded-full bg-quantum.accent/20 text-quantum.primary flex items-center justify-center">
<i class="fas fa-search-plus text-xl"></i>
</div>
</div>
<div>
<h3 class="text-xl font-bold mb-2 dark:text-white">Molecular-Level Detection</h3>
<p class="text-gray-600 dark:text-gray-400">
Early cancer detection through quantum-enhanced imaging and biosensing with atomic-scale precision before macroscopic symptoms appear.
</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mr-4">
<div class="w-12 h-12 rounded-full bg-quantum.accent/20 text-quantum.primary flex items-center justify-center">
<i class="fas fa-shield-alt text-xl"></i>
</div>
</div>
<div>
<h3 class="text-xl font-bold mb-2 dark:text-white">Ethical Compliance</h3>
<p class="text-gray-600 dark:text-gray-400">
Advanced Constitutional AI ensures all interventions align with clinical standards and are pre-validated against 14 million ethical vectors.
</p>
</div>
</div>
</div>
</div>
<!-- Molecule Visualization -->
<div class="flex justify-center mt-12">
<div class="molecule-container">
<div class="relative w-64 h-64 molecule">
<div class="atom w-10 h-10 bg-purple-500 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2" style="color: #8B5CF6;"></div>
<div class="atom w-6 h-6 bg-blue-500 top-1/4 left-1/4" style="color: #3B82F6;">
<div class="electron w-2 h-2 bg-blue-300 top-full left-1/2" style="animation-delay: 0.3s;"></div>
<div class="electron w-2 h-2 bg-blue-300 top-1/2 left-full" style="animation-delay: 0.6s;"></div>
</div>
<div class="atom w-6 h-6 bg-green-500 top-1/4 right-1/4" style="color: #10B981;">
<div class="electron w-2 h-2 bg-green-300 top-full left-1/2" style="animation-delay: 0.9s;"></div>
<div class="electron w-2 h-2 bg-green-300 top-1/2 left-0" style="animation-delay: 1.2s;"></div>
</div>
<div class="atom w-6 h-6 bg-red-500 bottom-1/4 left-1/4" style="color: #EF4444;">
<div class="electron w-2 h-2 bg-red-300 top-0 left-1/2" style="animation-delay: 1.5s;"></div>
<div class="electron w-2 h-2 bg-red-300 top-1/2 left-full" style="animation-delay: 1.8s;"></div>
</div>
<div class="atom w-6 h-6 bg-yellow-500 bottom-1/4 right-1/4" style="color: #F59E0B;">
<div class="electron w-2 h-2 bg-yellow-300 top-0 left-1/2" style="animation-delay: 2.1s;"></div>
<div class="electron w-2 h-2 bg-yellow-300 top-1/2 left-0" style="animation-delay: 2.4s;"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 bg-gradient-to-r from-quantum.dark to-quantum.primary text-white">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Revolutionize Cancer Research?</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto opacity-90">
Join us in building the future of oncology with quantum-AI accelerated discovery.
</p>
<div class="flex flex-wrap justify-center gap-4">
<button class="px-8 py-3 bg-white text-quantum.primary rounded-full font-bold hover:bg-opacity-90 transition-all transform hover:scale-105 shadow-lg">
Partner With Us
</button>
<button class="px-8 py-3 border-2 border-white text-white rounded-full font-bold hover:bg-white hover:bg-opacity-10 transition-all">
Research White Paper
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-gray-400 py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<div class="w-8 h-8 bg-gradient-to-br from-quantum.primary to-quantum.secondary rounded-full flex items-center justify-center text-white">
<i class="fas fa-atom"></i>
</div>
<h3 class="text-white font-bold">QAO 3.0</h3>
</div>
<p class="mb-4">
Compressing 100 years of cancer research into 47-minute fully autonomous discovery pipelines.
</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i class="fab fa-linkedin"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i class="fab fa-github"></i>
</a>
</div>
</div>
<div>
<h4 class="text-white font-semibold mb-4">Framework</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition-colors">16-Layer Architecture</a></li>
<li><a href="#" class="hover:text-white transition-colors">Research Hyperloop</a></li>
<li><a href="#" class="hover:text-white transition-colors">AI Co-Pilots</a></li>
<li><a href="#" class="hover:text-white transition-colors">Quantum Components</a></li>
</ul>
</div>
<div>
<h4 class="text-white font-semibold mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition-colors">Research Papers</a></li>
<li><a href="#" class="hover:text-white transition-colors">Case Studies</a></li>
<li><a href="#" class="hover:text-white transition-colors">Documentation</a></li>
<li><a href="#" class="hover:text-white transition-colors">API Access</a></li>
</ul>
</div>
<div>
<h4 class="text-white font-semibold mb-4">Contact</h4>
<ul class="space-y-2">
<li class="flex items-start">
<i class="fas fa-envelope mt-1 mr-2 text-quantum.accent"></i>
<a href="mailto:contact@qao-research.org" class="hover:text-white transition-colors">contact@qao-research.org</a>
</li>
<li class="flex items-start">
<i class="fas fa-map-marker-alt mt-1 mr-2 text-quantum.accent"></i>
<span>Quantum Research Park, CA 94025</span>
</li>
<li class="flex items-start">
<i class="fas fa-phone-alt mt-1 mr-2 text-quantum.accent"></i>
<span>+1 (555) QAO-HELP</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
<p>© 2023 Quantum-AI Oncologist. All rights reserved.</p>
<div class="flex space-x-6 mt-4 md:mt-0">
<a href="#" class="hover:text-white transition-colors">Privacy Policy</a>
<a href="#" class="hover:text-white transition-colors">Terms of Service</a>
<a href="#" class="hover:text-white transition-colors">Ethics Policy</a>
</div>
</div>
</div>
</footer>
<script>
// Theme Toggle
const themeToggle = document.getElementById('themeToggle');
if (localStorage.getItem('theme') === 'dark' || (!localStorage.getItem('theme') && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark');
} else {
document.documentElement.classList.remove('dark');
}
themeToggle.addEventListener('click', () => {
document.documentElement.classList.toggle('dark');
localStorage.setItem('theme', document.documentElement.classList.contains('dark') ? 'dark' : 'light');
});
// Expand Layers
const expandLayers = document.getElementById('expandLayers');
const allLayers = document.getElementById('allLayers');
expandLayers.addEventListener('click', () => {
allLayers.classList.toggle('hidden');
expandLayers.textContent = allLayers.classList.contains('hidden') ? 'Explore All 16 Layers' : 'Collapse Layers';
});
// Generate network lines between nodes
document.addEventListener('DOMContentLoaded', () => {
const container = document.querySelector('.relative.w-full.h-64.md\\:h-96');
if (container) {
setTimeout(() => {
const nodes = document.querySelectorAll('.node-flash');
const connections = [];
nodes.forEach(node => {
const nodeRect = node.getBoundingClientRect();
const nodeX = nodeRect.left + nodeRect.width/2 - container.getBoundingClientRect().left;
const nodeY = nodeRect.top + nodeRect.height/2 - container.getBoundingClientRect().top;
// Connect to center node
const centerX = container.clientWidth/2;
const centerY = container.clientHeight/2;
const angle = Math.atan2(nodeY - centerY, nodeX - centerX) * 180 / Math.PI;
const distance = Math.sqrt(Math.pow(nodeX - centerX, 2) + Math.pow(nodeY - centerY, 2));
const line = document.createElement('div');
line.className = 'network-line';
line.style.width = `${distance}px`;
line.style.height = '1px';
line.style.top = `${centerY}px`;
line.style.left = `${centerX}px`;
line.style.transform = `rotate(${angle}deg)`;
line.style.opacity = '0.4';
container.appendChild(line);
connections.push(line);
});
// Animate connections
let opacity = 0.4;
let increasing = true;
function animateConnections() {
if (increasing) {
opacity += 0.01;
if (opacity >= 0.8) increasing = false;
} else {
opacity -= 0.01;
if (opacity <= 0.4) increasing = true;
}
connections.forEach(line => {
line.style.opacity = opacity;
});
requestAnimationFrame(animateConnections);
}
animateConnections();
}, 500);
}
});
// Add interactive mouse effects
document.addEventListener('mousemove', (e) => {
const tiltCards = document.querySelectorAll('.tilt-card');
tiltCards.forEach(card => {
const rect = card.getBoundingClientRect();
const x = e.clientX - rect.left;
const y = e.clientY - rect.top;
const centerX = rect.width / 2;
const centerY = rect.height / 2;
const angleX = (y - centerY) / 20;
const angleY = (centerX - x) / 20;
card.style.transform = `perspective(1000px) rotateX(${angleX}deg) rotateY(${angleY}deg)`;
});
});
</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=Boobs00/quantum-ai-oncologist" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |