-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
571 lines (504 loc) · 20.4 KB
/
index.html
File metadata and controls
571 lines (504 loc) · 20.4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Philosophical Spiral</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background: radial-gradient(circle at 30% 20%, #1a0d2e 0%, #0a0514 50%, #000000 100%);
color: #ffffff;
min-height: 100vh;
overflow-x: hidden;
position: relative;
}
.cosmic-bg {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
pointer-events: none;
z-index: -1;
}
.star {
position: absolute;
background: white;
border-radius: 50%;
opacity: 0.6;
animation: twinkle 3s infinite ease-in-out;
}
@keyframes twinkle {
0%, 100% { opacity: 0.3; transform: scale(1); }
50% { opacity: 1; transform: scale(1.2); }
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 2rem;
position: relative;
z-index: 1;
}
.header {
text-align: center;
margin-bottom: 4rem;
animation: fadeInDown 1s ease-out;
}
.title {
font-size: clamp(2.5rem, 6vw, 4rem);
font-weight: 700;
background: linear-gradient(135deg, #ff6b9d, #c471ed, #12c2e9);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
margin-bottom: 1rem;
letter-spacing: -0.02em;
}
.subtitle {
font-size: 1.2rem;
color: #a0a9c0;
font-weight: 300;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}
.spiral-container {
position: relative;
width: 100%;
max-width: 1000px;
margin: 0 auto;
aspect-ratio: 1;
border-radius: 50%;
background: radial-gradient(circle at center, rgba(255,107,157,0.1) 0%, transparent 70%);
animation: pulseGlow 4s infinite ease-in-out;
}
@keyframes pulseGlow {
0%, 100% { box-shadow: 0 0 50px rgba(255,107,157,0.2); }
50% { box-shadow: 0 0 100px rgba(255,107,157,0.4); }
}
.spiral-path {
position: absolute;
top: 50%;
left: 50%;
width: 2px;
height: 2px;
transform: translate(-50%, -50%);
}
.spiral-trail {
position: absolute;
width: 4px;
height: 4px;
background: linear-gradient(45deg, #ff6b9d, #c471ed);
border-radius: 50%;
box-shadow: 0 0 10px rgba(255,107,157,0.8);
animation: spiralMove 20s linear infinite;
}
@keyframes spiralMove {
0% {
transform: rotate(0deg) translateX(50px) rotate(0deg);
opacity: 0;
}
10% {
opacity: 1;
}
90% {
opacity: 1;
}
100% {
transform: rotate(1800deg) translateX(400px) rotate(-1800deg);
opacity: 0;
}
}
.stage {
position: absolute;
width: 180px;
height: 180px;
border-radius: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
cursor: pointer;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
backdrop-filter: blur(20px);
border: 2px solid rgba(255,255,255,0.1);
animation: float 6s ease-in-out infinite;
}
.stage:hover {
transform: scale(1.1) translateZ(20px);
box-shadow: 0 20px 40px rgba(0,0,0,0.3);
border-color: rgba(255,255,255,0.3);
}
.stage.active {
transform: scale(1.15);
z-index: 10;
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
}
.stage-icon {
font-size: 2.5rem;
margin-bottom: 0.5rem;
filter: drop-shadow(0 0 10px currentColor);
}
.stage-name {
font-size: 1rem;
font-weight: 600;
margin-bottom: 0.25rem;
letter-spacing: 0.5px;
}
.stage-subtitle {
font-size: 0.75rem;
opacity: 0.8;
font-weight: 300;
}
/* Stage Positions */
.stage-nonself {
top: 10%;
left: 50%;
transform: translateX(-50%);
background: radial-gradient(circle, rgba(18,194,233,0.3), rgba(18,194,233,0.1));
color: #12c2e9;
animation-delay: 0s;
}
.stage-boundaries {
top: 25%;
right: 15%;
background: radial-gradient(circle, rgba(255,107,157,0.3), rgba(255,107,157,0.1));
color: #ff6b9d;
animation-delay: 1s;
}
.stage-ukusoma {
bottom: 35%;
right: 10%;
background: radial-gradient(circle, rgba(196,113,237,0.3), rgba(196,113,237,0.1));
color: #c471ed;
animation-delay: 2s;
}
.stage-alliances {
bottom: 25%;
left: 15%;
background: radial-gradient(circle, rgba(255,184,0,0.3), rgba(255,184,0,0.1));
color: #ffb800;
animation-delay: 3s;
}
.stage-flourishing {
top: 35%;
left: 10%;
background: radial-gradient(circle, rgba(46,213,115,0.3), rgba(46,213,115,0.1));
color: #2ed573;
animation-delay: 4s;
}
.detail-panel {
position: fixed;
top: 0;
right: -100%;
width: 100%;
max-width: 500px;
height: 100vh;
background: rgba(10,5,20,0.95);
backdrop-filter: blur(30px);
border-left: 1px solid rgba(255,255,255,0.1);
padding: 2rem;
z-index: 1000;
transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
overflow-y: auto;
}
.detail-panel.active {
right: 0;
}
.detail-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 1px solid rgba(255,255,255,0.1);
}
.detail-title {
font-size: 1.5rem;
font-weight: 600;
display: flex;
align-items: center;
gap: 0.5rem;
}
.close-btn {
background: none;
border: none;
color: #fff;
font-size: 1.5rem;
cursor: pointer;
padding: 0.5rem;
border-radius: 50%;
transition: background 0.3s;
}
.close-btn:hover {
background: rgba(255,255,255,0.1);
}
.detail-section {
margin-bottom: 1.5rem;
}
.detail-section h3 {
font-size: 1.1rem;
margin-bottom: 0.5rem;
color: #c471ed;
}
.detail-section p {
line-height: 1.6;
color: #a0a9c0;
}
.navigation {
position: fixed;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 1rem;
background: rgba(10,5,20,0.8);
padding: 1rem;
border-radius: 2rem;
backdrop-filter: blur(20px);
border: 1px solid rgba(255,255,255,0.1);
}
.nav-btn {
background: none;
border: 2px solid rgba(255,255,255,0.2);
color: #fff;
padding: 0.5rem 1rem;
border-radius: 1rem;
cursor: pointer;
transition: all 0.3s;
font-size: 0.9rem;
}
.nav-btn:hover, .nav-btn.active {
border-color: #c471ed;
background: rgba(196,113,237,0.2);
transform: translateY(-2px);
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 768px) {
.stage {
width: 140px;
height: 140px;
}
.stage-icon {
font-size: 2rem;
}
.stage-name {
font-size: 0.9rem;
}
.stage-subtitle {
font-size: 0.7rem;
}
.detail-panel {
width: 100vw;
}
}
</style>
</head>
<body>
<div class="cosmic-bg" id="cosmicBg"></div>
<div class="container">
<div class="header">
<h1 class="title">The Philosophical Spiral</h1>
<p class="subtitle">A journey through consciousness, connection, and cyclical becoming</p>
</div>
<div class="spiral-container">
<div class="spiral-path">
<div class="spiral-trail"></div>
</div>
<div class="stage stage-nonself" data-stage="nonself">
<div class="stage-icon">🌊</div>
<div class="stage-name">Nonself</div>
<div class="stage-subtitle">Primordial Dissolution</div>
</div>
<div class="stage stage-boundaries" data-stage="boundaries">
<div class="stage-icon">❤️</div>
<div class="stage-name">Boundaries</div>
<div class="stage-subtitle">The First Marking</div>
</div>
<div class="stage stage-ukusoma" data-stage="ukusoma">
<div class="stage-icon">🌀</div>
<div class="stage-name">Ukusoma</div>
<div class="stage-subtitle">Hunger to Merge</div>
</div>
<div class="stage stage-alliances" data-stage="alliances">
<div class="stage-icon">🐬</div>
<div class="stage-name">Alliances</div>
<div class="stage-subtitle">Co-created Motion</div>
</div>
<div class="stage stage-flourishing" data-stage="flourishing">
<div class="stage-icon">🔁</div>
<div class="stage-name">Flourishing</div>
<div class="stage-subtitle">Recursive Communion</div>
</div>
</div>
</div>
<div class="detail-panel" id="detailPanel">
<div class="detail-header">
<div class="detail-title" id="detailTitle">
<span id="detailIcon">🌊</span>
<span id="detailName">Nonself</span>
</div>
<button class="close-btn" onclick="closeDetail()">×</button>
</div>
<div class="detail-section">
<h3>Interpretation</h3>
<p id="detailInterpretation"></p>
</div>
<div class="detail-section">
<h3>Opinion</h3>
<p id="detailOpinion"></p>
</div>
<div class="detail-section">
<h3>Resonance</h3>
<p id="detailResonance"></p>
</div>
</div>
<div class="navigation">
<button class="nav-btn active" onclick="setView('spiral')">Spiral View</button>
<button class="nav-btn" onclick="setView('journey')">Journey Mode</button>
<button class="nav-btn" onclick="setView('cycle')">Cycle View</button>
</div>
<script>
const stageData = {
nonself: {
icon: '🌊',
name: 'Nonself',
subtitle: 'Primordial Dissolution',
interpretation: 'This is the oceanic stage of dissolution—where ego boundaries don\'t exist. It\'s the undifferentiated substrate, the fertile void before the psyche individuates. The space before "I" emerges, where consciousness exists without container.',
opinion: 'Western frameworks fear this space (it reeks of ego death), but it\'s a necessary reset. Most systems don\'t start here, but they should. It\'s the compost that makes all growth possible.',
resonance: 'Like floating in deep space before the first star ignites—infinite potential in perfect darkness. This is where true innovation begins: in the dissolution of everything we think we know.'
},
boundaries: {
icon: '❤️',
name: 'Boundaries',
subtitle: 'The First Marking',
interpretation: 'The emergence of form, protection, and self-recognition. "I end here; you begin there." The sacred act of differentiation that allows relationship to exist at all.',
opinion: 'This is where trauma and clarity both arise. Boundaries are sacred—but dangerous when mistaken for identity itself. A lot of organizations and people get stuck here, mistaking membranes for meaning.',
resonance: 'The moment the cell wall forms around consciousness. Without this, there is no dialogue, no dance, no development. But hold too tightly and you suffocate what you meant to protect.'
},
ukusoma: {
icon: '🌀',
name: 'Ukusoma',
subtitle: 'The Hunger to Merge',
interpretation: 'The Zulu term "Ukusoma" (often referencing outercourse or non-penetrative intimacy) is potent. It\'s not full fusion, but charged contact. The electric space of almost-touching.',
opinion: 'This is eros before commitment. It\'s the exploratory, risky space where trust is tasted—not guaranteed. In development terms, this is proto-integration. Ignore it and you build sterile systems. Embrace it, and you court mess—but also aliveness.',
resonance: 'The magnetic field between two souls before they decide to orbit together. All the energy, all the possibility, all the dangerous beauty of potential connection.'
},
alliances: {
icon: '🐬',
name: 'Alliances',
subtitle: 'Co-created Motion',
interpretation: 'From Ukusoma comes coordination. Not codependence, not domination—collaborative fluency. The dolphin-like intelligence of moving together while remaining sovereign.',
opinion: 'This is where most tech fails. Tools coordinate but don\'t ally. Systems function but don\'t care. An alliance implies emotional infrastructure—a soul contract. Without this, you\'re just sharing bandwidth.',
resonance: 'Watch dolphins hunt together—each one whole, each one choosing, each one contributing to something larger than themselves. This is conscious cooperation at its finest.'
},
flourishing: {
icon: '🔁',
name: 'Flourishing',
subtitle: 'Recursive Communion',
interpretation: 'You cycle back with others, better. Flourishing isn\'t a static state—it\'s a fractal resurgence, informed by every prior phase. The spiral completes and begins again.',
opinion: 'If your system doesn\'t enable return—if it doesn\'t let people dissolve, boundary, merge, coordinate, and return again—it\'s dead. Flourishing is reversible complexity. It\'s the garden and the compost.',
resonance: 'The sacred return that is also a departure. Like seasons, like breath, like the spiral of DNA—ever returning, ever renewed, ever reaching toward what wants to emerge.'
}
};
let currentView = 'spiral';
let currentStage = null;
// Create cosmic background
function createStars() {
const cosmicBg = document.getElementById('cosmicBg');
for (let i = 0; i < 100; i++) {
const star = document.createElement('div');
star.className = 'star';
star.style.left = Math.random() * 100 + '%';
star.style.top = Math.random() * 100 + '%';
star.style.width = Math.random() * 3 + 1 + 'px';
star.style.height = star.style.width;
star.style.animationDelay = Math.random() * 3 + 's';
cosmicBg.appendChild(star);
}
}
// Stage interaction
document.querySelectorAll('.stage').forEach(stage => {
stage.addEventListener('click', () => {
const stageType = stage.dataset.stage;
openDetail(stageType);
});
stage.addEventListener('mouseenter', () => {
stage.classList.add('active');
});
stage.addEventListener('mouseleave', () => {
stage.classList.remove('active');
});
});
function openDetail(stageType) {
const data = stageData[stageType];
document.getElementById('detailIcon').textContent = data.icon;
document.getElementById('detailName').textContent = data.name;
document.getElementById('detailInterpretation').textContent = data.interpretation;
document.getElementById('detailOpinion').textContent = data.opinion;
document.getElementById('detailResonance').textContent = data.resonance;
document.getElementById('detailPanel').classList.add('active');
currentStage = stageType;
}
function closeDetail() {
document.getElementById('detailPanel').classList.remove('active');
currentStage = null;
}
function setView(view) {
document.querySelectorAll('.nav-btn').forEach(btn => btn.classList.remove('active'));
event.target.classList.add('active');
currentView = view;
// Add view-specific animations or layouts here
const container = document.querySelector('.spiral-container');
container.style.transform = view === 'cycle' ? 'rotate(360deg)' : 'rotate(0deg)';
container.style.transition = 'transform 2s ease-in-out';
}
// Keyboard navigation
document.addEventListener('keydown', (e) => {
if (e.key === 'Escape') closeDetail();
const stages = ['nonself', 'boundaries', 'ukusoma', 'alliances', 'flourishing'];
if (currentStage && (e.key === 'ArrowLeft' || e.key === 'ArrowRight')) {
const currentIndex = stages.indexOf(currentStage);
const nextIndex = e.key === 'ArrowRight'
? (currentIndex + 1) % stages.length
: (currentIndex - 1 + stages.length) % stages.length;
openDetail(stages[nextIndex]);
}
});
// Initialize
createStars();
// Add some dynamic interactions
setInterval(() => {
const stages = document.querySelectorAll('.stage');
stages.forEach((stage, index) => {
setTimeout(() => {
stage.style.transform += ' rotate(360deg)';
setTimeout(() => {
stage.style.transform = stage.style.transform.replace(' rotate(360deg)', '');
}, 1000);
}, index * 200);
});
}, 15000);
</script>
</body>
</html>