chandan06 commited on
Commit
bde9eed
·
verified ·
1 Parent(s): 989606e

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. index.html +476 -746
index.html CHANGED
@@ -1,759 +1,489 @@
1
  <!DOCTYPE html>
2
  <html lang="en">
3
  <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>FutureTech - Next Generation Mobile Experience</title>
7
- <style>
8
- * {
9
- margin: 0;
10
- padding: 0;
11
- box-sizing: border-box;
12
- }
13
-
14
- :root {
15
- --primary-color: #00f2fe;
16
- --secondary-color: #ff00ff;
17
- --accent-color: #00ff88;
18
- --dark-bg: #0a0a1a;
19
- --darker-bg: #050510;
20
- --glass-bg: rgba(255, 255, 255, 0.1);
21
- --text-primary: #ffffff;
22
- --text-secondary: #b8b8ff;
23
- }
24
-
25
- body {
26
- font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
27
- background: var(--darker-bg);
28
- color: var(--text-primary);
29
- overflow-x: hidden;
30
- line-height: 1.6;
31
- }
32
-
33
- /* Animated Background */
34
- .bg-container {
35
- position: fixed;
36
- top: 0;
37
- left: 0;
38
- width: 100%;
39
- height: 100vh;
40
- z-index: -1;
41
- overflow: hidden;
42
- }
43
-
44
- .bg-grid {
45
- position: absolute;
46
- width: 100%;
47
- height: 100%;
48
- background-image:
49
- linear-gradient(rgba(0, 242, 254, 0.1) 1px, transparent 1px),
50
- linear-gradient(90deg, rgba(0, 242, 254, 0.1) 1px, transparent 1px);
51
- background-size: 50px 50px;
52
- animation: gridMove 20s linear infinite;
53
- }
54
-
55
- .bg-orbs {
56
- position: absolute;
57
- width: 100%;
58
- height: 100%;
59
- }
60
-
61
- .orb {
62
- position: absolute;
63
- border-radius: 50%;
64
- background: radial-gradient(circle, var(--primary-color), transparent);
65
- filter: blur(10px);
66
- animation: float 15s infinite ease-in-out;
67
- }
68
-
69
- .orb:nth-child(1) {
70
- width: 300px;
71
- height: 300px;
72
- top: -150px;
73
- left: -100px;
74
- animation-delay: 0s;
75
- }
76
-
77
- .orb:nth-child(2) {
78
- width: 200px;
79
- height: 200px;
80
- bottom: -50px;
81
- right: -50px;
82
- background: radial-gradient(circle, var(--secondary-color), transparent);
83
- animation-delay: 5s;
84
- }
85
-
86
- .orb:nth-child(3) {
87
- width: 150px;
88
- height: 150px;
89
- top: 50%;
90
- left: -75px;
91
- background: radial-gradient(circle, var(--accent-color), transparent);
92
- animation-delay: 10s;
93
- }
94
-
95
- @keyframes gridMove {
96
- 0% { transform: translate(0, 0); }
97
- 100% { transform: translate(50px, 50px); }
98
- }
99
-
100
- @keyframes float {
101
- 0%, 100% { transform: translate(0, 0) scale(1); }
102
- 33% { transform: translate(30px, -30px) scale(1.1); }
103
- 66% { transform: translate(-20px, 20px) scale(0.9); }
104
- }
105
-
106
- /* Header */
107
- header {
108
- padding: 1.5rem;
109
- position: relative;
110
- z-index: 100;
111
- backdrop-filter: blur(10px);
112
- background: rgba(10, 10, 26, 0.8);
113
- border-bottom: 1px solid rgba(0, 242, 254, 0.3);
114
- }
115
-
116
- .header-content {
117
- max-width: 1200px;
118
- margin: 0 auto;
119
- display: flex;
120
- justify-content: space-between;
121
- align-items: center;
122
- }
123
-
124
- .logo {
125
- font-size: 1.5rem;
126
- font-weight: bold;
127
- background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
128
- -webkit-background-clip: text;
129
- -webkit-text-fill-color: transparent;
130
- background-clip: text;
131
- }
132
-
133
- .nav-links {
134
- display: flex;
135
- gap: 2rem;
136
- }
137
-
138
- .nav-links a {
139
- color: var(--text-secondary);
140
- text-decoration: none;
141
- transition: color 0.3s;
142
- position: relative;
143
- }
144
-
145
- .nav-links a::after {
146
- content: '';
147
- position: absolute;
148
- bottom: -5px;
149
- left: 0;
150
- width: 0;
151
- height: 2px;
152
- background: var(--primary-color);
153
- transition: width 0.3s;
154
- }
155
-
156
- .nav-links a:hover {
157
- color: var(--primary-color);
158
- }
159
-
160
- .nav-links a:hover::after {
161
- width: 100%;
162
- }
163
-
164
- /* Hero Section */
165
- .hero {
166
- min-height: 100vh;
167
- display: flex;
168
- align-items: center;
169
- justify-content: center;
170
- padding: 2rem;
171
- position: relative;
172
- }
173
-
174
- .hero-content {
175
- text-align: center;
176
- z-index: 10;
177
- max-width: 800px;
178
- }
179
-
180
- .hero-title {
181
- font-size: clamp(2.5rem, 8vw, 5rem);
182
- margin-bottom: 1.5rem;
183
- line-height: 1.2;
184
- background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
185
- -webkit-background-clip: text;
186
- -webkit-text-fill-color: transparent;
187
- background-clip: text;
188
- animation: glow 3s ease-in-out infinite alternate;
189
- }
190
-
191
- @keyframes glow {
192
- from { filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.5)); }
193
- to { filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.8)); }
194
- }
195
-
196
- .hero-subtitle {
197
- font-size: 1.2rem;
198
- color: var(--text-secondary);
199
- margin-bottom: 2rem;
200
- }
201
-
202
- .cta-button {
203
- display: inline-block;
204
- padding: 1rem 2.5rem;
205
- background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
206
- border: none;
207
- border-radius: 50px;
208
- color: var(--dark-bg);
209
- font-weight: bold;
210
- text-decoration: none;
211
- font-size: 1.1rem;
212
- transition: all 0.3s;
213
- position: relative;
214
- overflow: hidden;
215
- }
216
-
217
- .cta-button::before {
218
- content: '';
219
- position: absolute;
220
- top: 0;
221
- left: -100%;
222
- width: 100%;
223
- height: 100%;
224
- background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
225
- transition: left 0.5s;
226
- }
227
-
228
- .cta-button:hover::before {
229
- left: 100%;
230
- }
231
-
232
- .cta-button:hover {
233
- transform: translateY(-3px);
234
- box-shadow: 0 10px 30px rgba(0, 242, 254, 0.4);
235
- }
236
-
237
- /* 3D Cards Section */
238
- .features {
239
- padding: 5rem 2rem;
240
- max-width: 1200px;
241
- margin: 0 auto;
242
- }
243
-
244
- .section-title {
245
- text-align: center;
246
- font-size: 2.5rem;
247
- margin-bottom: 3rem;
248
- position: relative;
249
- }
250
-
251
- .section-title::after {
252
- content: '';
253
- position: absolute;
254
- bottom: -10px;
255
- left: 50%;
256
- transform: translateX(-50%);
257
- width: 100px;
258
- height: 3px;
259
- background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
260
- }
261
-
262
- .cards-container {
263
- display: grid;
264
- grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
265
- gap: 2rem;
266
- perspective: 1000px;
267
- }
268
-
269
- .card {
270
- background: var(--glass-bg);
271
- backdrop-filter: blur(10px);
272
- border: 1px solid rgba(0, 242, 254, 0.3);
273
- border-radius: 20px;
274
- padding: 2rem;
275
- position: relative;
276
- transform-style: preserve-3d;
277
- transition: transform 0.6s, box-shadow 0.3s;
278
- cursor: pointer;
279
- }
280
-
281
- .card:hover {
282
- transform: translateY(-10px) rotateX(5deg);
283
- box-shadow: 0 20px 40px rgba(0, 242, 254, 0.3);
284
- }
285
-
286
- .card-icon {
287
- font-size: 3rem;
288
- margin-bottom: 1rem;
289
- background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
290
- -webkit-background-clip: text;
291
- -webkit-text-fill-color: transparent;
292
- background-clip: text;
293
- }
294
-
295
- .card-title {
296
- font-size: 1.5rem;
297
- margin-bottom: 1rem;
298
- }
299
-
300
- .card-description {
301
- color: var(--text-secondary);
302
- }
303
-
304
- /* Floating Elements */
305
- .floating-element {
306
- position: absolute;
307
- width: 100px;
308
- height: 100px;
309
- background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
310
- border-radius: 50%;
311
- opacity: 0.1;
312
- animation: float 10s infinite ease-in-out;
313
- }
314
-
315
- .floating-element:nth-child(1) {
316
- top: 20%;
317
- left: 10%;
318
- animation-delay: 0s;
319
- }
320
-
321
- .floating-element:nth-child(2) {
322
- top: 60%;
323
- right: 15%;
324
- animation-delay: 2s;
325
- }
326
-
327
- .floating-element:nth-child(3) {
328
- bottom: 20%;
329
- left: 20%;
330
- animation-delay: 4s;
331
- }
332
-
333
- /* Stats Section */
334
- .stats {
335
- background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
336
- padding: 5rem 2rem;
337
- position: relative;
338
- overflow: hidden;
339
- }
340
-
341
- .stats-container {
342
- max-width: 1200px;
343
- margin: 0 auto;
344
- display: grid;
345
- grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
346
- gap: 2rem;
347
- position: relative;
348
- z-index: 1;
349
- }
350
-
351
- .stat-item {
352
- text-align: center;
353
- padding: 2rem;
354
- background: var(--glass-bg);
355
- backdrop-filter: blur(10px);
356
- border-radius: 20px;
357
- border: 1px solid rgba(0, 242, 254, 0.2);
358
- transition: transform 0.3s;
359
- }
360
-
361
- .stat-item:hover {
362
- transform: scale(1.05);
363
- }
364
-
365
- .stat-number {
366
- font-size: 3rem;
367
- font-weight: bold;
368
- background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
369
- -webkit-background-clip: text;
370
- -webkit-text-fill-color: transparent;
371
- background-clip: text;
372
- }
373
-
374
- .stat-label {
375
- color: var(--text-secondary);
376
- margin-top: 0.5rem;
377
- }
378
-
379
- /* Interactive Canvas */
380
- .canvas-container {
381
- position: relative;
382
- width: 100%;
383
- height: 300px;
384
- margin: 2rem 0;
385
- overflow: hidden;
386
- border-radius: 20px;
387
- background: var(--glass-bg);
388
- backdrop-filter: blur(10px);
389
- }
390
-
391
- #interactive-canvas {
392
- width: 100%;
393
- height: 100%;
394
- }
395
-
396
- /* Footer */
397
- footer {
398
- padding: 3rem 2rem;
399
- text-align: center;
400
- border-top: 1px solid rgba(0, 242, 254, 0.2);
401
- }
402
-
403
- .footer-content {
404
- max-width: 800px;
405
- margin: 0 auto;
406
- }
407
-
408
- .social-links {
409
- display: flex;
410
- justify-content: center;
411
- gap: 1.5rem;
412
- margin-top: 1.5rem;
413
- }
414
-
415
- .social-link {
416
- width: 40px;
417
- height: 40px;
418
- border-radius: 50%;
419
- background: var(--glass-bg);
420
- display: flex;
421
- align-items: center;
422
- justify-content: center;
423
- color: var(--text-primary);
424
- text-decoration: none;
425
- transition: all 0.3s;
426
- }
427
-
428
- .social-link:hover {
429
- background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
430
- transform: translateY(-5px);
431
- }
432
-
433
- /* Responsive Design */
434
- @media (max-width: 768px) {
435
- .nav-links {
436
- display: none;
437
- }
438
-
439
- .hero-title {
440
- font-size: 3rem;
441
- }
442
-
443
- .cards-container {
444
- grid-template-columns: 1fr;
445
- }
446
-
447
- .stats-container {
448
- grid-template-columns: 1fr;
449
- }
450
- }
451
-
452
- /* Scroll Animation */
453
- .scroll-reveal {
454
- opacity: 0;
455
- transform: translateY(50px);
456
- transition: opacity 0.6s, transform 0.6s;
457
- }
458
-
459
- .scroll-reveal.active {
460
- opacity: 1;
461
- transform: translateY(0);
462
- }
463
-
464
- /* Loading Animation */
465
- .loader {
466
- position: fixed;
467
- top: 0;
468
- left: 0;
469
- width: 100%;
470
- height: 100%;
471
- background: var(--darker-bg);
472
- display: flex;
473
- justify-content: center;
474
- align-items: center;
475
- z-index: 9999;
476
- transition: opacity 0.5s;
477
- }
478
-
479
- .loader.hidden {
480
- opacity: 0;
481
- pointer-events: none;
482
- }
483
-
484
- .loader-spinner {
485
- width: 60px;
486
- height: 60px;
487
- border: 3px solid rgba(0, 242, 254, 0.3);
488
- border-top: 3px solid var(--primary-color);
489
- border-radius: 50%;
490
- animation: spin 1s linear infinite;
491
- }
492
-
493
- @keyframes spin {
494
- 0% { transform: rotate(0deg); }
495
- 100% { transform: rotate(360deg); }
496
- }
497
-
498
- /* Built with anycoder link */
499
- .built-with {
500
- position: fixed;
501
- top: 1rem;
502
- left: 1rem;
503
- font-size: 0.8rem;
504
- color: var(--text-secondary);
505
- z-index: 100;
506
- }
507
-
508
- .built-with a {
509
- color: var(--primary-color);
510
- text-decoration: none;
511
- font-weight: bold;
512
- }
513
-
514
- .built-with a:hover {
515
- text-decoration: underline;
516
- }
517
- </style>
518
  </head>
