File size: 60,962 Bytes
0caf422 |
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 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CORTEX - AI Evolution Platform</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 src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/ScrollTrigger.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');
:root {
--electron-blue: #4a6bff;
--nexora-purple: #9c4dff;
--cyber-yellow: #ffd700;
--cyber-pink: #ff6b9d;
--light-bg: #f8f9fa;
--neon-green: #4dffb5;
--grid-line: rgba(74, 107, 255, 0.1);
}
body {
font-family: 'Rajdhani', sans-serif;
background-color: var(--light-bg);
color: #333;
overflow-x: hidden;
background-image:
linear-gradient(var(--grid-line) 1px, transparent 1px),
linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
background-size: 20px 20px;
}
.orbitron {
font-family: 'Orbitron', sans-serif;
}
.gradient-text-electron {
background: linear-gradient(90deg, #4a6bff, #6d8cff);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.gradient-text-nexora {
background: linear-gradient(90deg, #9c4dff, #c47dff);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.glow-electron {
box-shadow: 0 0 15px rgba(74, 107, 255, 0.7);
}
.glow-nexora {
box-shadow: 0 0 15px rgba(156, 77, 255, 0.7);
}
.hover-glow-electron:hover {
box-shadow: 0 0 25px rgba(74, 107, 255, 0.9);
}
.hover-glow-nexora:hover {
box-shadow: 0 0 25px rgba(156, 77, 255, 0.9);
}
.cyber-border {
position: relative;
border: 1px solid transparent;
}
.cyber-border::before {
content: '';
position: absolute;
inset: 0;
border: 1px solid var(--electron-blue);
border-image: linear-gradient(45deg, var(--electron-blue), var(--nexora-purple)) 1;
mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
mask-composite: exclude;
pointer-events: none;
}
.cyber-glow {
box-shadow: 0 0 15px rgba(74, 107, 255, 0.5), 0 0 30px rgba(156, 77, 255, 0.3);
}
.neon-border-electron {
position: relative;
}
.neon-border-electron::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border: 2px solid var(--electron-blue);
border-radius: inherit;
z-index: -1;
animation: pulse-electron 2s infinite;
}
.neon-border-nexora {
position: relative;
}
.neon-border-nexora::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border: 2px solid var(--nexora-purple);
border-radius: inherit;
z-index: -1;
animation: pulse-nexora 2s infinite;
}
@keyframes pulse-electron {
0% { opacity: 0.3; }
50% { opacity: 1; }
100% { opacity: 0.3; }
}
@keyframes pulse-nexora {
0% { opacity: 0.3; }
50% { opacity: 1; }
100% { opacity: 0.3; }
}
.floating {
animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
.floating-delay-1 {
animation-delay: 0.5s;
}
.floating-delay-2 {
animation-delay: 1s;
}
.hexagon {
clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.grid-dots {
background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
background-size: 20px 20px;
}
.ai-card {
transition: all 0.3s ease;
transform-style: preserve-3d;
}
.ai-card:hover {
transform: translateY(-10px) rotateX(5deg);
}
.particle {
position: absolute;
border-radius: 50%;
pointer-events: none;
}
.scroll-indicator {
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
40% { transform: translateY(-20px); }
60% { transform: translateY(-10px); }
}
.terminal-line {
position: relative;
}
.terminal-line::before {
content: '>';
position: absolute;
left: -20px;
color: var(--electron-blue);
}
.nexora-terminal-line::before {
color: var(--nexora-purple);
}
.typewriter {
overflow: hidden;
border-right: 2px solid var(--electron-blue);
white-space: nowrap;
margin: 0 auto;
letter-spacing: 2px;
animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: var(--electron-blue) }
}
.nexora-typewriter {
border-right-color: var(--nexora-purple);
}
@keyframes nexora-blink-caret {
from, to { border-color: transparent }
50% { border-color: var(--nexora-purple) }
}
.nexora-typewriter {
animation: typing 3.5s steps(40, end), nexora-blink-caret 0.75s step-end infinite;
}
/* New animation styles */
.pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.spin {
animation: spin 3s linear infinite;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.wiggle {
animation: wiggle 1s ease-in-out infinite;
}
@keyframes wiggle {
0%, 100% { transform: rotate(-3deg); }
50% { transform: rotate(3deg); }
}
.zoom-in-out {
animation: zoom-in-out 2s ease-in-out infinite;
}
@keyframes zoom-in-out {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
.slide-in-left {
animation: slide-in-left 0.5s ease-out forwards;
}
@keyframes slide-in-left {
from { transform: translateX(-100px); opacity: 0; }
to { transform: translateX(0); opacity: 1; }
}
.slide-in-right {
animation: slide-in-right 0.5s ease-out forwards;
}
@keyframes slide-in-right {
from { transform: translateX(100px); opacity: 0; }
to { transform: translateX(0); opacity: 1; }
}
.slide-in-bottom {
animation: slide-in-bottom 0.5s ease-out forwards;
}
@keyframes slide-in-bottom {
from { transform: translateY(100px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
.neon-flicker {
animation: neon-flicker 1.5s infinite alternate;
}
@keyframes neon-flicker {
0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
text-shadow:
0 0 4px #fff,
0 0 11px #fff,
0 0 19px #fff,
0 0 40px var(--electron-blue),
0 0 80px var(--electron-blue),
0 0 90px var(--electron-blue),
0 0 100px var(--electron-blue),
0 0 150px var(--electron-blue);
}
20%, 24%, 55% {
text-shadow: none;
}
}
.grid-lines {
background-image:
linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
background-size: 20px 20px;
}
</style>
</head>
<body class="circuit-bg">
<!-- Navigation -->
<nav class="fixed w-full z-50 bg-white bg-opacity-80 backdrop-blur-sm shadow-sm">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<a href="#" class="flex-shrink-0 flex items-center">
<span class="orbitron text-2xl font-bold gradient-text-electron">CORT<span class="gradient-text-nexora">EX</span></span>
</a>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#electron" class="text-gray-600 hover:text-blue-600 px-3 py-2 rounded-md text-sm font-medium transition-all duration-300 hover:glow-electron hover:bg-gray-100 group">
<span class="inline-block group-hover:animate-bounce">elecTron</span>
</a>
<a href="#nexora" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-all duration-300 hover:glow-nexora hover:bg-gray-900">neXora</a>
<a href="#features" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-all duration-300 hover:bg-gray-900">Features</a>
<a href="#pricing" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-all duration-300 hover:bg-gray-900">Pricing</a>
<button class="ml-4 neon-border-electron px-4 py-2 rounded-md text-sm font-medium text-white hover-glow-electron hover:bg-gray-900 transition-all duration-300">
Get Started
</button>
</div>
<div class="-mr-2 flex items-center md:hidden">
<button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-gray-900">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#electron" class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">elecTron</a>
<a href="#nexora" class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">neXora</a>
<a href="#features" class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Features</a>
<a href="#pricing" class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Pricing</a>
<button class="w-full neon-border-electron px-4 py-2 rounded-md text-base font-medium text-white mt-2">
Get Started
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="relative pt-24 pb-20 px-4 sm:px-6 lg:pt-32 lg:pb-28 lg:px-8 grid-lines">
<div class="absolute inset-0">
<div class="absolute inset-y-0 left-0 w-1/2 bg-gradient-to-r from-black to-transparent"></div>
<div class="absolute inset-y-0 right-0 w-1/2 bg-gradient-to-l from-black to-transparent"></div>
</div>
<div class="relative max-w-7xl mx-auto">
<div class="text-center">
<h1 class="text-4xl tracking-tight font-extrabold sm:text-5xl md:text-6xl">
<span class="block orbitron gradient-text-electron neon-flicker">elecTron</span>
<span class="block orbitron gradient-text-nexora neon-flicker" style="animation-delay: 0.5s">neXora</span>
</h1>
<p class="mt-3 max-w-md mx-auto text-base text-gray-300 sm:text-lg md:mt-5 md:text-xl md:max-w-3xl">
The next evolution in artificial intelligence. Two sides of the same powerful coin.
</p>
<div class="mt-5 max-w-md mx-auto sm:flex sm:justify-center md:mt-8">
<div class="rounded-md shadow">
<a href="#electron" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-black bg-gradient-to-r from-cyan-400 to-blue-500 hover:from-cyan-500 hover:to-blue-600 md:py-4 md:text-lg md:px-10 transition-all duration-300 hover:shadow-lg hover:shadow-cyan-500/50 pulse">
<span class="inline-block">Explore elecTron</span>
<i class="fas fa-arrow-right ml-2 transform transition-transform duration-300 group-hover:translate-x-1"></i>
</a>
</div>
<div class="mt-3 rounded-md shadow sm:mt-0 sm:ml-3">
<a href="#nexora" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-black bg-gradient-to-r from-purple-400 to-pink-500 hover:from-purple-500 hover:to-pink-600 md:py-4 md:text-lg md:px-10 transition-all duration-300 hover:shadow-lg hover:shadow-purple-500/50">
Discover neXora
</a>
</div>
</div>
</div>
</div>
<!-- Floating AI Elements -->
<div class="absolute top-1/4 left-1/4 w-8 h-8 rounded-full bg-cyan-500 opacity-30 floating spin" style="animation-duration: 20s"></div>
<div class="absolute top-1/3 right-1/4 w-12 h-12 rounded-full bg-purple-500 opacity-30 floating pulse" style="animation-duration: 3s"></div>
<div class="absolute bottom-1/4 left-1/3 w-10 h-10 rounded-full bg-pink-500 opacity-30 floating wiggle"></div>
<div class="absolute bottom-1/3 right-1/3 w-6 h-6 rounded-full bg-blue-500 opacity-30 floating"></div>
<!-- Animated grid lines -->
<div class="absolute inset-0 overflow-hidden pointer-events-none">
<div class="absolute inset-0 bg-grid-lines" style="background-size: 40px 40px; animation: grid-move 30s linear infinite;"></div>
</div>
<!-- Scroll Indicator -->
<div class="absolute bottom-10 left-1/2 transform -translate-x-1/2 text-center scroll-indicator">
<p class="text-sm text-gray-400 mb-2">Scroll to explore</p>
<i class="fas fa-chevron-down text-gray-400 animate-bounce"></i>
</div>
</div>
<!-- elecTron Section -->
<section id="electron" class="py-20 px-4 sm:px-6 lg:py-28 lg:px-8 bg-gradient-to-b from-gray-900 to-black">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl font-extrabold tracking-tight sm:text-4xl orbitron gradient-text-electron">
elecTron AI
</h2>
<p class="mt-3 max-w-2xl mx-auto text-lg text-gray-300 sm:mt-4">
Precision-engineered intelligence for technical problem solving and data analysis.
</p>
</div>
<div class="grid grid-cols-1 gap-12 md:grid-cols-2 lg:grid-cols-3">
<!-- Card 1 -->
<div class="ai-card bg-white rounded-lg overflow-hidden shadow-lg neon-border-electron p-6 hover:zoom-in-out">
<div class="flex justify-center mb-4">
<div class="hexagon w-16 h-16 bg-gradient-to-br from-cyan-500 to-blue-600 flex items-center justify-center">
<i class="fas fa-brain text-2xl text-white"></i>
</div>
</div>
<h3 class="text-xl font-bold text-white mb-2 orbitron">Technical Mastery</h3>
<p class="text-gray-600 mb-4">
Advanced algorithms designed for complex technical computations, engineering simulations, and scientific research.
</p>
<div class="terminal-line text-sm font-mono text-blue-600">Processing efficiency: 98.7%</div>
</div>
<!-- Card 2 -->
<div class="ai-card bg-gray-800 rounded-lg overflow-hidden shadow-lg neon-border-electron p-6">
<div class="flex justify-center mb-4">
<div class="hexagon w-16 h-16 bg-gradient-to-br from-cyan-500 to-blue-600 flex items-center justify-center">
<i class="fas fa-chart-line text-2xl text-white"></i>
</div>
</div>
<h3 class="text-xl font-bold text-white mb-2 orbitron">Data Analysis</h3>
<p class="text-gray-300 mb-4">
Real-time processing of massive datasets with unparalleled accuracy and lightning-fast response times.
</p>
<div class="terminal-line text-sm font-mono text-cyan-300">Data throughput: 12.4 TB/s</div>
</div>
<!-- Card 3 -->
<div class="ai-card bg-gray-800 rounded-lg overflow-hidden shadow-lg neon-border-electron p-6">
<div class="flex justify-center mb-4">
<div class="hexagon w-16 h-16 bg-gradient-to-br from-cyan-500 to-blue-600 flex items-center justify-center">
<i class="fas fa-cogs text-2xl text-white"></i>
</div>
</div>
<h3 class="text-xl font-bold text-white mb-2 orbitron">System Integration</h3>
<p class="text-gray-300 mb-4">
Seamless API connectivity with existing infrastructure and enterprise systems for smooth implementation.
</p>
<div class="terminal-line text-sm font-mono text-cyan-300">API latency: 3.2ms avg</div>
</div>
</div>
<div class="mt-16 text-center">
<div class="inline-block typewriter text-xl font-mono text-cyan-300 mb-6">
elecTron system initialized... Ready for technical operations.
</div>
<div>
<button class="neon-border-electron px-6 py-3 rounded-md text-lg font-medium text-white hover-glow-electron transition-all duration-300">
Request Technical Demo
</button>
</div>
</div>
</div>
</section>
<!-- neXora Section -->
<section id="nexora" class="py-20 px-4 sm:px-6 lg:py-28 lg:px-8 bg-gradient-to-b from-black to-gray-900">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl font-extrabold tracking-tight sm:text-4xl orbitron gradient-text-nexora">
neXora AI
</h2>
<p class="mt-3 max-w-2xl mx-auto text-lg text-gray-300 sm:mt-4">
Creative intelligence with human-like understanding for artistic and conceptual tasks.
</p>
</div>
<div class="grid grid-cols-1 gap-12 md:grid-cols-2 lg:grid-cols-3">
<!-- Card 1 -->
<div class="ai-card bg-gray-800 rounded-lg overflow-hidden shadow-lg neon-border-nexora p-6">
<div class="flex justify-center mb-4">
<div class="hexagon w-16 h-16 bg-gradient-to-br from-purple-500 to-pink-600 flex items-center justify-center">
<i class="fas fa-paint-brush text-2xl text-white"></i>
</div>
</div>
<h3 class="text-xl font-bold text-white mb-2 orbitron">Creative Genius</h3>
<p class="text-gray-300 mb-4">
Generates original art, music, and literature with emotional depth and stylistic versatility.
</p>
<div class="terminal-line nexora-terminal-line text-sm font-mono text-purple-300">Creativity index: 9.8/10</div>
</div>
<!-- Card 2 -->
<div class="ai-card bg-gray-800 rounded-lg overflow-hidden shadow-lg neon-border-nexora p-6">
<div class="flex justify-center mb-4">
<div class="hexagon w-16 h-16 bg-gradient-to-br from-purple-500 to-pink-600 flex items-center justify-center">
<i class="fas fa-comments text-2xl text-white"></i>
</div>
</div>
<h3 class="text-xl font-bold text-white mb-2 orbitron">Natural Interaction</h3>
<p class="text-gray-300 mb-4">
Conversational abilities indistinguishable from human interaction, with contextual understanding.
</p>
<div class="terminal-line nexora-terminal-line text-sm font-mono text-purple-300">Empathy score: 96.5%</div>
</div>
<!-- Card 3 -->
<div class="ai-card bg-gray-800 rounded-lg overflow-hidden shadow-lg neon-border-nexora p-6">
<div class="flex justify-center mb-4">
<div class="hexagon w-16 h-16 bg-gradient-to-br from-purple-500 to-pink-600 flex items-center justify-center">
<i class="fas fa-lightbulb text-2xl text-white"></i>
</div>
</div>
<h3 class="text-xl font-bold text-white mb-2 orbitron">Conceptual Innovation</h3>
<p class="text-gray-300 mb-4">
Brainstorms novel ideas, solves abstract problems, and makes intuitive leaps beyond conventional AI.
</p>
<div class="terminal-line nexora-terminal-line text-sm font-mono text-purple-300">Innovation factor: 8.7/10</div>
</div>
</div>
<div class="mt-16 text-center">
<div class="inline-block nexora-typewriter text-xl font-mono text-purple-300 mb-6">
neXora consciousness active... Imagination protocols engaged.
</div>
<div>
<button class="neon-border-nexora px-6 py-3 rounded-md text-lg font-medium text-white hover-glow-nexora transition-all duration-300">
Experience Creative Demo
</button>
</div>
</div>
</div>
</section>
<!-- Interactive Features Section -->
<section id="features" class="py-20 px-4 sm:px-6 lg:py-28 lg:px-8 bg-gray-900 grid-dots">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl font-extrabold tracking-tight sm:text-4xl orbitron">
<span class="gradient-text-electron">Interactive</span> <span class="gradient-text-nexora">Features</span>
</h2>
<div class="mt-8 max-w-2xl mx-auto">
<div class="flex border-b border-gray-700">
<button class="feature-tab active px-4 py-2 text-sm font-medium text-white border-b-2 border-cyan-500" data-tab="electron">elecTron</button>
<button class="feature-tab px-4 py-2 text-sm font-medium text-gray-400 hover:text-white" data-tab="nexora">neXora</button>
<button class="feature-tab px-4 py-2 text-sm font-medium text-gray-400 hover:text-white" data-tab="compare">Compare</button>
</div>
</div>
</div>
<!-- Tab Content -->
<div class="feature-content active" id="electron-tab">
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="bg-gray-800 rounded-lg p-6 neon-border-electron">
<h3 class="text-xl font-bold text-white mb-4 orbitron">Technical Dashboard</h3>
<div class="grid grid-cols-2 gap-4 mb-6">
<div class="bg-gray-700 rounded p-4 text-center">
<div class="text-3xl font-bold text-cyan-400 mb-1">98.7%</div>
<div class="text-xs text-gray-300">Accuracy</div>
</div>
<div class="bg-gray-700 rounded p-4 text-center">
<div class="text-3xl font-bold text-cyan-400 mb-1">12.4TB/s</div>
<div class="text-xs text-gray-300">Throughput</div>
</div>
</div>
<button class="w-full bg-cyan-600 hover:bg-cyan-700 text-white py-2 rounded transition-all duration-300">
View Performance Metrics
</button>
</div>
<div class="bg-gray-800 rounded-lg p-6 neon-border-electron">
<h3 class="text-xl font-bold text-white mb-4 orbitron">Code Playground</h3>
<div class="bg-gray-900 rounded p-4 mb-4 h-32 overflow-auto">
<pre class="text-green-400 text-sm">// Sample code output
function calculate() {
return 42 * Math.PI;
}</pre>
</div>
<button class="w-full bg-gray-700 hover:bg-gray-600 text-white py-2 rounded transition-all duration-300">
Try Live Editor
</button>
</div>
</div>
</div>
<div class="feature-content hidden" id="nexora-tab">
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="bg-gray-800 rounded-lg p-6 neon-border-nexora">
<h3 class="text-xl font-bold text-white mb-4 orbitron">Creative Studio</h3>
<div class="bg-gray-900 rounded p-4 mb-4 h-48 flex items-center justify-center">
<div class="text-purple-400 text-center">
<i class="fas fa-paint-brush text-4xl mb-2"></i>
<p class="text-sm">Generate art, music, and stories</p>
</div>
</div>
<button class="w-full bg-purple-600 hover:bg-purple-700 text-white py-2 rounded transition-all duration-300">
Launch Creative Studio
</button>
</div>
<div class="bg-gray-800 rounded-lg p-6 neon-border-nexora">
<h3 class="text-xl font-bold text-white mb-4 orbitron">Conversation Simulator</h3>
<div class="bg-gray-900 rounded p-4 mb-4 h-32 overflow-auto">
<p class="text-pink-300 text-sm">neXora: "How are you feeling today?"</p>
<p class="text-gray-300 text-sm mt-2">You: </p>
</div>
<button class="w-full bg-gray-700 hover:bg-gray-600 text-white py-2 rounded transition-all duration-300">
Start Conversation
</button>
</div>
</div>
</div>
<div class="feature-content hidden" id="compare-tab">
<div class="bg-gray-800 rounded-lg p-6 neon-border-electron neon-border-nexora">
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-700">
<thead>
<tr>
<th class="px-4 py-3 text-left text-xs font-medium text-gray-300 uppercase tracking-wider">Feature</th>
<th class="px-4 py-3 text-left text-xs font-medium text-cyan-300 uppercase tracking-wider">elecTron</th>
<th class="px-4 py-3 text-left text-xs font-medium text-purple-300 uppercase tracking-wider">neXora</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-700">
<tr>
<td class="px-4 py-3 text-sm text-gray-300">Technical Analysis</td>
<td class="px-4 py-3 text-sm text-cyan-400"><i class="fas fa-check"></i></td>
<td class="px-4 py-3 text-sm text-purple-400"><i class="fas fa-check"></i></td>
</tr>
<tr>
<td class="px-4 py-3 text-sm text-gray-300">Creative Generation</td>
<td class="px-4 py-3 text-sm text-cyan-400"><i class="fas fa-times"></i></td>
<td class="px-4 py-3 text-sm text-purple-400"><i class="fas fa-check"></i></td>
</tr>
<tr>
<td class="px-4 py-3 text-sm text-gray-300">Real-time Processing</td>
<td class="px-4 py-3 text-sm text-cyan-400"><i class="fas fa-check"></i></td>
<td class="px-4 py-3 text-sm text-purple-400"><i class="fas fa-check"></i></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl font-extrabold tracking-tight sm:text-4xl orbitron">
<span class="gradient-text-electron">CORT</span><span class="gradient-text-nexora">EX</span> Features
</h2>
<p class="mt-3 max-w-2xl mx-auto text-lg text-gray-300 sm:mt-4">
The combined power of elecTron and neXora creates an unparalleled AI experience.
</p>
</div>
<div class="grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3">
<!-- Feature 1 -->
<div class="relative bg-gray-800 p-6 rounded-lg overflow-hidden">
<div class="absolute -top-4 -right-4 w-24 h-24 bg-cyan-500 rounded-full opacity-10"></div>
<div class="absolute -bottom-4 -left-4 w-24 h-24 bg-purple-500 rounded-full opacity-10"></div>
<div class="relative z-10">
<div class="flex items-center mb-4">
<div class="flex-shrink-0 bg-gradient-to-r from-cyan-500 to-blue-600 p-2 rounded-md">
<i class="fas fa-random text-white text-xl"></i>
</div>
<h3 class="ml-3 text-lg font-bold text-white orbitron">Dynamic Switching</h3>
</div>
<p class="text-gray-300">
Seamlessly transition between elecTron's technical precision and neXora's creative brilliance with a single command.
</p>
</div>
</div>
<!-- Feature 2 -->
<div class="relative bg-gray-800 p-6 rounded-lg overflow-hidden">
<div class="absolute -top-4 -right-4 w-24 h-24 bg-purple-500 rounded-full opacity-10"></div>
<div class="absolute -bottom-4 -left-4 w-24 h-24 bg-cyan-500 rounded-full opacity-10"></div>
<div class="relative z-10">
<div class="flex items-center mb-4">
<div class="flex-shrink-0 bg-gradient-to-r from-purple-500 to-pink-600 p-2 rounded-md">
<i class="fas fa-sync-alt text-white text-xl"></i>
</div>
<h3 class="ml-3 text-lg font-bold text-white orbitron">Collaborative Mode</h3>
</div>
<p class="text-gray-300">
Both AIs work in tandem, combining analytical rigor with creative solutions for breakthrough results.
</p>
</div>
</div>
<!-- Feature 3 -->
<div class="relative bg-gray-800 p-6 rounded-lg overflow-hidden">
<div class="absolute -top-4 -right-4 w-24 h-24 bg-cyan-500 rounded-full opacity-10"></div>
<div class="absolute -bottom-4 -left-4 w-24 h-24 bg-purple-500 rounded-full opacity-10"></div>
<div class="relative z-10">
<div class="flex items-center mb-4">
<div class="flex-shrink-0 bg-gradient-to-r from-cyan-500 to-purple-600 p-2 rounded-md">
<i class="fas fa-shield-alt text-white text-xl"></i>
</div>
<h3 class="ml-3 text-lg font-bold text-white orbitron">Security Protocol</h3>
</div>
<p class="text-gray-300">
Military-grade encryption and privacy controls ensure your data remains secure across both systems.
</p>
</div>
</div>
<!-- Feature 4 -->
<div class="relative bg-gray-800 p-6 rounded-lg overflow-hidden">
<div class="absolute -top-4 -right-4 w-24 h-24 bg-purple-500 rounded-full opacity-10"></div>
<div class="absolute -bottom-4 -left-4 w-24 h-24 bg-cyan-500 rounded-full opacity-10"></div>
<div class="relative z-10">
<div class="flex items-center mb-4">
<div class="flex-shrink-0 bg-gradient-to-r from-pink-500 to-cyan-600 p-2 rounded-md">
<i class="fas fa-rocket text-white text-xl"></i>
</div>
<h3 class="ml-3 text-lg font-bold text-white orbitron">Continuous Learning</h3>
</div>
<p class="text-gray-300">
Both AIs evolve with each interaction, constantly improving their capabilities and understanding.
</p>
</div>
</div>
<!-- Feature 5 -->
<div class="relative bg-gray-800 p-6 rounded-lg overflow-hidden">
<div class="absolute -top-4 -right-4 w-24 h-24 bg-cyan-500 rounded-full opacity-10"></div>
<div class="absolute -bottom-4 -left-4 w-24 h-24 bg-purple-500 rounded-full opacity-10"></div>
<div class="relative z-10">
<div class="flex items-center mb-4">
<div class="flex-shrink-0 bg-gradient-to-r from-blue-500 to-purple-600 p-2 rounded-md">
<i class="fas fa-project-diagram text-white text-xl"></i>
</div>
<h3 class="ml-3 text-lg font-bold text-white orbitron">Custom Integration</h3>
</div>
<p class="text-gray-300">
Tailor both AIs to your specific needs with customizable modules and specialized training.
</p>
</div>
</div>
<!-- Feature 6 -->
<div class="relative bg-gray-800 p-6 rounded-lg overflow-hidden">
<div class="absolute -top-4 -right-4 w-24 h-24 bg-purple-500 rounded-full opacity-10"></div>
<div class="absolute -bottom-4 -left-4 w-24 h-24 bg-cyan-500 rounded-full opacity-10"></div>
<div class="relative z-10">
<div class="flex items-center mb-4">
<div class="flex-shrink-0 bg-gradient-to-r from-purple-500 to-cyan-600 p-2 rounded-md">
<i class="fas fa-chart-pie text-white text-xl"></i>
</div>
<h3 class="ml-3 text-lg font-bold text-white orbitron">Performance Analytics</h3>
</div>
<p class="text-gray-300">
Detailed metrics on both AIs' performance, with insights for optimization and improvement.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="py-20 px-4 sm:px-6 lg:py-28 lg:px-8 bg-black">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl font-extrabold tracking-tight sm:text-4xl orbitron">
<span class="gradient-text-electron">Free</span> <span class="gradient-text-nexora">Premium</span>
</h2>
<p class="mt-3 max-w-2xl mx-auto text-lg text-gray-300 sm:mt-4">
elecTron is completely free while neXora offers premium capabilities
</p>
</div>
<div class="grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3">
<!-- elecTron Free Plan -->
<div class="relative bg-gray-800 rounded-lg overflow-hidden shadow-lg neon-border-electron">
<div class="p-6">
<h3 class="text-2xl font-bold text-white mb-2 orbitron">elecTron</h3>
<p class="text-gray-300 mb-6">Free forever with basic features</p>
<div class="mb-6">
<span class="text-4xl font-extrabold text-white">$0</span>
<span class="text-gray-300">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-cyan-500 mr-2"></i>
<span class="text-gray-300">Basic image generation</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-cyan-500 mr-2"></i>
<span class="text-gray-300">Simple code editor</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-cyan-500 mr-2"></i>
<span class="text-gray-300">Basic data analysis</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-cyan-500 mr-2"></i>
<span class="text-gray-300">Community support</span>
</li>
</ul>
<button class="w-full neon-border-electron px-4 py-3 rounded-md text-lg font-medium text-white hover-glow-electron transition-all duration-300">
Use For Free
</button>
</div>
</div>
<!-- neXora Premium Plan -->
<div class="relative bg-gray-800 rounded-lg overflow-hidden shadow-lg transform scale-105 neon-border-nexora z-10">
<div class="absolute top-0 right-0 bg-gradient-to-r from-purple-500 to-pink-600 text-white text-xs font-bold px-3 py-1 transform translate-x-2 -translate-y-2">
PREMIUM
</div>
<div class="p-6">
<h3 class="text-2xl font-bold text-white mb-2 orbitron">neXora</h3>
<p class="text-gray-300 mb-6">Advanced capabilities for professionals</p>
<div class="mb-6">
<span class="text-4xl font-extrabold text-white">$9</span>
<span class="text-gray-300">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-purple-500 mr-2"></i>
<span class="text-gray-300">HD image generation</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-purple-500 mr-2"></i>
<span class="text-gray-300">Advanced code editor</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-purple-500 mr-2"></i>
<span class="text-gray-300">Realtime data analysis</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-purple-500 mr-2"></i>
<span class="text-gray-300">Website builder</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-purple-500 mr-2"></i>
<span class="text-gray-300">Priority support</span>
</li>
</ul>
<button class="w-full neon-border-nexora px-4 py-3 rounded-md text-lg font-medium text-white hover-glow-nexora transition-all duration-300">
Upgrade Now
</button>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 px-4 sm:px-6 lg:py-28 lg:px-8 bg-gradient-to-r from-blue-50 to-purple-50">
<div class="max-w-7xl mx-auto text-center">
<h2 class="text-3xl font-extrabold tracking-tight sm:text-4xl orbitron">
<span class="gradient-text-electron">Ready to experience</span> <span class="gradient-text-nexora">the future of AI?</span>
</h2>
<p class="mt-3 max-w-2xl mx-auto text-lg text-gray-300 sm:mt-4">
Join thousands of innovators already using CORTEX to push boundaries.
</p>
<div class="mt-8 flex justify-center">
<div class="inline-flex rounded-md shadow">
<button class="inline-flex items-center justify-center px-6 py-4 border border-transparent text-base font-medium rounded-md text-white bg-gradient-to-r from-cyan-500 to-purple-600 hover:from-cyan-600 hover:to-purple-700 transition-all duration-300 hover:shadow-lg hover:shadow-cyan-500/30">
Get Started Now
<i class="fas fa-arrow-right ml-3"></i>
</button>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-white pt-16 pb-8 px-4 sm:px-6 lg:px-8 border-t border-gray-200">
<div class="max-w-7xl mx-auto">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
<div>
<h3 class="text-lg font-bold text-white mb-4 orbitron gradient-text-electron">elecTron</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition-colors duration-300">Technical Specs</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors duration-300">API Documentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors duration-300">Use Cases</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors duration-300">Benchmarks</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold text-white mb-4 orbitron gradient-text-nexora">neXora</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition-colors duration-300">Creative Showcase</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors duration-300">Art Gallery</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors duration-300">Writing Samples</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors duration-300">Innovation Lab</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold text-white mb-4 orbitron">Company</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition-colors duration-300">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors duration-300">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors duration-300">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors duration-300">Press</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold text-white mb-4 orbitron">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition-colors duration-300">Documentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors duration-300">Community</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors duration-300">Tutorials</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors duration-300">Support</a></li>
</ul>
</div>
</div>
<!-- About Us Section -->
<div class="mt-16 text-center">
<h2 class="text-3xl font-extrabold tracking-tight sm:text-4xl orbitron">
<span class="gradient-text-electron">About</span> <span class="gradient-text-nexora">Us</span>
</h2>
<div class="mt-8 max-w-2xl mx-auto bg-gray-800 rounded-lg p-6 neon-border-electron neon-border-nexora">
<p class="text-gray-300 mb-4">
Cortex is a student-led initiative created by two 9th grade innovators:
</p>
<div class="flex justify-center space-x-8 mb-6">
<div>
<div class="w-20 h-20 rounded-full bg-gradient-to-r from-cyan-500 to-blue-600 mx-auto mb-2 flex items-center justify-center text-white text-2xl font-bold">V</div>
<p class="text-white font-medium">Vineet Kumar</p>
</div>
<div>
<div class="w-20 h-20 rounded-full bg-gradient-to-r from-purple-500 to-pink-600 mx-auto mb-2 flex items-center justify-center text-white text-2xl font-bold">P</div>
<p class="text-white font-medium">Prakshmya Mishra</p>
</div>
</div>
<p class="text-gray-300">
What started as a school project has evolved into a powerful AI platform.
We're proof that age is just a number when it comes to innovation!
</p>
</div>
</div>
<div class="mt-12 pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center">
<span class="orbitron text-xl font-bold gradient-text-electron">CORT<span class="gradient-text-nexora">EX</span></span>
<span class="ml-4 text-gray-400 text-sm">© 2023 Cortex AI. All rights reserved.</span>
</div>
<div class="mt-4 md:mt-0 flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition-colors duration-300 hover:animate-spin">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors duration-300">
<i class="fab fa-github"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors duration-300">
<i class="fab fa-linkedin"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors duration-300">
<i class="fab fa-discord"></i>
</a>
</div>
</div>
</div>
</footer>
<!-- Particle Animation Container -->
<div id="particles-js" class="fixed top-0 left-0 w-full h-full pointer-events-none z-0"></div>
<script>
// Tab functionality
document.querySelectorAll('.feature-tab').forEach(tab => {
tab.addEventListener('click', function() {
// Remove active classes
document.querySelectorAll('.feature-tab').forEach(t => t.classList.remove('active', 'text-white', 'border-cyan-500'));
document.querySelectorAll('.feature-content').forEach(c => c.classList.add('hidden'));
// Add active class to clicked tab
this.classList.add('active', 'text-white');
if(this.dataset.tab === 'electron') {
this.classList.add('border-cyan-500');
} else if(this.dataset.tab === 'nexora') {
this.classList.add('border-purple-500');
}
// Show corresponding content
document.getElementById(`${this.dataset.tab}-tab`).classList.remove('hidden');
});
});
// Expandable cards
document.querySelectorAll('.ai-card').forEach(card => {
card.addEventListener('click', function() {
const details = this.querySelector('.card-details');
if(details) {
details.classList.toggle('hidden');
}
});
});
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Create particles
function createParticles() {
const container = document.getElementById('particles-js');
const particleCount = 30;
for (let i = 0; i < particleCount; i++) {
const particle = document.createElement('div');
particle.classList.add('particle');
// Random properties
const size = Math.random() * 5 + 1;
const posX = Math.random() * 100;
const posY = Math.random() * 100;
const delay = Math.random() * 5;
const duration = Math.random() * 10 + 10;
const color = Math.random() > 0.5 ? 'rgba(0, 240, 255, 0.5)' : 'rgba(179, 0, 255, 0.5)';
particle.style.width = `${size}px`;
particle.style.height = `${size}px`;
particle.style.left = `${posX}%`;
particle.style.top = `${posY}%`;
particle.style.backgroundColor = color;
particle.style.animation = `floating ${duration}s ease-in-out ${delay}s infinite`;
container.appendChild(particle);
}
}
// Initialize animations when DOM is loaded
document.addEventListener('DOMContentLoaded', function() {
createParticles();
// Animate all headings
gsap.utils.toArray("h1, h2, h3").forEach(heading => {
gsap.from(heading, {
scrollTrigger: {
trigger: heading,
start: "top 80%",
toggleActions: "play none none none"
},
duration: 1,
opacity: 0,
y: 20,
stagger: 0.2,
ease: "back.out"
});
});
// Animate all buttons on hover
gsap.utils.toArray("button, a[href]").forEach(btn => {
btn.addEventListener("mouseenter", () => {
gsap.to(btn, {
duration: 0.3,
scale: 1.05,
ease: "power2.out"
});
});
btn.addEventListener("mouseleave", () => {
gsap.to(btn, {
duration: 0.3,
scale: 1,
ease: "power2.out"
});
});
});
// Continuous animation for floating elements
gsap.to(".floating", {
y: 20,
duration: 3,
repeat: -1,
yoyo: true,
ease: "sine.inOut"
});
// Background grid animation
gsap.to("body", {
backgroundPosition: "20px 20px",
duration: 30,
repeat: -1,
ease: "none"
});
// GSAP animations
gsap.registerPlugin(ScrollTrigger);
// Animate hero elements
gsap.from(".gradient-text-electron", {
duration: 1.5,
y: -50,
opacity: 0,
ease: "power3.out"
});
gsap.from(".gradient-text-nexora", {
duration: 1.5,
y: 50,
opacity: 0,
ease: "power3.out",
delay: 0.3
});
gsap.from("nav", {
duration: 1,
y: -50,
opacity: 0,
ease: "power3.out"
});
// Scroll animations for sections
gsap.utils.toArray("section").forEach(section => {
gsap.from(section, {
scrollTrigger: {
trigger: section,
start: "top 80%",
toggleActions: "play none none none"
},
y: 50,
opacity: 0,
duration: 1,
ease: "power3.out"
});
});
// Card hover animations
document.querySelectorAll(".ai-card").forEach(card => {
card.addEventListener("mouseenter", function() {
gsap.to(this, {
duration: 0.3,
y: -10,
ease: "power2.out"
});
});
card.addEventListener("mouseleave", function() {
gsap.to(this, {
duration: 0.3,
y: 0,
ease: "power2.out"
});
});
});
// Button hover animations
document.querySelectorAll(".hover-glow-electron").forEach(btn => {
btn.addEventListener("mouseenter", function() {
gsap.to(this, {
duration: 0.3,
boxShadow: "0 0 25px rgba(0, 240, 255, 0.9)",
ease: "power2.out"
});
});
btn.addEventListener("mouseleave", function() {
gsap.to(this, {
duration: 0.3,
boxShadow: "0 0 15px rgba(0, 240, 255, 0.7)",
ease: "power2.out"
});
});
});
document.querySelectorAll(".hover-glow-nexora").forEach(btn => {
btn.addEventListener("mouseenter", function() {
gsap.to(this, {
duration: 0.3,
boxShadow: "0 0 25px rgba(179, 0, 255, 0.9)",
ease: "power2.out"
});
});
btn.addEventListener("mouseleave", function() {
gsap.to(this, {
duration: 0.3,
boxShadow: "0 0 15px rgba(179, 0, 255, 0.7)",
ease: "power2.out"
});
});
});
});
</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=w4rriorG/cortex" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |