File size: 25,752 Bytes
94b6381 3bef61e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MindForge - Mental Performance Platform</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;900&display=swap');
body {
font-family: 'Montserrat', sans-serif;
overflow-x: hidden;
}
.gradient-bg {
background: linear-gradient(135deg, #b91c1c 0%, #d97706 50%, #000000 100%);
}
.vanta-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.3;
}
.nav-item {
position: relative;
}
.nav-item:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background: #d97706;
transition: width 0.3s;
}
.nav-item:hover:after {
width: 100%;
}
.tool-card {
transition: all 0.3s ease;
transform: translateY(0);
}
.tool-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.dropdown-content {
display: none;
position: absolute;
right: 0;
min-width: 200px;
z-index: 1;
}
.dropdown:hover .dropdown-content {
display: block;
}
</style>
</head>
<body class="bg-black text-white">
<div class="vanta-container" id="vanta-bg"></div>
<!-- Navigation -->
<nav class="gradient-bg px-6 py-4 sticky top-0 z-50 shadow-lg">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center space-x-2">
<i data-feather="activity" class="text-yellow-500"></i>
<span class="text-2xl font-bold">MINDFORGE</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#" class="nav-item">Home</a>
<a href="#vr-ar" class="nav-item">VR/AR</a>
<a href="#tools" class="nav-item">Mental Tools</a>
<a href="#pricing" class="nav-item">Pricing</a>
<a href="#about" class="nav-item">About</a>
</div>
<div class="relative dropdown">
<button class="flex items-center space-x-2 bg-yellow-600 hover:bg-yellow-700 px-4 py-2 rounded-lg transition">
<i data-feather="settings"></i>
<span>Options</span>
</button>
<div class="dropdown-content bg-gray-900 rounded-lg mt-2 p-4 shadow-2xl">
<div class="mb-4">
<label class="block text-sm font-medium mb-2">Language</label>
<select class="w-full bg-gray-800 border border-gray-700 rounded-md px-3 py-2">
<option>English</option>
<option>Spanish</option>
<option>French</option>
<option>German</option>
<option>Chinese</option>
</select>
</div>
<div class="mb-4">
<label class="block text-sm font-medium mb-2">Currency</label>
<select class="w-full bg-gray-800 border border-gray-700 rounded-md px-3 py-2">
<option>USD</option>
<option>EUR</option>
<option>GBP</option>
<option>JPY</option>
</select>
</div>
<div>
<label class="block text-sm font-medium mb-2">Events Calendar</label>
<input type="date" class="w-full bg-gray-800 border border-gray-700 rounded-md px-3 py-2">
</div>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="relative h-screen flex items-center justify-center px-6">
<div class="text-center max-w-4xl mx-auto z-10">
<h1 class="text-5xl md:text-7xl font-bold mb-6 leading-tight">
LOCK IN. <span class="text-yellow-500">AMPLIFY.</span> DOMINATE.
</h1>
<p class="text-xl md:text-2xl mb-10 text-gray-300">
The ultimate mental performance platform to build unshakable confidence and focus for your field.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-red-700 hover:bg-red-800 text-white px-8 py-4 rounded-full text-lg font-bold transition transform hover:scale-105">
START YOUR JOURNEY
</button>
<button class="bg-yellow-600 hover:bg-yellow-700 text-white px-8 py-4 rounded-full text-lg font-bold transition transform hover:scale-105">
VR/AR DEMO
</button>
</div>
</div>
<div class="absolute bottom-10 left-1/2 transform -translate-x-1/2">
<i data-feather="chevron-down" class="animate-bounce text-yellow-500 w-10 h-10"></i>
</div>
</section>
<!-- VR/AR Section -->
<section id="vr-ar" class="py-20 px-6 bg-gradient-to-b from-black to-gray-900">
<div class="container mx-auto">
<h2 class="text-4xl font-bold mb-16 text-center">
<span class="border-b-4 border-yellow-500 pb-2">IMMERSIVE EXPERIENCES</span>
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
<div>
<h3 class="text-3xl font-bold mb-6">Virtual Reality Training</h3>
<p class="text-gray-300 mb-8 text-lg leading-relaxed">
Step into our VR simulations designed to prepare you for high-pressure situations. Whether it's public speaking, athletic performance, or critical decision-making, our VR environments help you practice and perfect your mental approach.
</p>
<ul class="space-y-4 mb-8">
<li class="flex items-start">
<i data-feather="check-circle" class="text-yellow-500 mr-3 mt-1"></i>
<span>360° pressure simulations</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-yellow-500 mr-3 mt-1"></i>
<span>Biometric feedback in real-time</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-yellow-500 mr-3 mt-1"></i>
<span>Custom scenarios for your field</span>
</li>
</ul>
<button class="bg-yellow-600 hover:bg-yellow-700 text-white px-8 py-3 rounded-full text-lg font-bold transition">
EXPLORE VR
</button>
</div>
<div class="relative">
<img src="http://static.photos/technology/1024x576/42" alt="VR Headset" class="rounded-xl shadow-2xl transform hover:scale-105 transition">
<div class="absolute -bottom-6 -right-6 bg-yellow-500 text-black px-4 py-2 rounded-lg font-bold">
NEW
</div>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center mt-24">
<div class="order-2 md:order-1">
<img src="http://static.photos/technology/1024x576/24" alt="AR Visualization" class="rounded-xl shadow-2xl transform hover:scale-105 transition">
</div>
<div class="order-1 md:order-2">
<h3 class="text-3xl font-bold mb-6">Augmented Reality Tools</h3>
<p class="text-gray-300 mb-8 text-lg leading-relaxed">
Our AR applications overlay confidence-building visualizations and real-time performance data onto your environment, helping you maintain focus and composure in any situation.
</p>
<ul class="space-y-4 mb-8">
<li class="flex items-start">
<i data-feather="check-circle" class="text-yellow-500 mr-3 mt-1"></i>
<span>Real-world mental overlays</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-yellow-500 mr-3 mt-1"></i>
<span>Focus zone visualizations</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-yellow-500 mr-3 mt-1"></i>
<span>Performance analytics in AR</span>
</li>
</ul>
<button class="bg-yellow-600 hover:bg-yellow-700 text-white px-8 py-3 rounded-full text-lg font-bold transition">
EXPLORE AR
</button>
</div>
</div>
</div>
</section>
<!-- Mental Tools Section -->
<section id="tools" class="py-20 px-6 bg-gradient-to-b from-gray-900 to-black">
<div class="container mx-auto">
<h2 class="text-4xl font-bold mb-16 text-center">
<span class="border-b-4 border-yellow-500 pb-2">MENTAL PERFORMANCE TOOLS</span>
</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="tool-card bg-gray-800 p-8 rounded-xl">
<div class="bg-red-700 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i data-feather="target" class="w-8 h-8"></i>
</div>
<h3 class="text-2xl font-bold mb-4">Focus Builder</h3>
<p class="text-gray-300 mb-6">
Train your ability to lock in on demand with our progressive focus exercises and attention control techniques.
</p>
<button class="text-yellow-500 font-bold flex items-center">
Learn More <i data-feather="arrow-right" class="ml-2 w-5 h-5"></i>
</button>
</div>
<div class="tool-card bg-gray-800 p-8 rounded-xl">
<div class="bg-yellow-600 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i data-feather="shield" class="w-8 h-8"></i>
</div>
<h3 class="text-2xl font-bold mb-4">Confidence Forge</h3>
<p class="text-gray-300 mb-6">
Our evidence-based confidence building system helps you develop unshakable self-belief tailored to your goals.
</p>
<button class="text-yellow-500 font-bold flex items-center">
Learn More <i data-feather="arrow-right" class="ml-2 w-5 h-5"></i>
</button>
</div>
<div class="tool-card bg-gray-800 p-8 rounded-xl">
<div class="bg-gray-700 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i data-feather="bar-chart-2" class="w-8 h-8"></i>
</div>
<h3 class="text-2xl font-bold mb-4">Performance Analytics</h3>
<p class="text-gray-300 mb-6">
Track your mental performance metrics over time and get personalized improvement recommendations.
</p>
<button class="text-yellow-500 font-bold flex items-center">
Learn More <i data-feather="arrow-right" class="ml-2 w-5 h-5"></i>
</button>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 px-6 gradient-bg">
<div class="container mx-auto max-w-4xl">
<h2 class="text-4xl font-bold mb-12 text-center">
<span class="border-b-4 border-yellow-500 pb-2">OUR MISSION</span>
</h2>
<div class="bg-black bg-opacity-70 p-10 rounded-xl shadow-xl">
<p class="text-lg leading-relaxed mb-8">
At Amplify, we believe that success starts in our minds. Our company's mission is to help people unlock their full potential mentally and physically by bridging technology, psychology, and personal growth.
</p>
<p class="text-lg leading-relaxed mb-8">
We created this platform to empower people to develop the mentality required to become the best version of themselves—whether stepping onto the field, into the classroom, or into an interview. By combining biometric tracking, personalized training, and VR and AR experiences, we give our users the tools they need to strengthen focus, build confidence, and master the art of mental preparation.
</p>
<p class="text-lg leading-relaxed font-bold text-yellow-400">
We at Amplify don't just prepare you for big moments—we help you create them.
</p>
<div class="mt-12 grid grid-cols-2 md:grid-cols-4 gap-6 text-center">
<div>
<div class="text-4xl font-bold mb-2 text-yellow-500">10K+</div>
<div class="text-gray-300">Users</div>
</div>
<div>
<div class="text-4xl font-bold mb-2 text-yellow-500">97%</div>
<div class="text-gray-300">Success Rate</div>
</div>
<div>
<div class="text-4xl font-bold mb-2 text-yellow-500">24/7</div>
<div class="text-gray-300">Support</div>
</div>
<div>
<div class="text-4xl font-bold mb-2 text-yellow-500">VR/AR</div>
<div class="text-gray-300">Innovation</div>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="py-20 px-6 bg-gradient-to-b from-black to-gray-900">
<div class="container mx-auto">
<h2 class="text-4xl font-bold mb-16 text-center">
<span class="border-b-4 border-yellow-500 pb-2">CHOOSE YOUR PLAN</span>
</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Free Tier -->
<div class="bg-gray-800 rounded-xl p-8 border-2 border-gray-700">
<div class="text-center mb-6">
<h3 class="text-2xl font-bold mb-2">Starter</h3>
<div class="text-4xl font-bold mb-2">FREE</div>
<div class="text-gray-400">Forever</div>
</div>
<ul class="space-y-4 mb-8">
<li class="flex items-start">
<i data-feather="check" class="text-green-500 mr-3 mt-1"></i>
<span>Basic mental tools</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="text-green-500 mr-3 mt-1"></i>
<span>Daily meditation guides</span>
</li>
<li class="flex items-start">
<i data-feather="x" class="text-red-500 mr-3 mt-1"></i>
<span class="text-gray-500">No VR/AR access</span>
</li>
<li class="flex items-start">
<i data-feather="x" class="text-red-500 mr-3 mt-1"></i>
<span class="text-gray-500">Limited scenarios</span>
</li>
</ul>
<button class="w-full bg-gray-700 hover:bg-gray-600 text-white py-3 rounded-lg font-bold transition">
GET STARTED
</button>
</div>
<!-- Basic Tier -->
<div class="bg-gray-800 rounded-xl p-8 border-2 border-yellow-500 relative transform scale-105 z-10 shadow-2xl">
<div class="absolute top-0 right-0 bg-yellow-500 text-black px-4 py-1 rounded-bl-lg font-bold">
POPULAR
</div>
<div class="text-center mb-6">
<h3 class="text-2xl font-bold mb-2">Enhanced</h3>
<div class="text-4xl font-bold mb-2">$19<span class="text-lg">/month</span></div>
<div class="text-gray-400">Billed annually</div>
</div>
<ul class="space-y-4 mb-8">
<li class="flex items-start">
<i data-feather="check" class="text-green-500 mr-3 mt-1"></i>
<span>All Starter features</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="text-green-500 mr-3 mt-1"></i>
<span>Basic AR visualizations</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="text-green-500 mr-3 mt-1"></i>
<span>5 VR scenarios/month</span>
</li>
<li class="flex items-start">
<i data-feather="x" class="text-red-500 mr-3 mt-1"></i>
<span class="text-gray-500">Limited analytics</span>
</li>
</ul>
<button class="w-full bg-yellow-600 hover:bg-yellow-700 text-white py-3 rounded-lg font-bold transition">
UPGRADE NOW
</button>
</div>
<!-- Premium Tier -->
<div class="bg-gray-800 rounded-xl p-8 border-2 border-purple-500">
<div class="text-center mb-6">
<h3 class="text-2xl font-bold mb-2">Unlimited</h3>
<div class="text-4xl font-bold mb-2">$49<span class="text-lg">/month</span></div>
<div class="text-gray-400">Billed annually</div>
</div>
<ul class="space-y-4 mb-8">
<li class="flex items-start">
<i data-feather="check" class="text-green-500 mr-3 mt-1"></i>
<span>All Enhanced features</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="text-green-500 mr-3 mt-1"></i>
<span>Unlimited VR/AR access</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="text-green-500 mr-3 mt-1"></i>
<span>Advanced analytics</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="text-green-500 mr-3 mt-1"></i>
<span>Priority support</span>
</li>
</ul>
<button class="w-full bg-purple-600 hover:bg-purple-700 text-white py-3 rounded-lg font-bold transition">
GO PREMIUM
</button>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 px-6 bg-black">
<div class="container mx-auto max-w-4xl text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-8">
Ready to <span class="text-yellow-500">Amplify</span> Your Mental Game?
</h2>
<p class="text-xl text-gray-300 mb-10 max-w-2xl mx-auto">
Join thousands who have transformed their mental performance and achieved their goals.
</p>
<button class="bg-yellow-600 hover:bg-yellow-700 text-white px-10 py-4 rounded-full text-lg font-bold transition transform hover:scale-105">
GET STARTED NOW
</button>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 py-12 px-6">
<div class="container mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2 mb-6">
<i data-feather="activity" class="text-yellow-500"></i>
<span class="text-2xl font-bold">MINDFORGE</span>
</div>
<p class="text-gray-400">
The ultimate mental performance platform for champions.
</p>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-yellow-500 transition">Home</a></li>
<li><a href="#vr-ar" class="text-gray-400 hover:text-yellow-500 transition">VR/AR</a></li>
<li><a href="#tools" class="text-gray-400 hover:text-yellow-500 transition">Tools</a></li>
<li><a href="#pricing" class="text-gray-400 hover:text-yellow-500 transition">Pricing</a></li>
<li><a href="#about" class="text-gray-400 hover:text-yellow-500 transition">About</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-yellow-500 transition">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-500 transition">Research</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-500 transition">Case Studies</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-500 transition">FAQ</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Connect</h4>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-yellow-500 transition"><i data-feather="twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-yellow-500 transition"><i data-feather="instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-yellow-500 transition"><i data-feather="linkedin"></i></a>
<a href="#" class="text-gray-400 hover:text-yellow-500 transition"><i data-feather="youtube"></i></a>
</div>
<p class="mt-4 text-gray-400">
contact@amplify.mental
</p>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500">
<p>© 2023 MindForge. All rights reserved. Mental performance redefined.</p>
</div>
</div>
</footer>
<script>
feather.replace();
VANTA.GLOBE({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0xd97706,
backgroundColor: 0x0
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</script>
</body>
</html>
|