Spaces:
Running
Running
File size: 37,873 Bytes
1d75f34 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CryptoPhone X - Secure Digital Communication</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">
<style>
.gradient-bg {
background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
}
.phone-mockup {
perspective: 1500px;
}
.phone-screen {
transform: rotateY(-15deg);
box-shadow: 15px 15px 30px rgba(0,0,0,0.3);
transition: all 0.5s ease;
}
.phone-mockup:hover .phone-screen {
transform: rotateY(-5deg);
}
.feature-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);
}
.glow {
box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}
.crypto-animation {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
</style>
</head>
<body class="font-sans antialiased text-gray-100">
<!-- Navigation -->
<nav class="gradient-bg py-4 px-6 fixed w-full z-50">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-shield-alt text-blue-300 text-2xl"></i>
<span class="text-xl font-bold">CryptoPhone X</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#features" class="hover:text-blue-300 transition">Features</a>
<a href="#security" class="hover:text-blue-300 transition">Security</a>
<a href="#pricing" class="hover:text-blue-300 transition">Pricing</a>
<a href="#contact" class="hover:text-blue-300 transition">Contact</a>
</div>
<button class="bg-blue-500 hover:bg-blue-600 px-4 py-2 rounded-full font-medium transition">
Pre-order Now
</button>
</div>
</nav>
<!-- Hero Section -->
<section class="gradient-bg pt-32 pb-20 px-6">
<div class="container mx-auto flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-6 leading-tight">
The World's Most <span class="text-blue-300">Secure</span> Crypto Phone
</h1>
<p class="text-xl mb-8 text-gray-300 max-w-lg">
Military-grade encryption, decentralized communication, and complete privacy protection in your pocket.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-blue-500 hover:bg-blue-600 px-6 py-3 rounded-full font-medium transition flex items-center justify-center">
<i class="fas fa-lock mr-2"></i> Get Secured
</button>
<button class="border border-blue-400 text-blue-300 hover:bg-blue-900 hover:bg-opacity-30 px-6 py-3 rounded-full font-medium transition flex items-center justify-center">
<i class="fas fa-play mr-2"></i> Watch Demo
</button>
</div>
<div class="mt-8 flex items-center space-x-4">
<div class="flex -space-x-2">
<img src="https://randomuser.me/api/portraits/women/12.jpg" class="w-10 h-10 rounded-full border-2 border-blue-400">
<img src="https://randomuser.me/api/portraits/men/32.jpg" class="w-10 h-10 rounded-full border-2 border-blue-400">
<img src="https://randomuser.me/api/portraits/women/45.jpg" class="w-10 h-10 rounded-full border-2 border-blue-400">
</div>
<div>
<p class="text-sm text-gray-300">Trusted by 50,000+ security experts</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
<span class="text-white ml-2">4.8</span>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 flex justify-center phone-mockup">
<div class="relative phone-screen bg-black rounded-3xl p-2 w-64 h-[500px] border-4 border-gray-800">
<div class="absolute top-2 left-1/2 transform -translate-x-1/2 w-16 h-1 bg-gray-700 rounded-full"></div>
<div class="h-full bg-gray-900 rounded-2xl overflow-hidden relative">
<div class="absolute inset-0 flex items-center justify-center">
<div class="text-center p-6">
<div class="crypto-animation mb-6">
<i class="fas fa-shield-alt text-blue-500 text-5xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">CryptoPhone X</h3>
<p class="text-gray-400 text-sm mb-4">Secure mode activated</p>
<div class="w-full bg-gray-700 rounded-full h-2 mb-6">
<div class="bg-blue-500 h-2 rounded-full" style="width: 100%"></div>
</div>
<div class="grid grid-cols-3 gap-2 mb-6">
<div class="bg-gray-800 p-2 rounded-lg text-center">
<i class="fas fa-lock text-blue-400 mb-1"></i>
<p class="text-xs">Encrypted</p>
</div>
<div class="bg-gray-800 p-2 rounded-lg text-center">
<i class="fas fa-user-shield text-green-400 mb-1"></i>
<p class="text-xs">Private</p>
</div>
<div class="bg-gray-800 p-2 rounded-lg text-center">
<i class="fas fa-bolt text-yellow-400 mb-1"></i>
<p class="text-xs">Fast</p>
</div>
</div>
<button class="bg-blue-600 hover:bg-blue-700 w-full py-2 rounded-lg text-sm font-medium transition">
Unlock Device
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Trust Badges -->
<div class="bg-gray-900 py-8">
<div class="container mx-auto px-6">
<p class="text-center text-gray-400 mb-6">TRUSTED BY INDUSTRY LEADERS</p>
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
<i class="fab fa-ethereum text-3xl text-gray-400 hover:text-purple-400 transition"></i>
<i class="fab fa-bitcoin text-3xl text-gray-400 hover:text-orange-400 transition"></i>
<i class="fas fa-university text-3xl text-gray-400 hover:text-blue-400 transition"></i>
<i class="fas fa-shield-alt text-3xl text-gray-400 hover:text-green-400 transition"></i>
<i class="fas fa-lock text-3xl text-gray-400 hover:text-red-400 transition"></i>
</div>
</div>
</div>
<!-- Features Section -->
<section id="features" class="py-20 px-6 bg-gray-900">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Unparalleled Security Features</h2>
<p class="text-xl text-gray-400 max-w-2xl mx-auto">
Built from the ground up with privacy and security as the top priority.
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="feature-card bg-gray-800 p-8 rounded-xl transition duration-300">
<div class="w-14 h-14 bg-blue-900 bg-opacity-50 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-fingerprint text-blue-400 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Biometric Encryption</h3>
<p class="text-gray-400">
Multi-factor authentication with fingerprint, facial recognition, and voice pattern for maximum security.
</p>
</div>
<!-- Feature 2 -->
<div class="feature-card bg-gray-800 p-8 rounded-xl transition duration-300">
<div class="w-14 h-14 bg-purple-900 bg-opacity-50 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-project-diagram text-purple-400 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Decentralized Network</h3>
<p class="text-gray-400">
Peer-to-peer communication through blockchain nodes, eliminating central points of failure.
</p>
</div>
<!-- Feature 3 -->
<div class="feature-card bg-gray-800 p-8 rounded-xl transition duration-300">
<div class="w-14 h-14 bg-green-900 bg-opacity-50 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-coins text-green-400 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Crypto Wallet</h3>
<p class="text-gray-400">
Built-in hardware wallet supporting 100+ cryptocurrencies with cold storage security.
</p>
</div>
<!-- Feature 4 -->
<div class="feature-card bg-gray-800 p-8 rounded-xl transition duration-300">
<div class="w-14 h-14 bg-red-900 bg-opacity-50 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-satellite-dish text-red-400 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Secure Satellite Comms</h3>
<p class="text-gray-400">
Optional satellite connectivity for communication in areas without cellular coverage.
</p>
</div>
<!-- Feature 5 -->
<div class="feature-card bg-gray-800 p-8 rounded-xl transition duration-300">
<div class="w-14 h-14 bg-yellow-900 bg-opacity-50 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-burn text-yellow-400 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Self-Destruct Mode</h3>
<p class="text-gray-400">
Remote wipe and physical destruction protocols to protect sensitive data if compromised.
</p>
</div>
<!-- Feature 6 -->
<div class="feature-card bg-gray-800 p-8 rounded-xl transition duration-300">
<div class="w-14 h-14 bg-indigo-900 bg-opacity-50 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-user-secret text-indigo-400 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Stealth Mode</h3>
<p class="text-gray-400">
Complete digital invisibility with no IMEI broadcasting and randomized MAC addresses.
</p>
</div>
</div>
</div>
</section>
<!-- Security Section -->
<section id="security" class="py-20 px-6 bg-gray-800">
<div class="container mx-auto">
<div class="flex flex-col lg:flex-row items-center">
<div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Military-Grade Encryption</h2>
<p class="text-xl text-gray-400 mb-8">
Our proprietary Quantum-Resistant Encryption Protocol (QREP) ensures your communications remain secure even against future quantum computing threats.
</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 bg-blue-600 rounded-full flex items-center justify-center">
<i class="fas fa-check text-white"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium">End-to-End Encryption</h3>
<p class="text-gray-400">
All calls, messages, and data transfers are encrypted before leaving your device.
</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 bg-blue-600 rounded-full flex items-center justify-center">
<i class="fas fa-check text-white"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium">No Backdoors</h3>
<p class="text-gray-400">
We don't compromise security for anyone - no government access or third-party monitoring.
</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 bg-blue-600 rounded-full flex items-center justify-center">
<i class="fas fa-check text-white"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium">Open Source Audits</h3>
<p class="text-gray-400">
Our encryption protocols are regularly audited by independent security researchers.
</p>
</div>
</div>
</div>
</div>
<div class="lg:w-1/2 relative">
<div class="bg-gray-900 rounded-xl p-8 glow">
<div class="flex justify-between items-center mb-6">
<h3 class="text-xl font-bold">Security Dashboard</h3>
<div class="flex items-center text-green-400">
<i class="fas fa-circle mr-2 text-xs"></i>
<span>Secure</span>
</div>
</div>
<div class="space-y-6">
<div>
<div class="flex justify-between mb-2">
<span>Encryption Strength</span>
<span>100%</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2">
<div class="bg-blue-500 h-2 rounded-full" style="width: 100%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span>Network Security</span>
<span>98%</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2">
<div class="bg-green-500 h-2 rounded-full" style="width: 98%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span>Data Protection</span>
<span>100%</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2">
<div class="bg-purple-500 h-2 rounded-full" style="width: 100%"></div>
</div>
</div>
</div>
<div class="mt-8 grid grid-cols-2 gap-4">
<div class="bg-gray-800 p-4 rounded-lg text-center">
<i class="fas fa-shield-alt text-blue-400 text-2xl mb-2"></i>
<p class="text-sm">0 Data Leaks</p>
</div>
<div class="bg-gray-800 p-4 rounded-lg text-center">
<i class="fas fa-bug text-red-400 text-2xl mb-2"></i>
<p class="text-sm">0 Vulnerabilities</p>
</div>
</div>
<div class="mt-6 bg-gray-800 p-4 rounded-lg">
<div class="flex items-center justify-between">
<span>Last Security Scan</span>
<span class="text-green-400">Just now</span>
</div>
</div>
</div>
<div class="absolute -bottom-6 -left-6 w-32 h-32 bg-blue-600 rounded-full opacity-20 filter blur-xl"></div>
<div class="absolute -top-6 -right-6 w-32 h-32 bg-purple-600 rounded-full opacity-20 filter blur-xl"></div>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="py-20 px-6 bg-gray-900">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Choose Your Security Level</h2>
<p class="text-xl text-gray-400 max-w-2xl mx-auto">
Select the package that matches your security needs and budget.
</p>
</div>
<div class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Basic Plan -->
<div class="bg-gray-800 rounded-xl overflow-hidden transition duration-300 hover:transform hover:scale-105">
<div class="p-8">
<h3 class="text-2xl font-bold mb-2">Standard</h3>
<p class="text-gray-400 mb-6">For personal privacy protection</p>
<div class="mb-6">
<span class="text-4xl font-bold">$699</span>
<span class="text-gray-400">/device</span>
</div>
<button class="w-full bg-gray-700 hover:bg-gray-600 py-3 rounded-lg font-medium transition mb-6">
Select Plan
</button>
<ul class="space-y-3">
<li class="flex items-center">
<i class="fas fa-check text-green-400 mr-2"></i>
<span>256-bit Encryption</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-400 mr-2"></i>
<span>Secure Messaging</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-400 mr-2"></i>
<span>Encrypted Calls</span>
</li>
<li class="flex items-center text-gray-500">
<i class="fas fa-times text-red-400 mr-2"></i>
<span>No Satellite Comms</span>
</li>
<li class="flex items-center text-gray-500">
<i class="fas fa-times text-red-400 mr-2"></i>
<span>Basic Crypto Wallet</span>
</li>
</ul>
</div>
</div>
<!-- Pro Plan -->
<div class="bg-gray-800 rounded-xl overflow-hidden border-2 border-blue-500 transform scale-105 relative">
<div class="absolute top-0 right-0 bg-blue-500 text-white text-xs font-bold px-3 py-1 rounded-bl-lg">
MOST POPULAR
</div>
<div class="p-8">
<h3 class="text-2xl font-bold mb-2">Professional</h3>
<p class="text-gray-400 mb-6">For business and high-security needs</p>
<div class="mb-6">
<span class="text-4xl font-bold">$1,299</span>
<span class="text-gray-400">/device</span>
</div>
<button class="w-full bg-blue-500 hover:bg-blue-600 py-3 rounded-lg font-medium transition mb-6">
Select Plan
</button>
<ul class="space-y-3">
<li class="flex items-center">
<i class="fas fa-check text-green-400 mr-2"></i>
<span>512-bit Quantum Encryption</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-400 mr-2"></i>
<span>Secure Messaging & Calls</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-400 mr-2"></i>
<span>Advanced Crypto Wallet</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-400 mr-2"></i>
<span>Optional Satellite Comms</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-400 mr-2"></i>
<span>Stealth Mode</span>
</li>
</ul>
</div>
</div>
<!-- Enterprise Plan -->
<div class="bg-gray-800 rounded-xl overflow-hidden transition duration-300 hover:transform hover:scale-105">
<div class="p-8">
<h3 class="text-2xl font-bold mb-2">Enterprise</h3>
<p class="text-gray-400 mb-6">For government and military use</p>
<div class="mb-6">
<span class="text-4xl font-bold">$2,999</span>
<span class="text-gray-400">/device</span>
</div>
<button class="w-full bg-gray-700 hover:bg-gray-600 py-3 rounded-lg font-medium transition mb-6">
Contact Sales
</button>
<ul class="space-y-3">
<li class="flex items-center">
<i class="fas fa-check text-green-400 mr-2"></i>
<span>1024-bit Quantum Encryption</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-400 mr-2"></i>
<span>All Professional Features</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-400 mr-2"></i>
<span>Dedicated Satellite Comms</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-400 mr-2"></i>
<span>Self-Destruct Mechanism</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-400 mr-2"></i>
<span>24/7 Priority Support</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="gradient-bg py-20 px-6">
<div class="container mx-auto text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Take Control of Your Privacy?</h2>
<p class="text-xl text-gray-300 max-w-2xl mx-auto mb-8">
Join thousands of security-conscious individuals and organizations who trust CryptoPhone X.
</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-white text-blue-900 hover:bg-gray-100 px-8 py-4 rounded-full font-bold transition flex items-center justify-center">
<i class="fas fa-shopping-cart mr-2"></i> Order Now
</button>
<button class="border border-white text-white hover:bg-white hover:bg-opacity-10 px-8 py-4 rounded-full font-bold transition flex items-center justify-center">
<i class="fas fa-question-circle mr-2"></i> Ask Questions
</button>
</div>
</div>
</section>
<!-- FAQ Section -->
<section id="contact" class="py-20 px-6 bg-gray-900">
<div class="container mx-auto max-w-4xl">
<h2 class="text-3xl md:text-4xl font-bold mb-12 text-center">Frequently Asked Questions</h2>
<div class="space-y-4">
<!-- FAQ Item 1 -->
<div class="bg-gray-800 rounded-xl overflow-hidden">
<button onclick="toggleFAQ(1)" class="faq-toggle w-full flex justify-between items-center p-6 text-left">
<h3 class="text-lg font-medium">How does CryptoPhone X differ from regular smartphones?</h3>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</button>
<div class="faq-content px-6 pb-6 hidden">
<p class="text-gray-400">
CryptoPhone X is built from the ground up with security as the primary focus. Unlike regular smartphones that prioritize convenience over security, our device features hardware-level encryption, secure boot processes, decentralized communication protocols, and no backdoors. Every component is selected and configured to maximize privacy protection.
</p>
</div>
</div>
<!-- FAQ Item 2 -->
<div class="bg-gray-800 rounded-xl overflow-hidden">
<button onclick="toggleFAQ(2)" class="faq-toggle w-full flex justify-between items-center p-6 text-left">
<h3 class="text-lg font-medium">Is the operating system open source?</h3>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</button>
<div class="faq-content px-6 pb-6 hidden">
<p class="text-gray-400">
Yes, the core operating system of CryptoPhone X is open source and regularly audited by the security community. However, certain proprietary security modules that contain our advanced encryption algorithms remain closed source to prevent potential vulnerabilities from being exposed.
</p>
</div>
</div>
<!-- FAQ Item 3 -->
<div class="bg-gray-800 rounded-xl overflow-hidden">
<button onclick="toggleFAQ(3)" class="faq-toggle w-full flex justify-between items-center p-6 text-left">
<h3 class="text-lg font-medium">Can I use regular apps from Google Play or Apple App Store?</h3>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</button>
<div class="faq-content px-6 pb-6 hidden">
<p class="text-gray-400">
CryptoPhone X uses a custom app ecosystem focused on security. While you can't directly access Google Play or Apple App Store, we offer a curated selection of privacy-focused alternatives. For advanced users, there's a secure sandbox environment where you can run some Android apps after thorough security vetting.
</p>
</div>
</div>
<!-- FAQ Item 4 -->
<div class="bg-gray-800 rounded-xl overflow-hidden">
<button onclick="toggleFAQ(4)" class="faq-toggle w-full flex justify-between items-center p-6 text-left">
<h3 class="text-lg font-medium">How often do you release security updates?</h3>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</button>
<div class="faq-content px-6 pb-6 hidden">
<p class="text-gray-400">
We release security patches as soon as vulnerabilities are discovered and fixed, typically within 24 hours for critical issues. Our enterprise customers receive immediate notifications and automatic updates. All devices receive security updates for a minimum of 5 years from purchase date.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 border-t border-gray-800 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-4">
<i class="fas fa-shield-alt text-blue-400 text-2xl"></i>
<span class="text-xl font-bold">CryptoPhone X</span>
</div>
<p class="text-gray-400 mb-4">
The most secure communication device for the privacy-conscious individual.
</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-blue-400 transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-blue-400 transition">
<i class="fab fa-telegram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-blue-400 transition">
<i class="fab fa-github"></i>
</a>
<a href="#" class="text-gray-400 hover:text-blue-400 transition">
<i class="fab fa-linkedin"></i>
</a>
</div>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Product</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Features</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Pricing</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Security</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">FAQ</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Press</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Legal</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Terms of Service</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Security Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Compliance</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-500 mb-4 md:mb-0">
© 2023 CryptoPhone X. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-500 hover:text-blue-400 transition">Privacy</a>
<a href="#" class="text-gray-500 hover:text-blue-400 transition">Terms</a>
<a href="#" class="text-gray-500 hover:text-blue-400 transition">Cookies</a>
</div>
</div>
</div>
</footer>
<script>
// Toggle FAQ items
function toggleFAQ(index) {
const button = document.querySelectorAll('.faq-toggle')[index - 1];
const content = document.querySelectorAll('.faq-content')[index - 1];
const icon = button.querySelector('i');
content.classList.toggle('hidden');
icon.classList.toggle('rotate-180');
}
// 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'
});
});
});
// Animate elements when they come into view
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate-fadeIn');
}
});
}, { threshold: 0.1 });
document.querySelectorAll('.feature-card, .phone-mockup').forEach(el => {
observer.observe(el);
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Yalexis/phone-pre-order" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |