Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Future Vision Pro - The Future of Spatial Computing</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet"> | |
| <style> | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| background-color: #000; | |
| color: #fff; | |
| overflow-x: hidden; | |
| scroll-behavior: smooth; | |
| } | |
| .hero-video { | |
| width: 100%; | |
| height: 100vh; | |
| object-fit: cover; | |
| position: relative; | |
| z-index: 1; | |
| } | |
| .gradient-overlay { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%); | |
| z-index: 2; | |
| } | |
| .product-display { | |
| perspective: 1000px; | |
| } | |
| .product-rotate { | |
| transform-style: preserve-3d; | |
| animation: rotate 20s infinite linear; | |
| } | |
| @keyframes rotate { | |
| 0% { transform: rotateY(0deg); } | |
| 100% { transform: rotateY(360deg); } | |
| } | |
| .parallax-section { | |
| background-attachment: fixed; | |
| background-position: center; | |
| background-repeat: no-repeat; | |
| background-size: cover; | |
| min-height: 100vh; | |
| position: relative; | |
| } | |
| .glass-effect { | |
| background: rgba(255, 255, 255, 0.05); | |
| backdrop-filter: blur(10px); | |
| -webkit-backdrop-filter: blur(10px); | |
| border-radius: 16px; | |
| border: 1px solid rgba(255, 255, 255, 0.1); | |
| } | |
| .scroll-indicator { | |
| animation: bounce 2s infinite; | |
| } | |
| @keyframes bounce { | |
| 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} | |
| 40% {transform: translateY(-20px);} | |
| 60% {transform: translateY(-10px);} | |
| } | |
| .fade-in { | |
| opacity: 0; | |
| transform: translateY(20px); | |
| transition: opacity 0.6s ease-out, transform 0.6s ease-out; | |
| } | |
| .fade-in.visible { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| .float-animation { | |
| animation: float 6s ease-in-out infinite; | |
| } | |
| @keyframes float { | |
| 0% { transform: translateY(0px); } | |
| 50% { transform: translateY(-20px); } | |
| 100% { transform: translateY(0px); } | |
| } | |
| .pulse { | |
| animation: pulse 2s infinite; | |
| } | |
| @keyframes pulse { | |
| 0% { transform: scale(1); } | |
| 50% { transform: scale(1.05); } | |
| 100% { transform: scale(1); } | |
| } | |
| .video-container { | |
| position: relative; | |
| overflow: hidden; | |
| border-radius: 24px; | |
| box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.1); | |
| } | |
| .video-overlay { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%); | |
| z-index: 2; | |
| } | |
| .tech-spec { | |
| transition: all 0.3s ease; | |
| } | |
| .tech-spec:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1); | |
| } | |
| .feature-card { | |
| transition: all 0.3s ease; | |
| } | |
| .feature-card:hover { | |
| transform: scale(1.03); | |
| } | |
| .glow-text { | |
| text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); | |
| } | |
| .scroll-snap { | |
| scroll-snap-type: y mandatory; | |
| } | |
| .scroll-snap > section { | |
| scroll-snap-align: start; | |
| } | |
| </style> | |
| </head> | |
| <body class="scroll-snap"> | |
| <!-- Navigation --> | |
| <nav class="fixed w-full z-50 glass-effect"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex justify-between h-16 items-center"> | |
| <div class="flex-shrink-0 flex items-center"> | |
| <span class="text-white text-xl font-bold">FUTURE</span> | |
| </div> | |
| <div class="hidden md:block"> | |
| <div class="ml-10 flex items-baseline space-x-8"> | |
| <a href="#" class="text-gray-300 hover:text-white px-3 py-2 text-sm font-medium">Store</a> | |
| <a href="#vision-pro" class="text-gray-300 hover:text-white px-3 py-2 text-sm font-medium">Future Vision Pro</a> | |
| <a href="#glasses-pro" class="text-gray-300 hover:text-white px-3 py-2 text-sm font-medium">Future Glasses Pro</a> | |
| <a href="#tech" class="text-gray-300 hover:text-white px-3 py-2 text-sm font-medium">Technology</a> | |
| <a href="#" class="text-gray-300 hover:text-white px-3 py-2 text-sm font-medium">Support</a> | |
| </div> | |
| </div> | |
| <div class="hidden md:block"> | |
| <div class="ml-4 flex items-center md:ml-6"> | |
| <button class="bg-gray-800 p-1 rounded-full text-gray-400 hover:text-white focus:outline-none"> | |
| <span class="sr-only">View cart</span> | |
| <i class="fas fa-shopping-bag h-6 w-6"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section class="relative h-screen overflow-hidden"> | |
| <video autoplay muted loop class="hero-video"> | |
| <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"> | |
| </video> | |
| <div class="gradient-overlay"></div> | |
| <div class="absolute inset-0 flex items-center justify-center z-10"> | |
| <div class="text-center px-4"> | |
| <h1 class="text-6xl md:text-8xl font-bold mb-4 glow-text">Future Vision Pro</h1> | |
| <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> | |
| <div class="flex justify-center space-x-4"> | |
| <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> | |
| <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> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="absolute bottom-10 left-0 right-0 text-center z-10 scroll-indicator"> | |
| <a href="#vision-pro"><i class="fas fa-chevron-down text-white text-2xl"></i></a> | |
| </div> | |
| </section> | |
| <!-- Product Showcase --> | |
| <section id="vision-pro" class="py-20 bg-black min-h-screen flex items-center"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center mb-20 fade-in"> | |
| <h2 class="text-4xl md:text-5xl font-bold mb-4">Future Vision Pro</h2> | |
| <p class="text-xl text-gray-300 max-w-3xl mx-auto">The most advanced spatial computing device ever created.</p> | |
| </div> | |
| <div class="product-display flex justify-center mb-20"> | |
| <div class="w-full md:w-2/3 product-rotate float-animation"> | |
| <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"> | |
| </div> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8 text-center"> | |
| <div class="glass-effect p-8 rounded-2xl feature-card fade-in"> | |
| <div class="text-5xl mb-4 text-blue-400"> | |
| <i class="fas fa-eye"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">Ultra-High Resolution</h3> | |
| <p class="text-gray-300">More pixels than a 4K TV for each eye, delivering stunning clarity.</p> | |
| </div> | |
| <div class="glass-effect p-8 rounded-2xl feature-card fade-in" style="transition-delay: 0.2s;"> | |
| <div class="text-5xl mb-4 text-purple-400"> | |
| <i class="fas fa-microchip"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">M3 Neural Engine</h3> | |
| <p class="text-gray-300">Our most powerful chip ever, designed specifically for spatial computing.</p> | |
| </div> | |
| <div class="glass-effect p-8 rounded-2xl feature-card fade-in" style="transition-delay: 0.4s;"> | |
| <div class="text-5xl mb-4 text-green-400"> | |
| <i class="fas fa-hand-pointer"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">Intuitive Controls</h3> | |
| <p class="text-gray-300">Navigate with just your eyes, hands, and voice. No controllers needed.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Specifications Table --> | |
| <section class="py-20 bg-gray-900 min-h-screen flex items-center"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center mb-20 fade-in"> | |
| <h2 class="text-4xl md:text-5xl font-bold mb-4">Technical Specifications</h2> | |
| <p class="text-xl text-gray-300 max-w-3xl mx-auto">Engineered for extraordinary performance</p> | |
| </div> | |
| <div class="glass-effect p-8 rounded-2xl fade-in"> | |
| <table class="spec-table"> | |
| <thead> | |
| <tr> | |
| <th>Category</th> | |
| <th>Specification</th> | |
| </tr> | |
| </thead> | |
| <tbody> | |
| <tr> | |
| <td>Display</td> | |
| <td>Dual micro-OLED, 8K per eye (7680 × 4320), 120Hz refresh rate, HDR</td> | |
| </tr> | |
| <tr> | |
| <td>Processor</td> | |
| <td>Custom M3 chip with 16-core CPU, 40-core GPU, 32-core Neural Engine</td> | |
| </tr> | |
| <tr> | |
| <td>Memory</td> | |
| <td>24GB unified memory</td> | |
| </tr> | |
| <tr> | |
| <td>Storage</td> | |
| <td>1TB, 2TB, or 4TB SSD options</td> | |
| </tr> | |
| <tr> | |
| <td>Audio</td> | |
| <td>Spatial Audio with dynamic head tracking, built-in directional speakers</td> | |
| </tr> | |
| <tr> | |
| <td>Sensors</td> | |
| <td>12 cameras, 5 sensors, LiDAR scanner, TrueDepth camera, eye tracking</td> | |
| </tr> | |
| <tr> | |
| <td>Connectivity</td> | |
| <td>Wi-Fi 6E, Bluetooth 5.3, Ultra Wideband, Thread</td> | |
| </tr> | |
| <tr> | |
| <td>Battery</td> | |
| <td>Up to 6 hours continuous use, external battery pack with 2-hour fast charge</td> | |
| </tr> | |
| <tr> | |
| <td>Weight</td> | |
| <td>450 grams (headset only), 650 grams (with battery)</td> | |
| </tr> | |
| <tr> | |
| <td>OS</td> | |
| <td>FutureOS 2.0 with spatial computing framework</td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Immersive Experience --> | |
| <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');"> | |
| <div class="absolute inset-0 bg-black bg-opacity-50"></div> | |
| <div class="relative z-10 min-h-screen flex items-center"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20"> | |
| <div class="md:w-1/2 fade-in"> | |
| <h2 class="text-4xl md:text-6xl font-bold mb-6">Immersive Experiences</h2> | |
| <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> | |
| <a href="#" class="inline-flex items-center text-white text-lg font-medium"> | |
| Learn more about experiences <i class="fas fa-chevron-right ml-2"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Use Cases Section --> | |
| <section class="py-20 bg-black min-h-screen flex items-center"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center mb-20 fade-in"> | |
| <h2 class="text-4xl md:text-5xl font-bold mb-4">How You'll Use It</h2> | |
| <p class="text-xl text-gray-300 max-w-3xl mx-auto">Future Vision Pro transforms how you work, play, and connect.</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center mb-12"> | |
| <div class="fade-in"> | |
| <h3 class="text-3xl font-bold mb-4">Work</h3> | |
| <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> | |
| <div class="video-container"> | |
| <video autoplay muted loop class="w-full"> | |
| <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"> | |
| </video> | |
| <div class="video-overlay"></div> | |
| </div> | |
| </div> | |
| <div class="fade-in" style="transition-delay: 0.2s;"> | |
| <h3 class="text-3xl font-bold mb-4">Entertainment</h3> | |
| <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> | |
| <div class="video-container"> | |
| <video autoplay muted loop class="w-full"> | |
| <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"> | |
| </video> | |
| <div class="video-overlay"></div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center"> | |
| <div class="fade-in" style="transition-delay: 0.4s;"> | |
| <h3 class="text-3xl font-bold mb-4">Design</h3> | |
| <p class="text-xl text-gray-300 mb-6">Manipulate 3D models with your hands. Sketch in midair. Visualize architectural designs at scale.</p> | |
| <div class="video-container"> | |
| <video autoplay muted loop class="w-full"> | |
| <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"> | |
| </video> | |
| <div class="video-overlay"></div> | |
| </div> | |
| </div> | |
| <div class="fade-in" style="transition-delay: 0.6s;"> | |
| <h3 class="text-3xl font-bold mb-4">Connect</h3> | |
| <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> | |
| <div class="video-container"> | |
| <video autoplay muted loop class="w-full"> | |
| <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"> | |
| </video> | |
| <div class="video-overlay"></div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Glasses Pro Section --> | |
| <section id="glasses-pro" class="py-20 bg-gray-900 min-h-screen flex items-center"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center mb-20 fade-in"> | |
| <h2 class="text-4xl md:text-5xl font-bold mb-4">Future Glasses Pro 2.0</h2> | |
| <p class="text-xl text-gray-300 max-w-3xl mx-auto">Our most advanced smart glasses, reimagined.</p> | |
| </div> | |
| <div class="flex flex-col md:flex-row items-center gap-12 mb-20"> | |
| <div class="md:w-1/2 fade-in"> | |
| <div class="product-display"> | |
| <div class="product-rotate float-animation"> | |
| <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"> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 fade-in" style="transition-delay: 0.3s;"> | |
| <h3 class="text-3xl font-bold mb-6">Lightweight Design, Powerful Performance</h3> | |
| <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> | |
| <div class="grid grid-cols-2 gap-6"> | |
| <div class="glass-effect p-6 rounded-xl tech-spec"> | |
| <div class="text-blue-400 text-3xl mb-3"> | |
| <i class="fas fa-bolt"></i> | |
| </div> | |
| <h4 class="font-semibold mb-1">F3 Neural Engine</h4> | |
| <p class="text-sm text-gray-300">For seamless AR performance</p> | |
| </div> | |
| <div class="glass-effect p-6 rounded-xl tech-spec"> | |
| <div class="text-purple-400 text-3xl mb-3"> | |
| <i class="fas fa-camera"></i> | |
| </div> | |
| <h4 class="font-semibold mb-1">12MP Cameras</h4> | |
| <p class="text-sm text-gray-300">For high-quality passthrough</p> | |
| </div> | |
| <div class="glass-effect p-6 rounded-xl tech-spec"> | |
| <div class="text-green-400 text-3xl mb-3"> | |
| <i class="fas fa-volume-up"></i> | |
| </div> | |
| <h4 class="font-semibold mb-1">Spatial Audio</h4> | |
| <p class="text-sm text-gray-300">Immersive directional sound</p> | |
| </div> | |
| <div class="glass-effect p-6 rounded-xl tech-spec"> | |
| <div class="text-yellow-400 text-3xl mb-3"> | |
| <i class="fas fa-battery-full"></i> | |
| </div> | |
| <h4 class="font-semibold mb-1">All-Day Battery</h4> | |
| <p class="text-sm text-gray-300">Up to 18 hours of use</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="video-container fade-in" style="transition-delay: 0.6s;"> | |
| <video autoplay muted loop class="w-full"> | |
| <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"> | |
| </video> | |
| <div class="video-overlay"></div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Technology Section --> | |
| <section id="tech" class="py-20 bg-black min-h-screen flex items-center"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center mb-20 fade-in"> | |
| <h2 class="text-4xl md:text-5xl font-bold mb-4">Breakthrough Technology</h2> | |
| <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> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center mb-20"> | |
| <div class="fade-in"> | |
| <h3 class="text-3xl font-bold mb-4">Advanced Displays</h3> | |
| <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> | |
| <div class="glass-effect p-6 rounded-xl inline-block"> | |
| <div class="flex items-center"> | |
| <div class="text-blue-400 text-2xl mr-3"> | |
| <i class="fas fa-tv"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold">23 million pixels</h4> | |
| <p class="text-sm text-gray-300">Per eye</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="fade-in" style="transition-delay: 0.2s;"> | |
| <div class="video-container"> | |
| <video autoplay muted loop class="w-full"> | |
| <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"> | |
| </video> | |
| <div class="video-overlay"></div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center mb-20"> | |
| <div class="order-2 md:order-1 fade-in" style="transition-delay: 0.4s;"> | |
| <div class="video-container"> | |
| <video autoplay muted loop class="w-full"> | |
| <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"> | |
| </video> | |
| <div class="video-overlay"></div> | |
| </div> | |
| </div> | |
| <div class="order-1 md:order-2 fade-in" style="transition-delay: 0.6s;"> | |
| <h3 class="text-3xl font-bold mb-4">Revolutionary Input System</h3> | |
| <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> | |
| <div class="grid grid-cols-2 gap-4"> | |
| <div class="glass-effect p-4 rounded-lg"> | |
| <div class="text-purple-400 text-xl mb-2"> | |
| <i class="fas fa-eye"></i> | |
| </div> | |
| <h4 class="font-semibold text-sm">Eye Tracking</h4> | |
| <p class="text-xs text-gray-300">High-speed cameras track your gaze</p> | |
| </div> | |
| <div class="glass-effect p-4 rounded-lg"> | |
| <div class="text-green-400 text-xl mb-2"> | |
| <i class="fas fa-hand-paper"></i> | |
| </div> | |
| <h4 class="font-semibold text-sm">Hand Gestures</h4> | |
| <p class="text-xs text-gray-300">Natural interactions with your hands</p> | |
| </div> | |
| <div class="glass-effect p-4 rounded-lg"> | |
| <div class="text-yellow-400 text-xl mb-2"> | |
| <i class="fas fa-microphone"></i> | |
| </div> | |
| <h4 class="font-semibold text-sm">Voice Control</h4> | |
| <p class="text-xs text-gray-300">Speak commands naturally</p> | |
| </div> | |
| <div class="glass-effect p-4 rounded-lg"> | |
| <div class="text-red-400 text-xl mb-2"> | |
| <i class="fas fa-memory"></i> | |
| </div> | |
| <h4 class="font-semibold text-sm">Neural Engine</h4> | |
| <p class="text-xs text-gray-300">Processes inputs instantly</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center"> | |
| <div class="fade-in"> | |
| <h3 class="text-3xl font-bold mb-4">Spatial Audio</h3> | |
| <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> | |
| <div class="glass-effect p-6 rounded-xl inline-block"> | |
| <div class="flex items-center"> | |
| <div class="text-green-400 text-2xl mr-3"> | |
| <i class="fas fa-headphones"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold">Room Adaptation</h4> | |
| <p class="text-sm text-gray-300">Sound adjusts to your environment</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="fade-in" style="transition-delay: 0.2s;"> | |
| <div class="video-container"> | |
| <video autoplay muted loop class="w-full"> | |
| <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"> | |
| </video> | |
| <div class="video-overlay"></div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Comparison Section --> | |
| <section id="comparison" class="py-20 px-4"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="text-center mb-16 fade-in"> | |
| <h2 class="text-4xl font-bold mb-4">Detailed Comparison</h2> | |
| <p class="text-xl text-gray-300 max-w-3xl mx-auto">See how these products compare across key specifications</p> | |
| </div> | |
| <div class="glass-effect p-8 rounded-2xl fade-in"> | |
| <table class="spec-table"> | |
| <thead> | |
| <tr> | |
| <th>Feature</th> | |
| <th>Future Vision Pro</th> | |
| <th>Future Glasses Pro</th> | |
| <th>Apple Vision Pro</th> | |
| <th>Meta Smart Glasses</th> | |
| </tr> | |
| </thead> | |
| <tbody> | |
| <!-- Display --> | |
| <tr> | |
| <td>Display Technology</td> | |
| <td>Dual micro-OLED 8K <span class="comparison-badge best">Best</span></td> | |
| <td>Single micro-OLED 4K</td> | |
| <td>Dual micro-OLED 4K <span class="comparison-badge good">Good</span></td> | |
| <td>Single LED display</td> | |
| </tr> | |
| <!-- Resolution --> | |
| <tr> | |
| <td>Resolution</td> | |
| <td>7680 × 4320 per eye <span class="comparison-badge best">Best</span></td> | |
| <td>3840 × 2160</td> | |
| <td>3840 × 2160 per eye <span class="comparison-badge good">Good</span></td> | |
| <td>640 × 480</td> | |
| </tr> | |
| <!-- Processor --> | |
| <tr> | |
| <td>Processor</td> | |
| <td>M3 Neural Engine <span class="comparison-badge best">Best</span></td> | |
| <td>M2 Neural Engine</td> | |
| <td>M2 with R1 <span class="comparison-badge good">Good</span></td> | |
| <td>Qualcomm Snapdragon</td> | |
| </tr> | |
| <!-- Field of View --> | |
| <tr> | |
| <td>Field of View</td> | |
| <td>120° <span class="comparison-badge best">Best</span></td> | |
| <td>80°</td> | |
| <td>100° <span class="comparison-badge good">Good</span></td> | |
| <td>30°</td> | |
| </tr> | |
| <!-- Refresh Rate --> | |
| <tr> | |
| <td>Refresh Rate</td> | |
| <td>120Hz <span class="comparison-badge best">Best</span></td> | |
| <td>90Hz</td> | |
| <td>90Hz <span class="comparison-badge equal">Equal</span></td> | |
| <td>60Hz</td> | |
| </tr> | |
| <!-- Audio --> | |
| <tr> | |
| <td>Audio</td> | |
| <td>Spatial Audio with room adaptation <span class="comparison-badge best">Best</span></td> | |
| <td>Spatial Audio</td> | |
| <td>Spatial Audio <span class="comparison-badge equal">Equal</span></td> | |
| <td>Open-ear speakers</td> | |
| </tr> | |
| <!-- Controls --> | |
| <tr> | |
| <td>Controls</td> | |
| <td>Eye, hand, and voice <span class="comparison-badge best">Best</span></td> | |
| <td>Touch and voice</td> | |
| <td>Eye, hand, and voice <span class="comparison-badge equal">Equal</span></td> | |
| <td>Touch and voice</td> | |
| </tr> | |
| <!-- Battery Life --> | |
| <tr> | |
| <td>Battery Life</td> | |
| <td>6 hours</td> | |
| <td>18 hours <span class="comparison-badge best">Best</span></td> | |
| <td>2 hours (external battery) <span class="comparison-badge good">Good</span></td> | |
| <td>6 hours</td> | |
| </tr> | |
| <!-- Weight --> | |
| <tr> | |
| <td>Weight</td> | |
| <td>450g (headset)</td> | |
| <td>150g <span class="comparison-badge best">Best</span></td> | |
| <td>450g (headset) <span class="comparison-badge equal">Equal</span></td> | |
| <td>50g</td> | |
| </tr> | |
| <!-- Price --> | |
| <tr> | |
| <td>Price</td> | |
| <td>₹50,000</td> | |
| <td>₹45,000 <span class="comparison-badge best">Best</span></td> | |
| <td>$3,499 (~₹2.9L)</td> | |
| <td>$299 (~₹25,000) <span class="comparison-badge good">Good</span></td> | |
| </tr> | |
| <!-- Use Case --> | |
| <tr> | |
| <td>Primary Use Case</td> | |
| <td>Professional, immersive experiences <span class="comparison-badge best">Best</span></td> | |
| <td>Everyday AR</td> | |
| <td>Professional, immersive experiences <span class="comparison-badge equal">Equal</span></td> | |
| <td>Basic notifications, photos</td> | |
| </tr> | |
| <!-- AR/VR --> | |
| <tr> | |
| <td>AR/VR Capabilities</td> | |
| <td>Full AR/VR <span class="comparison-badge best">Best</span></td> | |
| <td>AR only</td> | |
| <td>Full AR/VR <span class="comparison-badge equal">Equal</span></td> | |
| <td>Basic AR</td> | |
| </tr> | |
| <!-- Ecosystem --> | |
| <tr> | |
| <td>Ecosystem</td> | |
| <td>Future OS apps <span class="comparison-badge good">Good</span></td> | |
| <td>Future OS apps</td> | |
| <td>Apple ecosystem <span class="comparison-badge best">Best</span></td> | |
| <td>Meta apps</td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| </div> | |
| <!-- Product Comparison --> | |
| <section id="buy" class="py-20 bg-gray-900 min-h-screen flex items-center"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center mb-20 fade-in"> | |
| <h2 class="text-4xl md:text-5xl font-bold mb-4">Choose Your Future</h2> | |
| <p class="text-xl text-gray-300 max-w-3xl mx-auto">Two extraordinary products. One incredible ecosystem.</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-12"> | |
| <div class="glass-effect p-8 rounded-2xl feature-card fade-in"> | |
| <div class="flex justify-center mb-8"> | |
| <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"> | |
| </div> | |
| <h3 class="text-2xl font-bold mb-2">Future Vision Pro</h3> | |
| <p class="text-gray-300 mb-6">The ultimate spatial computing experience with our most advanced technologies.</p> | |
| <div class="text-3xl font-bold mb-6">₹50,000</div> | |
| <div class="mb-8"> | |
| <div class="flex items-center mb-2"> | |
| <i class="fas fa-check-circle text-green-400 mr-2"></i> | |
| <span>Ultra-high-resolution display system</span> | |
| </div> | |
| <div class="flex items-center mb-2"> | |
| <i class="fas fa-check-circle text-green-400 mr-2"></i> | |
| <span>M3 Neural Engine</span> | |
| </div> | |
| <div class="flex items-center mb-2"> | |
| <i class="fas fa-check-circle text-green-400 mr-2"></i> | |
| <span>Advanced Spatial Audio</span> | |
| </div> | |
| <div class="flex items-center mb-2"> | |
| <i class="fas fa-check-circle text-green-400 mr-2"></i> | |
| <span>Eye tracking and hand controls</span> | |
| </div> | |
| <div class="flex items-center mb-2"> | |
| <i class="fas fa-check-circle text-green-400 mr-2"></i> | |
| <span>Full AR/VR capabilities</span> | |
| </div> | |
| <div class="flex items-center mb-2"> | |
| <i class="fas fa-check-circle text-green-400 mr-2"></i> | |
| <span>3D camera for spatial photos</span> | |
| </div> | |
| </div> | |
| <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> | |
| </div> | |
| <div class="glass-effect p-8 rounded-2xl feature-card fade-in" style="transition-delay: 0.2s;"> | |
| <div class="flex justify-center mb-8"> | |
| <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"> | |
| </div> | |
| <h3 class="text-2xl font-bold mb-2">Future Glasses Pro 2.0</h3> | |
| <p class="text-gray-300 mb-6">Our most advanced smart glasses with premium features at an incredible value.</p> | |
| <div class="text-3xl font-bold mb-6">₹45,000</div> | |
| <div class="mb-8"> | |
| <div class="flex items-center mb-2"> | |
| <i class="fas fa-check-circle text-green-400 mr-2"></i> | |
| <span>High-resolution micro-OLED displays</span> | |
| </div> | |
| <div class="flex items-center mb-2"> | |
| <i class="fas fa-check-circle text-green-400 mr-2"></i> | |
| <span>F3 Neural Engine</span> | |
| </div> | |
| <div class="flex items-center mb-2"> | |
| <i class="fas fa-check-circle text-green-400 mr-2"></i> | |
| <span>Spatial Audio</span> | |
| </div> | |
| <div class="flex items-center mb-2"> | |
| <i class="fas fa-check-circle text-green-400 mr-2"></i> | |
| <span>Voice and touch controls</span> | |
| </div> | |
| <div class="flex items-center mb-2"> | |
| <i class="fas fa-check-circle text-green-400 mr-2"></i> | |
| <span>Augmented Reality focus</span> | |
| </div> | |
| <div class="flex items-center mb-2"> | |
| <i class="fas fa-check-circle text-green-400 mr-2"></i> | |
| <span>Lightweight all-day design</span> | |
| </div> | |
| </div> | |
| <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> | |
| </div> | |
| </div> | |
| <div class="mt-20 text-center fade-in" style="transition-delay: 0.4s;"> | |
| <h3 class="text-2xl font-bold mb-6">Need help choosing?</h3> | |
| <a href="#" class="inline-flex items-center text-blue-400 text-lg font-medium"> | |
| Compare both products <i class="fas fa-chevron-right ml-2"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-black py-12"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8 mb-8"> | |
| <div> | |
| <h4 class="text-white text-sm font-semibold mb-4">Shop and Learn</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Store</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Future Vision Pro</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Future Glasses Pro</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Accessories</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-white text-sm font-semibold mb-4">Services</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Future Care</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Software Updates</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Developer</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-white text-sm font-semibold mb-4">Account</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Manage Your Account</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Order Status</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Shopping Help</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-white text-sm font-semibold mb-4">About Future</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Newsroom</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Investors</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Ethics & Compliance</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white text-sm">Contact Future</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 pt-8"> | |
| <div class="flex flex-col md:flex-row justify-between items-center"> | |
| <div class="text-gray-400 text-sm mb-4 md:mb-0"> | |
| Copyright © 2023 Future Inc. All rights reserved. | |
| </div> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-instagram"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-facebook"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-youtube"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Intersection Observer for fade-in animations | |
| const fadeElements = document.querySelectorAll('.fade-in'); | |
| const fadeObserver = new IntersectionObserver((entries) => { | |
| entries.forEach(entry => { | |
| if (entry.isIntersecting) { | |
| entry.target.classList.add('visible'); | |
| } | |
| }); | |
| }, { | |
| threshold: 0.1 | |
| }); | |
| fadeElements.forEach(element => { | |
| fadeObserver.observe(element); | |
| }); | |
| // Smooth scrolling for anchor links | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function (e) { | |
| e.preventDefault(); | |
| const targetId = this.getAttribute('href'); | |
| if (targetId === '#') return; | |
| const targetElement = document.querySelector(targetId); | |
| if (targetElement) { | |
| targetElement.scrollIntoView({ | |
| behavior: 'smooth' | |
| }); | |
| } | |
| }); | |
| }); | |
| // Add shadow to navbar on scroll | |
| window.addEventListener('scroll', () => { | |
| const nav = document.querySelector('nav'); | |
| if (window.scrollY > 10) { | |
| nav.classList.add('shadow-lg'); | |
| } else { | |
| nav.classList.remove('shadow-lg'); | |
| } | |
| }); | |
| </script> | |