519
  <body>
520
- <div class="loader" id="loader">
521
- <div class="loader-spinner"></div>
522
- </div>
523
-
524
- <a href="https://huggingface.co/spaces/akhaliq/anycoder" class="built-with">Built with anycoder</a>
525
-
526
- <div class="bg-container">
527
- <div class="bg-grid"></div>
528
- <div class="bg-orbs">
529
- <div class="orb"></div>
530
- <div class="orb"></div>
531
- <div class="orb"></div>
 
 
 
 
 
 
 
 
 
532
  </div>
533
- </div>
534
-
535
- <header>
536
- <div class="header-content">
537
- <div class="logo">FutureTech</div>
538
- <nav class="nav-links">
539
- <a href="#features">Features</a>
540
- <a href="#stats">Stats</a>
541
- <a href="#contact">Contact</a>
542
- </nav>
543
  </div>
544
- </header>
545
-
546
- <section class="hero">
547
- <div class="hero-content">
548
- <h1 class="hero-title">Experience Tomorrow, Today</h1>
549
- <p class="hero-subtitle">Revolutionary mobile technology that redefines what's possible. Immerse yourself in a world of innovation and seamless connectivity.</p>
550
- <a href="#" class="cta-button">Get Started</a>
551
  </div>
552
- <div class="floating-element"></div>
553
- <div class="floating-element"></div>
554
- <div class="floating-element"></div>
555
- </section>
556
-
557
- <section class="features" id="features">
558
- <h2 class="section-title scroll-reveal">Advanced Features</h2>
559
- <div class="cards-container">
560
- <div class="card scroll-reveal">
561
- <div class="card-icon">🚀</div>
562
- <h3 class="card-title">Lightning Speed</h3>
563
- <p class="card-description">Experience unprecedented performance with our optimized algorithms and cutting-edge hardware acceleration.</p>
564
- </div>
565
- <div class="card scroll-reveal" style="animation-delay: 0.2s;">
566
- <div class="card-icon">🔒</div>
567
- <h3 class="card-title">Quantum Security</h3>
568
- <p class="card-description">Next-generation encryption ensures your data remains protected with military-grade security protocols.</p>
569
- </div>
570
- <div class="card scroll-reveal" style="animation-delay: 0.4s;">
571
- <div class="card-icon">🧠</div>
572
- <h3 class="card-title">AI Integration</h3>
573
- <p class="card-description">Smart AI assistant that learns and adapts to your needs, providing personalized experiences.</p>
574
- </div>
575
  </div>
