-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule_neural_archive.html
More file actions
698 lines (644 loc) · 37.4 KB
/
Copy pathmodule_neural_archive.html
File metadata and controls
698 lines (644 loc) · 37.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
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>COREWEAVE // NEURAL MODULE ARCHIVE</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600&family=Inter:wght@400;500;600&display=swap');
:root {
--harvester: #34d399;
--sensor: #38bdf8;
--mover: #a78bfa;
--resistant: #f472b6;
--explorer: #fbbf24;
--communicator: #c084fc;
}
body {
font-family: 'Inter', system_ui, sans-serif;
}
.font-display {
font-family: 'Space Grotesk', 'Inter', system_ui, sans-serif;
font-weight: 600;
}
.module-card {
transition: transform 0.2s cubic-bezier(0.23, 1.0, 0.32, 1),
box-shadow 0.2s cubic-bezier(0.23, 1.0, 0.32, 1);
border: 1px solid rgba(255,255,255,0.08);
}
.module-card:hover {
transform: translateY(-4px);
box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}
.section-header {
font-size: 13px;
letter-spacing: 0.5px;
text-transform: uppercase;
font-weight: 600;
}
.data-table {
font-size: 13px;
line-height: 1.4;
}
.data-table td {
padding-top: 8px;
padding-bottom: 8px;
vertical-align: top;
}
.module-color-harvester { color: #34d399; }
.module-color-sensor { color: #38bdf8; }
.module-color-mover { color: #a78bfa; }
.module-color-resistant { color: #f472b6; }
.module-color-explorer { color: #fbbf24; }
.module-color-communicator { color: #c084fc; }
.synergy-row {
font-size: 12px;
line-height: 1.35;
}
.neural-badge {
font-size: 10px;
padding: 1px 6px;
border-radius: 4px;
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.1);
}
.core-placeholder {
background: linear-gradient(145deg, #111113, #1a1a1f);
border: 1px solid rgba(255,255,255,0.1);
position: relative;
overflow: hidden;
}
.core-placeholder::after {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.stat-value {
font-family: ui-monospace, monospace;
font-weight: 600;
}
.sci-fi-grid {
background-image:
linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
background-size: 24px 24px;
}
</style>
</head>
<body class="bg-[#0a0a0f] text-white">
<!-- Top Navigation -->
<nav class="border-b border-white/10 bg-[#0a0a0f]/95 backdrop-blur-lg sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-8 h-16 flex items-center justify-between">
<div class="flex items-center gap-x-3">
<div class="w-8 h-8 rounded-xl bg-gradient-to-br from-violet-500 to-fuchsia-500 flex items-center justify-center">
<i class="fa-solid fa-microchip text-white text-lg"></i>
</div>
<div>
<span class="font-display text-xl tracking-tighter">COREWEAVE</span>
<span class="text-white/40 text-sm ml-1.5">v2.4</span>
</div>
</div>
<div class="flex items-center gap-x-4">
<a href="https://gooboberti.github.io/ModularLifeSim-Website/minisimmy2.html"
target="_blank"
class="flex items-center gap-x-2 px-4 py-2 rounded-2xl border border-white/15 hover:border-white/30 text-sm font-medium transition-colors">
<i class="fa-solid fa-play text-emerald-400"></i>
<span>Launch Simulation</span>
</a>
</div>
</div>
</nav>
<!-- Hero Header -->
<div class="max-w-7xl mx-auto px-8 pt-12 pb-8">
<div class="flex items-end justify-between">
<div>
<div class="inline-flex items-center gap-x-2 px-4 py-1.5 rounded-3xl bg-white/5 border border-white/10 text-xs tracking-[1.5px] mb-4">
<div class="w-1.5 h-1.5 bg-emerald-400 rounded-full animate-pulse"></div>
NEURAL ARCHIVE • MODULE TAXONOMY
</div>
<h1 class="font-display text-6xl tracking-tighter">COREWEAVE</h1>
<p class="text-2xl text-white/60 tracking-tight">Neural Module Identity Matrix</p>
</div>
<div class="text-right max-w-xs">
<p class="text-sm text-white/50">Six core module families.<br>Each one shapes behavior, neural pathways, and colony strategy.</p>
</div>
</div>
</div>
<div class="max-w-7xl mx-auto px-8 pb-20">
<!-- Module Grid -->
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6">
<!-- HARVESTER -->
<div class="module-card bg-[#111113] rounded-3xl p-6 border border-white/10" style="border-color: #34d39930;">
<div class="flex items-start justify-between mb-5">
<div>
<div class="flex items-center gap-x-3">
<div class="w-9 h-9 rounded-2xl flex items-center justify-center" style="background: #34d39920; color: #34d399;">
<i class="fa-solid fa-leaf text-xl"></i>
</div>
<div>
<div class="font-display text-2xl tracking-tight" style="color: #34d399;">HARVESTER</div>
<div class="text-xs text-white/40 -mt-0.5">Resource • Day Specialist</div>
</div>
</div>
</div>
<div class="text-right">
<div class="text-[10px] text-white/40">CORE COLOR</div>
<div class="font-mono text-sm" style="color: #34d399;">#34D399</div>
</div>
</div>
<!-- Placeholder Image -->
<div class="core-placeholder w-full h-40 rounded-2xl mb-6 flex items-center justify-center relative overflow-hidden" style="background: linear-gradient(145deg, #0f1a15, #111113);">
<div class="text-center">
<i class="fa-solid fa-leaf text-6xl mb-2" style="color: #34d39930;"></i>
<div class="text-xs tracking-widest text-white/30">HARVESTER CORE RENDER</div>
</div>
<div class="absolute bottom-3 right-3 px-3 py-1 rounded-xl bg-black/60 text-[10px] flex items-center gap-x-1.5" style="color: #34d399;">
<i class="fa-solid fa-play text-[8px]"></i>
<span class="font-mono text-[10px]">WATCH SIM</span>
</div>
</div>
<table class="w-full data-table">
<thead>
<tr class="border-b border-white/10 text-xs text-white/40">
<th class="text-left pb-2 font-normal">EFFECT</th>
<th class="text-left pb-2 font-normal w-16">VALUE</th>
<th class="text-left pb-2 font-normal">DESCRIPTION</th>
</tr>
</thead>
<tbody class="text-sm">
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Food Mult</td>
<td class="py-2.5 font-mono text-emerald-400">0.11</td>
<td class="py-2.5 text-white/70">Increases energy gained from food zones</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">White Relay Honey</td>
<td class="py-2.5 font-mono text-emerald-400">true</td>
<td class="py-2.5 text-white/70">Converts relayed whites into colony honey</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Food Drive</td>
<td class="py-2.5 font-mono text-emerald-400">0.10</td>
<td class="py-2.5 text-white/70">Stronger drive to seek food sources</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Day Food Mult</td>
<td class="py-2.5 font-mono text-emerald-400">0.05</td>
<td class="py-2.5 text-white/70">Extra efficiency during day phase</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Social Align</td>
<td class="py-2.5 font-mono text-emerald-400">+0.06</td>
<td class="py-2.5 text-white/70">Bonus to staying near other creatures</td>
</tr>
<tr>
<td class="py-2.5 pr-3 font-medium text-white/90">Max Energy Penalty</td>
<td class="py-2.5 font-mono text-orange-400">-3.2</td>
<td class="py-2.5 text-white/70">Reduces maximum energy storage capacity</td>
</tr>
</tbody>
</table>
<div class="mt-5 pt-4 border-t border-white/10 text-xs">
<div class="flex gap-x-6">
<div>
<span class="text-emerald-400 font-medium">Strong Synergies:</span><br>
<span class="text-white/60">Signal Harvester • Bloom Catalyst • Drought Engine</span>
</div>
<div>
<span class="text-orange-400 font-medium">Competitive Pressures:</span><br>
<span class="text-white/60">Explorer (wanders from food) • Mover (energy drain)</span>
</div>
</div>
</div>
</div>
<!-- SENSOR -->
<div class="module-card bg-[#111113] rounded-3xl p-6 border border-white/10" style="border-color: #38bdf830;">
<div class="flex items-start justify-between mb-5">
<div>
<div class="flex items-center gap-x-3">
<div class="w-9 h-9 rounded-2xl flex items-center justify-center" style="background: #38bdf220; color: #38bdf8;">
<i class="fa-solid fa-eye text-xl"></i>
</div>
<div>
<div class="font-display text-2xl tracking-tight" style="color: #38bdf8;">SENSOR</div>
<div class="text-xs text-white/40 -mt-0.5">Awareness • Night Specialist</div>
</div>
</div>
</div>
<div class="text-right">
<div class="text-[10px] text-white/40">CORE COLOR</div>
<div class="font-mono text-sm" style="color: #38bdf8;">#38BDF8</div>
</div>
</div>
<div class="core-placeholder w-full h-40 rounded-2xl mb-6 flex items-center justify-center" style="background: linear-gradient(145deg, #0f1a22, #111113);">
<div class="text-center">
<i class="fa-solid fa-eye text-6xl mb-2" style="color: #38bdf830;"></i>
<div class="text-xs tracking-widest text-white/30">SENSOR CORE RENDER</div>
</div>
</div>
<table class="w-full data-table">
<tbody class="text-sm">
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90 w-40">Hazard Detect</td>
<td class="py-2.5 font-mono text-sky-400 w-16">0.13</td>
<td class="py-2.5 text-white/70">Detects red hazards earlier</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Hazard Avoid</td>
<td class="py-2.5 font-mono text-sky-400">0.12</td>
<td class="py-2.5 text-white/70">Stronger instinct to dodge danger</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Night Hazard</td>
<td class="py-2.5 font-mono text-sky-400">0.07</td>
<td class="py-2.5 text-white/70">Enhanced hazard reading at night</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Speed Penalty</td>
<td class="py-2.5 font-mono text-orange-400">-0.045</td>
<td class="py-2.5 text-white/70">Movement speed reduction</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">White Relay Ping</td>
<td class="py-2.5 font-mono text-sky-400">true</td>
<td class="py-2.5 text-white/70">Pings danger through white relays</td>
</tr>
<tr>
<td class="py-2.5 pr-3 font-medium text-white/90">Vortex Escape</td>
<td class="py-2.5 font-mono text-sky-400">0.04</td>
<td class="py-2.5 text-white/70">Better escape from central vortex</td>
</tr>
</tbody>
</table>
<div class="mt-5 pt-4 border-t border-white/10 text-xs">
<div class="flex gap-x-6">
<div>
<span class="text-sky-400 font-medium">Strong Synergies:</span><br>
<span class="text-white/60">Prism Scout • Plague Warden • Hazard Chorus</span>
</div>
<div>
<span class="text-orange-400 font-medium">Competitive Pressures:</span><br>
<span class="text-white/60">Mover (speed focus) • Harvester (day bias)</span>
</div>
</div>
</div>
</div>
<!-- MOVER -->
<div class="module-card bg-[#111113] rounded-3xl p-6 border border-white/10" style="border-color: #a78bfa30;">
<div class="flex items-start justify-between mb-5">
<div>
<div class="flex items-center gap-x-3">
<div class="w-9 h-9 rounded-2xl flex items-center justify-center" style="background: #a78bfa20; color: #a78bfa;">
<i class="fa-solid fa-bolt text-xl"></i>
</div>
<div>
<div class="font-display text-2xl tracking-tight" style="color: #a78bfa;">MOVER</div>
<div class="text-xs text-white/40 -mt-0.5">Mobility • Vortex Specialist</div>
</div>
</div>
</div>
<div class="text-right">
<div class="text-[10px] text-white/40">CORE COLOR</div>
<div class="font-mono text-sm" style="color: #a78bfa;">#A78BFA</div>
</div>
</div>
<div class="core-placeholder w-full h-40 rounded-2xl mb-6 flex items-center justify-center" style="background: linear-gradient(145deg, #1a1528, #111113);">
<div class="text-center">
<i class="fa-solid fa-bolt text-6xl mb-2" style="color: #a78bfa30;"></i>
<div class="text-xs tracking-widest text-white/30">MOVER CORE RENDER</div>
</div>
</div>
<table class="w-full data-table">
<tbody class="text-sm">
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Speed Bonus</td>
<td class="py-2.5 font-mono text-violet-400">0.065</td>
<td class="py-2.5 text-white/70">Base movement speed increase</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Move Drain</td>
<td class="py-2.5 font-mono text-orange-400">0.009</td>
<td class="py-2.5 text-white/70">Extra energy cost while moving</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Night Speed</td>
<td class="py-2.5 font-mono text-violet-400">0.038</td>
<td class="py-2.5 text-white/70">Additional speed during night</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Exploration</td>
<td class="py-2.5 font-mono text-violet-400">0.05</td>
<td class="py-2.5 text-white/70">Mild bias toward wandering</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">White Relay Pull</td>
<td class="py-2.5 font-mono text-violet-400">1.22</td>
<td class="py-2.5 text-white/70">Strong attraction to white particles</td>
</tr>
<tr>
<td class="py-2.5 pr-3 font-medium text-white/90">White Relay Slip</td>
<td class="py-2.5 font-mono text-violet-400">true</td>
<td class="py-2.5 text-white/70">Whites move faster toward this creature</td>
</tr>
</tbody>
</table>
<div class="mt-5 pt-4 border-t border-white/10 text-xs">
<div class="flex gap-x-6">
<div>
<span class="text-violet-400 font-medium">Strong Synergies:</span><br>
<span class="text-white/60">Nomad Core • Vortex Runner • Vortex Anchor</span>
</div>
<div>
<span class="text-orange-400 font-medium">Competitive Pressures:</span><br>
<span class="text-white/60">Resistant (slows it) • Harvester (energy focus)</span>
</div>
</div>
</div>
</div>
<!-- RESISTANT -->
<div class="module-card bg-[#111113] rounded-3xl p-6 border border-white/10" style="border-color: #f472b630;">
<div class="flex items-start justify-between mb-5">
<div>
<div class="flex items-center gap-x-3">
<div class="w-9 h-9 rounded-2xl flex items-center justify-center" style="background: #f472b620; color: #f472b6;">
<i class="fa-solid fa-shield-halved text-xl"></i>
</div>
<div>
<div class="font-display text-2xl tracking-tight" style="color: #f472b6;">RESISTANT</div>
<div class="text-xs text-white/40 -mt-0.5">Tank • Drought Specialist</div>
</div>
</div>
</div>
<div class="text-right">
<div class="text-[10px] text-white/40">CORE COLOR</div>
<div class="font-mono text-sm" style="color: #f472b6;">#F472B6</div>
</div>
</div>
<div class="core-placeholder w-full h-40 rounded-2xl mb-6 flex items-center justify-center" style="background: linear-gradient(145deg, #1f151a, #111113);">
<div class="text-center">
<i class="fa-solid fa-shield-halved text-6xl mb-2" style="color: #f472b630;"></i>
<div class="text-xs tracking-widest text-white/30">RESISTANT CORE RENDER</div>
</div>
</div>
<table class="w-full data-table">
<tbody class="text-sm">
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Damage Reduce</td>
<td class="py-2.5 font-mono text-pink-400">0.14</td>
<td class="py-2.5 text-white/70">Reduces incoming hazard damage</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Lifespan Bonus</td>
<td class="py-2.5 font-mono text-pink-400">0.28</td>
<td class="py-2.5 text-white/70">Significantly longer lifespan</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Speed Penalty</td>
<td class="py-2.5 font-mono text-orange-400">-0.055</td>
<td class="py-2.5 text-white/70">Reduced movement speed</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Night Regen</td>
<td class="py-2.5 font-mono text-pink-400">0.022</td>
<td class="py-2.5 text-white/70">Energy regeneration at night</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">White Relay Bulwark</td>
<td class="py-2.5 font-mono text-pink-400">true</td>
<td class="py-2.5 text-white/70">Shares burden through white relays</td>
</tr>
<tr>
<td class="py-2.5 pr-3 font-medium text-white/90">Hazard Avoid</td>
<td class="py-2.5 font-mono text-pink-400">0.05</td>
<td class="py-2.5 text-white/70">Better at avoiding red hazards</td>
</tr>
</tbody>
</table>
<div class="mt-5 pt-4 border-t border-white/10 text-xs">
<div class="flex gap-x-6">
<div>
<span class="text-pink-400 font-medium">Strong Synergies:</span><br>
<span class="text-white/60">Survivor Core • Drought Engine • Iron Bloom</span>
</div>
<div>
<span class="text-orange-400 font-medium">Competitive Pressures:</span><br>
<span class="text-white/60">Mover (speed conflict) • Explorer (isolation)</span>
</div>
</div>
</div>
</div>
<!-- EXPLORER -->
<div class="module-card bg-[#111113] rounded-3xl p-6 border border-white/10" style="border-color: #fbbf2430;">
<div class="flex items-start justify-between mb-5">
<div>
<div class="flex items-center gap-x-3">
<div class="w-9 h-9 rounded-2xl flex items-center justify-center" style="background: #fbbf2420; color: #fbbf24;">
<i class="fa-solid fa-compass text-xl"></i>
</div>
<div>
<div class="font-display text-2xl tracking-tight" style="color: #fbbf24;">EXPLORER</div>
<div class="text-xs text-white/40 -mt-0.5">Frontier • Wanderer Elite</div>
</div>
</div>
</div>
<div class="text-right">
<div class="text-[10px] text-white/40">CORE COLOR</div>
<div class="font-mono text-sm" style="color: #fbbf24;">#FBBF24</div>
</div>
</div>
<div class="core-placeholder w-full h-40 rounded-2xl mb-6 flex items-center justify-center" style="background: linear-gradient(145deg, #1f1a0f, #111113);">
<div class="text-center">
<i class="fa-solid fa-compass text-6xl mb-2" style="color: #fbbf2430;"></i>
<div class="text-xs tracking-widest text-white/30">EXPLORER CORE RENDER</div>
</div>
</div>
<table class="w-full data-table">
<tbody class="text-sm">
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Exploration Bias</td>
<td class="py-2.5 font-mono text-amber-400">0.11</td>
<td class="py-2.5 text-white/70">Strong drive to leave the center</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Wander Bonus</td>
<td class="py-2.5 font-mono text-amber-400">0.08</td>
<td class="py-2.5 text-white/70">Increased natural roaming distance</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Day Explore</td>
<td class="py-2.5 font-mono text-amber-400">0.04</td>
<td class="py-2.5 text-white/70">Daytime speed boost (tier ≥2)</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Death Echo Bonus</td>
<td class="py-2.5 font-mono text-amber-400">+2</td>
<td class="py-2.5 text-white/70">Extra white particles on death</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">White Relay Gift</td>
<td class="py-2.5 font-mono text-amber-400">true</td>
<td class="py-2.5 text-white/70">Death echoes excellent for relays</td>
</tr>
<tr>
<td class="py-2.5 pr-3 font-medium text-white/90">Social Alignment</td>
<td class="py-2.5 font-mono text-orange-400">-0.05</td>
<td class="py-2.5 text-white/70">Penalty to tight clustering</td>
</tr>
</tbody>
</table>
<div class="mt-5 pt-4 border-t border-white/10 text-xs">
<div class="flex gap-x-6">
<div>
<span class="text-amber-400 font-medium">Strong Synergies:</span><br>
<span class="text-white/60">Nomad Core • Far Relay • Whisper Cartograph • Prism Scout</span>
</div>
<div>
<span class="text-orange-400 font-medium">Competitive Pressures:</span><br>
<span class="text-white/60">Harvester (food focus) • Resistant (prefers clustering)</span>
</div>
</div>
</div>
</div>
<!-- COMMUNICATOR -->
<div class="module-card bg-[#111113] rounded-3xl p-6 border border-white/10" style="border-color: #c084fc30;">
<div class="flex items-start justify-between mb-5">
<div>
<div class="flex items-center gap-x-3">
<div class="w-9 h-9 rounded-2xl flex items-center justify-center" style="background: #c084fc20; color: #c084fc;">
<i class="fa-solid fa-link text-xl"></i>
</div>
<div>
<div class="font-display text-2xl tracking-tight" style="color: #c084fc;">COMMUNICATOR</div>
<div class="text-xs text-white/40 -mt-0.5">Relay • Hive Hub</div>
</div>
</div>
</div>
<div class="text-right">
<div class="text-[10px] text-white/40">CORE COLOR</div>
<div class="font-mono text-sm" style="color: #c084fc;">#C084FC</div>
</div>
</div>
<div class="core-placeholder w-full h-40 rounded-2xl mb-6 flex items-center justify-center" style="background: linear-gradient(145deg, #1a1528, #111113);">
<div class="text-center">
<i class="fa-solid fa-link text-6xl mb-2" style="color: #c084fc30;"></i>
<div class="text-xs tracking-widest text-white/30">COMMUNICATOR CORE RENDER</div>
</div>
</div>
<table class="w-full data-table">
<tbody class="text-sm">
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Social Align</td>
<td class="py-2.5 font-mono text-purple-400">0.10</td>
<td class="py-2.5 text-white/70">Strong bonus to staying clustered</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Hostility Reduce</td>
<td class="py-2.5 font-mono text-purple-400">0.22</td>
<td class="py-2.5 text-white/70">Reduces aggression between creatures</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">Repro Bonus</td>
<td class="py-2.5 font-mono text-purple-400">0.04</td>
<td class="py-2.5 text-white/70">Higher reproduction chance</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">White Relay Hive</td>
<td class="py-2.5 font-mono text-purple-400">true</td>
<td class="py-2.5 text-white/70">Excellent at relaying whites through hive</td>
</tr>
<tr class="border-b border-white/5">
<td class="py-2.5 pr-3 font-medium text-white/90">White Relay Link</td>
<td class="py-2.5 font-mono text-purple-400">0.52</td>
<td class="py-2.5 text-white/70">Strong link-seeking for white particles</td>
</tr>
<tr>
<td class="py-2.5 pr-3 font-medium text-white/90">Predator Tend</td>
<td class="py-2.5 font-mono text-orange-400">-0.04</td>
<td class="py-2.5 text-white/70">Slightly less likely to become predator</td>
</tr>
</tbody>
</table>
<div class="mt-5 pt-4 border-t border-white/10 text-xs">
<div class="flex gap-x-6">
<div>
<span class="text-purple-400 font-medium">Strong Synergies:</span><br>
<span class="text-white/60">Signal Leader • Far Relay • Swarm Node • Signal Harvester</span>
</div>
<div>
<span class="text-orange-400 font-medium">Competitive Pressures:</span><br>
<span class="text-white/60">Explorer (isolationist) • Pure Harvester (less social)</span>
</div>
</div>
</div>
</div>
</div>
<!-- Footer Note -->
<div class="mt-12 text-center">
<p class="text-xs text-white/30 max-w-md mx-auto">
Data pulled from MODULE_IDENTITY system • Neural pathway biases from NeuralNet.MODULE_PATHWAY_BIAS<br>
Values current as of MiniSimmy Orbital Ship v2 • Use for balance tuning and hybrid design
</p>
</div>
</div>
<script>
// Subtle Three.js background orbs (optional polish)
function initThreeBackground() {
const canvas = document.createElement('canvas');
canvas.style.position = 'fixed';
canvas.style.top = '0';
canvas.style.left = '0';
canvas.style.width = '100%';
canvas.style.height = '100%';
canvas.style.zIndex = '-1';
canvas.style.opacity = '0.15';
document.body.appendChild(canvas);
const renderer = new THREE.WebGLRenderer({ canvas, alpha: true, antialias: true });
renderer.setSize(window.innerWidth, window.innerHeight);
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000);
camera.position.z = 30;
const geometry = new THREE.SphereGeometry(0.6, 12, 12);
const materials = [
new THREE.MeshBasicMaterial({ color: 0x34d399, transparent: true, opacity: 0.6 }),
new THREE.MeshBasicMaterial({ color: 0x38bdf8, transparent: true, opacity: 0.6 }),
new THREE.MeshBasicMaterial({ color: 0xa78bfa, transparent: true, opacity: 0.6 }),
new THREE.MeshBasicMaterial({ color: 0xf472b6, transparent: true, opacity: 0.6 }),
new THREE.MeshBasicMaterial({ color: 0xfbbf24, transparent: true, opacity: 0.6 }),
new THREE.MeshBasicMaterial({ color: 0xc084fc, transparent: true, opacity: 0.6 }),
];
const orbs = [];
for (let i = 0; i < 18; i++) {
const mat = materials[Math.floor(Math.random() * materials.length)];
const mesh = new THREE.Mesh(geometry, mat);
mesh.position.x = (Math.random() - 0.5) * 60;
mesh.position.y = (Math.random() - 0.5) * 40;
mesh.position.z = (Math.random() - 0.5) * 30;
scene.add(mesh);
orbs.push({ mesh, speed: 0.0008 + Math.random() * 0.0012 });
}
function animate() {
requestAnimationFrame(animate);
orbs.forEach(o => {
o.mesh.position.y += Math.sin(Date.now() * o.speed) * 0.008;
o.mesh.rotation.y += 0.0008;
});
renderer.render(scene, camera);
}
animate();
window.addEventListener('resize', () => {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize(window.innerWidth, window.innerHeight);
});
}
// Initialize subtle background
window.onload = function() {
initThreeBackground();
}
</script>
</body>
</html>