JamesToth commited on
Commit
302735e
·
verified ·
1 Parent(s): d62a246

Upload 2 files

Browse files
Files changed (1) hide show
  1. index.html +487 -712
index.html CHANGED
@@ -3,35 +3,25 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Future Vision Pro | The Ultimate Spatial Computer</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
8
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
- <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/gsap.min.js"></script>
10
- <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/ScrollTrigger.min.js"></script>
11
  <style>
12
- @import url('https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@300;400;500;600;700;800;900&display=swap');
13
-
14
- * {
15
- margin: 0;
16
- padding: 0;
17
- box-sizing: border-box;
18
- font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
19
- }
20
-
21
  body {
22
- overflow-x: hidden;
23
  background-color: #000;
24
  color: #fff;
 
 
25
  }
26
 
27
  .hero-video {
28
- position: absolute;
29
- top: 0;
30
- left: 0;
31
  width: 100%;
32
  height: 100vh;
33
  object-fit: cover;
34
- z-index: -1;
 
35
  }
36
 
37
  .gradient-overlay {
@@ -39,608 +29,607 @@
39
  top: 0;
40
  left: 0;
41
  width: 100%;
42
- height: 100vh;
43
- background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
44
- z-index: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  }
46
 
47
  .glass-effect {
48
  background: rgba(255, 255, 255, 0.05);
49
  backdrop-filter: blur(10px);
50
  -webkit-backdrop-filter: blur(10px);
 
51
  border: 1px solid rgba(255, 255, 255, 0.1);
52
  }
53
 
54
- .device-3d {
55
- transform-style: preserve-3d;
56
- perspective: 1000px;
57
- }
58
-
59
- .device-screen {
60
- transform: translateZ(20px);
61
- box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
62
  }
63
 
64
- .parallax-element {
65
- will-change: transform;
 
 
66
  }
67
 
68
- .app-icon {
69
- transition: all 0.3s ease;
70
- transform-origin: center;
 
71
  }
72
 
73
- .app-icon:hover {
74
- transform: scale(1.1) translateZ(20px);
 
75
  }
76
 
77
- .eye-tracking-dot {
78
- position: absolute;
79
- width: 10px;
80
- height: 10px;
81
- background-color: rgba(255, 255, 255, 0.8);
82
- border-radius: 50%;
83
- filter: blur(1px);
84
- animation: float 3s infinite ease-in-out;
85
  }
86
 
87
  @keyframes float {
88
- 0%, 100% { transform: translateY(0) translateX(0); }
89
- 50% { transform: translateY(-10px) translateX(5px); }
 
90
  }
91
 
92
- .pulse-ring {
93
- position: absolute;
94
- width: 100%;
95
- height: 100%;
96
- border: 2px solid rgba(255, 255, 255, 0.5);
97
- border-radius: 50%;
98
  animation: pulse 2s infinite;
99
- opacity: 0;
100
  }
101
 
102
  @keyframes pulse {
103
- 0% { transform: scale(0.8); opacity: 0.7; }
104
- 70% { transform: scale(1.2); opacity: 0; }
105
- 100% { transform: scale(0.8); opacity: 0; }
 
 
 
 
 
 
 
106
  }
107
 
108
- .scroll-hint {
109
  position: absolute;
110
- bottom: 40px;
111
- left: 50%;
112
- transform: translateX(-50%);
113
- animation: bounce 2s infinite;
 
 
114
  }
115
 
116
- @keyframes bounce {
117
- 0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
118
- 40% { transform: translateY(-20px) translateX(-50%); }
119
- 60% { transform: translateY(-10px) translateX(-50%); }
120
  }
121
 
122
- .feature-card {
123
- transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
124
- transform-style: preserve-3d;
125
  }
126
 
127
- .feature-card:hover {
128
- transform: translateY(-10px) translateZ(10px);
129
- box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
130
  }
131
 
132
- .spatial-audio-wave {
133
- position: absolute;
134
- width: 100%;
135
- height: 100%;
136
- background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
137
- border-radius: 50%;
138
- animation: expand 3s infinite ease-out;
139
  }
140
 
141
- @keyframes expand {
142
- 0% { transform: scale(0.5); opacity: 1; }
143
- 100% { transform: scale(1.5); opacity: 0; }
144
  }
145
 
146
- .typing-cursor {
147
- display: inline-block;
148
- width: 2px;
149
- height: 24px;
150
- background-color: white;
151
- animation: blink 1s infinite;
152
  }
153
 
154
- @keyframes blink {
155
- 0%, 100% { opacity: 1; }
156
- 50% { opacity: 0; }
157
  }
158
  </style>
159
  </head>
160
- <body class="antialiased">
161
  <!-- Navigation -->
162
- <nav class="fixed w-full z-50 glass-effect py-4 px-6">
163
- <div class="max-w-7xl mx-auto flex justify-between items-center">
164
- <a href="#" class="text-white text-xl font-semibold">
165
- <i class="fab fa-apple mr-2"></i> Vision Pro
166
- </a>
167
- <div class="hidden md:flex space-x-8">
168
- <a href="#overview" class="text-white hover:text-gray-300 transition">Overview</a>
169
- <a href="#features" class="text-white hover:text-gray-300 transition">Features</a>
170
- <a href="#technology" class="text-white hover:text-gray-300 transition">Technology</a>
171
- <a href="#apps" class="text-white hover:text-gray-300 transition">Apps</a>
172
- <a href="#specs" class="text-white hover:text-gray-300 transition">Tech Specs</a>
 
 
 
 
 
 
 
 
 
 
 
 
173
  </div>
174
- <button class="bg-white text-black px-6 py-2 rounded-full font-medium hover:bg-opacity-90 transition">
175
- Buy
176
- </button>
177
  </div>
178
  </nav>
179
 
180
  <!-- Hero Section -->
181
- <section class="relative h-screen flex items-center justify-center overflow-hidden">
182
  <video autoplay muted loop class="hero-video">
183
  <source src="https://www.apple.com/105/media/us/apple-vision-pro/2023/7e268c13-eb22-493d-a860-f0637bacb569/anim/hero/large.mp4" type="video/mp4">
184
  </video>
185
  <div class="gradient-overlay"></div>
186
-
187
- <div class="relative z-10 text-center px-4">
188
- <h1 class="text-5xl md:text-7xl font-bold mb-6">
189
- <span class="inline-block">Welcome to the era of</span>
190
- <span class="inline-block">spatial computing.</span>
191
- </h1>
192
- <p class="text-xl md:text-2xl max-w-3xl mx-auto mb-8">
193
- Future Vision Pro seamlessly blends digital content with your physical space.
194
- <span class="typing-cursor"></span>
195
- </p>
196
- <div class="flex flex-col md:flex-row justify-center gap-4">
197
- <button class="bg-white text-black px-8 py-3 rounded-full font-medium hover:bg-opacity-90 transition flex items-center justify-center">
198
- <i class="fas fa-play-circle mr-2"></i> Watch the film
199
- </button>
200
- <button class="bg-transparent border border-white text-white px-8 py-3 rounded-full font-medium hover:bg-white hover:bg-opacity-10 transition flex items-center justify-center">
201
- <i class="fas fa-mobile-alt mr-2"></i> Take a closer look
202
- </button>
203
  </div>
204
  </div>
205
-
206
- <div class="scroll-hint">
207
- <div class="w-6 h-10 border-2 border-white rounded-full flex items-center justify-center">
208
- <div class="w-1 h-2 bg-white rounded-full animate-bounce"></div>
209
- </div>
210
  </div>
211
  </section>
212
 
213
- <!-- Device Showcase -->
214
- <section id="overview" class="py-20 px-4 relative">
215
- <div class="max-w-7xl mx-auto">
216
- <div class="text-center mb-20">
217
- <h2 class="text-4xl md:text-6xl font-bold mb-6">Future Vision Pro</h2>
218
- <p class="text-xl md:text-2xl max-w-4xl mx-auto">
219
- The most advanced personal electronics device ever created.
220
- Transform the way you work, collaborate, connect, and entertain.
221
- </p>
222
  </div>
223
 
224
- <div class="flex flex-col lg:flex-row items-center justify-center gap-12">
225
- <div class="device-3d relative w-full max-w-lg">
226
- <div class="relative">
227
- <img src="https://www.apple.com/v/apple-vision-pro/a/images/overview/hero/hero_base__bco6tv0mzxxq_large.jpg"
228
- alt="Future Vision Pro" class="w-full h-auto">
229
- <div class="device-screen absolute inset-0 overflow-hidden">
230
- <video autoplay muted loop class="w-full h-full object-cover">
231
- <source src="https://www.apple.com/105/media/us/apple-vision-pro/2023/7e268c13-eb22-493d-a860-f0637bacb569/anim/experience-spatial/large.mp4" type="video/mp4">
232
- </video>
233
- </div>
234
  </div>
235
-
236
- <!-- Eye tracking dots -->
237
- <div class="eye-tracking-dot" style="top: 45%; left: 45%;"></div>
238
- <div class="eye-tracking-dot" style="top: 48%; left: 52%;"></div>
239
- <div class="eye-tracking-dot" style="top: 43%; left: 55%;"></div>
240
  </div>
241
-
242
- <div class="max-w-md">
243
- <h3 class="text-3xl font-bold mb-6">A revolutionary spatial computer</h3>
244
- <p class="text-lg mb-6">
245
- Future Vision Pro creates an infinite canvas for apps that scales beyond the boundaries of a traditional display.
246
- Experience digital content like never before.
247
- </p>
248
- <ul class="space-y-4 mb-8">
249
- <li class="flex items-start">
250
- <div class="relative mr-4">
251
- <div class="w-6 h-6 bg-blue-500 rounded-full flex items-center justify-center">
252
- <i class="fas fa-check text-white text-xs"></i>
253
- </div>
254
- <div class="pulse-ring"></div>
255
- </div>
256
- <span>Powered by visionOS, the world's first spatial operating system</span>
257
- </li>
258
- <li class="flex items-start">
259
- <div class="relative mr-4">
260
- <div class="w-6 h-6 bg-blue-500 rounded-full flex items-center justify-center">
261
- <i class="fas fa-check text-white text-xs"></i>
262
- </div>
263
- <div class="pulse-ring"></div>
264
- </div>
265
- <span>More pixels than a 4K TV for each eye</span>
266
- </li>
267
- <li class="flex items-start">
268
- <div class="relative mr-4">
269
- <div class="w-6 h-6 bg-blue-500 rounded-full flex items-center justify-center">
270
- <i class="fas fa-check text-white text-xs"></i>
271
- </div>
272
- <div class="pulse-ring"></div>
273
- </div>
274
- <span>Advanced Spatial Audio with dynamic head tracking</span>
275
- </li>
276
- </ul>
277
- <button class="bg-blue-600 text-white px-6 py-3 rounded-full font-medium hover:bg-blue-700 transition">
278
- Learn more about the technology
279
- </button>
280
  </div>
281
  </div>
282
  </div>
283
  </section>
284
 
285
- <!-- Features Section -->
286
- <section id="features" class="py-20 px-4 bg-black bg-opacity-50">
287
- <div class="max-w-7xl mx-auto">
288
- <div class="text-center mb-16">
289
- <h2 class="text-4xl md:text-6xl font-bold mb-6">Features</h2>
290
- <p class="text-xl md:text-2xl max-w-4xl mx-auto">
291
- Future Vision Pro transforms how you experience entertainment, productivity, and connection.
292
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
293
  </div>
294
 
295
- <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
296
- <!-- Feature 1 -->
297
- <div class="feature-card glass-effect rounded-2xl p-8">
298
- <div class="relative mb-6">
299
- <video autoplay muted loop class="w-full rounded-xl">
300
- <source src="https://www.apple.com/105/media/us/apple-vision-pro/2023/7e268c13-eb22-493d-a860-f0637bacb569/anim/experience-entertainment/large.mp4" type="video/mp4">
 
301
  </video>
302
- </div>
303
- <h3 class="text-2xl font-bold mb-4">Entertainment</h3>
304
- <p class="text-gray-300 mb-4">
305
- Experience movies, shows, and games on a 100-foot screen with Spatial Audio that makes it feel like the sound is coming from all around you.
306
- </p>
307
- <div class="flex items-center text-blue-400">
308
- <span>Learn more</span>
309
- <i class="fas fa-chevron-right ml-2 text-sm"></i>
310
  </div>
311
  </div>
312
-
313
- <!-- Feature 2 -->
314
- <div class="feature-card glass-effect rounded-2xl p-8">
315
- <div class="relative mb-6">
316
- <video autoplay muted loop class="w-full rounded-xl">
317
- <source src="https://www.apple.com/105/media/us/apple-vision-pro/2023/7e268c13-eb22-493d-a860-f0637bacb569/anim/experience-productivity/large.mp4" type="video/mp4">
318
  </video>
 
319
  </div>
320
- <h3 class="text-2xl font-bold mb-4">Productivity</h3>
321
- <p class="text-gray-300 mb-4">
322
- Create the perfect workspace with multiple apps floating in your space. Resize them and place them anywhere you want.
323
- </p>
324
- <div class="flex items-center text-blue-400">
325
- <span>Learn more</span>
326
- <i class="fas fa-chevron-right ml-2 text-sm"></i>
 
 
 
 
 
327
  </div>
328
  </div>
329
-
330
- <!-- Feature 3 -->
331
- <div class="feature-card glass-effect rounded-2xl p-8">
332
- <div class="relative mb-6">
333
- <video autoplay muted loop class="w-full rounded-xl">
334
  <source src="https://www.apple.com/105/media/us/apple-vision-pro/2023/7e268c13-eb22-493d-a860-f0637bacb569/anim/experience-connection/large.mp4" type="video/mp4">
335
  </video>
336
- </div>
337
- <h3 class="text-2xl font-bold mb-4">Connection</h3>
338
- <p class="text-gray-300 mb-4">
339
- Stay connected with FaceTime in spatial environments that make it feel like you're together in the same room.
340
- </p>
341
- <div class="flex items-center text-blue-400">
342
- <span>Learn more</span>
343
- <i class="fas fa-chevron-right ml-2 text-sm"></i>
344
  </div>
345
  </div>
346
  </div>
347
  </div>
348
  </section>
349
 
350
- <!-- Technology Section -->
351
- <section id="technology" class="py-20 px-4 relative overflow-hidden">
352
- <div class="absolute inset-0">
353
- <div class="absolute inset-0 bg-gradient-to-b from-blue-900 to-purple-900 opacity-20"></div>
354
- <div class="absolute inset-0 bg-[url('https://www.apple.com/v/apple-vision-pro/a/images/overview/technology/technology_connections_endframe__d6ioq0wxp5oi_large.jpg')] bg-cover bg-center opacity-10"></div>
355
- </div>
356
-
357
- <div class="max-w-7xl mx-auto relative">
358
- <div class="text-center mb-20">
359
- <h2 class="text-4xl md:text-6xl font-bold mb-6">Breakthrough Technology</h2>
360
- <p class="text-xl md:text-2xl max-w-4xl mx-auto">
361
- Future Vision Pro is packed with innovations that create an unprecedented experience.
362
- </p>
363
  </div>
364
 
365
- <div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
366
- <div>
367
- <div class="mb-8">
368
- <h3 class="text-3xl font-bold mb-4">Micro-OLED Display System</h3>
369
- <p class="text-lg">
370
- Two displays the size of a postage stamp contain 23 million pixels — more than a 4K TV for each eye — for stunning clarity.
371
- </p>
372
  </div>
373
-
374
- <div class="mb-8">
375
- <h3 class="text-3xl font-bold mb-4">Advanced Spatial Audio</h3>
376
- <div class="relative w-32 h-32 mb-4">
377
- <div class="absolute inset-0 flex items-center justify-center">
378
- <div class="w-16 h-16 bg-white bg-opacity-10 rounded-full flex items-center justify-center">
379
- <i class="fas fa-headphones text-white text-2xl"></i>
380
- </div>
381
  </div>
382
- <div class="spatial-audio-wave"></div>
383
- <div class="spatial-audio-wave" style="animation-delay: 0.5s;"></div>
384
- <div class="spatial-audio-wave" style="animation-delay: 1s;"></div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
385
  </div>
386
- <p class="text-lg">
387
- Dual-driver audio pods deliver personalized sound while environmental sensors adjust to your surroundings.
388
- </p>
389
- </div>
390
-
391
- <div>
392
- <h3 class="text-3xl font-bold mb-4">R1 Chip</h3>
393
- <p class="text-lg">
394
- Our new custom silicon delivers real-time processing of camera, sensor, and microphone inputs for a lag-free experience.
395
- </p>
396
  </div>
397
  </div>
398
-
399
- <div class="relative">
400
- <img src="https://www.apple.com/v/apple-vision-pro/a/images/overview/technology/technology_hardware__fmy8dq5x12qe_large.jpg"
401
- alt="Future Vision Pro Technology" class="w-full h-auto rounded-2xl">
402
- <div class="absolute -inset-8 border border-white border-opacity-20 rounded-2xl pointer-events-none"></div>
403
- </div>
 
404
  </div>
405
  </div>
406
  </section>
407
 
408
- <!-- Apps Section -->
409
- <section id="apps" class="py-20 px-4 bg-black bg-opacity-70">
410
- <div class="max-w-7xl mx-auto">
411
- <div class="text-center mb-16">
412
- <h2 class="text-4xl md:text-6xl font-bold mb-6">visionOS Apps</h2>
413
- <p class="text-xl md:text-2xl max-w-4xl mx-auto">
414
- A new platform for spatial computing with familiar apps redesigned for Future Vision Pro.
415
- </p>
416
  </div>
417
 
418
- <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 gap-6 mb-16">
419
- <div class="app-icon glass-effect rounded-2xl p-6 flex flex-col items-center">
420
- <div class="w-16 h-16 bg-blue-500 rounded-xl flex items-center justify-center mb-3">
421
- <i class="fas fa-photo-film text-white text-2xl"></i>
 
 
 
 
 
 
 
 
 
 
422
  </div>
423
- <span class="text-center">Photos</span>
424
  </div>
425
- <div class="app-icon glass-effect rounded-2xl p-6 flex flex-col items-center">
426
- <div class="w-16 h-16 bg-purple-500 rounded-xl flex items-center justify-center mb-3">
427
- <i class="fas fa-film text-white text-2xl"></i>
 
 
 
428
  </div>
429
- <span class="text-center">TV</span>
430
  </div>
431
- <div class="app-icon glass-effect rounded-2xl p-6 flex flex-col items-center">
432
- <div class="w-16 h-16 bg-red-500 rounded-xl flex items-center justify-center mb-3">
433
- <i class="fas fa-music text-white text-2xl"></i>
 
 
 
 
 
 
434
  </div>
435
- <span class="text-center">Music</span>
436
  </div>
437
- <div class="app-icon glass-effect rounded-2xl p-6 flex flex-col items-center">
438
- <div class="w-16 h-16 bg-green-500 rounded-xl flex items-center justify-center mb-3">
439
- <i class="fas fa-safari text-white text-2xl"></i>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
440
  </div>
441
- <span class="text-center">Safari</span>
442
  </div>
443
- <div class="app-icon glass-effect rounded-2xl p-6 flex flex-col items-center">
444
- <div class="w-16 h-16 bg-yellow-500 rounded-xl flex items-center justify-center mb-3">
445
- <i class="fas fa-envelope text-white text-2xl"></i>
 
 
 
 
 
 
 
 
 
 
 
 
 
446
  </div>
447
- <span class="text-center">Mail</span>
448
  </div>
449
- <div class="app-icon glass-effect rounded-2xl p-6 flex flex-col items-center">
450
- <div class="w-16 h-16 bg-pink-500 rounded-xl flex items-center justify-center mb-3">
451
- <i class="fas fa-message text-white text-2xl"></i>
 
 
 
452
  </div>
453
- <span class="text-center">Messages</span>
454
- </div>
455
- </div>
456
-
457
- <div class="relative rounded-3xl overflow-hidden">
458
- <video autoplay muted loop class="w-full">
459
- <source src="https://www.apple.com/105/media/us/apple-vision-pro/2023/7e268c13-eb22-493d-a860-f0637bacb569/anim/experience-apps/large.mp4" type="video/mp4">
460
- </video>
461
- <div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent"></div>
462
- <div class="absolute bottom-0 left-0 right-0 p-12">
463
- <h3 class="text-3xl md:text-4xl font-bold mb-4">Your apps live in your space</h3>
464
- <p class="text-xl max-w-2xl">
465
- With visionOS, apps can appear anywhere and be any size. Arrange them how you want and bring them closer for more detail.
466
- </p>
467
  </div>
468
  </div>
469
  </div>
470
  </section>
471
 
472
- <!-- Tech Specs -->
473
- <section id="specs" class="py-20 px-4">
474
- <div class="max-w-7xl mx-auto">
475
- <div class="text-center mb-16">
476
- <h2 class="text-4xl md:text-6xl font-bold mb-6">Tech Specs</h2>
 
477
  </div>
478
 
479
- <div class="glass-effect rounded-2xl p-8 md:p-12">
480
- <div class="grid grid-cols-1 md:grid-cols-2 gap-12">
481
- <div>
482
- <h3 class="text-2xl font-bold mb-6">Display</h3>
483
- <ul class="space-y-4">
484
- <li class="flex justify-between border-b border-white border-opacity-10 pb-2">
485
- <span>Display type</span>
486
- <span class="font-medium">Micro-OLED</span>
487
- </li>
488
- <li class="flex justify-between border-b border-white border-opacity-10 pb-2">
489
- <span>Resolution</span>
490
- <span class="font-medium">4K per eye</span>
491
- </li>
492
- <li class="flex justify-between border-b border-white border-opacity-10 pb-2">
493
- <span>Brightness</span>
494
- <span class="font-medium">5000 nits</span>
495
- </li>
496
- <li class="flex justify-between border-b border-white border-opacity-10 pb-2">
497
- <span>Refresh rate</span>
498
- <span class="font-medium">90Hz</span>
499
- </li>
500
- </ul>
501
  </div>
502
-
503
- <div>
504
- <h3 class="text-2xl font-bold mb-6">Performance</h3>
505
- <ul class="space-y-4">
506
- <li class="flex justify-between border-b border-white border-opacity-10 pb-2">
507
- <span>Chip</span>
508
- <span class="font-medium">M2 + R1</span>
509
- </li>
510
- <li class="flex justify-between border-b border-white border-opacity-10 pb-2">
511
- <span>Memory</span>
512
- <span class="font-medium">16GB unified</span>
513
- </li>
514
- <li class="flex justify-between border-b border-white border-opacity-10 pb-2">
515
- <span>Storage</span>
516
- <span class="font-medium">256GB, 512GB, 1TB</span>
517
- </li>
518
- <li class="flex justify-between border-b border-white border-opacity-10 pb-2">
519
- <span>Audio</span>
520
- <span class="font-medium">Spatial Audio</span>
521
- </li>
522
- </ul>
 
 
 
 
 
 
 
523
  </div>
 
524
  </div>
525
 
526
- <div class="mt-12">
527
- <h3 class="text-2xl font-bold mb-6">Sensors</h3>
528
- <div class="grid grid-cols-2 md:grid-cols-4 gap-4">
529
- <div class="glass-effect rounded-xl p-4 flex flex-col items-center">
530
- <div class="w-12 h-12 bg-blue-500 bg-opacity-20 rounded-full flex items-center justify-center mb-2">
531
- <i class="fas fa-eye text-blue-400"></i>
532
- </div>
533
- <span class="text-sm text-center">Eye tracking</span>
 
 
 
534
  </div>
535
- <div class="glass-effect rounded-xl p-4 flex flex-col items-center">
536
- <div class="w-12 h-12 bg-purple-500 bg-opacity-20 rounded-full flex items-center justify-center mb-2">
537
- <i class="fas fa-hand-pointer text-purple-400"></i>
538
- </div>
539
- <span class="text-sm text-center">Hand tracking</span>
540
  </div>
541
- <div class="glass-effect rounded-xl p-4 flex flex-col items-center">
542
- <div class="w-12 h-12 bg-green-500 bg-opacity-20 rounded-full flex items-center justify-center mb-2">
543
- <i class="fas fa-vr-cardboard text-green-400"></i>
544
- </div>
545
- <span class="text-sm text-center">Depth sensing</span>
546
  </div>
547
- <div class="glass-effect rounded-xl p-4 flex flex-col items-center">
548
- <div class="w-12 h-12 bg-yellow-500 bg-opacity-20 rounded-full flex items-center justify-center mb-2">
549
- <i class="fas fa-lightbulb text-yellow-400"></i>
550
- </div>
551
- <span class="text-sm text-center">LiDAR scanner</span>
 
 
 
 
 
 
552
  </div>
553
  </div>
 
554
  </div>
555
  </div>
556
- </div>
557
- </section>
558
-
559
- <!-- Final CTA -->
560
- <section class="py-32 px-4 relative overflow-hidden">
561
- <div class="absolute inset-0">
562
- <div class="absolute inset-0 bg-gradient-to-b from-blue-900 to-purple-900 opacity-30"></div>
563
- <div class="absolute inset-0 bg-[url('https://www.apple.com/v/apple-vision-pro/a/images/overview/hero/hero_endframe__dzong3g5x4qe_large.jpg')] bg-cover bg-center opacity-20"></div>
564
- </div>
565
-
566
- <div class="max-w-4xl mx-auto text-center relative">
567
- <h2 class="text-4xl md:text-6xl font-bold mb-8">Welcome to the future of computing.</h2>
568
- <p class="text-xl md:text-2xl mb-12">
569
- Future Vision Pro will be available early next year starting at $3,499.
570
- </p>
571
- <div class="flex flex-col md:flex-row justify-center gap-4">
572
- <button class="bg-white text-black px-8 py-4 rounded-full font-medium hover:bg-opacity-90 transition flex items-center justify-center">
573
- <i class="fas fa-shopping-bag mr-3"></i> Order now
574
- </button>
575
- <button class="bg-transparent border border-white text-white px-8 py-4 rounded-full font-medium hover:bg-white hover:bg-opacity-10 transition flex items-center justify-center">
576
- <i class="fas fa-map-marker-alt mr-3"></i> Find a store
577
- </button>
578
  </div>
579
  </div>
580
  </section>
581
 
582
  <!-- Footer -->
583
- <footer class="bg-black bg-opacity-80 py-12 px-4">
584
- <div class="max-w-7xl mx-auto">
585
- <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
586
  <div>
587
- <h4 class="text-lg font-semibold mb-4">Shop and Learn</h4>
588
  <ul class="space-y-2">
589
- <li><a href="#" class="text-gray-400 hover:text-white transition">Store</a></li>
590
- <li><a href="#" class="text-gray-400 hover:text-white transition">Mac</a></li>
591
- <li><a href="#" class="text-gray-400 hover:text-white transition">iPad</a></li>
592
- <li><a href="#" class="text-gray-400 hover:text-white transition">iPhone</a></li>
593
- <li><a href="#" class="text-gray-400 hover:text-white transition">Vision Pro</a></li>
594
  </ul>
595
  </div>
596
  <div>
597
- <h4 class="text-lg font-semibold mb-4">Services</h4>
598
  <ul class="space-y-2">
599
- <li><a href="#" class="text-gray-400 hover:text-white transition">Future Music</a></li>
600
- <li><a href="#" class="text-gray-400 hover:text-white transition">Future TV+</a></li>
601
- <li><a href="#" class="text-gray-400 hover:text-white transition">Future Arcade</a></li>
602
- <li><a href="#" class="text-gray-400 hover:text-white transition">iCloud</a></li>
603
- <li><a href="#" class="text-gray-400 hover:text-white transition">Future One</a></li>
604
  </ul>
605
  </div>
606
  <div>
607
- <h4 class="text-lg font-semibold mb-4">Future Store</h4>
608
  <ul class="space-y-2">
609
- <li><a href="#" class="text-gray-400 hover:text-white transition">Find a Store</a></li>
610
- <li><a href="#" class="text-gray-400 hover:text-white transition">Genius Bar</a></li>
611
- <li><a href="#" class="text-gray-400 hover:text-white transition">Today at Future</a></li>
612
- <li><a href="#" class="text-gray-400 hover:text-white transition">Future Camp</a></li>
613
- <li><a href="#" class="text-gray-400 hover:text-white transition">Future Trade In</a></li>
614
  </ul>
615
  </div>
616
  <div>
617
- <h4 class="text-lg font-semibold mb-4">About Future</h4>
618
  <ul class="space-y-2">
619
- <li><a href="#" class="text-gray-400 hover:text-white transition">Newsroom</a></li>
620
- <li><a href="#" class="text-gray-400 hover:text-white transition">Future Leadership</a></li>
621
- <li><a href="#" class="text-gray-400 hover:text-white transition">Career Opportunities</a></li>
622
- <li><a href="#" class="text-gray-400 hover:text-white transition">Investors</a></li>
623
- <li><a href="#" class="text-gray-400 hover:text-white transition">Ethics & Compliance</a></li>
624
  </ul>
625
  </div>
626
  </div>
627
 
628
- <div class="pt-8 border-t border-white border-opacity-10">
629
  <div class="flex flex-col md:flex-row justify-between items-center">
630
- <p class="text-gray-400 mb-4 md:mb-0">
631
  Copyright © 2023 Future Inc. All rights reserved.
632
- </p>
633
  <div class="flex space-x-6">
634
- <a href="#" class="text-gray-400 hover:text-white transition">
635
- <i class="fab fa-facebook-f"></i>
636
- </a>
637
- <a href="#" class="text-gray-400 hover:text-white transition">
638
  <i class="fab fa-twitter"></i>
639
  </a>
640
- <a href="#" class="text-gray-400 hover:text-white transition">
641
  <i class="fab fa-instagram"></i>
642
  </a>
643
- <a href="#" class="text-gray-400 hover:text-white transition">
 
 
 
644
  <i class="fab fa-youtube"></i>
645
  </a>
646
  </div>
@@ -650,263 +639,49 @@
650
  </footer>
651
 
652
  <script>
653
- document.addEventListener('DOMContentLoaded', function() {
654
- // Typing animation
655
- const phrases = [
656
- "Experience digital content like never before.",
657
- "Transform your space into a personal theater.",
658
- "Redefine how you work and play.",
659
- "The most advanced personal electronics device ever created."
660
- ];
661
-
662
- let currentPhrase = 0;
663
- let currentChar = 0;
664
- let isDeleting = false;
665
- const typingCursor = document.querySelector('.typing-cursor');
666
- const typingElement = document.querySelector('.typing-cursor').previousSibling;
667
-
668
- function typeWriter() {
669
- const fullTxt = phrases[currentPhrase];
670
-
671
- if (isDeleting) {
672
- typingElement.textContent = fullTxt.substring(0, currentChar - 1);
673
- currentChar--;
674
- } else {
675
- typingElement.textContent = fullTxt.substring(0, currentChar + 1);
676
- currentChar++;
677
- }
678
-
679
- if (!isDeleting && currentChar === fullTxt.length) {
680
- isDeleting = true;
681
- setTimeout(typeWriter, 2000);
682
- } else if (isDeleting && currentChar === 0) {
683
- isDeleting = false;
684
- currentPhrase = (currentPhrase + 1) % phrases.length;
685
- setTimeout(typeWriter, 500);
686
- } else {
687
- const typingSpeed = isDeleting ? 50 : 100;
688
- setTimeout(typeWriter, typingSpeed);
689
  }
690
- }
691
-
692
- setTimeout(typeWriter, 1000);
693
-
694
- // GSAP animations
695
- gsap.registerPlugin(ScrollTrigger);
696
-
697
- // Hero section animations
698
- gsap.from('nav', {
699
- duration: 1,
700
- y: -50,
701
- opacity: 0,
702
- ease: "power2.out"
703
- });
704
-
705
- gsap.from('.hero-video', {
706
- duration: 2,
707
- scale: 1.2,
708
- ease: "power2.inOut"
709
- });
710
-
711
- const heroText = document.querySelectorAll('.hero h1 span');
712
- heroText.forEach((text, i) => {
713
- gsap.from(text, {
714
- duration: 1,
715
- y: 50,
716
- opacity: 0,
717
- delay: 0.3 + i * 0.2,
718
- ease: "power3.out"
719
- });
720
- });
721
-
722
- gsap.from('.hero p', {
723
- duration: 1,
724
- y: 30,
725
- opacity: 0,
726
- delay: 0.8,
727
- ease: "power2.out"
728
- });
729
-
730
- gsap.from('.hero button', {
731
- duration: 1,
732
- y: 30,
733
- opacity: 0,
734
- delay: 1,
735
- ease: "power2.out",
736
- stagger: 0.2
737
- });
738
-
739
- // Device showcase animations
740
- gsap.from('.device-3d', {
741
- scrollTrigger: {
742
- trigger: '.device-3d',
743
- start: "top 80%",
744
- toggleActions: "play none none none"
745
- },
746
- duration: 1.5,
747
- y: 100,
748
- opacity: 0,
749
- ease: "power3.out"
750
- });
751
-
752
- gsap.from('.device-3d + div', {
753
- scrollTrigger: {
754
- trigger: '.device-3d + div',
755
- start: "top 80%",
756
- toggleActions: "play none none none"
757
- },
758
- duration: 1.5,
759
- y: 100,
760
- opacity: 0,
761
- delay: 0.3,
762
- ease: "power3.out"
763
- });
764
-
765
- // Features cards animation
766
- gsap.from('.feature-card', {
767
- scrollTrigger: {
768
- trigger: '.feature-card',
769
- start: "top 80%",
770
- toggleActions: "play none none none"
771
- },
772
- duration: 0.8,
773
- y: 50,
774
- opacity: 0,
775
- stagger: 0.2,
776
- ease: "back.out(1.7)"
777
- });
778
-
779
- // Technology section animations
780
- gsap.from('#technology h2, #technology p', {
781
- scrollTrigger: {
782
- trigger: '#technology',
783
- start: "top 80%",
784
- toggleActions: "play none none none"
785
- },
786
- duration: 1,
787
- y: 50,
788
- opacity: 0,
789
- stagger: 0.2,
790
- ease: "power2.out"
791
  });
792
-
793
- gsap.from('#technology .grid > div', {
794
- scrollTrigger: {
795
- trigger: '#technology .grid',
796
- start: "top 80%",
797
- toggleActions: "play none none none"
798
- },
799
- duration: 1,
800
- x: -50,
801
- opacity: 0,
802
- stagger: 0.3,
803
- ease: "power2.out"
804
- });
805
-
806
- gsap.from('#technology .grid > div + div', {
807
- scrollTrigger: {
808
- trigger: '#technology .grid',
809
- start: "top 80%",
810
- toggleActions: "play none none none"
811
- },
812
- duration: 1,
813
- x: 50,
814
- opacity: 0,
815
- delay: 0.3,
816
- ease: "power2.out"
817
- });
818
-
819
- // Apps section animations
820
- gsap.from('.app-icon', {
821
- scrollTrigger: {
822
- trigger: '.app-icon',
823
- start: "top 80%",
824
- toggleActions: "play none none none"
825
- },
826
- duration: 0.5,
827
- scale: 0,
828
- opacity: 0,
829
- stagger: 0.1,
830
- ease: "back.out(1.7)"
831
- });
832
-
833
- // Final CTA animations
834
- gsap.from('#specs + section h2', {
835
- scrollTrigger: {
836
- trigger: '#specs + section',
837
- start: "top 80%",
838
- toggleActions: "play none none none"
839
- },
840
- duration: 1,
841
- y: 50,
842
- opacity: 0,
843
- ease: "power2.out"
844
- });
845
-
846
- gsap.from('#specs + section p', {
847
- scrollTrigger: {
848
- trigger: '#specs + section',
849
- start: "top 80%",
850
- toggleActions: "play none none none"
851
- },
852
- duration: 1,
853
- y: 50,
854
- opacity: 0,
855
- delay: 0.2,
856
- ease: "power2.out"
857
- });
858
-
859
- gsap.from('#specs + section button', {
860
- scrollTrigger: {
861
- trigger: '#specs + section',
862
- start: "top 80%",
863
- toggleActions: "play none none none"
864
- },
865
- duration: 1,
866
- y: 50,
867
- opacity: 0,
868
- delay: 0.4,
869
- stagger: 0.2,
870
- ease: "power2.out"
871
- });
872
-
873
- // Eye tracking dots animation
874
- const dots = document.querySelectorAll('.eye-tracking-dot');
875
- dots.forEach(dot => {
876
- setInterval(() => {
877
- const x = Math.random() * 20 - 10;
878
- const y = Math.random() * 20 - 10;
879
- gsap.to(dot, {
880
- duration: 3,
881
- x: `${x}px`,
882
- y: `${y}px`,
883
- ease: "sine.inOut"
884
- });
885
- }, 3000);
886
- });
887
-
888
- // App icon hover effect
889
- const appIcons = document.querySelectorAll('.app-icon');
890
- appIcons.forEach(icon => {
891
- icon.addEventListener('mouseenter', () => {
892
- gsap.to(icon, {
893
- duration: 0.3,
894
- y: -10,
895
- boxShadow: '0 10px 20px rgba(0,0,0,0.2)',
896
- ease: "power2.out"
897
- });
898
- });
899
 
900
- icon.addEventListener('mouseleave', () => {
901
- gsap.to(icon, {
902
- duration: 0.3,
903
- y: 0,
904
- boxShadow: 'none',
905
- ease: "power2.out"
906
  });
907
- });
908
  });
909
  });
 
 
 
 
 
 
 
 
 
 
910
  </script>
911
- <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=JamesToth/futurevisionpro" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
912
  </html>
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Future Vision Pro - The Future of Spatial Computing</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
8
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
 
10
  <style>
 
 
 
 
 
 
 
 
 
11
  body {
12
+ font-family: 'Inter', sans-serif;
13
  background-color: #000;
14
  color: #fff;
15
+ overflow-x: hidden;
16
+ scroll-behavior: smooth;
17
  }
18
 
19
  .hero-video {
 
 
 
20
  width: 100%;
21
  height: 100vh;
22
  object-fit: cover;
23
+ position: relative;
24
+ z-index: 1;
25
  }
26
 
27
  .gradient-overlay {
 
29
  top: 0;
30
  left: 0;
31
  width: 100%;
32
+ height: 100%;
33
+ background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
34
+ z-index: 2;
35
+ }
36
+
37
+ .product-display {
38
+ perspective: 1000px;
39
+ }
40
+
41
+ .product-rotate {
42
+ transform-style: preserve-3d;
43
+ animation: rotate 20s infinite linear;
44
+ }
45
+
46
+ @keyframes rotate {
47
+ 0% { transform: rotateY(0deg); }
48
+ 100% { transform: rotateY(360deg); }
49
+ }
50
+
51
+ .parallax-section {
52
+ background-attachment: fixed;
53
+ background-position: center;
54
+ background-repeat: no-repeat;
55
+ background-size: cover;
56
+ min-height: 100vh;
57
+ position: relative;
58
  }
59
 
60
  .glass-effect {
61
  background: rgba(255, 255, 255, 0.05);
62
  backdrop-filter: blur(10px);
63
  -webkit-backdrop-filter: blur(10px);
64
+ border-radius: 16px;
65
  border: 1px solid rgba(255, 255, 255, 0.1);
66
  }
67
 
68
+ .scroll-indicator {
69
+ animation: bounce 2s infinite;
 
 
 
 
 
 
70
  }
71
 
72
+ @keyframes bounce {
73
+ 0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
74
+ 40% {transform: translateY(-20px);}
75
+ 60% {transform: translateY(-10px);}
76
  }
77
 
78
+ .fade-in {
79
+ opacity: 0;
80
+ transform: translateY(20px);
81
+ transition: opacity 0.6s ease-out, transform 0.6s ease-out;
82
  }
83
 
84
+ .fade-in.visible {
85
+ opacity: 1;
86
+ transform: translateY(0);
87
  }
88
 
89
+ .float-animation {
90
+ animation: float 6s ease-in-out infinite;
 
 
 
 
 
 
91
  }
92
 
93
  @keyframes float {
94
+ 0% { transform: translateY(0px); }
95
+ 50% { transform: translateY(-20px); }
96
+ 100% { transform: translateY(0px); }
97
  }
98
 
99
+ .pulse {
 
 
 
 
 
100
  animation: pulse 2s infinite;
 
101
  }
102
 
103
  @keyframes pulse {
104
+ 0% { transform: scale(1); }
105
+ 50% { transform: scale(1.05); }
106
+ 100% { transform: scale(1); }
107
+ }
108
+
109
+ .video-container {
110
+ position: relative;
111
+ overflow: hidden;
112
+ border-radius: 24px;
113
+ box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.1);
114
  }
115
 
116
+ .video-overlay {
117
  position: absolute;
118
+ top: 0;
119
+ left: 0;
120
+ width: 100%;
121
+ height: 100%;
122
+ background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
123
+ z-index: 2;
124
  }
125
 
126
+ .tech-spec {
127
+ transition: all 0.3s ease;
 
 
128
  }
129
 
130
+ .tech-spec:hover {
131
+ transform: translateY(-5px);
132
+ box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1);
133
  }
134
 
135
+ .feature-card {
136
+ transition: all 0.3s ease;
 
137
  }
138
 
139
+ .feature-card:hover {
140
+ transform: scale(1.03);
 
 
 
 
 
141
  }
142
 
143
+ .glow-text {
144
+ text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
 
145
  }
146
 
147
+ .scroll-snap {
148
+ scroll-snap-type: y mandatory;
 
 
 
 
149
  }
150
 
151
+ .scroll-snap > section {
152
+ scroll-snap-align: start;
 
153
  }
154
  </style>
155
  </head>
156
+ <body class="scroll-snap">
157
  <!-- Navigation -->
158
+ <nav class="fixed w-full z-50 glass-effect">
159
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
160
+ <div class="flex justify-between h-16 items-center">
161
+ <div class="flex-shrink-0 flex items-center">
162
+ <span class="text-white text-xl font-bold">FUTURE</span>
163
+ </div>
164
+ <div class="hidden md:block">
165
+ <div class="ml-10 flex items-baseline space-x-8">
166
+ <a href="#" class="text-gray-300 hover:text-white px-3 py-2 text-sm font-medium">Store</a>
167
+ <a href="#vision-pro" class="text-gray-300 hover:text-white px-3 py-2 text-sm font-medium">Future Vision Pro</a>
168
+ <a href="#glasses-pro" class="text-gray-300 hover:text-white px-3 py-2 text-sm font-medium">Future Glasses Pro</a>
169
+ <a href="#tech" class="text-gray-300 hover:text-white px-3 py-2 text-sm font-medium">Technology</a>
170
+ <a href="#" class="text-gray-300 hover:text-white px-3 py-2 text-sm font-medium">Support</a>
171
+ </div>
172
+ </div>
173
+ <div class="hidden md:block">
174
+ <div class="ml-4 flex items-center md:ml-6">
175
+ <button class="bg-gray-800 p-1 rounded-full text-gray-400 hover:text-white focus:outline-none">
176
+ <span class="sr-only">View cart</span>
177
+ <i class="fas fa-shopping-bag h-6 w-6"></i>
178
+ </button>
179
+ </div>
180
+ </div>
181
  </div>
 
 
 
