File size: 12,952 Bytes
0b6d122 7f6564c |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Entropic Story Weaver</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://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<style>
.text-gradient {
background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.card-hover {
transition: all 0.3s ease;
transform: translateY(0);
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 0.8; }
50% { opacity: 1; }
100% { opacity: 0.8; }
}
</style>
</head>
<body class="bg-gray-900 text-white">
<div id="vanta-bg" class="fixed inset-0 z-0"></div>
<div class="relative z-10 min-h-screen">
<!-- Navigation -->
<nav class="px-6 py-4 bg-gray-900 bg-opacity-70 backdrop-filter backdrop-blur-lg">
<div class="max-w-7xl mx-auto flex justify-between items-center">
<div class="flex items-center space-x-2">
<i data-feather="zap" class="text-purple-400"></i>
<span class="text-xl font-bold text-gradient">EntropicWeaver</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#" class="hover:text-purple-300 transition">Modules</a>
<a href="#" class="hover:text-purple-300 transition">Documentation</a>
<a href="#" class="hover:text-purple-300 transition">Case Studies</a>
<a href="#" class="hover:text-purple-300 transition">About</a>
</div>
<div class="md:hidden">
<i data-feather="menu"></i>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="pt-32 pb-20 px-6">
<div class="max-w-7xl mx-auto text-center">
<h1 class="text-5xl md:text-7xl font-bold mb-6">
<span class="text-gradient">Narrative</span> Exploitation <br> Protocol
</h1>
<p class="text-xl md:text-2xl text-gray-300 mb-10 max-w-3xl mx-auto">
Injecting controlled entropy into story fragments while preserving <span class="text-purple-300">coherence thresholds</span> and <span class="text-blue-300">emotional resonance metrics</span>.
</p>
<div class="flex justify-center space-x-4">
<button class="px-8 py-3 bg-gradient-to-r from-purple-500 to-blue-500 rounded-full font-medium hover:opacity-90 transition">
Initialize System
</button>
<button class="px-8 py-3 border border-purple-400 text-purple-300 rounded-full font-medium hover:bg-purple-900 hover:bg-opacity-30 transition">
View Documentation
</button>
</div>
</div>
</section>
<!-- Modules Section -->
<section class="py-20 px-6">
<div class="max-w-7xl mx-auto">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16">
Core <span class="text-gradient">Processing</span> Modules
</h2>
<div class="grid md:grid-cols-3 gap-8">
<!-- Module 1 -->
<div class="bg-gray-800 bg-opacity-60 backdrop-filter backdrop-blur-lg rounded-xl p-6 border border-gray-700 card-hover">
<div class="flex items-center mb-4">
<div class="p-3 rounded-lg bg-blue-900 bg-opacity-50 mr-4">
<i data-feather="activity" class="text-blue-300"></i>
</div>
<h3 class="text-xl font-bold">Entropy Injection</h3>
</div>
<p class="text-gray-300 mb-4">
Perturb fragment structures with randomized transformations when ΔE(t) exceeds δ(t) thresholds.
</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-blue-900 bg-opacity-20 text-blue-300 rounded-full text-xs">Swap</span>
<span class="px-3 py-1 bg-blue-900 bg-opacity-20 text-blue-300 rounded-full text-xs">Remove</span>
<span class="px-3 py-1 bg-blue-900 bg-opacity-20 text-blue-300 rounded-full text-xs">Augment</span>
</div>
</div>
<!-- Module 2 -->
<div class="bg-gray-800 bg-opacity-60 backdrop-filter backdrop-blur-lg rounded-xl p-6 border border-gray-700 card-hover">
<div class="flex items-center mb-4">
<div class="p-3 rounded-lg bg-purple-900 bg-opacity-50 mr-4">
<i data-feather="bar-chart-2" class="text-purple-300"></i>
</div>
<h3 class="text-xl font-bold">Resonance Metrics</h3>
</div>
<p class="text-gray-300 mb-4">
Calculate PASₙ scores by mapping emotional polarities to phase-space vectors.
</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-purple-900 bg-opacity-20 text-purple-300 rounded-full text-xs">θ_f</span>
<span class="px-3 py-1 bg-purple-900 bg-opacity-20 text-purple-300 rounded-full text-xs">cos(θₖ)</span>
<span class="px-3 py-1 bg-purple-900 bg-opacity-20 text-purple-300 rounded-full text-xs">τᵣ</span>
</div>
</div>
<!-- Module 3 -->
<div class="bg-gray-800 bg-opacity-60 backdrop-filter backdrop-blur-lg rounded-xl p-6 border border-gray-700 card-hover">
<div class="flex items-center mb-4">
<div class="p-3 rounded-lg bg-pink-900 bg-opacity-50 mr-4">
<i data-feather="shield" class="text-pink-300"></i>
</div>
<h3 class="text-xl font-bold">Reparative Layers</h3>
</div>
<p class="text-gray-300 mb-4">
Stitch subverted fragments to narrative anchors when PASₙ(f) < τ𝗋𝗲𝗽𝗮𝗂𝗿.
</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-pink-900 bg-opacity-20 text-pink-300 rounded-full text-xs">MI(a,f)</span>
<span class="px-3 py-1 bg-pink-900 bg-opacity-20 text-pink-300 rounded-full text-xs">RC(a)</span>
<span class="px-3 py-1 bg-pink-900 bg-opacity-20 text-pink-300 rounded-full text-xs">Cₜₐᵣ𝗴𝗲𝘁</span>
</div>
</div>
</div>
</div>
</section>
<!-- Visualization Section -->
<section class="py-20 px-6">
<div class="max-w-7xl mx-auto">
<div class="bg-gray-800 bg-opacity-60 backdrop-filter backdrop-blur-lg rounded-xl p-8 border border-gray-700">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
<h2 class="text-3xl font-bold mb-6">
Phase-Space <span class="text-gradient">Visualization</span>
</h2>
<p class="text-gray-300 mb-6">
Observe the narrative fragments mapped onto emotional polarity vectors, with PASₙ scores determining their position in the resonance field.
</p>
<div class="bg-gray-700 bg-opacity-40 rounded-lg p-4 mb-6">
<div class="flex items-center mb-2">
<div class="w-3 h-3 rounded-full bg-purple-400 mr-2"></div>
<span class="text-sm">High PASₙ (τᵣ > 0.7)</span>
</div>
<div class="flex items-center mb-2">
<div class="w-3 h-3 rounded-full bg-blue-400 mr-2"></div>
<span class="text-sm">Medium PASₙ (0.3 ≤ τᵣ ≤ 0.7)</span>
</div>
<div class="flex items-center">
<div class="w-3 h-3 rounded-full bg-pink-400 mr-2"></div>
<span class="text-sm">Low PASₙ (τᵣ < 0.3)</span>
</div>
</div>
<button class="px-6 py-2 bg-gradient-to-r from-blue-500 to-purple-500 rounded-full text-sm font-medium">
Run Simulation
</button>
</div>
<div class="md:w-1/2">
<div class="bg-gray-900 rounded-lg h-64 md:h-80 flex items-center justify-center">
<div class="text-center">
<i data-feather="eye" class="w-12 h-12 mx-auto text-gray-600 mb-2"></i>
<p class="text-gray-500">Dynamic visualization loading...</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-12 px-6 border-t border-gray-800 mt-12">
<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 data-feather="zap" class="text-purple-400 mr-2"></i>
<span class="text-lg font-bold">EntropicWeaver</span>
</div>
<div class="flex space-x-6">
<a href="#"><i data-feather="github"></i></a>
<a href="#"><i data-feather="twitter"></i></a>
<a href="#"><i data-feather="book-open"></i></a>
</div>
</div>
<div class="mt-8 text-center text-gray-500 text-sm">
© 2023 NarrativeExploit[PROTOCOL]. All fragments subject to controlled entropy injection.
</div>
</div>
</footer>
</div>
<script>
// Initialize Vanta.js background
VANTA.GLOBE({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x5b21b6,
backgroundColor: 0x111827,
size: 0.8
});
// Initialize feather icons
feather.replace();
// Simple animation for cards on load
document.addEventListener('DOMContentLoaded', () => {
const cards = document.querySelectorAll('.card-hover');
cards.forEach((card, index) => {
card.style.opacity = '0';
card.style.transform = 'translateY(20px)';
setTimeout(() => {
anime({
targets: card,
opacity: 1,
translateY: 0,
duration: 800,
easing: 'easeOutExpo',
delay: index * 100
});
}, 500);
});
});
</script>
</body>
</html>
|