-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
453 lines (388 loc) · 13.2 KB
/
index.html
File metadata and controls
453 lines (388 loc) · 13.2 KB
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
<!DOCTYPE html>
<html lang="en" dir="auto" data-theme="quantum">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BLACK QUANTUM FLEET | Manifesto</title>
<style>
/* ===== CORE DESIGN SYSTEM ===== */
:root {
/* Garveyite Color Palette */
--black-star: #0a0a2a; /* Cosmic foundation */
--kente-gold: #d4af37; /* Ancestral wealth */
--quantum-glow: #00f0ff; /* Tech resonance */
--diaspora-red: #e83f3f; /* Revolutionary accent */
--ubuntu-beige: #f5f5f0; /* Earthy readability */
/* Golden Ratio Spacing */
--nsibidi-sm: 0.618rem; /* 10px */
--nsibidi-md: 1.618rem; /* 26px */
--nsibidi-lg: 2.618rem; /* 42px */
/* Typography */
--proverb-weight: 650; /* Bold but not oppressive */
}
/* ===== BASE ELEMENTS ===== */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: var(--black-star);
color: var(--ubuntu-beige);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
Ubuntu, Cantarell, sans-serif;
line-height: 1.618;
overflow-x: hidden;
min-height: 100vh;
}
h1, h2, h3 {
font-weight: var(--proverb-weight);
line-height: 1.2;
}
a {
color: var(--quantum-glow);
text-decoration: none;
}
/* ===== THREE.JS CONTAINER ===== */
#quantum-ship-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
z-index: -1;
opacity: 0.6;
pointer-events: none;
}
/* ===== MANIFESTO STRUCTURE ===== */
.manifesto-header {
text-align: center;
padding: var(--nsibidi-lg) var(--nsibidi-md);
position: relative;
z-index: 1;
}
.title-line {
display: block;
font-size: clamp(2rem, 10vw, 4rem);
color: var(--quantum-glow);
text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
letter-spacing: -0.03em;
}
.subtitle {
margin-top: var(--nsibidi-md);
}
.manifesto-scroll {
padding: var(--nsibidi-md);
max-width: 100vw;
position: relative;
z-index: 1;
}
.manifesto-section {
margin-bottom: var(--nsibidi-lg);
scroll-margin-top: var(--nsibidi-md);
}
.manifesto-section h2 {
color: var(--kente-gold);
font-size: 1.5rem;
border-bottom: 2px solid var(--diaspora-red);
padding-bottom: var(--nsibidi-sm);
margin-bottom: var(--nsibidi-md);
}
.manifesto-line {
margin-bottom: var(--nsibidi-md);
opacity: 0;
transform: translateY(20px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.manifesto-line.visible {
opacity: 1;
transform: translateY(0);
}
.quantum-term {
color: var(--quantum-glow);
font-weight: bold;
position: relative;
cursor: help;
}
/* ===== SIGNING CEREMONY ===== */
#signing-portal {
background: rgba(10, 10, 42, 0.9);
border: 2px solid var(--kente-gold);
border-radius: 8px;
padding: var(--nsibidi-md);
margin: var(--nsibidi-lg) auto;
max-width: 90%;
backdrop-filter: blur(4px);
}
#signing-heading {
color: var(--quantum-glow);
text-align: center;
margin-bottom: var(--nsibidi-md);
}
.signing-form {
display: grid;
gap: var(--nsibidi-sm);
}
input, button {
font-family: inherit;
font-size: 1rem;
padding: var(--nsibidi-sm);
border-radius: 4px;
border: none;
}
#public-key {
background: rgba(0, 240, 255, 0.1);
border: 1px solid var(--quantum-glow);
color: white;
}
.ceremonial-button {
background: var(--diaspora-red);
color: white;
font-weight: var(--proverb-weight);
cursor: pointer;
transition: transform 0.2s, background 0.2s;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}
.ceremonial-button:hover {
background: #c0392b;
transform: translateY(-2px);
}
.ceremonial-button:active {
transform: translateY(0);
}
/* ===== RESPONSIVE LAYOUTS ===== */
@media (min-width: 768px) {
body {
display: grid;
grid-template-columns: 1fr 1fr;
}
#quantum-ship-container {
position: fixed;
width: 50%;
height: 100vh;
left: 50%;
}
.manifesto-header {
grid-column: 1 / -1;
}
.manifesto-scroll {
padding: var(--nsibidi-lg) var(--nsibidi-md);
max-width: 800px;
}
#signing-portal {
position: sticky;
top: var(--nsibidi-lg);
align-self: start;
margin: var(--nsibidi-lg) var(--nsibidi-md);
}
}
@media (min-width: 1200px) {
.manifesto-scroll {
columns: 2;
column-gap: var(--nsibidi-lg);
}
.manifesto-section {
break-inside: avoid;
}
}
/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion) {
.manifesto-line {
transition: none !important;
opacity: 1 !important;
transform: none !important;
}
}
/* Dyslexia Mode Toggle */
body.dyslexia-mode {
font-family: 'OpenDyslexic', sans-serif;
letter-spacing: 0.05em;
word-spacing: 0.1em;
background: var(--ubuntu-beige);
color: var(--black-star);
}
.dyslexia-mode .title-line {
color: var(--black-star);
text-shadow: none;
}
/* Voice Control */
@media (speech) {
button {
min-height: 60px;
}
}
<!-- Add to CSS -->
.adinkra-pattern {
position: fixed;
bottom: 20px;
right: 20px;
width: 80px;
height: 80px;
background-image: url('adinkrahene.svg');
animation: pulse 4s infinite alternate;
}
@keyframes pulse {
0% { opacity: 0.3; transform: scale(0.95); }
100% { opacity: 0.7; transform: scale(1.05); }
}
</style>
</head>
<body>
<!-- Three.js Container -->
<div id="quantum-ship-container"></div>
<!-- Header -->
<header class="manifesto-header">
<h1>
<span class="title-line">THE BLACK</span>
<span class="title-line">QUANTUM FLEET</span>
</h1>
<div class="subtitle">
<p>We are the particles they tried to isolate.</p>
<p>Now, we entangle.</p>
</div>
</header>
<!-- Manifesto Content -->
<main class="manifesto-scroll">
<article class="manifesto-article">
<section class="manifesto-section" data-principle="superposition">
<h2>PRINCIPLE ONE: SUPERPOSITION IS POWER</h2>
<div class="manifesto-line">
<p>Like particles existing in multiple states, we reject binaries. We are <em>technologists</em> and <em>custodians of culture</em>, <em>scientists</em> and <em>poets</em>, <em>dreamers</em> and <em>architects of the future</em>.</p>
</div>
<div class="manifesto-line">
<p>Our identities are not constraints—they are quantum advantages. Where they see contradiction, we see <span class="quantum-term">coherent superposition</span>.</p>
</div>
</section>
<section class="manifesto-section" data-principle="entanglement">
<h2>PRINCIPLE TWO: ENTANGLEMENT IS SURVIVAL</h2>
<div class="manifesto-line">
<p>Marcus Garvey's Black Star Line connected us across oceans. Today we forge <span class="quantum-term">quantum links</span>—your liberation is mine, your code our collective blueprint.</p>
</div>
<div class="manifesto-line">
<p>We build <em>decentralized networks</em> that no empire can sever. The diaspora's bonds are stronger than any blockchain.</p>
</div>
</section>
<section class="manifesto-section" data-principle="observation">
<h2>PRINCIPLE THREE: OBSERVE. DISRUPT. COLLAPSE.</h2>
<div class="manifesto-line">
<p>Quantum measurement changes reality. We reject passive observation—we <em>measure injustice</em>, then collapse its wave function into new possibilities.</p>
</div>
<div class="manifesto-line">
<p>Every algorithm we write is a <span class="quantum-term">waveform of resistance</span>. Every device we engineer, a <span class="quantum-term">probability distribution</span> tilted toward liberation.</p>
</div>
</section>
<section class="manifesto-section" data-principle="black-star">
<h2>PRINCIPLE FOUR: THE BLACK STAR STILL GUIDES</h2>
<div class="manifesto-line">
<p>Garvey's vision of <em>self-reliance</em> becomes quantum economic sovereignty:</p>
</div>
<ul class="manifesto-list">
<li class="manifesto-line">Community-owned data (no more digital colonization)</li>
<li class="manifesto-line">Cooperative cloud labs (no gatekeepers in STEM)</li>
<li class="manifesto-line">Crypto-harbors where our labor pays <em>us</em></li>
</ul>
</section>
<section class="manifesto-section" data-principle="storm">
<h2>PRINCIPLE FIVE: WE ARE THE SHIP AND THE STORM</h2>
<div class="manifesto-line">
<p>They see chaos in our brilliance—like particles in superposition. But chaos is just <em>order they haven't decoded</em>.</p>
</div>
<div class="manifesto-line">
<p>We harness our turbulence to propel the fleet forward. The waves that threaten to drown us become our propulsion.</p>
</div>
</section>
</article>
</main>
<!-- Signing Portal -->
<aside id="signing-portal">
<h2 id="signing-heading">ANCHOR YOUR LEGACY</h2>
<div class="signing-form">
<input type="text" id="public-key" placeholder="Enter your public key">
<button id="anchor-button" class="ceremonial-button">
Board the Fleet
</button>
</div>
<div class="signing-disclaimer">
<p>By anchoring, you commit to the Fleet's principles of Black feminist technoculture.</p>
</div>
</aside>
<!-- Three.js Script -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script>
// Initialize Three.js visualization
if (window.innerWidth >= 768 && !navigator.userAgent.match(/Mobi|Android/i)) {
const container = document.getElementById('quantum-ship-container');
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera(75, container.clientWidth / container.clientHeight, 0.1, 1000);
const renderer = new THREE.WebGLRenderer({ antialias: true, alpha: true });
renderer.setSize(container.clientWidth, container.clientHeight);
container.appendChild(renderer.domElement);
// Create quantum particle field
const particlesGeometry = new THREE.BufferGeometry();
const particleCount = 2000;
const posArray = new Float32Array(particleCount * 3);
for(let i = 0; i < particleCount * 3; i++) {
posArray[i] = (Math.random() - 0.5) * 10;
}
particlesGeometry.setAttribute('position', new THREE.BufferAttribute(posArray, 3));
const particlesMaterial = new THREE.PointsMaterial({
size: 0.02,
color: new THREE.Color(0x00f0ff),
transparent: true,
opacity: 0.8,
blending: THREE.AdditiveBlending
});
const particleMesh = new THREE.Points(particlesGeometry, particlesMaterial);
scene.add(particleMesh);
// Create ship hull
const hullGeometry = new THREE.IcosahedronGeometry(1.5, 2);
const hullMaterial = new THREE.MeshBasicMaterial({
color: 0x0a0a2a,
wireframe: true,
transparent: true,
opacity: 0.3
});
const hull = new THREE.Mesh(hullGeometry, hullMaterial);
scene.add(hull);
camera.position.z = 5;
// Animation loop
function animate() {
requestAnimationFrame(animate);
hull.rotation.x += 0.001;
hull.rotation.y += 0.001;
const positions = particleMesh.geometry.attributes.position.array;
for(let i = 0; i < particleCount; i++) {
const i3 = i * 3;
positions[i3] += (0 - positions[i3]) * 0.01;
positions[i3 + 1] += (0 - positions[i3 + 1]) * 0.01;
positions[i3 + 2] += (0 - positions[i3 + 2]) * 0.01;
}
particleMesh.geometry.attributes.position.needsUpdate = true;
renderer.render(scene, camera);
}
animate();
// Handle resize
window.addEventListener('resize', () => {
camera.aspect = container.clientWidth / container.clientHeight;
camera.updateProjectionMatrix();
renderer.setSize(container.clientWidth, container.clientHeight);
});
}
// Manifesto line animation
document.addEventListener('DOMContentLoaded', () => {
const lines = document.querySelectorAll('.manifesto-line');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
}
});
}, { threshold: 0.1 });
lines.forEach(line => observer.observe(line));
});
</script>
</body>
</html>