182
  </div>
183
  </nav>
184
 
185
  <!-- Hero Section -->
186
+ <section class="relative h-screen overflow-hidden">
187
  <video autoplay muted loop class="hero-video">
188
  <source src="https://www.apple.com/105/media/us/apple-vision-pro/2023/7e268c13-eb22-493d-a860-f0637bacb569/anim/hero/large.mp4" type="video/mp4">
189
  </video>
190
  <div class="gradient-overlay"></div>
191
+ <div class="absolute inset-0 flex items-center justify-center z-10">
192
+ <div class="text-center px-4">
193
+ <h1 class="text-6xl md:text-8xl font-bold mb-4 glow-text">Future Vision Pro</h1>
194
+ <p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto fade-in">Welcome to the era of spatial computing. A revolutionary product that seamlessly blends digital content with your physical space.</p>
195
+ <div class="flex justify-center space-x-4">
196
+ <a href="#buy" class="bg-white text-black px-6 py-3 rounded-full font-medium hover:bg-opacity-90 transition pulse">Buy now</a>
197
+ <a href="#vision-pro" class="text-white border border-white px-6 py-3 rounded-full font-medium hover:bg-white hover:bg-opacity-10 transition">Learn more <i class="fas fa-chevron-right ml-1"></i></a>
198
+ </div>
 
 
 
 
 
 
 
 
 
199
  </div>
200
  </div>
201
+ <div class="absolute bottom-10 left-0 right-0 text-center z-10 scroll-indicator">
202
+ <a href="#vision-pro"><i class="fas fa-chevron-down text-white text-2xl"></i></a>
 
 
 
203
  </div>
204
  </section>
205
 
206
+ <!-- Product Showcase -->
207
+ <section id="vision-pro" class="py-20 bg-black min-h-screen flex items-center">
208
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
209
+ <div class="text-center mb-20 fade-in">
210
+ <h2 class="text-4xl md:text-5xl font-bold mb-4">Future Vision Pro</h2>
211
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">The most advanced spatial computing device ever created.</p>
 
 
 
212
  </div>
213
 
214
+ <div class="product-display flex justify-center mb-20">
215
+ <div class="w-full md:w-2/3 product-rotate float-animation">
216
+ <img src="https://www.apple.com/v/apple-vision-pro/a/images/overview/hero/hero_base__bcofud6brk2m_large.jpg" alt="Future Vision Pro" class="w-full h-auto">
217
+ </div>
218
+ </div>
219
+
220
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8 text-center">
221
+ <div class="glass-effect p-8 rounded-2xl feature-card fade-in">
222
+ <div class="text-5xl mb-4 text-blue-400">
223
+ <i class="fas fa-eye"></i>
224
  </div>
225
+ <h3 class="text-xl font-semibold mb-2">Ultra-High Resolution</h3>
226
+ <p class="text-gray-300">More pixels than a 4K TV for each eye, delivering stunning clarity.</p>
 
 
 
227
  </div>
228
+ <div class="glass-effect p-8 rounded-2xl feature-card fade-in" style="transition-delay: 0.2s;">
229
+ <div class="text-5xl mb-4 text-purple-400">
230
+ <i class="fas fa-microchip"></i>
231
+ </div>
232
+ <h3 class="text-xl font-semibold mb-2">M3 Neural Engine</h3>
233
+ <p class="text-gray-300">Our most powerful chip ever, designed specifically for spatial computing.</p>
234
+ </div>
235
+ <div class="glass-effect p-8 rounded-2xl feature-card fade-in" style="transition-delay: 0.4s;">
236
+ <div class="text-5xl mb-4 text-green-400">
237
+ <i class="fas fa-hand-pointer"></i>
238
+ </div>
239
+ <h3 class="text-xl font-semibold mb-2">Intuitive Controls</h3>
240
+ <p class="text-gray-300">Navigate with just your eyes, hands, and voice. No controllers needed.</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
  </div>
242
  </div>
243
  </div>
244
  </section>
245
 
246
+ <!-- Immersive Experience -->
247
+ <section class="parallax-section min-h-screen" style="background-image: url('https://www.apple.com/v/apple-vision-pro/a/images/overview/experience/immersive__dmb59l0q7v6q_large.jpg');">
248
+ <div class="absolute inset-0 bg-black bg-opacity-50"></div>
249
+ <div class="relative z-10 min-h-screen flex items-center">
250
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20">
251
+ <div class="md:w-1/2 fade-in">
252
+ <h2 class="text-4xl md:text-6xl font-bold mb-6">Immersive Experiences</h2>
253
+ <p class="text-xl md:text-2xl mb-8">Future Vision Pro can transform any room into your own personal theater. Expand your movies, shows, and games up to the perfect size while feeling like you're part of the action with Spatial Audio.</p>
254
+ <a href="#" class="inline-flex items-center text-white text-lg font-medium">
255
+ Learn more about experiences <i class="fas fa-chevron-right ml-2"></i>
256
+ </a>
257
+ </div>
258
+ </div>
259
+ </div>
260
+ </section>
261
+
262
+ <!-- Use Cases Section -->
263
+ <section class="py-20 bg-black min-h-screen flex items-center">
264
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
265
+ <div class="text-center mb-20 fade-in">
266
+ <h2 class="text-4xl md:text-5xl font-bold mb-4">How You'll Use It</h2>
267
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">Future Vision Pro transforms how you work, play, and connect.</p>
268
  </div>
269
 
270
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center mb-12">
271
+ <div class="fade-in">
272
+ <h3 class="text-3xl font-bold mb-4">Work</h3>
273
+ <p class="text-xl text-gray-300 mb-6">Create, collaborate, and get more done with multiple virtual displays that go anywhere. Perfect for professionals who need flexibility.</p>
274
+ <div class="video-container">
275
+ <video autoplay muted loop class="w-full">
276
+ <source src="https://www.apple.com/105/media/us/apple-vision-pro/2023/7e268c13-eb22-493d-a860-f0637bacb569/anim/experience-productivity/large.mp4" type="video/mp4">
277
  </video>
278
+ <div class="video-overlay"></div>
 
 
 
 
 
 
 
279
  </div>
280
  </div>
281
+ <div class="fade-in" style="transition-delay: 0.2s;">
282
+ <h3 class="text-3xl font-bold mb-4">Entertainment</h3>
283
+ <p class="text-xl text-gray-300 mb-6">Watch movies and shows on a screen that feels 100 feet wide with immersive Spatial Audio. Play games that surround you in 3D.</p>
284
+ <div class="video-container">
285
+ <video autoplay muted loop class="w-full">
286
+ <source src="https://www.apple.com/105/media/us/apple-vision-pro/2023/7e268c13-eb22-493d-a860-f0637bacb569/anim/experience-entertainment/large.mp4" type="video/mp4">
287
  </video>
288
+ <div class="video-overlay"></div>
289
  </div>
290
+ </div>
291
+ </div>
292
+
293
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
294
+ <div class="fade-in" style="transition-delay: 0.4s;">
295
+ <h3 class="text-3xl font-bold mb-4">Design</h3>
296
+ <p class="text-xl text-gray-300 mb-6">Manipulate 3D models with your hands. Sketch in midair. Visualize architectural designs at scale.</p>
297
+ <div class="video-container">
298
+ <video autoplay muted loop class="w-full">
299
+ <source src="https://www.apple.com/105/media/us/apple-vision-pro/2023/7e268c13-eb22-493d-a860-f0637bacb569/anim/experience-design/large.mp4" type="video/mp4">
300
+ </video>
301
+ <div class="video-overlay"></div>
302
  </div>
303
  </div>
304
+ <div class="fade-in" style="transition-delay: 0.6s;">
305
+ <h3 class="text-3xl font-bold mb-4">Connect</h3>
306
+ <p class="text-xl text-gray-300 mb-6">Make FaceTime calls where participants appear life-size in your space. Share experiences with others in real time.</p>
307
+ <div class="video-container">
308
+ <video autoplay muted loop class="w-full">
309
  <source src="https://www.apple.com/105/media/us/apple-vision-pro/2023/7e268c13-eb22-493d-a860-f0637bacb569/anim/experience-connection/large.mp4" type="video/mp4">
310
  </video>
311
+ <div class="video-overlay"></div>
 
 
 
 
 
 
 
312
  </div>
313
  </div>
314
  </div>
