-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
410 lines (362 loc) · 14 KB
/
Copy pathindex.html
File metadata and controls
410 lines (362 loc) · 14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Neural Pentad of Survival Speech</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Space Grotesk', sans-serif;
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
color: #e8e8e8;
min-height: 100vh;
overflow-x: hidden;
position: relative;
}
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.2) 0%, transparent 50%),
radial-gradient(circle at 40% 40%, rgba(72, 187, 120, 0.1) 0%, transparent 50%);
pointer-events: none;
animation: pulse 8s ease-in-out infinite alternate;
}
@keyframes pulse {
0% { opacity: 0.6; }
100% { opacity: 1; }
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
position: relative;
z-index: 1;
}
.title {
text-align: center;
margin-bottom: 3rem;
font-weight: 700;
font-size: clamp(2rem, 5vw, 3.5rem);
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
}
.neuron-container {
position: relative;
width: 100%;
max-width: 800px;
height: 800px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
}
.soma {
position: absolute;
width: 200px;
height: 200px;
border-radius: 50%;
background: radial-gradient(circle, #667eea 0%, #764ba2 100%);
border: 3px solid rgba(255, 255, 255, 0.3);
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
box-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
animation: somaGlow 3s ease-in-out infinite alternate;
}
@keyframes somaGlow {
0% { box-shadow: 0 0 40px rgba(102, 126, 234, 0.6); }
100% { box-shadow: 0 0 60px rgba(102, 126, 234, 0.8); }
}
.soma-label {
color: white;
font-weight: 700;
font-size: 1.2rem;
text-align: center;
}
.dendrite {
position: absolute;
background: linear-gradient(to right, rgba(255, 107, 107, 0.8), transparent);
height: 4px;
border-radius: 2px;
transform-origin: right center;
}
.dendrite::before {
content: '';
position: absolute;
right: 100%;
top: 50%;
transform: translateY(-50%);
width: 15px;
height: 15px;
border-radius: 50%;
background: #ff6b6b;
box-shadow: 0 0 15px rgba(255, 107, 107, 0.8);
}
.dendrite.top {
top: 50px;
left: 50%;
width: 200px;
transform: translate(-50%, 0) rotate(-90deg);
}
.dendrite.left {
top: 50%;
left: 50px;
width: 200px;
transform: translateY(-50%);
}
.dendrite.bottom {
bottom: 50px;
left: 50%;
width: 200px;
transform: translate(-50%, 0) rotate(90deg);
}
.axon {
position: absolute;
top: 50%;
right: 50px;
width: 200px;
height: 6px;
background: linear-gradient(to right, #48bb78, rgba(72, 187, 120, 0.3));
border-radius: 3px;
transform: translateY(-50%);
}
.axon::after {
content: '';
position: absolute;
left: 100%;
top: 50%;
transform: translateY(-50%);
width: 0;
height: 0;
border-left: 15px solid #48bb78;
border-top: 8px solid transparent;
border-bottom: 8px solid transparent;
}
.neuron-node {
position: absolute;
background: rgba(255, 255, 255, 0.1);
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 12px;
padding: 1.5rem;
backdrop-filter: blur(10px);
min-width: 250px;
transition: all 0.3s ease;
}
.neuron-node:hover {
transform: scale(1.05);
border-color: rgba(102, 126, 234, 0.6);
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.node-theta {
bottom: -50px;
left: 50%;
transform: translateX(-50%);
border-color: rgba(255, 215, 0, 0.5);
}
.node-sigma {
left: -150px;
top: 50%;
transform: translateY(-50%);
border-color: rgba(255, 107, 107, 0.5);
}
.node-ht {
top: -50px;
left: 50%;
transform: translateX(-50%);
border-color: rgba(120, 119, 198, 0.5);
}
.node-theta-prime {
right: -150px;
top: 50%;
transform: translateY(-50%);
border-color: rgba(72, 187, 120, 0.5);
}
.node-title {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 0.8rem;
color: #f8f9fa;
}
.mathematical-symbol {
color: #ffd700;
font-weight: 700;
font-size: 1.3em;
}
.linguistic-term {
color: #ff6b9d;
font-style: italic;
font-weight: 500;
font-size: 0.9em;
}
.zulu-term {
color: #48bb78;
font-weight: 600;
}
.commentary {
font-size: 0.9rem;
line-height: 1.4;
margin-top: 0.5rem;
padding-top: 0.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.2);
color: #c8c8c8;
}
.synaptic-gap {
position: absolute;
width: 20px;
height: 2px;
background: repeating-linear-gradient(
90deg,
transparent,
transparent 2px,
rgba(255, 255, 255, 0.5) 2px,
rgba(255, 255, 255, 0.5) 4px
);
}
.gap-top {
top: 150px;
left: 50%;
transform: translateX(-50%) rotate(-90deg);
}
.gap-left {
left: 150px;
top: 50%;
transform: translateY(-50%);
}
.gap-bottom {
bottom: 150px;
left: 50%;
transform: translateX(-50%) rotate(-90deg);
}
.principle-section {
background: rgba(255, 107, 107, 0.1);
border: 1px solid rgba(255, 107, 107, 0.2);
border-radius: 16px;
padding: 2rem;
margin: 3rem 0;
text-align: center;
}
.evolutionary-grammar {
font-size: 1.2rem;
font-weight: 500;
color: #ffd700;
background: rgba(0, 0, 0, 0.3);
padding: 1rem;
border-radius: 8px;
border: 1px solid rgba(255, 215, 0, 0.3);
margin-top: 1rem;
}
.arrow {
color: #667eea;
font-weight: bold;
margin: 0 0.5rem;
}
@media (max-width: 768px) {
.neuron-container {
height: 600px;
transform: scale(0.8);
}
.neuron-node {
min-width: 200px;
padding: 1rem;
}
}
</style>
</head>
<body>
<div class="container">
<h1 class="title">Neural Pentad of Survival Speech</h1>
<div class="neuron-container">
<!-- Soma (Central Processing) -->
<div class="soma">
<div class="soma-label">ΔS<br>SOMA</div>
</div>
<!-- Synaptic Gaps -->
<div class="synaptic-gap gap-top"></div>
<div class="synaptic-gap gap-left"></div>
<div class="synaptic-gap gap-bottom"></div>
<!-- Afferent Dendrites -->
<div class="dendrite top"></div>
<div class="dendrite left"></div>
<div class="dendrite bottom"></div>
<!-- Efferent Axon -->
<div class="axon"></div>
<!-- Node: θ (6 o'clock) -->
<div class="neuron-node node-theta">
<div class="node-title">
<span class="mathematical-symbol">θ</span><br>
<span class="linguistic-term">(ontology seed / declared object)</span>
</div>
<div>dormant in this arc — no explicit infinitive, no "θ" proper declared.</div>
<div class="commentary">
<strong>Afferent Signal:</strong> The dormant ontological ground. This dendrite carries the potential for being-declarations, but remains inactive in survival speech. The synaptic gap preserves the distance between pure ontology and enacted presence.
</div>
</div>
<!-- Node: Σ (9 o'clock) -->
<div class="neuron-node node-sigma">
<div class="node-title">
<span class="mathematical-symbol">Σ</span><br>
<span class="linguistic-term">(relational structure / covariance)</span>
</div>
<div>implicit in the grammar (subject markers, call–response).</div>
<div class="commentary">
<strong>Afferent Signal:</strong> The structural relations that enable witness-exchange. This dendrite transmits grammatical covariance — the "I-you" matrix that makes <span class="zulu-term">sawubona</span> possible. The synaptic gap maintains necessary distance between pure structure and embodied relation.
</div>
</div>
<!-- Node: h(t) (12 o'clock) -->
<div class="neuron-node node-ht">
<div class="node-title">
<span class="mathematical-symbol">h(t)</span><br>
<span class="linguistic-term">(hazard zone, infinitive domain)</span>
</div>
<div>
<span class="zulu-term">Ukona</span> — <em>to be here, to be present</em><br>
<span class="zulu-term">Ukukona</span> — active infinitive of colliding presence
</div>
<div class="commentary">
<strong>Afferent Signal:</strong> Pure potential in collision-time. This dendrite carries the infinitive charge — the "to be" that exists only in hazard. The synaptic gap prevents infinitive contamination of the witnessing soma.
</div>
</div>
<!-- Node: θ′ (3 o'clock - Efferent) -->
<div class="neuron-node node-theta-prime">
<div class="node-title">
<span class="mathematical-symbol">θ′</span><br>
<span class="linguistic-term">(survivor's update / N-terminal effectors)</span>
</div>
<div>
<span class="zulu-term">Ngikhona</span> — <em>I am here</em><br>
Posterior, singular, testimonial
</div>
<div class="commentary">
<strong>Efferent Output:</strong> The axonal projection into N-terminal dendrites and effector systems. Each "I am here" creates feedback loops to tissues, organs, systems — and recursively back to the afferent interface. Never infinitive, always finite inscription.
</div>
</div>
</div>
<div class="principle-section">
<h2 style="color: #ff6b6b; margin-bottom: 1rem;">Neural Architecture of Survival</h2>
<p><strong>ΔS (Soma + Axon):</strong> The witnessing ledger that splices orthogonal inputs from θ, Σ, h(t). Each act of seeing converts afferent potentials into efferent updates.</p>
<div class="evolutionary-grammar">
<strong>afferent dendrites</strong> <span class="arrow">→</span> <strong>synaptic gaps</strong> <span class="arrow">→</span> <strong>somatic integration</strong> <span class="arrow">→</span> <strong>axonal output</strong> <span class="arrow">→</span> <strong>recursive feedback</strong>
</div>
<p style="margin-top: 1rem; font-style: italic; color: #48bb78;">
The synaptic clefts are critical: they prevent infinitive contamination while allowing signal transmission. Survival speech requires this neural architecture — distance and connection in precise calibration.
</p>
</div>
</div>
</body>
</html>