-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1680 lines (1573 loc) · 108 KB
/
Copy pathindex.html
File metadata and controls
1680 lines (1573 loc) · 108 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
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<title>STARNET — The Decentralized App Store of the OASIS Omniverse</title>
<meta name="description" content="STARNET is the decentralized holon registry and asset store of the OASIS Omniverse. Publish OAPPs, Quests, Missions, NFTs, GeoHotSpots, Worlds, Templates and more — versioned, Avatar-signed, and live in every connected world via the WEB5 STAR API."/>
<link rel="preconnect" href="https://fonts.googleapis.com"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Rajdhani:wght@400;500;600;700&family=Share+Tech+Mono&display=swap"/>
<style>
:root{
--bg:#050314;
--surface:#0d0a24;
--surface2:#140f33;
--violet:#8b5cf6;
--violet-light:#a78bfa;
--violet-deep:#6d28d9;
--cyan:#00e5ff;
--green:#00cc88;
--gold:#f0a500;
--red:#ff4455;
--text:#ece8ff;
--text-dim:#a8bfd8;
--border:rgba(139,92,246,.2);
--glow:rgba(139,92,246,.3);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{background:var(--bg);color:var(--text);font-family:'Rajdhani',sans-serif;font-size:17px;line-height:1.6;overflow-x:hidden}
/* ── SCANLINES ── */
body::before{content:'';position:fixed;inset:0;background:repeating-linear-gradient(0deg,transparent,transparent 2px,rgba(0,0,0,.08) 2px,rgba(0,0,0,.08) 4px);pointer-events:none;z-index:9999}
/* ── STARS ── */
#stars{position:fixed;inset:0;z-index:0;pointer-events:none}
/* ── NAV ── */
nav{position:fixed;top:0;left:0;right:0;z-index:1000;display:flex;align-items:center;justify-content:space-between;padding:.9rem 2.5rem;background:rgba(5,3,20,.85);backdrop-filter:blur(12px);border-bottom:1px solid var(--border)}
.nav-brand{display:flex;align-items:center;gap:.75rem;text-decoration:none}
.nav-logo{width:36px;height:36px}
.nav-brand span{font-family:'Orbitron',sans-serif;font-size:1.1rem;font-weight:700;color:var(--violet-light);letter-spacing:.12em}
.nav-links{display:flex;gap:2rem;list-style:none}
.nav-links a{color:#a8bfd8;text-decoration:none;font-weight:600;font-size:.95rem;letter-spacing:.06em;transition:color .2s}
.nav-links a:hover{color:var(--violet-light)}
.nav-cta{background:var(--violet);color:#fff;padding:.45rem 1.2rem;border-radius:4px;font-family:'Orbitron',sans-serif;font-size:.78rem;font-weight:700;letter-spacing:.1em;text-decoration:none;transition:opacity .2s}
.nav-cta:hover{opacity:.85}
/* ── HERO ── */
#hero{position:relative;min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:8rem 2rem 5rem;overflow:hidden;z-index:1}
.hero-inner{max-width:920px}
.hero-kicker{display:inline-block;font-family:'Share Tech Mono',monospace;font-size:.85rem;letter-spacing:.25em;color:var(--violet-light);border:1px solid var(--violet);padding:.35rem 1.1rem;border-radius:2px;margin-bottom:1.8rem;text-transform:uppercase}
#hero h1{font-family:'Orbitron',sans-serif;font-size:clamp(2.4rem,6vw,4.2rem);font-weight:900;line-height:1.1;margin-bottom:1.4rem;text-shadow:0 0 40px var(--glow)}
#hero h1 span{color:var(--violet-light)}
.hero-sub{font-size:1.2rem;color:#a8bfd8;max-width:660px;margin:0 auto 2.8rem;line-height:1.7}
.hero-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.btn-primary{background:var(--violet);color:#fff;padding:.75rem 2rem;border-radius:5px;font-family:'Orbitron',sans-serif;font-size:.82rem;font-weight:700;letter-spacing:.1em;text-decoration:none;transition:opacity .2s,box-shadow .2s;box-shadow:0 0 18px rgba(139,92,246,.5)}
.btn-primary:hover{opacity:.9;box-shadow:0 0 30px rgba(139,92,246,.7)}
.btn-outline{border:1px solid var(--violet);color:var(--violet-light);padding:.75rem 2rem;border-radius:5px;font-family:'Orbitron',sans-serif;font-size:.82rem;font-weight:700;letter-spacing:.1em;text-decoration:none;transition:background .2s,color .2s}
.btn-outline:hover{background:rgba(139,92,246,.14)}
.btn-outline-cyan{border:1px solid var(--cyan);color:var(--cyan);padding:.75rem 2rem;border-radius:5px;font-family:'Orbitron',sans-serif;font-size:.82rem;font-weight:700;letter-spacing:.1em;text-decoration:none;transition:background .2s}
.btn-outline-cyan:hover{background:rgba(0,229,255,.1)}
/* hero SVG network */
#hero-svg{order:10;display:block;width:100%;max-width:1720px;margin-top:40px;pointer-events:none;opacity:.85}
/* ── SECTIONS ── */
section{position:relative;z-index:1}
.section-inner{max-width:1180px;margin:0 auto;padding:0 2rem}
.section-head{text-align:center;margin-bottom:3.5rem}
.section-kicker{display:inline-block;font-family:'Share Tech Mono',monospace;font-size:.78rem;letter-spacing:.22em;color:var(--violet-light);margin-bottom:.9rem;text-transform:uppercase}
.section-head h2{font-family:'Orbitron',sans-serif;font-size:clamp(1.6rem,3.5vw,2.5rem);font-weight:700;margin-bottom:.9rem}
.section-head p{color:#a8bfd8;max-width:660px;margin:0 auto;font-size:1.1rem}
/* ── WHAT IS STARNET ── */
#what{padding:6rem 0}
.what-grid{display:grid;grid-template-columns:1fr 1fr;gap:3.5rem;align-items:center}
.what-text h2{font-family:'Orbitron',sans-serif;font-size:clamp(1.6rem,3vw,2.4rem);font-weight:700;margin-bottom:1.2rem}
.what-text h2 span{color:var(--violet-light)}
.what-text p{color:#a8bfd8;line-height:1.8;margin-bottom:1rem;font-size:1.05rem}
.what-card{border-radius:12px;overflow:hidden;border:1px solid var(--border);box-shadow:0 0 50px rgba(139,92,246,.16)}
.what-card svg{width:100%;display:block}
.stat-row{display:flex;gap:1.2rem;margin-top:1.8rem;flex-wrap:wrap}
.stat-box{background:var(--surface);border:1px solid var(--border);border-radius:8px;padding:.9rem 1.2rem;flex:1;min-width:120px;text-align:center}
.stat-box .num{font-family:'Orbitron',sans-serif;font-size:1.5rem;font-weight:700;color:var(--violet-light)}
.stat-box .lbl{font-size:.78rem;color:#a8bfd8;letter-spacing:.05em;margin-top:.2rem}
/* ── HOLON TYPES ── */
#holons{padding:6rem 0;background:linear-gradient(180deg,transparent,rgba(139,92,246,.05),transparent)}
.holon-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(255px,1fr));gap:1.5rem}
.holon-card{background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:1.5rem;transition:border-color .3s,box-shadow .3s,transform .3s;will-change:transform}
.holon-card:hover{border-color:var(--violet);box-shadow:0 0 22px rgba(139,92,246,.2);transform:translateY(-3px)}
.holon-icon{font-size:1.9rem;margin-bottom:.8rem}
.holon-card h3{font-family:'Orbitron',sans-serif;font-size:.86rem;font-weight:700;color:var(--violet-light);letter-spacing:.05em;margin-bottom:.55rem}
.holon-card p{color:#a8bfd8;font-size:.92rem;line-height:1.6}
.holon-card .cmd{display:inline-block;margin-top:.7rem;font-family:'Share Tech Mono',monospace;font-size:.74rem;color:var(--cyan);background:rgba(0,229,255,.07);border:1px solid rgba(0,229,255,.18);padding:.2rem .55rem;border-radius:4px}
/* ── CELESTIAL COMPOSE ── */
.cg-compose{display:flex;align-items:stretch;gap:0;flex-wrap:wrap;justify-content:center;margin:0 auto 3rem;max-width:1080px}
.cg-step{background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:1.4rem 1.2rem;text-align:center;flex:1;min-width:200px}
.cg-step h4{font-family:'Orbitron',sans-serif;font-size:.82rem;font-weight:700;color:var(--violet-light);letter-spacing:.06em;margin:.6rem 0 .5rem}
.cg-step p{font-size:1rem;color:#a8bfd8;line-height:1.55}
.cg-step-icon{font-size:1.8rem}
.cg-mini-row{display:flex;justify-content:center;gap:.3rem;margin:.6rem 0;flex-wrap:wrap}
.cg-mini{font-size:.95rem;opacity:.85}
.cg-arrow{display:flex;align-items:center;justify-content:center;color:var(--violet-light);font-size:1.4rem;padding:0 .6rem;flex:0 0 auto}
@media (max-width:880px){.cg-arrow{transform:rotate(90deg);padding:.4rem 0}}
/* ── CLI / DEVELOPER ── */
#cli{padding:6rem 0;background:linear-gradient(180deg,transparent,rgba(0,0,0,.3),transparent)}
.dev-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.dev-text h2{font-family:'Orbitron',sans-serif;font-size:clamp(1.4rem,3vw,2.2rem);font-weight:700;margin-bottom:1rem}
.dev-text h2 span{color:var(--violet-light)}
.dev-text p{color:#a8bfd8;line-height:1.8;margin-bottom:1rem;font-size:1.02rem}
.term{background:#070518;border:1px solid rgba(139,92,246,.25);border-radius:8px;overflow:hidden;box-shadow:0 0 40px rgba(139,92,246,.1)}
.term-bar{display:flex;align-items:center;gap:.4rem;padding:.6rem .9rem;background:rgba(139,92,246,.08);border-bottom:1px solid rgba(139,92,246,.18)}
.term-dot{width:11px;height:11px;border-radius:50%}
.term-dot.r{background:#ff5f56}.term-dot.y{background:#ffbd2e}.term-dot.g{background:#27c93f}
.term-title{margin-left:.6rem;font-family:'Share Tech Mono',monospace;font-size:.74rem;color:#a8bfd8;letter-spacing:.08em}
.code-block{padding:1.4rem;font-family:'Share Tech Mono',monospace;font-size:.82rem;line-height:1.85;color:#c8d6ff;overflow-x:auto;white-space:pre-wrap;word-break:break-word;margin:0}
.code-block .cm{color:#5a6a92}
.code-block .pr{color:var(--violet-light)}
.code-block .cmd{color:var(--cyan)}
.code-block .arg{color:#c8d6ff}
.code-block .str{color:var(--green)}
.code-block .ok{color:var(--gold)}
.tech-pills{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:1.5rem}
.tech-pill{background:rgba(139,92,246,.1);border:1px solid rgba(139,92,246,.28);color:var(--violet-light);padding:.35rem .9rem;border-radius:20px;font-size:.8rem;font-family:'Share Tech Mono',monospace;letter-spacing:.05em}
.dev-links{display:flex;gap:1rem;flex-wrap:wrap;margin-top:1.8rem}
/* ── STAR ODK ── */
#star-odk{padding:6rem 0}
.odk-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:2rem;margin:3rem 0}
.odk-card{background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:2rem 1.5rem;text-align:center;transition:border-color .3s,box-shadow .3s,transform .3s}
.odk-card:hover{border-color:var(--violet-light);box-shadow:0 0 30px rgba(139,92,246,.15);transform:translateY(-4px)}
.odk-icon{font-size:2.4rem;margin-bottom:1rem;display:block}
.odk-card h3{font-family:'Orbitron',sans-serif;font-size:1.05rem;font-weight:700;color:var(--violet-light);margin-bottom:.8rem;letter-spacing:.06em}
.odk-card p{color:#a8bfd8;font-size:.95rem;line-height:1.7;margin-bottom:1rem}
.provider-list{list-style:none;display:flex;flex-wrap:wrap;gap:.5rem;justify-content:center;margin-top:1rem}
.provider-list li{background:rgba(139,92,246,.08);border:1px solid rgba(139,92,246,.15);color:var(--text-dim);padding:.3rem .7rem;border-radius:4px;font-size:.8rem}
.code-stack{background:rgba(139,92,246,.05);border:1px solid var(--border);border-radius:8px;padding:1.2rem;margin-top:1rem;font-family:'Share Tech Mono',monospace;font-size:.85rem}
.code-stack .layer{padding:.4rem;color:var(--text-dim)}
.features-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1.5rem;margin-top:2rem}
.feature-box{background:rgba(139,92,246,.06);border:1px solid rgba(139,92,246,.15);border-radius:10px;padding:1.5rem;text-align:left}
.feature-icon{display:inline-block;color:var(--violet-light);font-size:1.3rem;margin-right:.6rem;font-weight:700}
.feature-box p{color:#a8bfd8;font-size:1rem;line-height:1.6;margin:0}
/* ── FLOW ── */
#flow{padding:6rem 0}
.flow-strip{display:flex;align-items:stretch;gap:0;background:var(--surface);border:1px solid var(--border);border-radius:10px;overflow:hidden;margin-top:1rem}
.flow-step{flex:1;padding:1.6rem 1.2rem;text-align:center;border-right:1px solid var(--border);position:relative}
.flow-step:last-child{border-right:none}
.flow-step .fs-num{font-family:'Orbitron',sans-serif;font-size:.72rem;color:var(--violet-light);font-weight:700;margin-bottom:.5rem;letter-spacing:.12em}
.flow-step .fs-icon{font-size:1.8rem;margin-bottom:.6rem}
.flow-step h3{font-family:'Orbitron',sans-serif;font-size:.84rem;font-weight:700;margin-bottom:.5rem;letter-spacing:.04em}
.flow-step p{font-size:1rem;color:#a8bfd8;line-height:1.5}
/* ── ARCHITECTURE ── */
#architecture{padding:6rem 0;background:linear-gradient(180deg,transparent,rgba(0,0,0,.25),transparent)}
.arch-wrap{background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:2rem;overflow-x:auto}
.arch-eq{display:flex;align-items:center;justify-content:center;gap:1.2rem;margin-top:2rem;flex-wrap:wrap}
.arch-eq-pill{font-family:'Orbitron',sans-serif;font-size:.75rem;font-weight:700;letter-spacing:.08em;padding:.5rem 1.2rem;border-radius:4px}
.arch-eq-pill.violet{background:rgba(139,92,246,.12);color:var(--violet-light);border:1px solid rgba(139,92,246,.35)}
.arch-eq-pill.cyan{background:rgba(0,229,255,.1);color:var(--cyan);border:1px solid rgba(0,229,255,.3)}
.arch-eq-pill.gold{background:rgba(240,165,0,.1);color:var(--gold);border:1px solid rgba(240,165,0,.3)}
.arch-eq-op{font-family:'Orbitron',sans-serif;font-size:1.1rem;color:#a8bfd8;font-weight:700}
.arch-eq-result{font-family:'Orbitron',sans-serif;font-size:.95rem;font-weight:900;color:var(--violet-light);letter-spacing:.14em;text-shadow:0 0 12px rgba(139,92,246,.5)}
/* ── ROADMAP ── */
#roadmap{padding:6rem 0;background:linear-gradient(180deg,transparent,rgba(139,92,246,.04),transparent)}
.rm-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.rm-tile{background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:1.8rem;position:relative;will-change:transform}
.rm-tile:hover{border-color:rgba(139,92,246,.45);box-shadow:0 0 20px rgba(139,92,246,.14)}
.rm-tile.active{border-color:rgba(139,92,246,.5);box-shadow:inset 0 0 30px rgba(139,92,246,.08)}
.rm-tile.soon{border-color:rgba(0,229,255,.3)}
.rm-tile.soon:hover{border-color:var(--cyan);box-shadow:0 0 20px rgba(0,229,255,.15)}
.rm-tile.future{border:1px dashed rgba(139,92,246,.32)}
.rm-kicker{font-family:'Share Tech Mono',monospace;font-size:.68rem;letter-spacing:.2em;margin-bottom:.8rem;font-weight:700}
.rm-kicker.violet{color:var(--violet-light)}
.rm-kicker.cyan{color:var(--cyan)}
.rm-kicker.dim{color:#a8bfd8}
.rm-tile h3{font-family:'Orbitron',sans-serif;font-size:.95rem;font-weight:700;margin-bottom:.7rem}
.rm-tile p{color:#a8bfd8;font-size:1.05rem;line-height:1.65}
.rm-badge{position:absolute;top:1.2rem;right:1.2rem;font-family:'Share Tech Mono',monospace;font-size:.62rem;padding:.2rem .55rem;border-radius:2px}
.rm-badge.active{background:rgba(139,92,246,.2);color:var(--violet-light);border:1px solid rgba(139,92,246,.4)}
.rm-badge.soon{background:rgba(0,229,255,.15);color:var(--cyan);border:1px solid rgba(0,229,255,.3)}
/* ── CTA ── */
#cta{padding:6rem 0}
.cta-box{background:linear-gradient(135deg,rgba(139,92,246,.12),rgba(0,229,255,.06));border:1px solid rgba(139,92,246,.3);border-radius:16px;padding:4rem 3rem;text-align:center;max-width:800px;margin:0 auto}
.cta-box h2{font-family:'Orbitron',sans-serif;font-size:clamp(1.5rem,3.5vw,2.5rem);font-weight:700;margin-bottom:1rem}
.cta-box h2 span{color:var(--violet-light)}
.cta-box p{color:#a8bfd8;font-size:1.1rem;margin-bottom:2.2rem;max-width:560px;margin-left:auto;margin-right:auto}
.cta-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
/* ── FOOTER ── */
footer{background:var(--surface);border-top:1px solid var(--border);padding:4rem 0 2rem;--text-dim:#a8bfd8}
.foot-inner{max-width:1180px;margin:0 auto;padding:0 2rem}
.foot-brand{margin-bottom:3.5rem;text-align:center}
.foot-brand p{max-width:none;margin:0 auto 1rem}
.foot-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:1.5rem;margin-bottom:3rem}
.foot-brand .logo-txt{font-family:'Orbitron',sans-serif;font-size:1rem;font-weight:700;color:var(--violet-light);letter-spacing:.12em;margin-bottom:.6rem}
.foot-brand p{color:#a8bfd8;font-size:.88rem;line-height:1.6;max-width:none;margin-bottom:1.2rem}
.social-row{display:flex;gap:.7rem;flex-wrap:wrap}
.social-row a{display:inline-block;font-family:'Share Tech Mono',monospace;font-size:.72rem;letter-spacing:.1em;color:#a8bfd8;border:1px solid rgba(168,191,216,.25);padding:.35rem .75rem;border-radius:4px;text-decoration:none;transition:border-color .2s,color .2s}
.social-row a:hover{border-color:var(--violet);color:var(--violet-light)}
.foot-col h4{font-family:'Orbitron',sans-serif;font-size:.72rem;letter-spacing:.15em;font-weight:700;color:var(--violet-light);margin-bottom:1rem;text-transform:uppercase}
.foot-col ul{list-style:none}
.foot-col ul li{margin-bottom:.25rem}
.foot-col ul li a{color:#a8bfd8;text-decoration:none;font-size:.9rem;transition:filter .3s ease,color .3s ease}
footer a:hover,.foot-col ul li a:hover{color:var(--violet-light);filter:drop-shadow(0 0 8px rgba(167,139,250,1)) drop-shadow(0 0 20px rgba(167,139,250,.8)) drop-shadow(0 0 40px rgba(167,139,250,.4))}
.foot-bottom{border-top:1px solid var(--border);padding-top:1.5rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
.foot-bottom p{color:#a8bfd8;font-size:.82rem}
.foot-bottom a{color:#a8bfd8;text-decoration:none;transition:filter .3s ease,color .3s ease}
/* ── OMNIVERSE DIAGRAM ── */
#omniverse-diagram{padding:6rem 0}
.omni-wrap{border-radius:12px;overflow:hidden;border:1px solid rgba(139,92,246,.22);background:#030714;box-shadow:0 0 60px rgba(139,92,246,.1);margin:2rem 0}
#omniverse-canvas{display:block;width:100%}
.omni-legend{display:flex;flex-wrap:wrap;gap:.6rem 1.6rem;justify-content:center;margin-top:1.4rem;padding:0 .5rem}
.omni-li{display:flex;align-items:center;gap:.45rem;font-family:'Share Tech Mono',monospace;font-size:.72rem;color:#a8bfd8;letter-spacing:.06em;white-space:nowrap}
.omni-dot{width:9px;height:9px;border-radius:50%;flex-shrink:0}
/* ── SCROLL REVEAL ── */
.reveal{opacity:0;transform:translateY(30px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible{opacity:1;transform:none}
/* ── RESPONSIVE ── */
@media(max-width:900px){
.what-grid,.dev-grid{grid-template-columns:1fr}
.rm-grid{grid-template-columns:1fr 1fr}
nav .nav-links{display:none}
.flow-strip{flex-direction:column}
.flow-step{border-right:none;border-bottom:1px solid var(--border)}
.flow-step:last-child{border-bottom:none}
.foot-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:1.2rem}
}
@media(max-width:600px){
.rm-grid{grid-template-columns:1fr}
.foot-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}
.hero-btns,.dev-links,.cta-btns{flex-direction:column;align-items:center}
}
a:hover{filter:drop-shadow(0 0 8px rgba(167,139,250,1)) drop-shadow(0 0 20px rgba(167,139,250,.8)) drop-shadow(0 0 40px rgba(167,139,250,.4))}
</style>
</head>
<body>
<canvas id="stars"></canvas>
<!-- NAV -->
<nav>
<a href="#" class="nav-brand">
<svg class="nav-logo" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="18" cy="18" r="17" stroke="#8b5cf6" stroke-width="1.5" fill="rgba(139,92,246,.08)"/>
<line x1="18" y1="18" x2="18" y2="6" stroke="#8b5cf6" stroke-width="1" opacity=".6"/>
<line x1="18" y1="18" x2="28" y2="13" stroke="#8b5cf6" stroke-width="1" opacity=".6"/>
<line x1="18" y1="18" x2="27" y2="26" stroke="#8b5cf6" stroke-width="1" opacity=".6"/>
<line x1="18" y1="18" x2="9" y2="26" stroke="#8b5cf6" stroke-width="1" opacity=".6"/>
<line x1="18" y1="18" x2="8" y2="13" stroke="#8b5cf6" stroke-width="1" opacity=".6"/>
<circle cx="18" cy="6" r="2.4" fill="#a78bfa"/>
<circle cx="28" cy="13" r="2.4" fill="#a78bfa"/>
<circle cx="27" cy="26" r="2.4" fill="#a78bfa"/>
<circle cx="9" cy="26" r="2.4" fill="#a78bfa"/>
<circle cx="8" cy="13" r="2.4" fill="#a78bfa"/>
<circle cx="18" cy="18" r="3.6" fill="#8b5cf6"/>
</svg>
<span>STARNET</span>
</a>
<ul class="nav-links">
<li><a href="#what">About</a></li>
<li><a href="#holons">Holons</a></li>
<li><a href="#cli">CLI</a></li>
<li><a href="#architecture">Architecture</a></li>
<li><a href="#roadmap">Roadmap</a></li>
<li><a href="https://oasisomniverse.one" target="_blank" rel="noopener">ECOSYSTEM</a></li>
</ul>
<a href="https://github.com/NextGenSoftwareUK/OASIS" target="_blank" rel="noopener" class="nav-cta">GITHUB</a>
</nav>
<!-- HERO -->
<section id="hero">
<svg id="hero-svg" viewBox="0 0 1200 700" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="rg1" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#8b5cf6" stop-opacity=".18"/>
<stop offset="100%" stop-color="#050314" stop-opacity="0"/>
</radialGradient>
<filter id="glow-v"><feGaussianBlur stdDeviation="5" result="b"/><feMerge><feMergeNode in="b"/><feMergeNode in="SourceGraphic"/></feMerge></filter>
<filter id="glow-sm"><feGaussianBlur stdDeviation="3" result="b"/><feMerge><feMergeNode in="b"/><feMergeNode in="SourceGraphic"/></feMerge></filter>
<!-- holon hexagon (origin-centred) -->
<g id="hx">
<polygon points="0,-15 13,-7.5 13,7.5 0,15 -13,7.5 -13,-7.5" fill="rgba(139,92,246,.12)" stroke="#a78bfa" stroke-width="1.2"/>
<circle cx="0" cy="0" r="3.2" fill="#a78bfa"/>
</g>
<g id="hxc">
<polygon points="0,-15 13,-7.5 13,7.5 0,15 -13,7.5 -13,-7.5" fill="rgba(0,229,255,.1)" stroke="#00e5ff" stroke-width="1.2"/>
<circle cx="0" cy="0" r="3.2" fill="#00e5ff"/>
</g>
</defs>
<!-- center glow -->
<ellipse cx="600" cy="350" rx="360" ry="250" fill="url(#rg1)"/>
<!-- faint constellation lines -->
<g opacity=".2" stroke="#8b5cf6" stroke-width="1">
<line x1="600" y1="350" x2="600" y2="200"/>
<line x1="600" y1="350" x2="324" y2="115"/>
<line x1="600" y1="350" x2="876" y2="115"/>
<line x1="600" y1="350" x2="153" y2="440"/>
<line x1="600" y1="350" x2="1047" y2="440"/>
<line x1="600" y1="350" x2="600" y2="640"/>
</g>
<!-- Outer orbit ring — STARNET holon types -->
<g>
<ellipse cx="600" cy="350" rx="470" ry="290" fill="none" stroke="rgba(139,92,246,.12)" stroke-width="1" stroke-dasharray="6,8"/>
<use href="#hx" x="1047" y="440"/>
<text x="1047" y="464" text-anchor="middle" font-family="Share Tech Mono,monospace" font-size="13" letter-spacing=".6" fill="#a78bfa" opacity=".95">OAPPS</text>
<use href="#hxc" x="600" y="640"/>
<text x="600" y="664" text-anchor="middle" font-family="Share Tech Mono,monospace" font-size="13" letter-spacing=".6" fill="#00e5ff" opacity=".95">QUESTS</text>
<use href="#hx" x="153" y="440"/>
<text x="153" y="464" text-anchor="middle" font-family="Share Tech Mono,monospace" font-size="13" letter-spacing=".6" fill="#a78bfa" opacity=".95">MISSIONS</text>
<use href="#hx" x="324" y="115"/>
<text x="324" y="98" text-anchor="middle" font-family="Share Tech Mono,monospace" font-size="13" letter-spacing=".6" fill="#a78bfa" opacity=".95">GEONFTS</text>
<use href="#hxc" x="876" y="115"/>
<text x="876" y="98" text-anchor="middle" font-family="Share Tech Mono,monospace" font-size="13" letter-spacing=".6" fill="#00e5ff" opacity=".95">GEOHOTSPOTS</text>
</g>
<!-- Mid orbit ring — STARNET holon types -->
<g>
<ellipse cx="600" cy="350" rx="340" ry="215" fill="none" stroke="rgba(139,92,246,.13)" stroke-width="1" stroke-dasharray="5,7"/>
<use href="#hx" x="840" y="502"/>
<text x="840" y="526" text-anchor="middle" font-family="Share Tech Mono,monospace" font-size="13" letter-spacing=".6" fill="#a78bfa" opacity=".95">CELESTIAL</text>
<use href="#hxc" x="360" y="502"/>
<text x="360" y="526" text-anchor="middle" font-family="Share Tech Mono,monospace" font-size="13" letter-spacing=".6" fill="#00e5ff" opacity=".95">SPACES</text>
<use href="#hx" x="360" y="198"/>
<text x="360" y="181" text-anchor="middle" font-family="Share Tech Mono,monospace" font-size="13" letter-spacing=".6" fill="#a78bfa" opacity=".95">ZOMES</text>
<use href="#hx" x="840" y="198"/>
<text x="840" y="181" text-anchor="middle" font-family="Share Tech Mono,monospace" font-size="13" letter-spacing=".6" fill="#a78bfa" opacity=".95">TEMPLATES</text>
</g>
<!-- Inner orbit ring — STARNET holon types -->
<g>
<ellipse cx="600" cy="350" rx="230" ry="150" fill="none" stroke="rgba(139,92,246,.14)" stroke-width="1" stroke-dasharray="4,6"/>
<use href="#hx" x="799" y="425"/>
<text x="799" y="449" text-anchor="middle" font-family="Share Tech Mono,monospace" font-size="13" letter-spacing=".6" fill="#a78bfa" opacity=".95">LIBRARIES</text>
<use href="#hxc" x="401" y="425"/>
<text x="401" y="449" text-anchor="middle" font-family="Share Tech Mono,monospace" font-size="13" letter-spacing=".6" fill="#00e5ff" opacity=".95">PLUGINS</text>
<use href="#hx" x="600" y="200"/>
<text x="600" y="183" text-anchor="middle" font-family="Share Tech Mono,monospace" font-size="13" letter-spacing=".6" fill="#a78bfa" opacity=".95">INVENTORY</text>
</g>
<!-- publish / download pulses -->
<circle r="4.5" fill="#a78bfa" opacity=".9" filter="url(#glow-sm)">
<animateMotion dur="3s" repeatCount="indefinite" path="M600,350 L324,115"/>
</circle>
<circle r="4.5" fill="#00e5ff" opacity=".9" filter="url(#glow-sm)">
<animateMotion dur="2.6s" repeatCount="indefinite" path="M1047,440 L600,350"/>
</circle>
<circle r="4.5" fill="#a78bfa" opacity=".9" filter="url(#glow-sm)">
<animateMotion dur="3.4s" repeatCount="indefinite" path="M600,350 L153,440"/>
</circle>
<circle r="4" fill="#00e5ff" opacity=".8" filter="url(#glow-sm)">
<animateMotion dur="3.1s" repeatCount="indefinite" path="M876,115 L600,350"/>
</circle>
<!-- STARNET core -->
<ellipse cx="600" cy="350" rx="92" ry="62" fill="none" stroke="rgba(139,92,246,.1)" stroke-width="1" stroke-dasharray="8,4">
<animateTransform attributeName="transform" type="rotate" from="0 600 350" to="360 600 350" dur="20s" repeatCount="indefinite"/>
</ellipse>
<circle cx="600" cy="350" r="17" fill="rgba(139,92,246,.2)" stroke="#8b5cf6" stroke-width="1.5" filter="url(#glow-v)">
<animate attributeName="r" values="17;21;17" dur="3s" repeatCount="indefinite"/>
</circle>
<!-- 4-point starburst -->
<polygon points="600,332 603,347 618,350 603,353 600,368 597,353 582,350 597,347" fill="#a78bfa" opacity=".95"/>
</svg>
<div class="hero-inner">
<div class="hero-kicker">The Decentralized App Store of the Omniverse</div>
<h1>Publish the <span>Omniverse.</span></h1>
<p class="hero-sub">STARNET is the decentralized registry and asset store for the OASIS Omniverse. Build a holon — an OAPP, Quest, Mission, NFT, World, Template — publish it once, and it goes live in every connected world via the WEB5 STAR API. Versioned. Avatar-signed. Yours forever.</p>
<div class="hero-btns">
<a href="#cli" class="btn-primary">START PUBLISHING</a>
<a href="#holons" class="btn-outline">EXPLORE HOLONS</a>
<a href="https://github.com/NextGenSoftwareUK/OASIS" target="_blank" rel="noopener" class="btn-outline-cyan">VIEW ON GITHUB</a>
</div>
</div>
</section>
<!-- WHAT IS STARNET -->
<section id="what">
<div class="section-inner">
<div class="what-grid">
<div class="what-text reveal">
<h2>The <span>npm + App Store</span> of the Metaverse</h2>
<p>Every piece of content in the OASIS Omniverse is a <strong>holon</strong> — a self-contained, versioned, Avatar-owned building block. STARNET is where they all live: a decentralized registry where creators publish holons and every world discovers, downloads, and runs them.</p>
<p>Build a quest in ODOOM and a studio in OQUAKE can install it. Mint an NFT weapon and it works across every game. Ship a world template and anyone can scaffold from it. Publish once — and it's instantly available across the entire Omniverse through the <a href="https://api.starnet.oasisomniverse.one" target="_blank" rel="noopener" style="color:var(--cyan);text-decoration:none">WEB5 STAR API</a>.</p>
<p>No central gatekeeper. Holons are signed by your OASIS Avatar, stored across the OASIS HyperDrive's many providers, and carried with full version history and dependency graphs.</p>
<div class="stat-row">
<div class="stat-box"><div class="num">16+</div><div class="lbl">HOLON TYPES</div></div>
<div class="stat-box"><div class="num">∞</div><div class="lbl">CONNECTED WORLDS</div></div>
<div class="stat-box"><div class="num">100%</div><div class="lbl">WEB5 NATIVE</div></div>
<div class="stat-box"><div class="num">1-click</div><div class="lbl">PUBLISH & INSTALL</div></div>
</div>
</div>
<div class="what-card reveal">
<svg viewBox="0 0 480 410" xmlns="http://www.w3.org/2000/svg" style="background:#0d0a24">
<!-- card frame -->
<rect x="0.5" y="0.5" width="479" height="409" fill="#0d0a24"/>
<!-- header -->
<rect x="0" y="0" width="480" height="58" fill="rgba(139,92,246,.08)"/>
<line x1="0" y1="58" x2="480" y2="58" stroke="rgba(139,92,246,.25)" stroke-width="1"/>
<polygon points="34,16 50,25 50,43 34,52 18,43 18,25" fill="rgba(139,92,246,.18)" stroke="#a78bfa" stroke-width="1.4"/>
<circle cx="34" cy="34" r="4.5" fill="#a78bfa"/>
<text x="64" y="29" font-family="Orbitron,sans-serif" font-size="16" font-weight="700" fill="#ece8ff">KeycardQuest</text>
<text x="64" y="47" font-family="Share Tech Mono,monospace" font-size="11" fill="#a8bfd8">v1.2.0 · published by Avatar @david</text>
<rect x="372" y="18" width="92" height="24" rx="4" fill="rgba(139,92,246,.15)" stroke="rgba(139,92,246,.4)"/>
<text x="418" y="34" text-anchor="middle" font-family="Share Tech Mono,monospace" font-size="11" fill="#a78bfa">QUEST · OAPP</text>
<!-- meta stats row -->
<text x="24" y="92" font-family="Share Tech Mono,monospace" font-size="11" fill="#7a8ab0">DOWNLOADS</text>
<text x="24" y="112" font-family="Orbitron,sans-serif" font-size="17" font-weight="700" fill="#00e5ff">12.4k</text>
<text x="160" y="92" font-family="Share Tech Mono,monospace" font-size="11" fill="#7a8ab0">KARMA RATING</text>
<text x="160" y="112" font-family="Orbitron,sans-serif" font-size="17" font-weight="700" fill="#f0a500">★ 4.9</text>
<text x="320" y="92" font-family="Share Tech Mono,monospace" font-size="11" fill="#7a8ab0">LIVE IN</text>
<text x="320" y="112" font-family="Orbitron,sans-serif" font-size="17" font-weight="700" fill="#00cc88">7 worlds</text>
<line x1="24" y1="130" x2="456" y2="130" stroke="rgba(139,92,246,.18)" stroke-width="1"/>
<!-- dependencies -->
<text x="24" y="156" font-family="Share Tech Mono,monospace" font-size="11" fill="#7a8ab0" letter-spacing="1">DEPENDENCIES</text>
<g font-family="Rajdhani,sans-serif" font-size="14" fill="#c8d6ff">
<circle cx="30" cy="178" r="3" fill="#a78bfa"/><text x="42" y="183">OASIS.Avatar.SSO</text><text x="360" y="183" font-family="Share Tech Mono,monospace" font-size="11" fill="#7a8ab0">^4.0.0</text>
<circle cx="30" cy="202" r="3" fill="#a78bfa"/><text x="42" y="207">STAR.GeoHotSpot</text><text x="360" y="207" font-family="Share Tech Mono,monospace" font-size="11" fill="#7a8ab0">^2.1.0</text>
<circle cx="30" cy="226" r="3" fill="#00e5ff"/><text x="42" y="231">ODOOM.Keycard.NFT</text><text x="360" y="231" font-family="Share Tech Mono,monospace" font-size="11" fill="#7a8ab0">~1.0.3</text>
</g>
<line x1="24" y1="250" x2="456" y2="250" stroke="rgba(139,92,246,.18)" stroke-width="1"/>
<!-- tags -->
<g font-family="Share Tech Mono,monospace" font-size="11">
<rect x="24" y="268" width="78" height="22" rx="11" fill="rgba(0,229,255,.08)" stroke="rgba(0,229,255,.25)"/><text x="63" y="283" text-anchor="middle" fill="#00e5ff">horror</text>
<rect x="110" y="268" width="64" height="22" rx="11" fill="rgba(0,229,255,.08)" stroke="rgba(0,229,255,.25)"/><text x="142" y="283" text-anchor="middle" fill="#00e5ff">fps</text>
<rect x="182" y="268" width="96" height="22" rx="11" fill="rgba(0,229,255,.08)" stroke="rgba(0,229,255,.25)"/><text x="230" y="283" text-anchor="middle" fill="#00e5ff">real-world</text>
<rect x="286" y="268" width="74" height="22" rx="11" fill="rgba(0,229,255,.08)" stroke="rgba(0,229,255,.25)"/><text x="323" y="283" text-anchor="middle" fill="#00e5ff">co-op</text>
</g>
<!-- install command -->
<rect x="24" y="316" width="432" height="68" rx="8" fill="#070518" stroke="rgba(139,92,246,.3)"/>
<text x="40" y="342" font-family="Share Tech Mono,monospace" font-size="12" fill="#5a6a92"># install into your world</text>
<text x="40" y="368" font-family="Share Tech Mono,monospace" font-size="13.5"><tspan fill="#a78bfa">star</tspan><tspan fill="#ece8ff"> oapp </tspan><tspan fill="#00e5ff">install</tspan><tspan fill="#ece8ff"> KeycardQuest@1.2.0</tspan></text>
</svg>
</div>
</div>
</div>
</section>
<!-- STARNET WORKFLOW -->
<section style="padding:6rem 0;background:linear-gradient(180deg,transparent,rgba(0,229,255,.04),transparent)">
<div class="section-inner">
<div class="section-head reveal">
<div class="section-kicker">THE CREATION CYCLE</div>
<h2>Discover • Publish • Integrate • Deploy • Monetize • Evolve</h2>
<p>STARNET is the complete lifecycle management system for Web5 creations — from discovery to ongoing evolution.</p>
</div>
<div style="display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:1rem;max-width:1080px;margin:0 auto">
<div style="background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:1.5rem;text-align:center">
<div style="font-size:1.8rem;margin-bottom:0.8rem">🔍</div>
<div style="font-family:'Orbitron',sans-serif;font-size:0.9rem;font-weight:700;color:var(--cyan);letter-spacing:.06em;margin-bottom:0.5rem">DISCOVER</div>
<p style="font-size:1rem;color:#a8bfd8;line-height:1.7">Search STARNET for OAPPs, quests, assets, templates and tools created by the community.</p>
</div>
<div style="background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:1.5rem;text-align:center">
<div style="font-size:1.8rem;margin-bottom:0.8rem">📤</div>
<div style="font-family:'Orbitron',sans-serif;font-size:0.9rem;font-weight:700;color:var(--cyan);letter-spacing:.06em;margin-bottom:0.5rem">PUBLISH</div>
<p style="font-size:1rem;color:#a8bfd8;line-height:1.7">Publish your holons to STARNET — signed by your Avatar, versioned, and discoverable.</p>
</div>
<div style="background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:1.5rem;text-align:center">
<div style="font-size:1.8rem;margin-bottom:0.8rem">🧩</div>
<div style="font-family:'Orbitron',sans-serif;font-size:0.9rem;font-weight:700;color:var(--cyan);letter-spacing:.06em;margin-bottom:0.5rem">INTEGRATE</div>
<p style="font-size:1rem;color:#a8bfd8;line-height:1.7">Combine and compose holons together — plug dependencies and build complex systems.</p>
</div>
<div style="background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:1.5rem;text-align:center">
<div style="font-size:1.8rem;margin-bottom:0.8rem">🚀</div>
<div style="font-family:'Orbitron',sans-serif;font-size:0.9rem;font-weight:700;color:var(--cyan);letter-spacing:.06em;margin-bottom:0.5rem">DEPLOY</div>
<p style="font-size:1rem;color:#a8bfd8;line-height:1.7">Deploy to sandbox, then live — instantly available across the entire Omniverse.</p>
</div>
<div style="background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:1.5rem;text-align:center">
<div style="font-size:1.8rem;margin-bottom:0.8rem">💰</div>
<div style="font-family:'Orbitron',sans-serif;font-size:0.9rem;font-weight:700;color:var(--cyan);letter-spacing:.06em;margin-bottom:0.5rem">MONETIZE</div>
<p style="font-size:1rem;color:#a8bfd8;line-height:1.7">Earn through licensing, subscriptions, royalties, marketplace fees and revenue splits.</p>
</div>
<div style="background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:1.5rem;text-align:center">
<div style="font-size:1.8rem;margin-bottom:0.8rem">♻️</div>
<div style="font-family:'Orbitron',sans-serif;font-size:0.9rem;font-weight:700;color:var(--cyan);letter-spacing:.06em;margin-bottom:0.5rem">EVOLVE</div>
<p style="font-size:1rem;color:#a8bfd8;line-height:1.7">Update, upgrade and evolve your creations — users get improvements instantly.</p>
</div>
</div>
</div>
</section>
<!-- DEPLOYMENT PIPELINE -->
<section style="padding:6rem 0">
<div class="section-inner">
<div class="section-head reveal">
<div class="section-kicker">SAFE INNOVATION</div>
<h2>Deployment Pipeline: DEVELOP → TEST → SANDBOX → LIVE</h2>
<p>Version-controlled staging environment with full rollback and roll-forward capabilities. Test safely, deploy confidently, evolve continuously without breaking existing deployments.</p>
</div>
<div style="display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:1.5rem;max-width:1100px;margin:0 auto">
<div style="background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:2rem;text-align:center">
<div style="font-size:2rem;margin-bottom:1rem;color:var(--violet)">💻</div>
<div style="font-family:'Orbitron',sans-serif;font-size:1rem;font-weight:700;color:var(--cyan);letter-spacing:.06em;margin-bottom:1rem">DEVELOP</div>
<p style="font-size:0.95rem;color:#a8bfd8;line-height:1.6">Write, build and test locally with full IDE support and debugging.</p>
</div>
<div style="background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:2rem;text-align:center">
<div style="font-size:2rem;margin-bottom:1rem;color:var(--violet)">✅</div>
<div style="font-family:'Orbitron',sans-serif;font-size:1rem;font-weight:700;color:var(--cyan);letter-spacing:.06em;margin-bottom:1rem">TEST</div>
<p style="font-size:0.95rem;color:#a8bfd8;line-height:1.6">Automated testing, unit tests, integration tests in isolated environment.</p>
</div>
<div style="background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:2rem;text-align:center">
<div style="font-size:2rem;margin-bottom:1rem;color:var(--cyan)">🏠</div>
<div style="font-family:'Orbitron',sans-serif;font-size:1rem;font-weight:700;color:var(--cyan);letter-spacing:.06em;margin-bottom:1rem">SANDBOX</div>
<p style="font-size:0.95rem;color:#a8bfd8;line-height:1.6">Staging environment — test with real users, real data, real load without affecting production.</p>
</div>
<div style="background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:2rem;text-align:center">
<div style="font-size:2rem;margin-bottom:1rem;color:var(--green)">🌍</div>
<div style="font-family:'Orbitron',sans-serif;font-size:1rem;font-weight:700;color:var(--cyan);letter-spacing:.06em;margin-bottom:1rem">LIVE</div>
<p style="font-size:0.95rem;color:#a8bfd8;line-height:1.6">Production deployment across the Omniverse — fully versioned and recoverable.</p>
</div>
</div>
<div style="margin-top:3rem;padding:2rem;background:rgba(139,92,246,.06);border:1px solid rgba(139,92,246,.15);border-radius:12px;max-width:900px;margin-left:auto;margin-right:auto">
<div style="display:grid;grid-template-columns:1fr auto 1fr;gap:2rem;align-items:center">
<div style="text-align:right">
<div style="font-family:'Orbitron',sans-serif;font-size:0.9rem;color:var(--cyan);letter-spacing:.1em;margin-bottom:0.5rem">ROLLBACK</div>
<p style="font-size:0.95rem;color:#a8bfd8;margin:0">Instantly revert to any previous version with full control.</p>
</div>
<div style="font-size:1.5rem;color:var(--cyan)">⇄</div>
<div>
<div style="font-family:'Orbitron',sans-serif;font-size:0.9rem;color:var(--cyan);letter-spacing:.1em;margin-bottom:0.5rem">ROLL-FORWARD</div>
<p style="font-size:0.95rem;color:#a8bfd8;margin:0">Confidently move forward knowing you can always go back.</p>
</div>
</div>
</div>
</div>
</section>
<!-- HOLON TYPES -->
<section id="holons">
<div class="section-inner">
<div class="section-head reveal">
<div class="section-kicker">PUBLISHABLE BUILDING BLOCKS</div>
<h2>Everything Is a Holon</h2>
<p>From a single NFT to an entire universe, every asset in the Omniverse is a versioned, shareable holon you can publish to and install from STARNET.</p>
</div>
<div class="holon-grid">
<div class="holon-card reveal">
<div class="holon-icon">📦</div>
<h3>OAPPs</h3>
<p>Full OASIS Apps and games — like ODOOM and OQUAKE. Self-contained experiences that ship with all their holons bundled.</p>
<span class="cmd">star oapp publish</span>
</div>
<div class="holon-card reveal">
<div class="holon-icon">📜</div>
<h3>QUESTS</h3>
<p>Gamified missions with objectives, rewards, and karma. Span worlds — start in one game, finish in another.</p>
<span class="cmd">star quest publish</span>
</div>
<div class="holon-card reveal">
<div class="holon-icon">🎯</div>
<h3>MISSIONS & CHAPTERS</h3>
<p>Bundle quests into campaigns and story arcs that unfold across the Omniverse with branching progression.</p>
<span class="cmd">star mission publish</span>
</div>
<div class="holon-card reveal">
<div class="holon-icon">💎</div>
<h3>NFTs & GeoNFTs</h3>
<p>Mint weapons, cosmetics, and collectibles as blockchain-verified NFTs — including geo-located GeoNFTs tied to real places.</p>
<span class="cmd">star nft mint</span>
</div>
<div class="holon-card reveal">
<div class="holon-icon">📍</div>
<h3>GeoHotSpots</h3>
<p>Real-world map locations that trigger content — quests, loot, AR encounters — when a player physically arrives.</p>
<span class="cmd">star geohotspot publish</span>
</div>
<div class="holon-card reveal">
<div class="holon-icon">🪐</div>
<h3>CELESTIAL BODIES</h3>
<p>Planets, moons, stars and super stars — entire explorable worlds and the spaces that hold them, packaged as holons.</p>
<span class="cmd">star celestialbody publish</span>
</div>
<div class="holon-card reveal">
<div class="holon-icon">🌌</div>
<h3>CELESTIAL SPACES</h3>
<p>Galaxies, solar systems and universes — the macro-structures of the Omniverse that contain celestial bodies.</p>
<span class="cmd">star celestialspace publish</span>
</div>
<div class="holon-card reveal">
<div class="holon-icon">🧬</div>
<h3>ZOMES & HOLONS</h3>
<p>The raw data layer. Zomes group holons; holons are the universal object every other type is built from.</p>
<span class="cmd">star holon publish</span>
</div>
<div class="holon-card reveal">
<div class="holon-icon">🧩</div>
<h3>TEMPLATES</h3>
<p>Project scaffolds for any holon type. Spin up a new OAPP, quest, or world pre-wired and ready to build.</p>
<span class="cmd">star template publish</span>
</div>
<div class="holon-card reveal">
<div class="holon-icon">📚</div>
<h3>LIBRARIES & RUNTIMES</h3>
<p>Shareable code libraries and STAR runtimes that other holons depend on — resolved automatically on install.</p>
<span class="cmd">star library publish</span>
</div>
<div class="holon-card reveal">
<div class="holon-icon">🔌</div>
<h3>PLUGINS & PROVIDERS</h3>
<p>Extend the OASIS itself — new storage providers, blockchains, and integrations plugged into the HyperDrive.</p>
<span class="cmd">star plugin publish</span>
</div>
<div class="holon-card reveal">
<div class="holon-icon">🎒</div>
<h3>INVENTORY ITEMS</h3>
<p>Weapons, armour, keycards, powerups — cross-game items that persist with the player's Avatar everywhere.</p>
<span class="cmd">star inventoryitem publish</span>
</div>
</div>
</div>
</section>
<!-- SMART BRICKS -->
<section style="padding:6rem 0;background:linear-gradient(180deg,transparent,rgba(0,229,255,.04))">
<div class="section-inner">
<div class="section-head reveal">
<div class="section-kicker">COMPOSABLE BUILDING BLOCKS</div>
<h2>Smart Bricks: LEGO for Web5</h2>
<p>Every holon is a Smart Brick — modular, nestable, and composable. Plug them together like LEGO to build anything: apps, worlds, economies, entire universes. Infinitely nestable, perfectly interoperable.</p>
</div>
<div style="display:grid;grid-template-columns:1fr 1fr;gap:2rem;max-width:1100px;margin:0 auto;align-items:stretch">
<div style="background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:2rem">
<h3 style="font-family:'Orbitron',sans-serif;font-size:0.95rem;color:var(--cyan);letter-spacing:.08em;margin-bottom:1.2rem;text-transform:uppercase">The Pattern</h3>
<p style="color:#a8bfd8;font-size:0.95rem;line-height:1.75;margin-bottom:1.5rem">Smart Bricks follow a simple philosophy: <strong>Build Once. Reuse Infinitely.</strong></p>
<ul style="list-style:none;padding:0;margin:0;display:grid;gap:0.8rem">
<li style="color:#a8bfd8;font-size:0.9rem;display:flex;gap:0.8rem"><span style="color:var(--cyan);flex-shrink:0">→</span> Create once, use everywhere</li>
<li style="color:#a8bfd8;font-size:0.9rem;display:flex;gap:0.8rem"><span style="color:var(--cyan);flex-shrink:0">→</span> Compose without limits</li>
<li style="color:#a8bfd8;font-size:0.9rem;display:flex;gap:0.8rem"><span style="color:var(--cyan);flex-shrink:0">→</span> Connect all worlds</li>
<li style="color:#a8bfd8;font-size:0.9rem;display:flex;gap:0.8rem"><span style="color:var(--cyan);flex-shrink:0">→</span> Monetize automatically</li>
<li style="color:#a8bfd8;font-size:0.9rem;display:flex;gap:0.8rem"><span style="color:var(--cyan);flex-shrink:0">→</span> Persist forever</li>
</ul>
</div>
<div style="background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:2rem">
<h3 style="font-family:'Orbitron',sans-serif;font-size:0.95rem;color:var(--cyan);letter-spacing:.08em;margin-bottom:1.2rem;text-transform:uppercase">Examples of Smart Bricks</h3>
<div style="display:grid;grid-template-columns:1fr 1fr;gap:1rem">
<div style="font-size:0.85rem;color:#a8bfd8;line-height:1.6">
<div style="color:var(--cyan);font-weight:600;margin-bottom:0.3rem">🧱 Assets</div>
NFTs, items, cosmetics
</div>
<div style="font-size:0.85rem;color:#a8bfd8;line-height:1.6">
<div style="color:var(--cyan);font-weight:600;margin-bottom:0.3rem">🎯 Gameplay</div>
Quests, missions, challenges
</div>
<div style="font-size:0.85rem;color:#a8bfd8;line-height:1.6">
<div style="color:var(--cyan);font-weight:600;margin-bottom:0.3rem">🌍 Worlds</div>
Planets, celestial spaces
</div>
<div style="font-size:0.85rem;color:#a8bfd8;line-height:1.6">
<div style="color:var(--cyan);font-weight:600;margin-bottom:0.3rem">🤖 Intelligence</div>
AI agents, workflows
</div>
<div style="font-size:0.85rem;color:#a8bfd8;line-height:1.6">
<div style="color:var(--cyan);font-weight:600;margin-bottom:0.3rem">💰 Commerce</div>
Marketplaces, storefronts
</div>
<div style="font-size:0.85rem;color:#a8bfd8;line-height:1.6">
<div style="color:var(--cyan);font-weight:600;margin-bottom:0.3rem">🔌 Integrations</div>
APIs, connectors, bridges
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CREATOR & DEVELOPER ECONOMY -->
<section style="padding:6rem 0;background:linear-gradient(180deg,rgba(139,92,246,.04),transparent)">
<div class="section-inner">
<div class="section-head reveal">
<div class="section-kicker">EARN & GROW</div>
<h2>Creator & Developer Economy</h2>
<p>Publish once. Earn forever. STARNET's revenue sharing model lets creators and developers monetize their work across unlimited worlds and users.</p>
</div>
<div style="display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:1.5rem;max-width:1400px;margin:0 auto">
<div style="background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:2.2rem 1.6rem;text-align:center">
<div style="font-size:1.6rem;margin-bottom:1rem">🎁</div>
<div style="font-family:'Orbitron',sans-serif;font-size:0.9rem;font-weight:700;color:var(--cyan);letter-spacing:.06em;margin-bottom:0.5rem">LICENSING</div>
<p style="font-size:1rem;color:#a8bfd8;line-height:1.7">Per-use, per-seat, or exclusive licenses — you decide the model.</p>
</div>
<div style="background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:2.2rem 1.6rem;text-align:center">
<div style="font-size:1.6rem;margin-bottom:1rem">📅</div>
<div style="font-family:'Orbitron',sans-serif;font-size:0.9rem;font-weight:700;color:var(--cyan);letter-spacing:.06em;margin-bottom:0.5rem">SUBSCRIPTIONS</div>
<p style="font-size:1rem;color:#a8bfd8;line-height:1.7">Monthly or annual recurring revenue from active users.</p>
</div>
<div style="background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:2.2rem 1.6rem;text-align:center">
<div style="font-size:1.6rem;margin-bottom:1rem">💎</div>
<div style="font-family:'Orbitron',sans-serif;font-size:0.9rem;font-weight:700;color:var(--cyan);letter-spacing:.06em;margin-bottom:0.5rem">ROYALTIES</div>
<p style="font-size:1rem;color:#a8bfd8;line-height:1.7">Earn a percentage every time your holon is used or sold.</p>
</div>
<div style="background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:2.2rem 1.6rem;text-align:center">
<div style="font-size:1.6rem;margin-bottom:1rem">🏪</div>
<div style="font-family:'Orbitron',sans-serif;font-size:0.9rem;font-weight:700;color:var(--cyan);letter-spacing:.06em;margin-bottom:0.5rem">MARKETPLACE FEES</div>
<p style="font-size:1rem;color:#a8bfd8;line-height:1.7">Earn when creators sell your templates, frameworks or tools.</p>
</div>
<div style="background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:2.2rem 1.6rem;text-align:center">
<div style="font-size:1.6rem;margin-bottom:1rem">🎯</div>
<div style="font-family:'Orbitron',sans-serif;font-size:0.9rem;font-weight:700;color:var(--cyan);letter-spacing:.06em;margin-bottom:0.5rem">REVENUE SPLITS</div>
<p style="font-size:1rem;color:#a8bfd8;line-height:1.7">Collaborate and share revenue with co-creators and contributors.</p>
</div>
<div style="background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:2.2rem 1.6rem;text-align:center">
<div style="font-size:1.6rem;margin-bottom:1rem">👥</div>
<div style="font-family:'Orbitron',sans-serif;font-size:0.9rem;font-weight:700;color:var(--cyan);letter-spacing:.06em;margin-bottom:0.5rem">COMMUNITY REWARDS</div>
<p style="font-size:1rem;color:#a8bfd8;line-height:1.7">Get rewarded for contributions, maintenance and community building.</p>
</div>
<div style="background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:2.2rem 1.6rem;text-align:center">
<div style="font-size:1.6rem;margin-bottom:1rem">🤝</div>
<div style="font-family:'Orbitron',sans-serif;font-size:0.9rem;font-weight:700;color:var(--cyan);letter-spacing:.06em;margin-bottom:0.5rem">AFFILIATE REFERRALS</div>
<p style="font-size:1rem;color:#a8bfd8;line-height:1.7">Earn a cut when creators or users you refer publish, subscribe or spend.</p>
</div>
<div style="background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:2.2rem 1.6rem;text-align:center">
<div style="font-size:1.6rem;margin-bottom:1rem">🏆</div>
<div style="font-family:'Orbitron',sans-serif;font-size:0.9rem;font-weight:700;color:var(--cyan);letter-spacing:.06em;margin-bottom:0.5rem">BOUNTIES & GRANTS</div>
<p style="font-size:1rem;color:#a8bfd8;line-height:1.7">Get paid for completing OASIS-funded bounties and grants for holons the ecosystem needs.</p>
</div>
</div>
</div>
</section>
<!-- COSMIC ORM: THE DATA BACKBONE -->
<section style="padding:6rem 0;background:linear-gradient(180deg,rgba(217,70,239,.04),transparent)">
<div class="section-inner">
<div class="section-head reveal">
<div class="section-kicker">UNIVERSAL DATA LAYER</div>
<h2>COSMIC ORM: The Omniverse Data Backbone</h2>
<p>Behind every holon, every world, every transaction is COSMIC ORM — the next-generation AI-native, decentralized data layer that unifies information across 40+ providers, blockchains, databases, and APIs. One data model. Infinite worlds.</p>
</div>
<div style="display:grid;grid-template-columns:1fr 1fr;gap:2rem;max-width:1100px;margin:0 auto 3rem;align-items:stretch">
<div style="background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:2rem">
<h3 style="font-family:'Orbitron',sans-serif;font-size:0.95rem;color:var(--cyan);letter-spacing:.08em;margin-bottom:1.2rem;text-transform:uppercase">What COSMIC Does</h3>
<ul style="list-style:none;padding:0;margin:0;display:grid;gap:1rem">
<li style="color:#a8bfd8;font-size:0.9rem;display:flex;gap:0.8rem"><span style="color:var(--cyan);flex-shrink:0;font-weight:700">✓</span> Unifies data from 40+ blockchains, databases, APIs, and cloud services</li>
<li style="color:#a8bfd8;font-size:0.9rem;display:flex;gap:0.8rem"><span style="color:var(--cyan);flex-shrink:0;font-weight:700">✓</span> Auto-generates schemas and relationships using AI</li>
<li style="color:#a8bfd8;font-size:0.9rem;display:flex;gap:0.8rem"><span style="color:var(--cyan);flex-shrink:0;font-weight:700">✓</span> Syncs data in real-time across all connected systems</li>
<li style="color:#a8bfd8;font-size:0.9rem;display:flex;gap:0.8rem"><span style="color:var(--cyan);flex-shrink:0;font-weight:700">✓</span> Detects anomalies and optimizes queries automatically</li>
<li style="color:#a8bfd8;font-size:0.9rem;display:flex;gap:0.8rem"><span style="color:var(--cyan);flex-shrink:0;font-weight:700">✓</span> Works across Web4, Web5, blockchains, and off-chain systems</li>
</ul>
</div>
<div style="background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:2rem">
<h3 style="font-family:'Orbitron',sans-serif;font-size:0.95rem;color:var(--cyan);letter-spacing:.08em;margin-bottom:1.2rem;text-transform:uppercase">Powers All Omniverse Layers</h3>
<div style="display:grid;grid-template-columns:1fr 1fr;gap:1.2rem;font-size:0.85rem;color:#a8bfd8;line-height:1.6">
<div>
<div style="color:var(--cyan);font-weight:600;margin-bottom:0.3rem">🔐 Identity</div>
Avatars, reputation, profiles
</div>
<div>
<div style="color:var(--cyan);font-weight:600;margin-bottom:0.3rem">💎 Assets</div>
NFTs, inventory, items
</div>
<div>
<div style="color:var(--cyan);font-weight:600;margin-bottom:0.3rem">🛒 Commerce</div>
Orders, payments, marketplaces
</div>
<div>
<div style="color:var(--cyan);font-weight:600;margin-bottom:0.3rem">🌍 Worlds</div>
Virtual worlds, land, objects
</div>
<div>
<div style="color:var(--cyan);font-weight:600;margin-bottom:0.3rem">🤖 AI Agents</div>
Memories, decisions, evolution
</div>
<div>
<div style="color:var(--cyan);font-weight:600;margin-bottom:0.3rem">🏛️ Governance</div>
DAOs, treasuries, voting
</div>
<div>
<div style="color:var(--cyan);font-weight:600;margin-bottom:0.3rem">⚡ Infrastructure</div>
Compute, storage, networking
</div>
<div>
<div style="color:var(--cyan);font-weight:600;margin-bottom:0.3rem">♾️ Everything</div>
Cross-chain, infinite scale
</div>
</div>
</div>
</div>
<h3 style="font-family:'Orbitron',sans-serif;font-size:0.9rem;color:var(--text);text-align:center;letter-spacing:.08em;margin:2rem 0 1.5rem;text-transform:uppercase" class="reveal">The Five Pillars of COSMIC ORM</h3>
<div style="display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:1.2rem;max-width:1100px;margin:0 auto">
<div style="background:rgba(217,70,239,.08);border:1px solid rgba(217,70,239,.2);border-radius:10px;padding:1.5rem;text-align:center">
<div style="font-size:1.8rem;margin-bottom:0.8rem">🌐</div>
<div style="font-family:'Orbitron',sans-serif;font-size:0.8rem;color:var(--cyan);letter-spacing:.08em;margin-bottom:0.5rem;text-transform:uppercase">Universal Abstraction</div>
<div style="font-size:0.85rem;color:#a8bfd8;line-height:1.5">Maps any data structure across any system</div>
</div>
<div style="background:rgba(217,70,239,.08);border:1px solid rgba(217,70,239,.2);border-radius:10px;padding:1.5rem;text-align:center">
<div style="font-size:1.8rem;margin-bottom:0.8rem">🧠</div>
<div style="font-family:'Orbitron',sans-serif;font-size:0.8rem;color:var(--cyan);letter-spacing:.08em;margin-bottom:0.5rem;text-transform:uppercase">AI-Native Intelligence</div>
<div style="font-size:0.85rem;color:#a8bfd8;line-height:1.5">Understands context and optimizes automatically</div>
</div>
<div style="background:rgba(217,70,239,.08);border:1px solid rgba(217,70,239,.2);border-radius:10px;padding:1.5rem;text-align:center">
<div style="font-size:1.8rem;margin-bottom:0.8rem">🔗</div>
<div style="font-family:'Orbitron',sans-serif;font-size:0.8rem;color:var(--cyan);letter-spacing:.08em;margin-bottom:0.5rem;text-transform:uppercase">Cross-World Interoperability</div>
<div style="font-size:0.85rem;color:#a8bfd8;line-height:1.5">One data layer, all worlds connected</div>
</div>
<div style="background:rgba(217,70,239,.08);border:1px solid rgba(217,70,239,.2);border-radius:10px;padding:1.5rem;text-align:center">
<div style="font-size:1.8rem;margin-bottom:0.8rem">🔓</div>
<div style="font-family:'Orbitron',sans-serif;font-size:0.8rem;color:var(--cyan);letter-spacing:.08em;margin-bottom:0.5rem;text-transform:uppercase">Decentralized Design</div>
<div style="font-size:0.85rem;color:#a8bfd8;line-height:1.5">No central authority, full sovereignty</div>
</div>
<div style="background:rgba(217,70,239,.08);border:1px solid rgba(217,70,239,.2);border-radius:10px;padding:1.5rem;text-align:center">
<div style="font-size:1.8rem;margin-bottom:0.8rem">♾️</div>
<div style="font-family:'Orbitron',sans-serif;font-size:0.8rem;color:var(--cyan);letter-spacing:.08em;margin-bottom:0.5rem;text-transform:uppercase">Infinite Scale</div>
<div style="font-size:0.85rem;color:#a8bfd8;line-height:1.5">From kilo objects to planetary scale</div>
</div>
</div>
<h3 style="font-family:'Orbitron',sans-serif;font-size:0.95rem;color:var(--text);text-align:center;letter-spacing:.08em;margin:3rem 0 1.5rem;text-transform:uppercase">Publish & Access Holons</h3>
<div style="background:rgba(139,92,246,.05);border:1px solid rgba(139,92,246,.15);border-radius:12px;padding:2rem;max-width:1100px;margin:0 auto">
<h4 style="font-family:'Orbitron',sans-serif;font-size:0.85rem;color:var(--cyan);letter-spacing:.08em;margin-bottom:1rem;text-transform:uppercase">Save a Holon to STARNET</h4>
<pre style="background:#0a0515;border:1px solid rgba(139,92,246,.2);border-radius:8px;padding:1.2rem;color:#c0d8ff;font-size:0.8rem;overflow-x:auto;font-family:'Share Tech Mono',monospace;line-height:1.6;white-space:pre"><span style="color:var(--cyan)">// Create and save a quest</span>
<span style="color:var(--cyan)">var</span> quest = <span style="color:var(--cyan)">new</span> Quest();
quest.Name = <span style="color:#00cc88">"Defeat The Dragon"</span>;
quest.Description = <span style="color:#00cc88">"Epic boss fight quest"</span>;
quest.MetaData[<span style="color:#00cc88">"Reward"</span>] = <span style="color:#00cc88">"1000 XP"</span>;
<span style="color:var(--cyan)">// Save via STARNET (auto-publishes to app store)</span>
<span style="color:var(--cyan)">var</span> result = <span style="color:var(--cyan)">await</span> STAR.OASISAPI.Data.SaveHolonAsync<Quest>(quest);
<span style="color:#00cc88">// Quest now searchable on STARNET for other creators</span>
<span style="color:#00cc88">// Automatically replicated to 40+ providers</span>
<span style="color:#00cc88">// Monetization rules apply automatically</span></pre>
<h4 style="font-family:'Orbitron',sans-serif;font-size:0.85rem;color:var(--cyan);letter-spacing:.08em;margin:1.5rem 0 1rem;text-transform:uppercase">Search & Discover Holons</h4>
<pre style="background:#0a0515;border:1px solid rgba(139,92,246,.2);border-radius:8px;padding:1.2rem;color:#c0d8ff;font-size:0.8rem;overflow-x:auto;font-family:'Share Tech Mono',monospace;line-height:1.6;white-space:pre"><span style="color:var(--cyan)">// Find published quests by difficulty</span>
<span style="color:var(--cyan)">var</span> filter = <span style="color:var(--cyan)">new</span> Dictionary<<span style="color:var(--cyan)">string</span>, <span style="color:var(--cyan)">object</span>>
{
{ <span style="color:#00cc88">"Difficulty"</span>, <span style="color:#00cc88">"Hard"</span> },
{ <span style="color:#00cc88">"Type"</span>, <span style="color:#00cc88">"Quest"</span> }
};
<span style="color:var(--cyan)">var</span> results = <span style="color:var(--cyan)">await</span> STAR.OASISAPI.Data
.LoadHolonsByMetaDataAsync<Quest>(filter);
<span style="color:#f0a500">✓ Found {results.Result.Count()} quests</span>
<span style="color:#00cc88">// Integrate into your world with one command</span></pre>
</div>
</div>
</section>
<!-- CELESTIAL GROWTH -->
<section id="celestial-growth">
<div class="section-inner">
<div class="section-head reveal">
<div class="section-kicker">GROWTH & PROGRESSION</div>
<h2>From Moon to Omniverse Center</h2>
<p>Celestial Bodies aren't just a holon type — they're how your Avatar's standing in the Omniverse grows. To begin with, Avatars can only create Moons. As you level up and earn more karma, you unlock the ability to create your own Planets, and eventually Stars, Galaxies and entire Universes.</p>
</div>
<h3 style="font-family:'Orbitron',sans-serif;font-size:1rem;color:var(--text);text-align:center;letter-spacing:.08em;margin:0 0 1.4rem" class="reveal">HOW STARNET BUILDS A WORLD</h3>
<div class="cg-compose reveal">
<div class="cg-step">
<div class="cg-step-icon">🧬</div>
<h4>HOLON</h4>
<p>The atomic unit — a single app, game, site, avatar, or asset. Everything in the Omniverse is a holon.</p>
<div class="cg-mini-row"><span class="cg-mini">📦</span><span class="cg-mini">🎯</span><span class="cg-mini">💎</span><span class="cg-mini">🤖</span></div>
</div>
<div class="cg-arrow">→</div>
<div class="cg-step">
<div class="cg-step-icon">🧩</div>
<h4>ZOME</h4>
<p>Holons are grouped into Zomes — logical clusters that define a feature area or community layer within a Celestial Body.</p>
<div class="cg-mini-row"><span class="cg-mini">🧬🧬🧬</span></div>
</div>
<div class="cg-arrow">→</div>
<div class="cg-step">
<div class="cg-step-icon">🪐</div>
<h4>CELESTIAL BODY</h4>
<p>Zomes compose a Celestial Body — Moon, Planet, Star, Super Star or Grand Super Star — each hosting its own orbit of smaller bodies.</p>
<div class="cg-mini-row"><span class="cg-mini">🌑</span><span class="cg-mini">🪐</span><span class="cg-mini">⭐</span><span class="cg-mini">🌟</span><span class="cg-mini">🌌</span></div>
</div>
<div class="cg-arrow">→</div>
<div class="cg-step">
<div class="cg-step-icon">🌌</div>
<h4>CELESTIAL SPACE</h4>
<p>Celestial Bodies orbit inside Celestial Spaces — the gravitational zones that define scale, from solar systems to the full Omniverse.</p>
<div class="cg-mini-row"><span class="cg-mini">🌌🌌🌌</span></div>
</div>
</div>
<h3 style="font-family:'Orbitron',sans-serif;font-size:1.1rem;color:var(--text);text-align:center;letter-spacing:.06em;margin:0 0 1rem" class="reveal">Every Tier, Orbiting Toward the Core</h3>
<div class="reveal" style="max-width:1240px;margin:0 auto 40px;border-radius:16px;overflow:hidden;border:1px solid rgba(139,92,246,.25);background:rgba(5,3,20,.6);box-shadow:0 0 50px rgba(139,92,246,.12)">
<canvas id="celestial-canvas" style="width:100%;display:block"></canvas>
</div>
<div class="flow-strip reveal">
<div class="flow-step">
<div class="fs-num">TIER 01</div>
<div class="fs-icon">🌑</div>
<h3>MOON</h3>
<p>The starting tier. Every new Avatar can create and host Moons — small satellite apps, games or sites.</p>
</div>
<div class="flow-step">
<div class="fs-num">TIER 02</div>
<div class="fs-icon">🪐</div>
<h3>PLANET</h3>
<p>Earn enough karma and you unlock Planets — bigger worlds that can host Moons of their own.</p>
</div>
<div class="flow-step">
<div class="fs-num">TIER 03</div>
<div class="fs-icon">⭐</div>
<h3>STAR</h3>
<p>Stars sit at the center of a solar system, creating and hosting their own Moons and Planets.</p>
</div>
<div class="flow-step">
<div class="fs-num">TIER 04</div>
<div class="fs-icon">🌟</div>
<h3>SUPER STAR</h3>
<p>A Super Star sits at the center of a galaxy, creating entire solar systems and the Stars within them.</p>
</div>
<div class="flow-step">
<div class="fs-num">TIER 05 · HIGHEST ATTAINABLE</div>
<div class="fs-icon">🌌</div>
<h3>GRAND SUPER STAR</h3>
<p>A Grand Super Star sits at the center of a multiverse — a network of galaxies built from Super Stars. The highest tier any Avatar can ever reach — owning your own multiverse.</p>
</div>
</div>
<p style="text-align:center;max-width:760px;margin:24px auto 0;line-height:1.7;color:#a8bfd8">There is only <strong>one</strong> Great Grand Super Star — the singular core engine at the very center of the entire OASIS Omniverse. It isn't a tier Avatars level up into; it's the Omniverse itself.</p>
<p style="text-align:center;max-width:760px;margin:24px auto 0;line-height:1.7;color:#a8bfd8">Growth isn't just cosmetic. You earn karma for hosting other holons within your Celestial Body — and the bigger the Star, the bigger the reward. Hosting rewards pay out in karma, <strong>SEEDS</strong> and <strong>HoloFuel</strong>, so the more of the Omniverse you support, the more you earn.</p>
</div>
</section>
<!-- OMNIVERSE HIERARCHY DIAGRAM -->
<section id="omniverse-diagram">
<div class="section-inner">
<div class="section-head reveal">
<div class="section-kicker">LIVE 3D HIERARCHY</div>
<h2>The Full <span style="color:var(--violet-light)">OASIS Omniverse</span></h2>
<p>A live 3D visualization of the complete OASIS Omniverse — Holons orbiting Zomes, Zomes orbiting Celestial Bodies, Moons orbiting Planets, Planets orbiting Stars (Solar Systems), Solar Systems orbiting Super Stars (Galaxies), Galaxies orbiting Grand Super Stars (Universes), and Universes orbiting the one Great Grand Super Star at the Omniverse core.</p>
</div>
</div>
<div class="omni-wrap reveal">
<canvas id="omniverse-canvas"></canvas>
</div>
<div class="section-inner">
<div class="omni-legend">
<div class="omni-li"><div class="omni-dot" style="background:#FFD700"></div>GREAT GRAND SUPER STAR (OMNIVERSE)</div>
<div class="omni-li"><div class="omni-dot" style="background:#FF8C00"></div>GRAND SUPER STAR (UNIVERSE)</div>
<div class="omni-li"><div class="omni-dot" style="background:#FFB040"></div>SUPER STAR (GALAXY)</div>
<div class="omni-li"><div class="omni-dot" style="background:#FFE566"></div>STAR (SOLAR SYSTEM)</div>
<div class="omni-li"><div class="omni-dot" style="background:#4FC3F7"></div>PLANET</div>
<div class="omni-li"><div class="omni-dot" style="background:#B0C8D4"></div>MOON</div>
<div class="omni-li"><div class="omni-dot" style="background:#00E5FF"></div>ZOME</div>
<div class="omni-li"><div class="omni-dot" style="background:#A78BFA"></div>HOLON</div>
</div>
</div>
</section>
<!-- CLI -->
<section id="cli">
<div class="section-inner">
<div class="dev-grid">
<div class="dev-text reveal">
<h2>One CLI. The Whole <span>Omniverse.</span></h2>
<p>The <strong>STAR CLI</strong> is your gateway to STARNET. Authenticate once with your OASIS Avatar, then create, publish, search, and install holons from a single command line — with versioning, dependency resolution, and decentralized storage handled for you.</p>
<p>Publishing is one command. Your holon is signed to your Avatar, versioned semantically, replicated across the OASIS HyperDrive, and instantly discoverable by every world in the Omniverse.</p>
<div class="tech-pills">
<span class="tech-pill">AVATAR SSO</span>
<span class="tech-pill">SEMANTIC VERSIONING</span>
<span class="tech-pill">DEPENDENCY RESOLUTION</span>
<span class="tech-pill">DECENTRALIZED STORAGE</span>
<span class="tech-pill">WEB5 STAR API</span>
<span class="tech-pill">WIN · LINUX · macOS</span>
</div>
<div class="dev-links">
<a href="https://github.com/NextGenSoftwareUK/OASIS/releases/tag/STAR-ODK-Runtime-v3.5.0" target="_blank" rel="noopener" class="btn-primary">GET THE STAR CLI</a>
<a href="https://api.starnet.oasisomniverse.one" target="_blank" rel="noopener" class="btn-outline-cyan">WEB5 STAR API</a>
</div>
</div>
<div class="reveal">
<div class="term">
<div class="term-bar">
<span class="term-dot r"></span><span class="term-dot y"></span><span class="term-dot g"></span>
<span class="term-title">star — publishing to STARNET</span>
</div>
<pre class="code-block"><span class="cm"># Authenticate once with your OASIS Avatar (SSO)</span>
<span class="pr">$</span> <span class="cmd">star</span> avatar login
<span class="ok">✔ Signed in as Avatar @david · karma 8,420</span>
<span class="cm"># Scaffold a new OAPP from a STARNET template</span>
<span class="pr">$</span> <span class="cmd">star</span> oapp create <span class="str">"Keycard Quest"</span> --template fps
<span class="ok">✔ Created ./KeycardQuest from template fps@3.2.0</span>
<span class="cm"># Publish it — versioned, signed & replicated</span>
<span class="pr">$</span> <span class="cmd">star</span> oapp publish ./KeycardQuest
<span class="ok">✔ Published KeycardQuest@1.0.0 to STARNET</span>