315
  </div>
316
  </section>
317
 
318
+ <!-- Glasses Pro Section -->
319
+ <section id="glasses-pro" class="py-20 bg-gray-900 min-h-screen flex items-center">
320
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
321
+ <div class="text-center mb-20 fade-in">
322
+ <h2 class="text-4xl md:text-5xl font-bold mb-4">Future Glasses Pro 2.0</h2>
323
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">Our most advanced smart glasses, reimagined.</p>
 
 
 
 
 
 
 
324
  </div>
325
 
326
+ <div class="flex flex-col md:flex-row items-center gap-12 mb-20">
327
+ <div class="md:w-1/2 fade-in">
328
+ <div class="product-display">
329
+ <div class="product-rotate float-animation">
330
+ <img src="https://www.apple.com/v/apple-vision-pro/a/images/overview/hero/hero_endframe__dzong6k9h6uq_large.jpg" alt="Future Glasses Pro 2.0" class="w-full h-auto">
331
+ </div>
 
332
  </div>
333
+ </div>
334
+ <div class="md:w-1/2 fade-in" style="transition-delay: 0.3s;">
335
+ <h3 class="text-3xl font-bold mb-6">Lightweight Design, Powerful Performance</h3>
336
+ <p class="text-xl text-gray-300 mb-8">At just 450 grams, Future Glasses Pro 2.0 delivers an incredible AR experience with all-day comfort. The redesigned form factor is 40% thinner than the previous generation.</p>
337
+ <div class="grid grid-cols-2 gap-6">
338
+ <div class="glass-effect p-6 rounded-xl tech-spec">
339
+ <div class="text-blue-400 text-3xl mb-3">
340
+ <i class="fas fa-bolt"></i>
341
  </div>
342
+ <h4 class="font-semibold mb-1">M2 Neural Engine</h4>
343
+ <p class="text-sm text-gray-300">For seamless AR performance</p>
344
+ </div>
345
+ <div class="glass-effect p-6 rounded-xl tech-spec">
346
+ <div class="text-purple-400 text-3xl mb-3">
347
+ <i class="fas fa-camera"></i>
348
+ </div>
349
+ <h4 class="font-semibold mb-1">12MP Cameras</h4>
350
+ <p class="text-sm text-gray-300">For high-quality passthrough</p>
351
+ </div>
352
+ <div class="glass-effect p-6 rounded-xl tech-spec">
353
+ <div class="text-green-400 text-3xl mb-3">
354
+ <i class="fas fa-volume-up"></i>
355
+ </div>
356
+ <h4 class="font-semibold mb-1">Spatial Audio</h4>
357
+ <p class="text-sm text-gray-300">Immersive directional sound</p>
358
+ </div>
359
+ <div class="glass-effect p-6 rounded-xl tech-spec">
360
+ <div class="text-yellow-400 text-3xl mb-3">
361
+ <i class="fas fa-battery-full"></i>
362
+ </div>
363
+ <h4 class="font-semibold mb-1">All-Day Battery</h4>
364
+ <p class="text-sm text-gray-300">Up to 18 hours of use</p>
365
  </div>
 
 
 
 
 
 
 
 
 
 
366
  </div>
367
  </div>
368
+ </div>
369
+
370
+ <div class="video-container fade-in" style="transition-delay: 0.6s;">
371
+ <video autoplay muted loop class="w-full">
372
+ <source src="https://www.apple.com/105/media/us/apple-vision-pro/2023/7e268c13-eb22-493d-a860-f0637bacb569/anim/glass-pro-demo/large.mp4" type="video/mp4">
373
+ </video>
374
+ <div class="video-overlay"></div>
375
  </div>
376
  </div>
377
  </section>
378
 
379
+ <!-- Technology Section -->
380
+ <section id="tech" class="py-20 bg-black min-h-screen flex items-center">
381
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
382
+ <div class="text-center mb-20 fade-in">
383
+ <h2 class="text-4xl md:text-5xl font-bold mb-4">Breakthrough Technology</h2>
384
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">Future Vision Pro is packed with innovations that create an unprecedented experience.</p>
 
 
385
  </div>
386
 
387
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center mb-20">
388
+ <div class="fade-in">
389
+ <h3 class="text-3xl font-bold mb-4">Advanced Displays</h3>
390
+ <p class="text-xl text-gray-300 mb-6">Custom micro‑OLED displays deliver more pixels than a 4K TV to each eye — for stunning clarity. A specially designed three‑element lens creates the feeling of a display that's everywhere you look.</p>
391
+ <div class="glass-effect p-6 rounded-xl inline-block">
392
+ <div class="flex items-center">
393
+ <div class="text-blue-400 text-2xl mr-3">
394
+ <i class="fas fa-tv"></i>
395
+ </div>
396
+ <div>
397
+ <h4 class="font-semibold">23 million pixels</h4>
398
+ <p class="text-sm text-gray-300">Per eye</p>
399
+ </div>
400
+ </div>
401
  </div>
 
402
  </div>
403
+ <div class="fade-in" style="transition-delay: 0.2s;">
404
+ <div class="video-container">
405
+ <video autoplay muted loop class="w-full">
406
+ <source src="https://www.apple.com/105/media/us/apple-vision-pro/2023/7e268c13-eb22-493d-a860-f0637bacb569/anim/display-technology/large.mp4" type="video/mp4">
407
+ </video>
408
+ <div class="video-overlay"></div>
409
  </div>
 
410
  </div>
411
+ </div>
412
+
413
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center mb-20">
414
+ <div class="order-2 md:order-1 fade-in" style="transition-delay: 0.4s;">
415
+ <div class="video-container">
416
+ <video autoplay muted loop class="w-full">
417
+ <source src="https://www.apple.com/105/media/us/apple-vision-pro/2023/7e268c13-eb22-493d-a860-f0637bacb569/anim/input-controls/large.mp4" type="video/mp4">
418
+ </video>
419
+ <div class="video-overlay"></div>
420
  </div>
 
421
  </div>
422
+ <div class="order-1 md:order-2 fade-in" style="transition-delay: 0.6s;">
423
+ <h3 class="text-3xl font-bold mb-4">Revolutionary Input System</h3>
424
+ <p class="text-xl text-gray-300 mb-6">Future Vision Pro creates an input system unlike anything you've experienced before. Your eyes, hands, and voice become the ultimate controllers — no additional hardware needed.</p>
425
+ <div class="grid grid-cols-2 gap-4">
426
+ <div class="glass-effect p-4 rounded-lg">
427
+ <div class="text-purple-400 text-xl mb-2">
428
+ <i class="fas fa-eye"></i>
429
+ </div>
430
+ <h4 class="font-semibold text-sm">Eye Tracking</h4>
431
+ <p class="text-xs text-gray-300">High-speed cameras track your gaze</p>
432
+ </div>
433
+ <div class="glass-effect p-4 rounded-lg">
434
+ <div class="text-green-400 text-xl mb-2">
435
+ <i class="fas fa-hand-paper"></i>
436
+ </div>
437
+ <h4 class="font-semibold text-sm">Hand Gestures</h4>
438
+ <p class="text-xs text-gray-300">Natural interactions with your hands</p>
439
+ </div>
440
+ <div class="glass-effect p-4 rounded-lg">
441
+ <div class="text-yellow-400 text-xl mb-2">
442
+ <i class="fas fa-microphone"></i>
443
+ </div>
444
+ <h4 class="font-semibold text-sm">Voice Control</h4>
445
+ <p class="text-xs text-gray-300">Speak commands naturally</p>
446
+ </div>
447
+ <div class="glass-effect p-4 rounded-lg">
448
+ <div class="text-red-400 text-xl mb-2">
449
+ <i class="fas fa-memory"></i>
450
+ </div>
451
+ <h4 class="font-semibold text-sm">Neural Engine</h4>
452
+ <p class="text-xs text-gray-300">Processes inputs instantly</p>
453
+ </div>
454
  </div>
 
455
  </div>
456
+ </div>
457
+
458
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
459
+ <div class="fade-in">
460
+ <h3 class="text-3xl font-bold mb-4">Spatial Audio</h3>
461
+ <p class="text-xl text-gray-300 mb-6">Dual-driver audio pods positioned next to each ear deliver personalized Spatial Audio that makes sounds feel like they're coming from all around you. Advanced algorithms analyze your room's acoustic properties to adapt the sound to your space.</p>
462
+ <div class="glass-effect p-6 rounded-xl inline-block">
463
+ <div class="flex items-center">
464
+ <div class="text-green-400 text-2xl mr-3">
465
+ <i class="fas fa-headphones"></i>
466
+ </div>
467
+ <div>
468
+ <h4 class="font-semibold">Room Adaptation</h4>
469
+ <p class="text-sm text-gray-300">Sound adjusts to your environment</p>
470
+ </div>
471
+ </div>
472
  </div>
 