576
- </section>
577
-
578
- <section class="stats" id="stats">
579
- <div class="stats-container">
580
- <div class="stat-item scroll-reveal">
581
- <div class="stat-number">99.9%</div>
582
- <div class="stat-label">Uptime Guarantee</div>
583
- </div>
584
- <div class="stat-item scroll-reveal" style="animation-delay: 0.2s;">
585
- <div class="stat-number">0.1s</div>
586
- <div class="stat-label">Response Time</div>
587
- </div>
588
- <div class="stat-item scroll-reveal" style="animation-delay: 0.4s;">
589
- <div class="stat-number">10M+</div>
590
- <div class="stat-label">Active Users</div>
591
- </div>
592
- <div class="stat-item scroll-reveal" style="animation-delay: 0.6s;">
593
- <div class="stat-number">24/7</div>
594
- <div class="stat-label">Support Available</div>
595
- </div>
596
  </div>
597
- </section>
598
-
599
- <section class="canvas-container">
600
- <canvas id="interactive-canvas"></canvas>
601
- </section>
602
-
603
- <footer id="contact">
604
- <div class="footer-content">
605
- <p>© 2024 FutureTech. All rights reserved.</p>
606
- <div class="social-links">
607
- <a href="#" class="social-link">f</a>
608
- <a href="#" class="social-link">t</a>
609
- <a href="#" class="social-link">i</a>
610
- <a href="#" class="social-link">y</a>
611
- </div>
612
- </div>
613
- </footer>
614
-
615
- <script>
616
- // Loader
617
- window.addEventListener('load', () => {
618
- setTimeout(() => {
619
- document.getElementById('loader').classList.add('hidden');
620
- }, 1500);
621
- });
622
-
623
- // Scroll Reveal Animation
624
- const scrollReveals = document.querySelectorAll('.scroll-reveal');
625
-
626
- const revealOnScroll = () => {
627
- scrollReveals.forEach(element => {
628
- const elementTop = element.getBoundingClientRect().top;
629
- const windowHeight = window.innerHeight;
630
-
631
- if (elementTop < windowHeight - 100) {
632
- element.classList.add('active');
633
- }
634
- });
635
- };
636
-
637
- window.addEventListener('scroll', revealOnScroll);
638
- revealOnScroll();
639
-
640
- // Interactive Canvas Animation
641
- const canvas = document.getElementById('interactive-canvas');
642
- const ctx = canvas.getContext('2d');
643
-
644
- function resizeCanvas() {
645
- canvas.width = canvas.offsetWidth;
646
- canvas.height = canvas.offsetHeight;
647
- }
648
-
649
- resizeCanvas();
650
- window.addEventListener('resize', resizeCanvas);
651
-
652
- class Particle {
653
- constructor() {
654
- this.x = Math.random() * canvas.width;
655
- this.y = Math.random() * canvas.height;
656
- this.size = Math.random() * 3 + 1;
657
- this.speedX = Math.random() * 3 - 1.5;
658
- this.speedY = Math.random() * 3 - 1.5;
659
- this.color = `hsl(${Math.random() * 60 + 180}, 100%, 50%)`;
660
- }
661
-
662
- update() {
663
- this.x += this.speedX;
664
- this.y += this.speedY;
665
-
666
- if (this.x > canvas.width || this.x < 0) {
667
- this.speedX = -this.speedX;
668
- }
669
- if (this.y > canvas.height || this.y < 0) {
670
- this.speedY = -this.speedY;
671
- }
672
- }
673
-
674
- draw() {
675
- ctx.fillStyle = this.color;
676
- ctx.beginPath();
677
- ctx.arc(this.x, this.y, this.size, 0, Math.PI * 2);
678
- ctx.fill();
679
- }
680
- }
681
-
682
- const particles = [];
683
- for (let i = 0; i < 50; i++) {
684
- particles.push(new Particle());
685
- }
686
-
687
- function animateCanvas() {
688
- ctx.clearRect(0, 0, canvas.width, canvas.height);
689
-
690
- particles.forEach(particle => {
691
- particle.update();
692
- particle.draw();
693
- });
694
-
695
- // Draw connections
696
- for (let i = 0; i < particles.length; i++) {
697
- for (let j = i + 1; j < particles.length; j++) {
698
- const dx = particles[i].x - particles[j].x;
699
- const dy = particles[i].y - particles[j].y;
700
- const distance = Math.sqrt(dx * dx + dy * dy);
701
-
702
- if (distance < 100) {
703
- ctx.strokeStyle = `rgba(0, 242, 254, ${1 - distance / 100})`;
704
- ctx.lineWidth = 0.5;
705
- ctx.beginPath();
706
- ctx.moveTo(particles[i].x, particles[i].y);
707
- ctx.lineTo(particles[j].x, particles[j].y);
708
- ctx.stroke();
709
- }
710
- }
711
- }
712
-
713
- requestAnimationFrame(animateCanvas);
714
- }
715
-
716
- animateCanvas();
717
-
718
- // Mouse interaction with canvas
719
- canvas.addEventListener('mousemove', (e) => {
720
- const rect = canvas.getBoundingClientRect();
721
- const x = e.clientX - rect.left;
722
- const y = e.clientY - rect.top;
723
-
724
- particles.forEach(particle => {
725
- const dx = particle.x - x;
726
- const dy = particle.y - y;
727
- const distance = Math.sqrt(dx * dx + dy * dy);
728
-
729
- if (distance < 100) {
730
- const force = (100 - distance) / 100;
731
- particle.x += dx * force * 0.02;
732
- particle.y += dy * force * 0.02;
733
- }
734
- });
735
- });
736
-
737
- // Smooth scroll for navigation links
738
- document.querySelectorAll('a[href^="#"]').forEach(anchor => {
739
- anchor.addEventListener('click', function (e) {
740
- e.preventDefault();
741
- const target = document.querySelector(this.getAttribute('href'));
742
- if (target) {
743
- target.scrollIntoView({
744
- behavior: 'smooth',
745
- block: 'start'
746
- });
747
- }
748
- });
749
- });
750
 
751
- // Parallax effect for hero section
752
- window.addEventListener('scroll', () => {
753
- const scrolled = window.pageYOffset;
754
- const hero = document.querySelector('.hero');
755
- hero.style.transform = `translateY(${scrolled * 0.5}px)`;
756
- });
757
- </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
758
  </body>
759
  </html>
 
1
  <!DOCTYPE html>
2
  <html lang="en">
3
  <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>NeuroOne Future Phone</title>
7
+ <style>
8
+ :root{
9
+ --bg:#040511;
10
+ --accent:#7bfffe;
11
+ --accent-2:#ff8df3;
12
+ --glass:rgba(255,255,255,0.07);
13
+ --text:#e8f6ff;
14
+ --muted:#9cb2c7;
15
+ --shadow:0 20px 60px rgba(0,0,0,0.4);
16
+ }
17
+ *{margin:0;padding:0;box-sizing:border-box;}
18
+ body{
19
+ font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
20
+ background:radial-gradient(circle at 20% 20%,rgba(123,255,254,.2),transparent 35%),radial-gradient(circle at 80% 0%,rgba(255,141,243,.25),transparent 38%),var(--bg);
21
+ color:var(--text);
22
+ min-height:100vh;
23
+ overflow-x:hidden;
24
+ perspective:1600px;
25
+ }
26
+ body::before{
27
+ content:"";
28
+ position:fixed;
29
+ inset:-30% -10% auto;
30
+ height:120%;
31
+ background:conic-gradient(from 120deg,#182143,#05050f,#101a3b,#6025ff,#060815);
32
+ filter:blur(120px);
33
+ opacity:.45;
34
+ z-index:-2;
35
+ }
36
+ main{
37
+ width:min(1200px,100%);
38
+ margin:0 auto;
39
+ padding:1.5rem clamp(1rem,5vw,4rem) 4rem;
40
+ }
41
+ .topbar{
42
+ display:flex;
43
+ justify-content:space-between;
44
+ align-items:center;
45
+ padding:1rem 0 2rem;
46
+ position:sticky;
47
+ top:0;
48
+ backdrop-filter:blur(24px);
49
+ background:rgba(4,5,17,.75);
50
+ z-index:9;
51
+ }
52
+ .logo{
53
+ font-weight:700;
54
+ letter-spacing:.2rem;
55
+ font-size:1rem;
56
+ }
57
+ .logo span{
58
+ color:var(--accent);
59
+ }
60
+ .topbar nav{
61
+ display:flex;
62
+ gap:1.2rem;
63
+ align-items:center;
64
+ font-size:.9rem;
65
+ }
66
+ .topbar a{
67
+ text-decoration:none;
68
+ color:var(--muted);
69
+ transition:.3s;
70
+ }
71
+ .topbar a:hover{color:var(--accent);}
72
+ .hero{
73
+ display:grid;
74
+ gap:2.5rem;
75
+ grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
76
+ align-items:center;
77
+ margin-top:1rem;
78
+ }
79
+ .blurb h1{
80
+ font-size:clamp(2rem,7vw,3.8rem);
81
+ line-height:1.05;
82
+ text-transform:uppercase;
83
+ letter-spacing:.1rem;
84
+ }
85
+ .blurb p{
86
+ margin:1.5rem 0;
87
+ font-size:1rem;
88
+ color:var(--muted);
89
+ max-width:40ch;
90
+ }
91
+ .cta{
92
+ display:flex;
93
+ flex-wrap:wrap;
94
+ gap:1rem;
95
+ }
96
+ button.primary{
97
+ padding:.95rem 2.8rem;
98
+ border:none;
99
+ border-radius:999px;
100
+ font-size:1rem;
101
+ font-weight:600;
102
+ color:#010109;
103
+ cursor:pointer;
104
+ background:linear-gradient(120deg,var(--accent),var(--accent-2));
105
+ box-shadow:0 15px 40px rgba(123,255,254,.35);
106
+ }
107
+ button.ghost{
108
+ padding:.95rem 2.3rem;
109
+ border:1px solid rgba(255,255,255,.3);
110
+ border-radius:999px;
111
+ background:transparent;
112
+ color:var(--text);
113
+ font-weight:600;
114
+ cursor:pointer;
115
+ transition:.3s;
116
+ }
117
+ button.ghost:hover{
118
+ border-color:var(--accent);
119
+ color:var(--accent);
120
+ }
121
+ .stats{
122
+ display:flex;
123
+ gap:2.5rem;
124
+ margin-top:2rem;
125
+ flex-wrap:wrap;
126
+ }
127
+ .stat{
128
+ flex:1 1 130px;
129
+ min-width:120px;
130
+ }
131
+ .stat h3{
132
+ font-size:2.2rem;
133
+ margin-bottom:.3rem;
134
+ color:var(--accent);
135
+ }
136
+ .scene{
137
+ position:relative;
138
+ width:100%;
139
+ min-height:420px;
140
+ display:flex;
141
+ justify-content:center;
142
+ }
143
+ .holobox{
144
+ width:260px;
145
+ aspect-ratio:9/19.5;
146
+ border-radius:28px;
147
+ background:linear-gradient(145deg,#05070f,#111a2a 60%,#060812);
148
+ position:relative;
149
+ transform-style:preserve-3d;
150
+ animation:float 6s ease-in-out infinite;
151
+ box-shadow:
152
+ inset 0 0 20px rgba(123,255,254,.2),
153
+ -30px 40px 80px rgba(0,0,0,.55),
154
+ 0 0 25px rgba(123,255,254,.25);
155
+ }
156
+ .holobox::before,
157
+ .holobox::after{
158
+ content:"";
159
+ position:absolute;
160
+ inset:8px;
161
+ border-radius:20px;
162
+ border:1px solid rgba(123,255,254,.18);
163
+ mix-blend-mode:screen;
164
+ pointer-events:none;
165
+ }
166
+ .holobox::after{
167
+ inset:12px;
168
+ border:1px solid rgba(255,141,243,.18);
169
+ }
170
+ .display{
171
+ position:absolute;
172
+ inset:14px;
173
+ border-radius:18px;
174
+ overflow:hidden;
175
+ background:#02060b;
176
+ }
177
+ .matrix{
178
+ width:100%;
179
+ height:100%;
180
+ background:
181
+ repeating-linear-gradient(90deg,rgba(123,255,254,.3) 0 1px,transparent 1px 16px),
182
+ repeating-linear-gradient(0deg,rgba(123,255,254,.2) 0 1px,transparent 1px 16px);
183
+ animation:scan 6s linear infinite;
184
+ opacity:.28;
185
+ }
186
+ .display canvas{
187
+ position:absolute;
188
+ inset:0;
189
+ width:100%;
190
+ height:100%;
191
+ mix-blend-mode:screen;
192
+ }
193
+ .glow-orbit{
194
+ position:absolute;
195
+ width:340px;
196
+ height:340px;
197
+ border-radius:50%;
198
+ border:1px solid rgba(123,255,254,.25);
199
+ top:50%;
200
+ left:50%;
201
+ transform:translate(-50%,-50%) rotateX(70deg);
202
+ animation:orbit 10s linear infinite;
203
+ filter:drop-shadow(0 0 20px rgba(123,255,254,.4));
204
+ }
205
+ .glow-node{
206
+ position:absolute;
207
+ width:12px;
208
+ height:12px;
209
+ border-radius:50%;
210
+ background:var(--accent);
211
+ top:-6px;
212
+ left:50%;
213
+ transform:translateX(-50%);
214
+ box-shadow:0 0 30px var(--accent);
215
+ }
216
+ .side-rail{
217
+ position:absolute;
218
+ right:-6px;
219
+ top:25%;
220
+ bottom:25%;
221
+ width:6px;
222
+ border-radius:4px;
223
+ background:linear-gradient(180deg,var(--accent),var(--accent-2));
224
+ filter:blur(.3px);
225
+ }
226
+ .camera{
227
+ position:absolute;
228
+ top:16px;
229
+ left:50%;
230
+ transform:translateX(-50%);
231
+ width:70px;
232
+ height:8px;
233
+ border-radius:999px;
234
+ background:linear-gradient(90deg,#0c101a,#1f2b3f);
235
+ }
236
+ .sensors{
237
+ position:absolute;
238
+ top:18px;
239
+ left:calc(50% - 26px);
240
+ width:52px;
241
+ height:4px;
242
+ display:flex;
243
+ justify-content:space-between;
244
+ }
245
+ .sensors span{
246
+ width:8px;
247
+ height:4px;
248
+ border-radius:999px;
249
+ background:radial-gradient(circle,#7bfffe 30%,transparent 70%);
250
+ opacity:.5;
251
+ }
252
+ .feature-wrap{
253
+ margin-top:4rem;
254
+ display:grid;
255
+ gap:1.5rem;
256
+ }
257
+ .feature-grid{
258
+ display:grid;
259
+ grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
260
+ gap:1.5rem;
261
+ }
262
+ .feature-card{
263
+ border-radius:22px;
264
+ padding:1.6rem;
265
+ background:var(--glass);
266
+ border:1px solid rgba(255,255,255,.1);
267
+ backdrop-filter:blur(20px);
268
+ min-height:160px;
269
+ position:relative;
270
+ overflow:hidden;
271
+ isolation:isolate;
272
+ box-shadow:var(--shadow);
273
+ }
274
+ .feature-card::before{
275
+ content:"";
276
+ position:absolute;
277
+ inset:0;
278
+ background:radial-gradient(circle at top right,rgba(123,255,254,.3),transparent 40%);
279
+ opacity:.7;
280
+ mix-blend-mode:screen;
281
+ z-index:-1;
282
+ }
283
+ .feature-card h4{
284
+ font-size:1rem;
285
+ letter-spacing:.08em;
286
+ text-transform:uppercase;
287
+ margin-bottom:.8rem;
288
+ color:var(--accent);
289
+ }
290
+ .feature-card p{
291
+ color:var(--muted);
292
+ font-size:.9rem;
293
+ }
294
+ .feature-card span{
295
+ position:absolute;
296
+ bottom:1.2rem;
297
+ right:1.5rem;
298
+ font-size:.8rem;
299
+ color:var(--accent-2);
300
+ letter-spacing:.2em;
301
+ }
302
+ .timeline{
303
+ margin-top:4rem;
304
+ display:grid;
305
+ gap:1rem;
306
+ }
307
+ .timeline-card{
308
+ padding:1.5rem;
309
+ border-radius:24px;
310
+ border:1px solid rgba(123,255,254,.3);
311
+ background:linear-gradient(125deg,rgba(123,255,254,.12),rgba(4,5,17,.7));
312
+ display:flex;
313
+ flex-wrap:wrap;
314
+ gap:1rem;
315
+ align-items:center;
316
+ }
317
+ .timeline-card strong{
318
+ font-size:1rem;
319
+ letter-spacing:.18em;
320
+ text-transform:uppercase;
321
+ color:var(--accent);
322
+ }
323
+ .timeline-card p{
324
+ flex:1;
325
+ min-width:220px;
326
+ color:var(--muted);
327
+ }
328
+ @keyframes float{
329
+ 0%,100%{transform:rotateX(8deg) rotateY(-12deg) translateY(0);}
330
+ 50%{transform:rotateX(14deg) rotateY(-2deg) translateY(-20px);}
331
+ }
332
+ @keyframes scan{
333
+ 0%{transform:translateY(0);}
334
+ 100%{transform:translateY(-100%);}
335
+ }
336
+ @keyframes orbit{
337
+ from{transform:translate(-50%,-50%) rotateX(70deg) rotateZ(0deg);}
338
+ to{transform:translate(-50%,-50%) rotateX(70deg) rotateZ(360deg);}
339
+ }
340
+ @media(max-width:640px){
341
+ .topbar{flex-direction:column;gap:.6rem;}
342
+ .stats{flex-direction:column;}
343
+ .timeline-card{flex-direction:column;align-items:flex-start;}
344
+ .holobox{zoom:.85;}
345
+ }
346
+ </style>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
347
  </head>
348
  <body>
349
+ <header class="topbar">
350
+ <div class="logo">NEURO<span>ONE</span></div>
351
+ <nav>
352
+ <a href="#features">Pulse</a>
353
+ <a href="#specs">Quantum Core</a>
354
+ <a href="https://huggingface.co/spaces/akhaliq/anycoder" target="_blank">Built with anycoder</a>
355
+ </nav>
356
+ </header>
357
+ <main>
358
+ <section class="hero">
359
+ <div class="blurb">
360
+ <h1>World’s Most Advanced Neuro-Adaptive Mobile</h1>
361
+ <p>Experience the symbiosis of biomimetic intelligence and tactile engineering. NeuroOne synchronizes quantum-grade neurolinks, 8D haptics, and photonic cooling inside a liquid-lucent monobody. Crafted for pioneers of the next cognition frontier.</p>
362
+ <div class="cta">
363
+ <button class="primary">Pre-Launch Access</button>
364
+ <button class="ghost">See the Neural Flow</button>
365
+ </div>
366
+ <div class="stats">
367
+ <div class="stat">
368
+ <h3>1.2ms</h3>
369
+ <small>Neuro latency</small>
370
  </div>
371
+ <div class="stat">
372
+ <h3>98%</h3>
373
+ <small>Bio-sync accuracy</small>
 
 
 
 
 
 
 
374
  </div>
375
+ <div class="stat">
376
+ <h3>72hr</h3>
377
+ <small>Quantum endurance</small>
 
 
 
 
378
  </div>
379
+ </div>
380
+ </div>
381
+ <div class="scene" id="scene">
382
+ <div class="glow-orbit">
383
+ <div class="glow-node"></div>
384
+ </div>
385
+ <div class="holobox" id="holobox">
386
+ <div class="side-rail"></div>
387
+ <div class="camera"></div>
388
+ <div class="sensors">
389
+ <span></span><span></span><span></span>
 
 
 
 
 
 
 
 
 
 
 
 
390
  </div>
391
+ <div class="display">
392
+ <div class="matrix"></div>
393
+ <canvas id="galaxy"></canvas>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
394
  </div>
395
+ </div>
396
+ </div>
397
+ </section>
398
+
399
+ <section class="feature-wrap" id="features">
400
+ <div class="feature-grid">
401
+ <article class="feature-card">
402
+ <h4>NeuroLattice OS</h4>
403
+ <p>Adaptive operating system that bends to neural intent patterns, learning every micro-expression for instantaneous action.</p>
404
+ <span>01</span>
405
+ </article>
406
+ <article class="feature-card">
407
+ <h4>Photonic Core</h4>
408
+ <p>Tri-photon chambers actively refract heat into light shards, enabling relentless performance with zero throttling.</p>
409
+ <span>02</span>
410
+ </article>
411
+ <article class="feature-card">
412
+ <h4>8D HoloSound</h4>
413
+ <p>Atmospheric audio engine that maps sound into volumetric space, projecting lifelike acoustic halos around you.</p>
414
+ <span>03</span>
415
+ </article>
416
+ <article class="feature-card">
417
+ <h4>BioSculpt Chassis</h4>
418
+ <p>Liquid-titanium skin with self-repairing lattice that morphs its grip temperature to your biometric signature.</p>
419
+ <span>04</span>
420
+ </article>
421
+ </div>
422
+ </section>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
423
 
424
+ <section class="timeline" id="specs">
425
+ <div class="timeline-card">
426
+ <strong>Quantum Pulse</strong>
427
+ <p>Trinary neural accelerators deliver decision throughput at 9.3 trillion ops/sec while sipping less than 2W.</p>
428
+ </div>
429
+ <div class="timeline-card">
430
+ <strong>Aurora Mesh</strong>
431
+ <p>Dynamic antenna array unfolds in nanoseconds to lock multi-spectrum signals from LEO mesh to deep-underground relays.</p>
432
+ </div>
433
+ <div class="timeline-card">
434
+ <strong>Sentient Shield</strong>
435
+ <p>On-device lattice firewall predicts threat vectors eight moves ahead with self-mutating encryption keys.</p>
436
+ </div>
437
+ </section>
438
+ </main>
439
+
440
+ <script>
441
+ const holobox=document.getElementById('holobox');
442
+ const scene=document.getElementById('scene');
443
+ scene.addEventListener('pointermove',e=>{
444
+ const rect=scene.getBoundingClientRect();
445
+ const x=(e.clientX-rect.left)/rect.width-0.5;
446
+ const y=(e.clientY-rect.top)/rect.height-0.5;
447
+ holobox.style.transform=`rotateX(${(y*-20)+10}deg) rotateY(${(x*30)-10}deg) translateY(${y*-20}px)`;
448
+ });
449
+ scene.addEventListener('pointerleave',()=>{
450
+ holobox.style.transform='';
451
+ });
452
+ const canvas=document.getElementById('galaxy');
453
+ const ctx=canvas.getContext('2d');
454
+ function resize(){
455
+ canvas.width=canvas.offsetWidth;
456
+ canvas.height=canvas.offsetHeight;
457
+ }
458
+ resize();
459
+ window.addEventListener('resize',resize);
460
+ const particles=Array.from({length:120},()=>({
461
+ x:Math.random(),
462
+ y:Math.random(),
463
+ z:Math.random(),
464
+ speed:0.001+Math.random()*0.002
465
+ }));
466
+ function draw(){
467
+ ctx.clearRect(0,0,canvas.width,canvas.height);
468
+ particles.forEach(p=>{
469
+ p.z-=p.speed;
470
+ if(p.z<=0){
471
+ p.z=1;
472
+ p.x=Math.random();
473
+ p.y=Math.random();
474
+ }
475
+ const scale=1/p.z;
476
+ const x=(p.x-0.5)*canvas.width*scale+canvas.width/2;
477
+ const y=(p.y-0.5)*canvas.height*scale+canvas.height/2;
478
+ const size=scale*2;
479
+ ctx.fillStyle=`rgba(123,255,254,${Math.min(1,scale)})`;
480
+ ctx.beginPath();
481
+ ctx.arc(x,y,size,0,Math.PI*2);
482
+ ctx.fill();
483
+ });
484
+ requestAnimationFrame(draw);
485
+ }
486
+ draw();
487
+ </script>
488
  </body>
489
  </html>