Spaces:
Running
Running
File size: 28,459 Bytes
0ecae4d |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PhoenixLocker Protocol</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, #f97316 0%, #7c3aed 50%, #ec4899 100%);
}
.flame-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.phoenix-animation {
animation: phoenixRise 8s infinite alternate;
}
@keyframes phoenixRise {
0% { transform: translateY(0) scale(1); opacity: 0.8; }
50% { transform: translateY(-20px) scale(1.05); opacity: 1; }
100% { transform: translateY(0) scale(1); opacity: 0.8; }
}
.wave-pattern {
background-image: radial-gradient(circle at 10% 20%, rgba(251, 146, 60, 0.1) 0%, transparent 20%);
}
</style>
</head>
<body class="min-h-screen bg-gray-900 text-gray-100 wave-pattern">
<!-- Header -->
<header class="gradient-bg py-12 px-4 sm:px-6 lg:px-8">
<div class="max-w-7xl mx-auto text-center">
<div class="phoenix-animation inline-block mb-6">
<i class="fas fa-fire text-6xl text-yellow-300"></i>
</div>
<h1 class="text-4xl md:text-6xl font-bold mb-4">PhoenixLocker Protocol</h1>
<p class="text-xl md:text-2xl max-w-3xl mx-auto opacity-90">
The Ultimate On-Chain Survival System for Enterprise Continuity
</p>
</div>
</header>
<!-- Main Content -->
<main class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
<!-- Protocol Soul Section -->
<section class="mb-20">
<h2 class="text-3xl font-bold mb-8 text-center border-b border-orange-500 pb-2 inline-block">
<i class="fas fa-ghost mr-2"></i> Protocol Soul: Trinity Design
</h2>
<div class="grid md:grid-cols-3 gap-8">
<!-- Fire Core -->
<div class="flame-card rounded-xl p-6 shadow-lg">
<div class="flex items-center mb-4">
<div class="bg-orange-500 p-3 rounded-full mr-4">
<i class="fas fa-fire text-white"></i>
</div>
<h3 class="text-xl font-bold">Flame Core</h3>
</div>
<div class="bg-gray-800 rounded-lg p-4 mb-4 overflow-x-auto">
<pre class="text-sm text-green-400"><code>contract PhoenixLocker {
struct Cycle {
uint256 lockedAmount;
uint256 ignitionTime;
uint256 rebirthWindow;
bool isNirvana;
}
mapping(address => Cycle[]) public vaults;
}</code></pre>
</div>
<ul class="space-y-2 text-gray-300">
<li class="flex items-start">
<i class="fas fa-circle text-xs mt-1 mr-2 text-orange-400"></i>
<span>Independent cycle instances per lock</span>
</li>
<li class="flex items-start">
<i class="fas fa-circle text-xs mt-1 mr-2 text-orange-400"></i>
<span>Wave-style unlocking (1/18 monthly release)</span>
</li>
</ul>
</div>
<!-- Ash Layer -->
<div class="flame-card rounded-xl p-6 shadow-lg">
<div class="flex items-center mb-4">
<div class="bg-gray-500 p-3 rounded-full mr-4">
<i class="fas fa-layer-group text-white"></i>
</div>
<h3 class="text-xl font-bold">Ash Layer</h3>
</div>
<div class="bg-gray-800 rounded-lg p-4 mb-4 flex justify-center">
<div class="text-center">
<i class="fas fa-fingerprint text-4xl text-purple-400 mb-2"></i>
<p class="text-sm">ZK Proof Verification</p>
</div>
</div>
<ul class="space-y-2 text-gray-300">
<li class="flex items-start">
<i class="fas fa-circle text-xs mt-1 mr-2 text-gray-400"></i>
<span>Unqualified funds auto-transfer to Ash Pool</span>
</li>
<li class="flex items-start">
<i class="fas fa-circle text-xs mt-1 mr-2 text-gray-400"></i>
<span>Partial redemption after ZK verification</span>
</li>
</ul>
</div>
<!-- Rebirth Oracle -->
<div class="flame-card rounded-xl p-6 shadow-lg">
<div class="flex items-center mb-4">
<div class="bg-pink-500 p-3 rounded-full mr-4">
<i class="fas fa-eye text-white"></i>
</div>
<h3 class="text-xl font-bold">Rebirth Oracle</h3>
</div>
<div class="grid grid-cols-3 gap-2 mb-4">
<div class="bg-green-900 p-2 rounded text-center">
<i class="fas fa-code-branch mb-1 text-green-400"></i>
<p class="text-xs">Tech Pulse</p>
</div>
<div class="bg-blue-900 p-2 rounded text-center">
<i class="fas fa-chart-line mb-1 text-blue-400"></i>
<p class="text-xs">Financial Breath</p>
</div>
<div class="bg-purple-900 p-2 rounded text-center">
<i class="fas fa-users mb-1 text-purple-400"></i>
<p class="text-xs">Market Temp</p>
</div>
</div>
<ul class="space-y-2 text-gray-300">
<li class="flex items-start">
<i class="fas fa-circle text-xs mt-1 mr-2 text-pink-400"></i>
<span>Continuous monitoring of 3 vital signals</span>
</li>
<li class="flex items-start">
<i class="fas fa-circle text-xs mt-1 mr-2 text-pink-400"></i>
<span>Real-time health scoring</span>
</li>
</ul>
</div>
</div>
</section>
<!-- Survival Matrix -->
<section class="mb-20">
<h2 class="text-3xl font-bold mb-8 text-center border-b border-blue-500 pb-2 inline-block">
<i class="fas fa-chess-board mr-2"></i> Survival Game Matrix
</h2>
<div class="overflow-x-auto">
<table class="w-full flame-card rounded-lg overflow-hidden">
<thead class="bg-gray-800">
<tr>
<th class="py-3 px-4 text-left">Decision Point</th>
<th class="py-3 px-4 text-left">Action Plan</th>
<th class="py-3 px-4 text-left">Result</th>
</tr>
</thead>
<tbody>
<tr class="border-b border-gray-700 hover:bg-gray-800/50">
<td class="py-3 px-4">Month 12</td>
<td class="py-3 px-4">Initiate "Pre-Rebirth Diagnosis"</td>
<td class="py-3 px-4 text-blue-300">Early warning score</td>
</tr>
<tr class="border-b border-gray-700 hover:bg-gray-800/50">
<td class="py-3 px-4">Month 15</td>
<td class="py-3 px-4">Activate stress test (Black Swan simulation)</td>
<td class="py-3 px-4 text-yellow-300">Display funding gap/redundancy</td>
</tr>
<tr class="hover:bg-gray-800/50">
<td class="py-3 px-4">Month 18</td>
<td class="py-3 px-4">Trigger auto-audit</td>
<td class="py-3 px-4">
<span class="text-green-300">Pass → Release funds</span><br>
<span class="text-red-300">Fail → Circuit breaker</span>
</td>
</tr>
</tbody>
</table>
</div>
</section>
<!-- On-Chain Ceremony -->
<section class="mb-20">
<h2 class="text-3xl font-bold mb-8 text-center border-b border-purple-500 pb-2 inline-block">
<i class="fas fa-gem mr-2"></i> On-Chain Rebirth Ceremony
</h2>
<div class="grid md:grid-cols-2 gap-8">
<div class="flame-card rounded-xl p-6">
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-crown text-yellow-400 mr-2"></i> Phoenix Fire NFT
</h3>
<div class="flex justify-center mb-4">
<div class="relative">
<div class="w-40 h-40 bg-gradient-to-br from-yellow-500 to-red-600 rounded-full flex items-center justify-center shadow-lg">
<i class="fas fa-dove text-6xl text-white"></i>
</div>
<div class="absolute -bottom-2 -right-2 bg-purple-600 rounded-full w-10 h-10 flex items-center justify-center text-xs font-bold">
x5
</div>
</div>
</div>
<div class="grid grid-cols-3 gap-2 text-xs text-center">
<div class="bg-yellow-900/50 p-2 rounded">
<i class="fas fa-feather-alt text-yellow-300 mb-1"></i>
<p>Wing Brightness</p>
<p class="text-yellow-300 font-bold">82%</p>
</div>
<div class="bg-pink-900/50 p-2 rounded">
<i class="fas fa-fire text-pink-300 mb-1"></i>
<p>Flame Color</p>
<p class="text-pink-300 font-bold">+3 Ranks</p>
</div>
<div class="bg-purple-900/50 p-2 rounded">
<i class="fas fa-feather text-purple-300 mb-1"></i>
<p>Tail Feathers</p>
<p class="text-purple-300 font-bold">5 Cycles</p>
</div>
</div>
</div>
<div class="flame-card rounded-xl p-6">
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-trophy text-purple-400 mr-2"></i> Immortality Leaderboard
</h3>
<div class="space-y-4">
<div class="flex items-center p-3 bg-gray-800/50 rounded-lg">
<div class="bg-yellow-500 p-2 rounded-full mr-3">
<i class="fas fa-crown text-white"></i>
</div>
<div class="flex-grow">
<p class="font-bold">Microsoft</p>
<p class="text-xs text-gray-400">32 consecutive cycles</p>
</div>
<span class="bg-yellow-900/80 px-2 py-1 rounded text-xs">Legendary Phoenix</span>
</div>
<div class="flex items-center p-3 bg-gray-800/50 rounded-lg">
<div class="bg-blue-500 p-2 rounded-full mr-3">
<i class="fas fa-star text-white"></i>
</div>
<div class="flex-grow">
<p class="font-bold">Coinbase</p>
<p class="text-xs text-gray-400">5 consecutive cycles</p>
</div>
<span class="bg-blue-900/80 px-2 py-1 rounded text-xs">Adult Phoenix</span>
</div>
<div class="flex items-center p-3 bg-gray-800/50 rounded-lg">
<div class="bg-gray-500 p-2 rounded-full mr-3">
<i class="fas fa-skull text-white"></i>
</div>
<div class="flex-grow">
<p class="font-bold">FTX</p>
<p class="text-xs text-gray-400">Cycle 1 circuit break</p>
</div>
<span class="bg-gray-700/80 px-2 py-1 rounded text-xs">Ash Specimen</span>
</div>
</div>
</div>
</div>
</section>
<!-- Enterprise Package -->
<section class="mb-20">
<h2 class="text-3xl font-bold mb-8 text-center border-b border-green-500 pb-2 inline-block">
<i class="fas fa-briefcase mr-2"></i> Enterprise Deployment Package
</h2>
<div class="grid md:grid-cols-2 gap-8">
<div class="flame-card rounded-xl p-6">
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-coins text-yellow-500 mr-2"></i> Crisis-Adaptive ERC-20
</h3>
<div class="bg-gray-800 rounded-lg p-4 mb-4">
<div class="flex justify-between items-center mb-2">
<span class="font-mono text-lg font-bold">PHOENIX</span>
<span class="bg-green-900 text-green-300 px-2 py-1 rounded text-xs">ERC-20+</span>
</div>
<div class="h-1 bg-gradient-to-r from-orange-500 to-purple-500 rounded-full mb-3"></div>
<div class="text-sm space-y-2">
<p class="flex items-center">
<i class="fas fa-redo-alt text-xs mr-2 text-purple-400"></i>
<span>Every 18 months, holders must choose:</span>
</p>
<div class="ml-6 space-y-1">
<p class="flex items-center">
<i class="fas fa-minus-circle text-xs mr-2 text-red-400"></i>
<span>Burn 10% for governance rights</span>
</p>
<p class="flex items-center">
<i class="fas fa-arrow-circle-right text-xs mr-2 text-blue-400"></i>
<span>Or roll into next lock period</span>
</p>
</div>
</div>
</div>
</div>
<div class="flame-card rounded-xl p-6">
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-puzzle-piece text-blue-400 mr-2"></i> Board of Directors Plugin
</h3>
<div class="flex items-center justify-center mb-4">
<img src="https://snapshot.org/images/logo/blue.svg" alt="Snapshot" class="h-10 mr-4">
<div class="text-xl font-bold">+</div>
<div class="ml-4 bg-gray-800 p-2 rounded-lg">
<i class="fas fa-users-cog text-2xl text-purple-500"></i>
</div>
</div>
<ul class="space-y-2 text-sm">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-400 mt-1 mr-2"></i>
<span>Critical decisions require:</span>
</li>
<li class="ml-6 flex items-start">
<i class="fas fa-circle text-xs mt-1 mr-2 text-blue-400"></i>
<span>≥3 survival cycles</span>
</li>
<li class="ml-6 flex items-start">
<i class="fas fa-circle text-xs mt-1 mr-2 text-blue-400"></i>
<span>Ash Pool balance <20% of total lock</span>
</li>
</ul>
</div>
</div>
</section>
<!-- Tesla Case Study -->
<section class="mb-20">
<h2 class="text-3xl font-bold mb-8 text-center border-b border-red-500 pb-2 inline-block">
<i class="fas fa-car mr-2"></i> Tesla Survival Game
</h2>
<div class="flame-card rounded-xl p-6">
<div class="md:flex">
<div class="md:w-1/3 mb-6 md:mb-0 flex justify-center">
<div class="bg-red-900/20 p-6 rounded-lg border border-red-900/50 text-center">
<i class="fas fa-bolt text-5xl text-red-400 mb-3"></i>
<p class="text-2xl font-bold">$2.3B</p>
<p class="text-sm text-gray-400">Locked in 2018</p>
</div>
</div>
<div class="md:w-2/3 md:pl-8">
<h3 class="text-xl font-bold mb-4">Trigger Conditions</h3>
<div class="grid md:grid-cols-2 gap-4 mb-6">
<div class="flex items-center bg-gray-800/50 p-3 rounded-lg">
<div class="bg-green-900 p-2 rounded-full mr-3">
<i class="fas fa-factory text-green-400"></i>
</div>
<div>
<p class="text-sm font-bold">Shanghai Factory</p>
<p class="text-xs text-gray-400">Completion ≥90%</p>
</div>
</div>
<div class="flex items-center bg-gray-800/50 p-3 rounded-lg">
<div class="bg-blue-900 p-2 rounded-full mr-3">
<i class="fas fa-percentage text-blue-400"></i>
</div>
<div>
<p class="text-sm font-bold">Model 3 Margins</p>
<p class="text-xs text-gray-400">Positive gross margin</p>
</div>
</div>
</div>
<div class="bg-gray-800 rounded-lg p-4">
<div class="flex items-center justify-between mb-2">
<span class="font-bold">Result:</span>
<span class="bg-green-900/80 text-green-300 px-3 py-1 rounded-full text-sm">
<i class="fas fa-check-circle mr-1"></i> Funds released 37 days early
</span>
</div>
<div class="h-2 bg-gradient-to-r from-green-400 to-blue-500 rounded-full"></div>
</div>
</div>
</div>
</div>
</section>
<!-- Philosophy -->
<section class="mb-20 text-center">
<div class="flame-card rounded-xl p-8 max-w-3xl mx-auto">
<i class="fas fa-quote-left text-3xl text-gray-500 mb-4"></i>
<p class="text-xl md:text-2xl font-medium mb-6">
"In silicon-based civilization, death is no longer an endpoint but a version number's decimal point — PhoenixLocker keeps enterprises forever iterating at v0.18"
</p>
<div class="h-px bg-gradient-to-r from-transparent via-orange-500 to-transparent my-6"></div>
<p class="text-sm uppercase tracking-wider text-gray-400">Protocol Philosophy</p>
</div>
</section>
<!-- Compliance -->
<section class="mb-20">
<h2 class="text-3xl font-bold mb-8 text-center border-b border-yellow-500 pb-2 inline-block">
<i class="fas fa-shield-alt mr-2"></i> Compliance & Security
</h2>
<div class="grid md:grid-cols-2 gap-8 max-w-4xl mx-auto">
<div class="flame-card rounded-xl p-6">
<div class="flex items-center mb-4">
<img src="https://www.mitre.org/sites/default/files/images/mitre-logo-black-red.png" alt="MITRE" class="h-8 mr-4">
<div>
<h3 class="font-bold">MITRE ATT&CK® Simulation</h3>
<p class="text-xs text-gray-400">Resistance to 51% governance attacks</p>
</div>
</div>
<div class="bg-gray-800 rounded-lg p-3 text-sm">
<div class="flex items-center justify-between mb-2">
<span>Attack Surface Reduction</span>
<span class="font-bold text-green-400">94%</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2">
<div class="bg-green-500 h-2 rounded-full" style="width: 94%"></div>
</div>
</div>
</div>
<div class="flame-card rounded-xl p-6">
<div class="flex items-center mb-4">
<img src="https://www.sec.gov/files/sec-logo.png" alt="SEC" class="h-8 mr-4">
<div>
<h3 class="font-bold">SEC Compliance Sandbox</h3>
<p class="text-xs text-gray-400">Non-security proof assessment</p>
</div>
</div>
<div class="bg-gray-800 rounded-lg p-3 text-sm">
<div class="flex items-center justify-between mb-2">
<span>Regulatory Alignment</span>
<span class="font-bold text-blue-400">87%</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2">
<div class="bg-blue-500 h-2 rounded-full" style="width: 87%"></div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA -->
<section class="text-center">
<div class="gradient-bg rounded-2xl p-8 md:p-12 max-w-4xl mx-auto">
<h2 class="text-2xl md:text-3xl font-bold mb-4">Ready to Phoenix Your Enterprise?</h2>
<p class="mb-8 max-w-2xl mx-auto">
Request the full whitepaper or discuss custom deployment options for your organization
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-white text-gray-900 font-bold py-3 px-6 rounded-full hover:bg-gray-100 transition">
<i class="fas fa-file-alt mr-2"></i> Download Whitepaper
</button>
<button class="bg-transparent border-2 border-white font-bold py-3 px-6 rounded-full hover:bg-white/10 transition">
<i class="fas fa-headset mr-2"></i> Contact Enterprise Team
</button>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="bg-gray-900 border-t border-gray-800 py-12 px-4">
<div class="max-w-7xl mx-auto">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center mb-6 md:mb-0">
<i class="fas fa-fire text-2xl text-orange-500 mr-3"></i>
<span class="text-xl font-bold">PhoenixLocker</span>
</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-discord"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-github"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-medium"></i>
</a>
</div>
</div>
<div class="mt-8 pt-8 border-t border-gray-800 text-center text-gray-500 text-sm">
<p>© 2023 PhoenixLocker Protocol. All rights reserved.</p>
<p class="mt-2">The rebirth mechanism for enterprise continuity in Web3.</p>
</div>
</div>
</footer>
<script>
// Simple animation trigger for elements when they come into view
document.addEventListener('DOMContentLoaded', function() {
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate-fadeIn');
}
});
}, { threshold: 0.1 });
document.querySelectorAll('.flame-card').forEach(card => {
observer.observe(card);
card.style.opacity = '0';
card.style.transition = 'opacity 0.6s ease-out';
card.classList.add('animate-fadeIn');
});
// Add animation class when cards come into view
const animateOnScroll = () => {
const cards = document.querySelectorAll('.flame-card');
cards.forEach(card => {
const cardPosition = card.getBoundingClientRect().top;
const screenPosition = window.innerHeight / 1.3;
if (cardPosition < screenPosition) {
card.style.opacity = '1';
}
});
};
window.addEventListener('scroll', animateOnScroll);
animateOnScroll(); // Initialize
});
</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=tongxiaojun/phoenixlocker" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |