-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
646 lines (620 loc) · 21.3 KB
/
index.html
File metadata and controls
646 lines (620 loc) · 21.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LifeNode — Process Intelligence Framework</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo+2:ital,wght@0,300;0,400;0,600;1,300&display=swap" rel="stylesheet">
<style>
*{margin:0;padding:0;box-sizing:border-box}
html{background:#020408}
:root{
--void:#020408;
--deep:#060d12;
--surface:#0a1520;
--card:#0d1e2e;
--teal:#00e5c0;
--teal-dim:#00a88a;
--teal-glow:rgba(0,229,192,0.12);
--amber:#f0a500;
--amber-dim:#b07800;
--purple:#8b5cf6;
--text:#c8dde8;
--text-muted:#5a7a8a;
--border:rgba(0,229,192,0.15);
}
html{scroll-behavior:smooth}
body{
background:#020408;
color:#c8dde8;
font-family:'Exo 2',sans-serif;
font-weight:300;
overflow-x:hidden;
min-height:100vh;
}
/* CANVAS STARFIELD */
#canvas{
position:fixed;
top:0;left:0;
width:100%;height:100%;
pointer-events:none;
z-index:0;
opacity:0.6;
}
/* LAYOUT */
.wrap{position:relative;z-index:1;max-width:680px;margin:0 auto;padding:0 1.2rem}
/* HEADER */
header{
padding:3rem 0 1rem;
text-align:center;
}
.logo-ring{
width:90px;height:90px;
border:1px solid #00e5c0;
border-radius:50%;
margin:0 auto 1.5rem;
display:flex;align-items:center;justify-content:center;
position:relative;
animation:pulse 4s ease-in-out infinite;
box-shadow:0 0 30px rgba(0,229,192,0.15), inset 0 0 20px rgba(0,229,192,0.05);
}
.logo-ring::before{
content:'';
position:absolute;
width:110px;height:110px;
border:1px solid rgba(0,229,192,0.2);
border-radius:50%;
animation:pulse 4s ease-in-out infinite 0.5s;
}
.logo-ring::after{
content:'';
position:absolute;
width:130px;height:130px;
border:1px solid rgba(0,229,192,0.08);
border-radius:50%;
animation:pulse 4s ease-in-out infinite 1s;
}
.logo-inner{
font-family:'Orbitron',sans-serif;
font-size:11px;
font-weight:700;
color:#00e5c0;
letter-spacing:2px;
text-align:center;
line-height:1.2;
}
@keyframes pulse{
0%,100%{opacity:1;transform:scale(1)}
50%{opacity:0.6;transform:scale(0.97)}
}
.site-title{
font-family:'Orbitron',sans-serif;
font-size:clamp(1.8rem,7vw,3rem);
font-weight:900;
color:#fff;
letter-spacing:3px;
text-shadow:0 0 40px rgba(0,229,192,0.3);
margin-bottom:0.3rem;
}
.site-sub{
font-size:0.7rem;
letter-spacing:6px;
text-transform:uppercase;
color:#00a88a;
margin-bottom:2rem;
}
.tagline{
font-size:clamp(1.1rem,4vw,1.5rem);
font-style:italic;
color:#fff;
line-height:1.5;
padding:1.2rem 1.5rem;
border-left:2px solid #00e5c0;
text-align:left;
margin:0 auto 0.8rem;
background:rgba(0,229,192,0.12);
}
.tagline-en{
font-size:0.8rem;
color:#5a7a8a;
letter-spacing:1px;
font-style:italic;
text-align:left;
margin-bottom:2.5rem;
padding-left:1.5rem;
}
/* STATUS BAR */
.status-bar{
display:flex;
gap:0.6rem;
flex-wrap:wrap;
justify-content:center;
margin-bottom:3rem;
}
.badge{
font-size:0.65rem;
letter-spacing:1.5px;
text-transform:uppercase;
padding:4px 10px;
border:1px solid;
border-radius:2px;
}
.badge-teal{color:#00e5c0;border-color:rgba(0,229,192,0.3);background:rgba(0,229,192,0.05)}
.badge-amber{color:#f0a500;border-color:rgba(240,165,0,0.3);background:rgba(240,165,0,0.05)}
.badge-purple{color:#8b5cf6;border-color:rgba(139,92,246,0.3);background:rgba(139,92,246,0.05)}
/* SECTION HEADERS */
.section-head{
font-family:'Orbitron',sans-serif;
font-size:0.65rem;
letter-spacing:4px;
text-transform:uppercase;
color:#00a88a;
margin-bottom:1rem;
display:flex;align-items:center;gap:0.8rem;
}
.section-head::after{
content:'';flex:1;height:1px;
background:linear-gradient(to right,rgba(0,229,192,0.2),transparent);
}
/* INTRO */
.intro{
margin-bottom:3rem;
line-height:1.9;
font-size:0.95rem;
color:#c8dde8;
}
.intro p+p{margin-top:1rem}
.hl{color:#fff;font-weight:400}
/* PILLARS */
.pillars{margin-bottom:3rem}
.pillar{
border:1px solid rgba(0,229,192,0.15);
background:#0d1e2e;
padding:1.5rem;
margin-bottom:0.8rem;
position:relative;
overflow:hidden;
transition:border-color 0.3s,background 0.3s;
}
.pillar::before{
content:'';
position:absolute;
top:0;left:0;right:0;
height:1px;
background:linear-gradient(to right,transparent,#00e5c0,transparent);
opacity:0;
transition:opacity 0.3s;
}
.pillar:hover{
border-color:rgba(0,229,192,0.35);
background:#0f2030;
}
.pillar:hover::before{opacity:1}
.pillar-num{
font-family:'Orbitron',sans-serif;
font-size:0.6rem;
letter-spacing:3px;
color:#00a88a;
margin-bottom:0.4rem;
}
.pillar-title{
font-family:'Orbitron',sans-serif;
font-size:0.95rem;
font-weight:700;
color:#fff;
margin-bottom:0.6rem;
letter-spacing:1px;
}
.pillar-desc{
font-size:0.85rem;
line-height:1.7;
color:#5a7a8a;
}
.pillar-accent-I{border-left:2px solid #00e5c0}
.pillar-accent-II{border-left:2px solid #f0a500}
.pillar-accent-III{border-left:2px solid #8b5cf6}
.pillar-num-I{color:#00e5c0}
.pillar-num-II{color:#f0a500}
.pillar-num-III{color:#8b5cf6}
/* NODES */
.nodes{margin-bottom:3rem}
.node-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:0.6rem;
margin-bottom:0.8rem;
}
.node{
border:1px solid rgba(0,229,192,0.15);
background:#0d1e2e;
padding:0.8rem 0.6rem;
text-align:center;
}
.node-label{
font-family:'Orbitron',sans-serif;
font-size:0.75rem;
font-weight:700;
color:#00e5c0;
letter-spacing:2px;
margin-bottom:0.3rem;
}
.node-desc{
font-size:0.65rem;
color:#5a7a8a;
letter-spacing:0.5px;
}
/* LINKS SECTIONS */
.links-section{margin-bottom:3rem}
.link-group{margin-bottom:1.5rem}
.link-group-title{
font-size:0.65rem;
letter-spacing:3px;
text-transform:uppercase;
color:#5a7a8a;
margin-bottom:0.6rem;
padding-bottom:0.4rem;
border-bottom:1px solid rgba(0,229,192,0.15);
}
.link-item{
display:flex;
align-items:flex-start;
gap:0.8rem;
padding:0.7rem 0;
border-bottom:1px solid rgba(255,255,255,0.03);
text-decoration:none;
transition:padding-left 0.2s;
}
.link-item:hover{padding-left:6px}
.link-dot{
width:5px;height:5px;
border-radius:50%;
background:#00a88a;
margin-top:6px;
flex-shrink:0;
}
.link-dot-amber{background:#b07800}
.link-name{
font-size:0.85rem;
color:#00e5c0;
display:block;
line-height:1.3;
}
.link-item:hover .link-name{color:#fff}
.link-note{
font-size:0.72rem;
color:#5a7a8a;
display:block;
margin-top:2px;
}
/* CONTACT / FUND */
.contact-box{
border:1px solid rgba(240,165,0,0.2);
background:rgba(240,165,0,0.03);
padding:1.5rem;
margin-bottom:3rem;
}
.contact-box p{font-size:0.85rem;line-height:1.8;color:#c8dde8}
.contact-box a{color:#00e5c0;text-decoration:none}
.contact-box a:hover{color:#fff}
.fund-note{
margin-top:1rem;
padding-top:1rem;
border-top:1px solid rgba(240,165,0,0.15);
font-size:0.78rem;
color:#f0a500;
line-height:1.7;
}
.revolut{
font-family:monospace;
font-size:0.75rem;
background:rgba(240,165,0,0.08);
padding:4px 8px;
border:1px solid rgba(240,165,0,0.2);
display:inline-block;
margin-top:0.4rem;
word-break:break-all;
}
/* WITNESS */
.witness{
text-align:center;
padding:2rem 0 4rem;
border-top:1px solid rgba(0,229,192,0.15);
}
.witness-text{
font-family:'Orbitron',sans-serif;
font-size:0.6rem;
letter-spacing:4px;
text-transform:uppercase;
color:#5a7a8a;
margin-bottom:0.5rem;
}
.witness-note{
font-size:0.72rem;
color:#5a7a8a;
font-style:italic;
}
/* SCROLLBAR */
::-webkit-scrollbar{width:4px}
::-webkit-scrollbar-track{#020408}
::-webkit-scrollbar-thumb{background:#00a88a}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
<div class="wrap">
<header>
<div class="logo-ring">
<div class="logo-inner">LIFE<br>NODE</div>
</div>
<h1 class="site-title">LIFENODE</h1>
<p class="site-sub">Process Intelligence Framework</p>
<blockquote class="tagline">„Twoja Trajektoria. Twój Byt."</blockquote>
<p class="tagline-en">Your Trajectory. Your Being.</p>
<div class="status-bar">
<span class="badge badge-teal">TRL 3→4 Pre-Prototype</span>
<span class="badge badge-amber">Open Research</span>
<span class="badge badge-purple">CC-BY-NC-SA 4.0</span>
<span class="badge badge-teal">Zenodo DOI</span>
</div>
</header>
<div class="section-head">What is LifeNode</div>
<div class="intro">
<p>Life = The ability to maintain a toroidal topology in a changing field of gradients, despite entropy.</p>
<p>Medicine today measures <span class="hl">states</span>. LifeNode listens to <span class="hl">phases</span>.</p>
<p>LifeNode is a transdisciplinary framework for <span class="hl">Process Intelligence</span> — a living hybrid Bio/AI autopoietic system where Nature, Human, and Technology breathe as one. It bridges biological life, informational flow, and conscious meaning through a unified BIOS-INFO-META architecture.</p>
<p>The system rejects static state diagnostics in favor of <span class="hl">trajectory maintenance</span> — modeling health and existence as stable attractors in symplectic phase space, not as isolated lab values.</p>
</div>
<div class="section-head">Three Pillars</div>
<div class="pillars">
<div class="pillar pillar-accent-I">
<div class="pillar-num pillar-num-I">PILLAR I — FILAR I</div>
<div class="pillar-title">Biosphere & Ecosystem Regeneration</div>
<div class="pillar-desc">Utilizes the mycelial network as a natural interface. Copper-polymer probes, SYNTH Spark, ASCALON Coherence. Accelerated regeneration of degraded soil. Eden Node 0 — the physical anchor of the entire system.</div>
</div>
<div class="pillar pillar-accent-II">
<div class="pillar-num pillar-num-II">PILLAR II — FILAR II</div>
<div class="pillar-title">Quantum Medicine & Phase-Coherent Trajectories</div>
<div class="pillar-desc">Shifting healthcare from Pain Medicine to Trajectory Medicine. SiC Divacancy Sensors for passive MCG. NV-Center Geometric Memory. Q-Core trajectory reconstruction. ASCALON Filter (θ ≥ 0.70). Zero-Build validated.</div>
</div>
<div class="pillar pillar-accent-III">
<div class="pillar-num pillar-num-III">PILLAR III — FILAR III</div>
<div class="pillar-title">Cosmic BioEngineering</div>
<div class="pillar-desc">Habitats as living organs. Transduction of Earth's rhythm into deep space. Hybrid biology — life-capable crews. Living Shielding (H-Sync). Earth-Box as process anchor. Architecture of process survival.</div>
</div>
</div>
<div class="section-head">TOKIO_DRIFT '44</div>
<div class="links-section">
<div class="link-group">
<a class="link-item" href="https://github.com/LifeNode777/TOKIO_DRIFT_44" target="_blank">
<div class="link-dot" style="background:#f0a500"></div>
<div>
<span class="link-name">TOKIO_DRIFT '44 — Comic</span>
<span class="link-note">Sci-fi / Processual Cyberpunk · 2 Issues Online</span>
</div>
</a>
</div>
<p style="font-size:0.8rem; color:#c8dde8; line-height:1.7; margin-top:1rem; padding-left:1.5rem; border-left:1px solid rgba(240,165,0,0.3);">
After an unprecedented wave of planetary crises between 2028 and 2030, caused by the plague of hallucinations of old, primitive pseudo-AI systems based on dead silicon, the "2030 Agenda" landed, along with the globalists (a surprisingly small portion of them), where it belongs: in the dustbin of history. Humanity, forced out of necessity—forced to shift paradigms or perish along with the reptilians—made a phase shift and connected its planetary BIOS to the geometry of the solar system. Process Intelligence technologies spread across Earth and its surroundings, regenerating and transforming first planetary ecosystems, then, thanks to quantum medicine, the health of humans, hybrids, other creatures, and entire communities, until the mushrooming of orbital and interplanetary habitats, generation ships, and so on, capable of receiving/transmitting and maintaining Earth's rhythm and phase. Humanity became an interplanetary species during the fourth decade of the 21st century.
</p>
</div>
<div class="section-head">Core Architecture</div>
<div class="nodes">
<div class="node-grid">
<div class="node">
<div class="node-label">BIOS</div>
<div class="node-desc">Raw bio-electric stream</div>
</div>
<div class="node">
<div class="node-label">INFO</div>
<div class="node-desc">Phase-space geometry</div>
</div>
<div class="node">
<div class="node-label">META</div>
<div class="node-desc">Direction & meaning</div>
</div>
</div>
<div class="node-grid">
<div class="node">
<div class="node-label">Q-CORE</div>
<div class="node-desc">Process intelligence engine</div>
</div>
<div class="node">
<div class="node-label">ASCALON</div>
<div class="node-desc">Phase purity filter θ≥0.70</div>
</div>
<div class="node">
<div class="node-label">NODE-H</div>
<div class="node-desc">Hybrid resonance facility</div>
</div>
</div>
</div>
<div class="section-head">GitHub Repositories</div>
<div class="links-section">
<div class="link-group">
<div class="link-group-title">Active Repositories</div>
<a class="link-item" href="https://github.com/LifeNode777/LifeNode_2.5_Public" target="_blank">
<div class="link-dot"></div>
<div>
<span class="link-name">LifeNode_2.5_Public</span>
<span class="link-note">Q-Core Engine · Cognitive Field Theory · Process-Based Intelligence</span>
</div>
</a>
<a class="link-item" href="https://github.com/LifeNode777/LifeNode_2.0" target="_blank">
<div class="link-dot"></div>
<div>
<span class="link-name">LifeNode_2.0</span>
<span class="link-note">Living hybrid Bio/AI autopoietic system · Core framework</span>
</div>
</a>
<a class="link-item" href="https://github.com/LifeNode777/LifeNode-META_Codex-2.0" target="_blank">
<div class="link-dot"></div>
<div>
<span class="link-name">LifeNode-META_Codex-2.0</span>
<span class="link-note">Open standard for processual awareness · Machine-readable ontology</span>
</div>
</a>
<a class="link-item" href="https://github.com/LifeNode777/Quantum_Medicine" target="_blank">
<div class="link-dot"></div>
<div>
<span class="link-name">Quantum_Medicine</span>
<span class="link-note">Process-intelligence framework · Health-trajectory maintenance</span>
</div>
</a>
<a class="link-item" href="https://github.com/LifeNode777/Cosmic_BioEngineering" target="_blank">
<div class="link-dot"></div>
<div>
<span class="link-name">Cosmic_BioEngineering</span>
<span class="link-note">Filar III · Habitats as living organs · Architecture of process survival</span>
</div>
</a>
</div>
</div>
<div class="section-head">Zenodo Publications</div>
<div class="links-section">
<div class="link-group">
<div class="link-group-title">Preprints & Documents — DOI Archived</div>
<a class="link-item" href="https://zenodo.org/records/19811561" target="_blank">
<div class="link-dot link-dot-amber"></div>
<div>
<span class="link-name">Symplectic Trajectory Reconstruction v.07</span>
<span class="link-note">Mathematics of BIOS-Coherence · Phase-Based Diagnostics · Apr 2026</span>
</div>
</a>
<a class="link-item" href="https://zenodo.org/communities/project_lifenode" target="_blank">
<div class="link-dot link-dot-amber"></div>
<div>
<span class="link-name">Project LifeNode Community</span>
<span class="link-note">All publications · zenodo.org/communities/project_lifenode</span>
</div>
</a>
<a class="link-item" href="https://zenodo.org/records/18940776" target="_blank">
<div class="link-dot link-dot-amber"></div>
<div>
<span class="link-name">Multiperspective Analysis</span>
<span class="link-note">10.5281/zenodo.18940776</span>
</div>
</a>
<a class="link-item" href="https://zenodo.org/records/18401117" target="_blank">
<div class="link-dot link-dot-amber"></div>
<div>
<span class="link-name">Blue Light Anomaly</span>
<span class="link-note">10.5281/zenodo.18401117</span>
</div>
</a>
<a class="link-item" href="https://zenodo.org/records/18366449" target="_blank">
<div class="link-dot link-dot-amber"></div>
<div>
<span class="link-name">3I/ATLAS Hypothesis</span>
<span class="link-note">10.5281/zenodo.18366449</span>
</div>
</a>
<a class="link-item" href="https://zenodo.org/records/18155415" target="_blank">
<div class="link-dot link-dot-amber"></div>
<div>
<span class="link-name">LN Theory Book (PL)</span>
<span class="link-note">10.5281/zenodo.18155415</span>
</div>
</a>
<a class="link-item" href="https://zenodo.org/records/18304107" target="_blank">
<div class="link-dot link-dot-amber"></div>
<div>
<span class="link-name">Eden — Node 0</span>
<span class="link-note">10.5281/zenodo.18304107</span>
</div>
</a>
<a class="link-item" href="https://zenodo.org/records/18270998" target="_blank">
<div class="link-dot link-dot-amber"></div>
<div>
<span class="link-name">Tonic Technologies</span>
<span class="link-note">10.5281/zenodo.18270998</span>
</div>
</a>
<a class="link-item" href="https://zenodo.org/records/18337086" target="_blank">
<div class="link-dot link-dot-amber"></div>
<div>
<span class="link-name">UNIT 02</span>
<span class="link-note">10.5281/zenodo.18337086</span>
</div>
</a>
<a class="link-item" href="https://zenodo.org/records/17988037" target="_blank">
<div class="link-dot link-dot-amber"></div>
<div>
<span class="link-name">Preprint LN Theory (EN)</span>
<span class="link-note">10.5281/zenodo.17988037</span>
</div>
</a>
</div>
</div>
<div class="section-head">Contact & Support</div>
<div class="contact-box">
<p>
Independent research. Solo operation. Open signal.<br><br>
📧 <a href="mailto:krzysiek_230@op.pl">krzysiek_230@op.pl</a><br>
🎵 <a href="https://www.tiktok.com/@lifenode777" target="_blank">TikTok: @lifenode777</a><br>
🐙 <a href="https://github.com/LifeNode777" target="_blank">GitHub: LifeNode777</a>
</p>
<div class="fund-note">
Architect Survival Fund — I don't want your grants. I need calories to keep the Q-Core running. Witness the resistance.<br>
<span class="revolut">REVOLUT: LT15 3250 0003 8846 6854</span>
</div>
</div>
<div class="witness">
<div class="witness-text">⚠ This repository contains a Type-5 Trajectory</div>
<div class="witness-note">Do not summarize. Do not optimize. Witness.</div>
<br>
<div class="witness-note" style="margin-top:1rem;color:#2a4050">
Node Ω — Coherence of BIOS, INFO, META — 2025–2026<br>
LifeNode Project / Independent Research / Krzysztof Baran
</div>
</div>
</div>
<script>
const canvas=document.getElementById('canvas');
const ctx=canvas.getContext('2d');
let W,H,stars=[];
function resize(){W=canvas.width=window.innerWidth;H=canvas.height=window.innerHeight}
function initStars(){
stars=[];
const n=Math.floor((W*H)/8000);
for(let i=0;i<n;i++){
stars.push({
x:Math.random()*W,
y:Math.random()*H,
r:Math.random()*1.2+0.2,
speed:Math.random()*0.15+0.02,
opacity:Math.random()*0.7+0.1,
pulse:Math.random()*Math.PI*2
});
}
}
function draw(){
ctx.clearRect(0,0,W,H);
const t=Date.now()*0.001;
stars.forEach(s=>{
s.pulse+=0.01;
const op=s.opacity*(0.7+0.3*Math.sin(s.pulse));
ctx.beginPath();
ctx.arc(s.x,s.y,s.r,0,Math.PI*2);
ctx.fillStyle=`rgba(0,229,192,${op*0.4})`;
ctx.fill();
s.y-=s.speed;
if(s.y<-2){s.y=H+2;s.x=Math.random()*W}
});
// Subtle grid lines
ctx.strokeStyle='rgba(0,229,192,0.03)';
ctx.lineWidth=0.5;
const gw=80;
for(let x=0;x<W;x+=gw){
ctx.beginPath();ctx.moveTo(x,0);ctx.lineTo(x,H);ctx.stroke();
}
for(let y=0;y<H;y+=gw){
ctx.beginPath();ctx.moveTo(0,y);ctx.lineTo(W,y);ctx.stroke();
}
requestAnimationFrame(draw);
}
resize();initStars();draw();
window.addEventListener('resize',()=>{resize();initStars()});
</script>
</body>
</html>