473
  </div>
474
+ <div class="fade-in" style="transition-delay: 0.2s;">
475
+ <div class="video-container">
476
+ <video autoplay muted loop class="w-full">
477
+ <source src="https://www.apple.com/105/media/us/apple-vision-pro/2023/7e268c13-eb22-493d-a860-f0637bacb569/anim/spatial-audio/large.mp4" type="video/mp4">
478
+ </video>
479
+ <div class="video-overlay"></div>
480
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
481
  </div>
482
  </div>
483
  </div>
484
  </section>
485
 
486
+ <!-- Product Comparison -->
487
+ <section id="buy" class="py-20 bg-gray-900 min-h-screen flex items-center">
488
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
489
+ <div class="text-center mb-20 fade-in">
490
+ <h2 class="text-4xl md:text-5xl font-bold mb-4">Choose Your Future</h2>
491
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">Two extraordinary products. One incredible ecosystem.</p>
492
  </div>
493
 
494
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-12">
495
+ <div class="glass-effect p-8 rounded-2xl feature-card fade-in">
496
+ <div class="flex justify-center mb-8">
497
+ <img src="https://www.apple.com/v/apple-vision-pro/a/images/overview/hero/hero_base__bcofud6brk2m_large.jpg" alt="Future Vision Pro" class="h-48 float-animation">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
498
  </div>
499
+ <h3 class="text-2xl font-bold mb-2">Future Vision Pro</h3>
500
+ <p class="text-gray-300 mb-6">The ultimate spatial computing experience with our most advanced technologies.</p>
501
+ <div class="text-3xl font-bold mb-6">₹50,000</div>
502
+ <div class="mb-8">
503
+ <div class="flex items-center mb-2">
504
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
505
+ <span>Ultra-high-resolution display system</span>
506
+ </div>
507
+ <div class="flex items-center mb-2">
508
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
509
+ <span>M3 Neural Engine</span>
510
+ </div>
511
+ <div class="flex items-center mb-2">
512
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
513
+ <span>Advanced Spatial Audio</span>
514
+ </div>
515
+ <div class="flex items-center mb-2">
516
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
517
+ <span>Eye tracking and hand controls</span>
518
+ </div>
519
+ <div class="flex items-center mb-2">
520
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
521
+ <span>Full AR/VR capabilities</span>
522
+ </div>
523
+ <div class="flex items-center mb-2">
524
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
525
+ <span>3D camera for spatial photos</span>
526
+ </div>
527
  </div>
528
+ <a href="#" class="w-full bg-blue-600 hover:bg-blue-700 text-white py-3 px-6 rounded-full font-medium inline-block text-center pulse">Buy</a>
529
  </div>
530
 
531
+ <div class="glass-effect p-8 rounded-2xl feature-card fade-in" style="transition-delay: 0.2s;">
532
+ <div class="flex justify-center mb-8">
533
+ <img src="https://www.apple.com/v/apple-vision-pro/a/images/overview/hero/hero_endframe__dzong6k9h6uq_large.jpg" alt="Future Glasses Pro 2.0" class="h-48 float-animation">
534
+ </div>
535
+ <h3 class="text-2xl font-bold mb-2">Future Glasses Pro 2.0</h3>
536
+ <p class="text-gray-300 mb-6">Our most advanced smart glasses with premium features at an incredible value.</p>
537
+ <div class="text-3xl font-bold mb-6">₹45,000</div>
538
+ <div class="mb-8">
539
+ <div class="flex items-center mb-2">
540
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
541
+ <span>High-resolution micro-OLED displays</span>
542
  </div>
543
+ <div class="flex items-center mb-2">
544
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
545
+ <span>M2 Neural Engine</span>
 
 
546
  </div>
547
+ <div class="flex items-center mb-2">
548
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
549
+ <span>Spatial Audio</span>
 
 
550
  </div>
551
+ <div class="flex items-center mb-2">
552
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
553
+ <span>Voice and touch controls</span>
554
+ </div>
555
+ <div class="flex items-center mb-2">
556
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
557
+ <span>Augmented Reality focus</span>
558
+ </div>
559
+ <div class="flex items-center mb-2">
560
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
561
+ <span>Lightweight all-day design</span>
562
  </div>
563
  </div>
564
+ <a href="#" class="w-full bg-blue-600 hover:bg-blue-700 text-white py-3 px-6 rounded-full font-medium inline-block text-center pulse">Buy</a>
565
  </div>
566
  </div>
567
+
568
+ <div class="mt-20 text-center fade-in" style="transition-delay: 0.4s;">
569
+ <h3 class="text-2xl font-bold mb-6">Need help choosing?</h3>
570
+ <a href="#" class="inline-flex items-center text-blue-400 text-lg font-medium">
571
+ Compare both products <i class="fas fa-chevron-right ml-2"></i>
572
+ </a>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
573
  </div>
574
  </div>
575
  </section>
576
 
577
  <!-- Footer -->
578
+ <footer class="bg-black py-12">
579
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
580
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8 mb-8">
581
  <div>
582
+ <h4 class="text-white text-sm font-semibold mb-4">Shop and Learn</h4>
583
  <ul class="space-y-2">
584
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Store</a></li>
585
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Future Vision Pro</a></li>
586
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Future Glasses Pro</a></li>
587
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Accessories</a></li>
 
588
  </ul>
589
  </div>
590
  <div>
591
+ <h4 class="text-white text-sm font-semibold mb-4">Services</h4>
592
  <ul class="space-y-2">
593
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Future Care</a></li>
594
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Software Updates</a></li>
595
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Developer</a></li>
 
 
596
  </ul>
597
  </div>
598
  <div>
599
+ <h4 class="text-white text-sm font-semibold mb-4">Account</h4>
600
  <ul class="space-y-2">
601
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Manage Your Account</a></li>
602
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Order Status</a></li>
603
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Shopping Help</a></li>
 
 
604
  </ul>
605
  </div>
606
  <div>
607
+ <h4 class="text-white text-sm font-semibold mb-4">About Future</h4>
608
  <ul class="space-y-2">
609
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Newsroom</a></li>
610
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Investors</a></li>
611
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Ethics & Compliance</a></li>
612
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Contact Future</a></li>
 
613
  </ul>
614
  </div>
615
  </div>
616
 
617
+ <div class="border-t border-gray-800 pt-8">
618
  <div class="flex flex-col md:flex-row justify-between items-center">
619
+ <div class="text-gray-400 text-sm mb-4 md:mb-0">
620
  Copyright © 2023 Future Inc. All rights reserved.
621
+ </div>
622
  <div class="flex space-x-6">
623
+ <a href="#" class="text-gray-400 hover:text-white">
 
 
 
624
  <i class="fab fa-twitter"></i>
625
  </a>
626
+ <a href="#" class="text-gray-400 hover:text-white">
627
  <i class="fab fa-instagram"></i>
628
  </a>
629
+ <a href="#" class="text-gray-400 hover:text-white">
630
+ <i class="fab fa-facebook"></i>
631
+ </a>
632
+ <a href="#" class="text-gray-400 hover:text-white">
633
  <i class="fab fa-youtube"></i>
634
  </a>
635
  </div>
 
639
  </footer>
640
 
641
  <script>
642
+ // Intersection Observer for fade-in animations
643
+ const fadeElements = document.querySelectorAll('.fade-in');
644
+
645
+ const fadeObserver = new IntersectionObserver((entries) => {
646
+ entries.forEach(entry => {
647
+ if (entry.isIntersecting) {
648
+ entry.target.classList.add('visible');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
649
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
650
  });
651
+ }, {
652
+ threshold: 0.1
653
+ });
654
+
655
+ fadeElements.forEach(element => {
656
+ fadeObserver.observe(element);
657
+ });
658
+
659
+ // Smooth scrolling for anchor links
660
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
661
+ anchor.addEventListener('click', function (e) {
662
+ e.preventDefault();
663
+
664
+ const targetId = this.getAttribute('href');
665
+ if (targetId === '#') return;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
666
 
667
+ const targetElement = document.querySelector(targetId);
668
+ if (targetElement) {
669
+ targetElement.scrollIntoView({
670
+ behavior: 'smooth'
 
 
671
  });
672
+ }
673
  });
674
  });
675
+
676
+ // Add shadow to navbar on scroll
677
+ window.addEventListener('scroll', () => {
678
+ const nav = document.querySelector('nav');
679
+ if (window.scrollY > 10) {
680
+ nav.classList.add('shadow-lg');
681
+ } else {
682
+ nav.classList.remove('shadow-lg');
683
+ }
684
+ });
685
  </script>
686
+ <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=MoiMoi-01/future-vision-pro" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
687
  </html>