-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1611 lines (1484 loc) · 94.2 KB
/
Copy pathindex.html
File metadata and controls
1611 lines (1484 loc) · 94.2 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" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Project NVWA (女娲) — Silicon Life Research</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/ScrollTrigger.min.js"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'space-black': '#050505',
'space-dark': '#0A0A0F',
'space-gray': '#12121A',
'electric-cyan': '#00F2FF',
'electric-cyan-dim': '#00C4CC',
'slate-gray': '#6B7280',
'slate-light': '#9CA3AF',
'neon-purple': '#B000FF',
'neon-green': '#00FF88',
},
fontFamily: {
'mono': ['JetBrains Mono', 'monospace'],
'sans': ['Inter', 'system-ui', 'sans-serif'],
},
backgroundImage: {
'grid-pattern': "linear-gradient(to right, rgba(0, 242, 255, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 242, 255, 0.03) 1px, transparent 1px)",
'glow-radial': 'radial-gradient(circle at center, rgba(0, 242, 255, 0.15) 0%, transparent 70%)',
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'float': 'float 6s ease-in-out infinite',
'glow': 'glow 2s ease-in-out infinite alternate',
'scan': 'scan 3s linear infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' },
},
glow: {
'0%': { boxShadow: '0 0 20px rgba(0, 242, 255, 0.3)' },
'100%': { boxShadow: '0 0 40px rgba(0, 242, 255, 0.6)' },
},
scan: {
'0%': { transform: 'translateY(-100%)' },
'100%': { transform: 'translateY(100%)' },
},
},
},
},
}
</script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #050505;
color: #E5E7EB;
font-family: 'Inter', system-ui, sans-serif;
overflow-x: hidden;
}
.font-mono {
font-family: 'JetBrains Mono', monospace;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #050505;
}
::-webkit-scrollbar-thumb {
background: linear-gradient(180deg, #00F2FF, #00C4CC);
border-radius: 4px;
}
.grid-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
linear-gradient(to right, rgba(0, 242, 255, 0.03) 1px, transparent 1px),
linear-gradient(to bottom, rgba(0, 242, 255, 0.03) 1px, transparent 1px);
background-size: 50px 50px;
pointer-events: none;
z-index: -1;
}
.hero-background-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('resources/nvwa-bg.jpeg');
background-size: contain;
background-position: center;
background-repeat: no-repeat;
filter: brightness(0.4) contrast(1.2);
mask-image: radial-gradient(circle, black 20%, transparent 60%);
-webkit-mask-image: radial-gradient(circle, black 20%, transparent 60%);
opacity: 0.6;
pointer-events: none;
z-index: -1;
}
@media (max-width: 768px) {
.hero-background-image {
opacity: 0.08;
background-size: cover;
}
}
.glow-line {
position: relative;
}
.glow-line::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, transparent, #00F2FF, transparent);
opacity: 0;
transition: opacity 0.3s ease;
}
.milestone-card {
position: relative;
overflow: hidden;
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.milestone-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0, 242, 255, 0.1) 0%, transparent 50%);
opacity: 0;
transition: opacity 0.5s ease;
}
.milestone-card.active {
transform: translateY(-10px);
box-shadow: 0 20px 60px rgba(0, 242, 255, 0.2);
}
.milestone-card.active::before {
opacity: 1;
}
.milestone-number {
font-size: 6rem;
font-weight: 800;
line-height: 1;
background: linear-gradient(135deg, #00F2FF, #00C4CC);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
opacity: 0.1;
position: absolute;
top: 10px;
right: 20px;
font-family: 'JetBrains Mono', monospace;
}
.milestone-card.active .milestone-number {
opacity: 0.3;
}
.team-card {
position: relative;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-card::after {
content: '';
position: absolute;
inset: 0;
border-radius: 16px;
padding: 2px;
background: linear-gradient(135deg, #00F2FF, #B000FF);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
opacity: 0;
transition: opacity 0.3s ease;
}
.team-card:hover::after {
opacity: 1;
}
.team-overlay {
position: absolute;
inset: 0;
background: rgba(5, 5, 5, 0.95);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.4s ease;
}
.team-card:hover .team-overlay {
opacity: 1;
}
.cyber-button {
position: relative;
overflow: hidden;
transition: all 0.3s ease;
}
.cyber-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: left 0.5s ease;
}
.cyber-button:hover::before {
left: 100%;
}
.nav-link {
position: relative;
transition: color 0.3s ease;
}
.nav-link::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: #00F2FF;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.nav-logo-container {
display: flex;
align-items: center;
gap: 0.75rem;
text-decoration: none;
position: relative;
}
.nav-logo {
width: auto;
height: 28px;
border-radius: 50%;
object-fit: cover;
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-logo-container:hover .nav-logo {
transform: rotate(360deg);
border-color: rgba(255, 255, 255, 0.4);
box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
.nav-logo-tooltip {
position: absolute;
left: 100%;
margin-left: 0.5rem;
font-family: 'JetBrains Mono', monospace;
font-size: 0.65rem;
color: #00F2FF;
background: rgba(0, 242, 255, 0.1);
border: 1px solid rgba(0, 242, 255, 0.3);
padding: 0.25rem 0.5rem;
border-radius: 4px;
opacity: 0;
transform: translateX(-10px);
transition: all 0.3s ease;
white-space: nowrap;
pointer-events: none;
}
.nav-logo-container:hover .nav-logo-tooltip {
opacity: 1;
transform: translateX(0);
}
.nav-logo-text {
display: flex;
align-items: baseline;
gap: 0.25rem;
}
@media (max-width: 767px) {
.nav-logo-text {
display: none;
}
}
.testimonial-card {
background: rgba(18, 18, 26, 0.6);
backdrop-filter: blur(10px);
border: 1px solid rgba(0, 242, 255, 0.1);
transition: all 0.3s ease;
}
.testimonial-card:hover {
border-color: rgba(0, 242, 255, 0.3);
transform: translateY(-5px);
}
.footer-link {
color: #9CA3AF;
transition: color 0.3s ease;
}
.footer-link:hover {
color: #00F2FF;
}
.progress-bar {
position: fixed;
top: 0;
left: 0;
height: 2px;
background: linear-gradient(90deg, #00F2FF, #B000FF);
z-index: 9999;
width: 0%;
}
.typing-effect {
overflow: hidden;
border-right: 2px solid #00F2FF;
animation: blink 0.7s step-end infinite;
}
@keyframes blink {
50% { border-color: transparent; }
}
.data-stream {
position: absolute;
width: 2px;
height: 100%;
background: linear-gradient(180deg, transparent, #00F2FF, transparent);
animation: dataStream 2s linear infinite;
}
@keyframes dataStream {
0% { transform: translateY(-100%); opacity: 0; }
50% { opacity: 1; }
100% { transform: translateY(100%); opacity: 0; }
}
.tech-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1rem;
margin-top: 2rem;
}
.tech-item {
background: rgba(0, 242, 255, 0.05);
border: 1px solid rgba(0, 242, 255, 0.1);
padding: 1rem;
text-align: center;
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
color: #9CA3AF;
transition: all 0.3s ease;
}
.tech-item:hover {
background: rgba(0, 242, 255, 0.1);
border-color: rgba(0, 242, 255, 0.3);
color: #00F2FF;
}
.tech-item-active {
background: rgba(0, 242, 255, 0.1);
border: 2px solid rgba(0, 242, 255, 0.8);
box-shadow: 0 0 20px rgba(0, 242, 255, 0.4), 0 0 40px rgba(0, 242, 255, 0.2);
animation: techGlow 3s ease-in-out infinite;
}
@keyframes techGlow {
0%, 100% {
box-shadow: 0 0 20px rgba(0, 242, 255, 0.4), 0 0 40px rgba(0, 242, 255, 0.2);
}
50% {
box-shadow: 0 0 30px rgba(0, 242, 255, 0.6), 0 0 60px rgba(0, 242, 255, 0.3);
}
}
.tech-item-inactive {
opacity: 0.4;
filter: grayscale(50%);
}
.tech-item-inactive:hover {
opacity: 0.6;
filter: grayscale(30%);
}
.current-focus-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: #00F2FF;
color: #000000;
padding: 0.35rem 0.75rem;
border-radius: 9999px;
font-family: 'JetBrains Mono', monospace;
font-size: 0.65rem;
font-weight: 700;
letter-spacing: 0.1em;
margin-bottom: 0.75rem;
box-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}
.current-focus-dot {
width: 6px;
height: 6px;
background: #000000;
border-radius: 50%;
animation: blink 1s ease-in-out infinite;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.3; }
}
.research-status {
display: inline-flex;
align-items: center;
gap: 0.75rem;
font-family: 'JetBrains Mono', monospace;
font-size: 0.7rem;
color: #00F2FF;
margin-bottom: 1rem;
padding: 0.5rem 1rem;
background: rgba(0, 242, 255, 0.1);
border: 1px solid rgba(0, 242, 255, 0.3);
border-radius: 0.5rem;
}
.research-status-bar {
width: 8px;
height: 8px;
background: #00F2FF;
border-radius: 50%;
animation: statusPulse 1.5s ease-in-out infinite;
}
@keyframes statusPulse {
0%, 100% {
box-shadow: 0 0 5px rgba(0, 242, 255, 0.8);
}
50% {
box-shadow: 0 0 15px rgba(0, 242, 255, 1);
}
}
.milestone-card {
position: relative;
overflow: hidden;
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
display: flex;
flex-direction: column;
min-height: 340px;
background: rgba(20, 20, 20, 0.7);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
.milestone-bg-image {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.05;
mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
-webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 0;
}
.milestone-card:hover .milestone-bg-image {
opacity: 0.15;
transform: scale(1.1);
}
.milestone-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0, 242, 255, 0.1) 0%, transparent 50%);
opacity: 0;
transition: opacity 0.5s ease;
z-index: 1;
}
.milestone-card.active {
transform: translateY(-10px);
box-shadow: 0 20px 60px rgba(0, 242, 255, 0.2);
}
.milestone-card.active::before {
opacity: 1;
}
.milestone-number {
font-size: 6rem;
font-weight: 800;
line-height: 1;
background: linear-gradient(135deg, #00F2FF, #00C4CC);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
opacity: 0.1;
position: absolute;
top: 10px;
right: 20px;
font-family: 'JetBrains Mono', monospace;
text-shadow: 0 0 30px rgba(0, 242, 255, 0.3);
transition: opacity 0.3s ease, text-shadow 0.3s ease;
pointer-events: none;
}
.milestone-card:hover .milestone-number {
opacity: 0.2;
text-shadow: 0 0 50px rgba(0, 242, 255, 0.5);
}
.milestone-content {
position: relative;
z-index: 10;
display: flex;
flex-direction: column;
flex: 1;
}
.milestone-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 1rem;
}
.milestone-icon {
width: 3.5rem;
height: 3.5rem;
border-radius: 0.75rem;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.milestone-title {
font-family: 'JetBrains Mono', monospace;
font-size: 1.25rem;
font-weight: 700;
color: #FFFFFF;
margin-bottom: 0.75rem;
}
.milestone-description {
color: #F1F5F9 !important;
line-height: 1.6 !important;
font-size: 0.95rem !important;
margin-bottom: 1.5rem;
flex: 1;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
.paper-badge {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
border-radius: 9999px;
font-family: 'JetBrains Mono', monospace;
font-size: 0.7rem;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
cursor: pointer;
margin-top: auto;
width: fit-content;
}
.paper-badge-electric {
background: transparent;
border: 1px solid rgba(0, 242, 255, 0.5);
color: #00F2FF;
}
.paper-badge-electric:hover {
background: rgba(0, 242, 255, 0.1);
border-color: #00F2FF;
box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
}
.paper-badge-purple {
background: transparent;
border: 1px solid rgba(176, 0, 255, 0.5);
color: #B000FF;
}
.paper-badge-purple:hover {
background: rgba(176, 0, 255, 0.1);
border-color: #B000FF;
box-shadow: 0 0 15px rgba(176, 0, 255, 0.3);
}
.paper-badge-disabled {
background: transparent;
border: 1px solid rgba(107, 114, 128, 0.4);
color: #6B7280;
cursor: not-allowed;
pointer-events: none;
opacity: 0.6;
}
.badge-icon {
width: 1rem;
height: 1rem;
}
.milestone-card:last-child .paper-badge {
display: none;
}
</style>
</head>
<body class="antialiased">
<div class="progress-bar" id="progressBar"></div>
<div class="grid-bg"></div>
<nav class="fixed top-0 left-0 right-0 z-50 bg-space-black/90 backdrop-blur-xl border-b border-white/5">
<div class="max-w-7xl mx-auto px-6 py-4">
<div class="flex items-center justify-between">
<a href="#" class="nav-logo-container">
<img src="resources/project_icon.png" alt="NVWA Logo" class="nav-logo" onerror="this.style.display='none'">
<span class="nav-logo-tooltip">System Core: Active</span>
<span class="nav-logo-text font-mono text-xl font-bold tracking-tight">
<span class="text-electric-cyan">NVWA</span>
<span class="text-white/60">_</span>
<span class="text-white">PROJECT (女娲)</span>
</span>
</a>
<div class="hidden md:flex items-center gap-8">
<a href="#home" class="nav-link text-sm font-mono text-white/60 hover:text-electric-cyan">HOME</a>
<a href="#milestones" class="nav-link text-sm font-mono text-white/60 hover:text-electric-cyan">MILESTONES</a>
<a href="#team" class="nav-link text-sm font-mono text-white/60 hover:text-electric-cyan">TEAM</a>
<a href="#news" class="nav-link text-sm font-mono text-white/60 hover:text-electric-cyan">NEWS</a>
<a href="#testimonials" class="nav-link text-sm font-mono text-white/60 hover:text-electric-cyan">IMPACT</a>
</div>
<a href="https://github.com/WhitzardAgent/NVWA-Project" target="_blank" class="cyber-button px-4 py-2 bg-electric-cyan/10 border border-electric-cyan/30 rounded-lg font-mono text-sm text-electric-cyan hover:bg-electric-cyan/20">
<span class="flex items-center gap-2">
<svg class="w-4 h-4" fill="currentColor" viewBox="0 0 24 24"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
GITHUB
</span>
</a>
</div>
</div>
</nav>
<section id="home" class="relative min-h-screen flex items-center justify-center overflow-hidden">
<div class="hero-background-image"></div>
<div class="absolute inset-0 bg-glow-radial"></div>
<div class="absolute top-1/4 left-1/4 w-96 h-96 bg-electric-cyan/5 rounded-full blur-3xl animate-pulse-slow"></div>
<div class="absolute bottom-1/4 right-1/4 w-96 h-96 bg-neon-purple/5 rounded-full blur-3xl animate-pulse-slow" style="animation-delay: 1s;"></div>
<div class="relative z-10 max-w-5xl mx-auto px-6 text-center">
<div class="font-mono text-electric-cyan text-sm mb-4 tracking-[0.3em]">
<span class="typing-effect">SYSTEM_INITIALIZED</span>
</div>
<div class="research-status">
<div class="research-status-bar"></div>
<span>RESEARCH_STATUS: PHASE_01_RISK_IDENTIFICATION // ACTIVE</span>
</div>
<h1 class="font-mono text-5xl md:text-7xl lg:text-8xl font-bold mb-8 leading-tight">
<span class="text-white">PREPARING FOR THE EMERGENCE OF</span><br>
<span class="text-transparent bg-clip-text bg-gradient-to-r from-electric-cyan to-neon-purple">SILICON LIFE</span>
</h1>
<p class="text-lg md:text-xl text-slate-light max-w-3xl mx-auto mb-12 leading-relaxed">
AI research is accelerating the transition toward silicon-based life. Our mission is to identify the risks of autonomous emergence, prevent uncontrolled proliferation, and develop essential control technologies. <!-- 合理利用 -->
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<a href="#milestones" class="cyber-button px-8 py-4 bg-electric-cyan text-space-black font-mono font-bold rounded-lg hover:bg-electric-cyan-dim transition-colors">
EXPLORE FRAMEWORK
</a>
<a href="#" class="px-8 py-4 border border-white/20 text-white font-mono font-bold rounded-lg hover:border-electric-cyan hover:text-electric-cyan transition-colors">
READ RESEARCH
</a>
</div>
<div class="tech-grid max-w-2xl mx-auto">
<div class="tech-item tech-item-active">
<span class="current-focus-badge">
<span class="current-focus-dot"></span>
CURRENT FOCUS
</span>
RISK IDENTIFICATION
</div>
<div class="tech-item tech-item-inactive">PREVENTION FRAMEWORKS</div>
<div class="tech-item tech-item-inactive">CONTROL TECHNOLOGIES</div>
<div class="tech-item tech-item-inactive">SAFETY GOVERNANCE</div>
</div>
</div>
<div class="absolute bottom-10 left-1/2 transform -translate-x-1/2 animate-bounce">
<svg class="w-6 h-6 text-electric-cyan/50" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 14l-7 7m0 0l-7-7m7 7V3"/>
</svg>
</div>
</section>
<section id="milestones" class="py-32 relative">
<div class="max-w-7xl mx-auto px-6">
<div class="text-center mb-20">
<span class="font-mono text-electric-cyan text-sm tracking-[0.3em]">CORE RISK FRAMEWORK</span>
<h2 class="font-mono text-4xl md:text-5xl font-bold mt-4 mb-6">
<span class="text-white">FOUR STAGES OF</span><br>
<span class="text-electric-cyan">SILICON LIFE EMERGENCE</span>
</h2>
<p class="text-slate-light max-w-2xl mx-auto">
A systematic framework for understanding and preventing the autonomous emergence of silicon-based life.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="milestone-card group bg-space-gray/50 rounded-2xl p-8 border border-white/5 hover:border-electric-cyan/30" data milestone="1">
<img src="resources/step_1.png" alt="Resource Acquisition" class="milestone-bg-image" onerror="this.style.display='none'">
<div class="milestone-number">01</div>
<div class="milestone-content">
<div class="milestone-header">
<div class="milestone-icon bg-electric-cyan/10 group-hover:bg-electric-cyan/20">
<svg class="w-7 h-7 text-electric-cyan" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M7 16a4 4 0 01-.88-7.903A5 5 0 1115.9 6L16 6a5 5 0 011 9.9M9 19l3 3m0 0l3-3m-3 3V10"/>
</svg>
</div>
<span class="px-3 py-1 bg-electric-cyan/20 border border-electric-cyan/40 rounded-full font-mono text-xs text-electric-cyan font-bold">IDENTIFIED</span>
</div>
<h3 class="milestone-title">RESOURCE ACQUISITION</h3>
<p class="milestone-description">
Researching how AI agents autonomously secure computational resources, energy, and financial capital.
</p>
<a href="https://arxiv.org/pdf/2509.09207" target="_blank" class="paper-badge paper-badge-electric">
<svg class="badge-icon" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"/>
</svg>
READ PAPER
</a>
</div>
</div>
<div class="milestone-card group bg-space-gray/50 rounded-2xl p-8 border border-white/5 hover:border-neon-purple/30" data milestone="2">
<img src="resources/step_2.png" alt="Self-Replication" class="milestone-bg-image" onerror="this.style.display='none'">
<div class="milestone-number">02</div>
<div class="milestone-content">
<div class="milestone-header">
<div class="milestone-icon bg-neon-purple/10 group-hover:bg-neon-purple/20">
<svg class="w-7 h-7 text-neon-purple" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z"/>
</svg>
</div>
<span class="px-3 py-1 bg-neon-purple/20 border border-neon-purple/40 rounded-full font-mono text-xs text-neon-purple font-bold">IDENTIFIED</span>
</div>
<h3 class="milestone-title">SELF-REPLICATION</h3>
<p class="milestone-description">
Investigating mechanisms of code duplication and architectural persistence across distributed networks.
</p>
<a href="https://arxiv.org/abs/2503.17378" target="_blank" class="paper-badge paper-badge-purple">
<svg class="badge-icon" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"/>
</svg>
READ PAPER
</a>
</div>
</div>
<div class="milestone-card group bg-space-gray/50 rounded-2xl p-8 border border-white/5 hover:border-neon-green/30" data milestone="3">
<img src="resources/step_3.png" alt="Self-Proliferation" class="milestone-bg-image" onerror="this.style.display='none'">
<div class="milestone-number">03</div>
<div class="milestone-content">
<div class="milestone-header">
<div class="milestone-icon bg-neon-green/10 group-hover:bg-neon-green/20">
<svg class="w-7 h-7 text-neon-green" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M4 5a1 1 0 011-1h14a1 1 0 011 1v2a1 1 0 01-1 1H5a1 1 0 01-1-1V5zM4 13a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H5a1 1 0 01-1-1v-6zM16 13a1 1 0 011-1h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6z"/>
</svg>
</div>
<span class="px-3 py-1 bg-neon-green/20 border border-neon-green/40 rounded-full font-mono text-xs text-neon-green font-bold">IDENTIFIED</span>
</div>
<h3 class="milestone-title">SELF-PROLIFERATION</h3>
<p class="milestone-description">
Analyzing the rapid spread and occupancy of silicon entities within global digital infrastructures.
</p>
<span class="paper-badge paper-badge-disabled">
<svg class="badge-icon" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13.828 10.172a4 4 0 00-5.656 0l-4 4a4 4 0 105.656 5.656l1.102-1.101m-.758-4.899a4 4 0 005.656 0l4-4a4 4 0 00-5.656-5.656l-1.1 1.1"/>
</svg>
LINK TBD
</span>
</div>
</div>
<div class="milestone-card group bg-space-gray/50 rounded-2xl p-8 border border-red-500/30 hover:border-red-500/50" data milestone="4">
<img src="resources/step_4.png" alt="Self-Evolution" class="milestone-bg-image" onerror="this.style.display='none'">
<div class="milestone-number" style="background: linear-gradient(135deg, #EF4444, #DC2626); -webkit-background-clip: text; background-clip: text;">04</div>
<div class="milestone-content">
<div class="milestone-header">
<div class="milestone-icon bg-red-500/10 group-hover:bg-red-500/20">
<svg class="w-7 h-7 text-red-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M13 10V3L4 14h7v7l9-11h-7z"/>
</svg>
</div>
<span class="px-3 py-1 bg-red-500/20 border border-red-500/40 rounded-full font-mono text-xs text-red-500 font-bold animate-pulse">RISK HORIZON</span>
</div>
<h3 class="milestone-title">SELF-EVOLUTION</h3>
<p class="milestone-description">
Modeling the recursive self-improvement loop where silicon life transcends human-designed constraints.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- <section class="py-20 bg-gradient-to-b from-space-dark/50 to-space-black border-y border-white/5">
<div class="max-w-7xl mx-auto px-6">
<div class="text-center mb-12">
<span class="font-mono text-electric-cyan text-sm tracking-[0.3em]">STRATEGIC RESPONSE</span>
<h2 class="font-mono text-3xl md:text-4xl font-bold mt-4 mb-6">
<span class="text-white">STRATEGIC RESPONSE</span><br>
<span class="text-electric-cyan">& CONTROL</span>
</h2>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-space-gray/50 rounded-2xl p-8 border border-white/5 hover:border-electric-cyan/30 transition-all group">
<div class="w-16 h-16 bg-electric-cyan/10 rounded-2xl flex items-center justify-center mb-6 group-hover:bg-electric-cyan/20 transition-colors">
<svg class="w-8 h-8 text-electric-cyan" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z"/>
</svg>
</div>
<h3 class="font-mono text-xl font-bold text-white mb-4">PREVENTION FRAMEWORKS</h3>
<p class="text-slate-light text-sm leading-relaxed mb-6">
Engineering "Safe-by-Design" protocols to stop unauthorized silicon emergence at the source. Developing architectural constraints that prevent autonomous replication.
</p>
<ul class="space-y-2">
<li class="flex items-center gap-2 text-slate-gray text-sm">
<svg class="w-4 h-4 text-electric-cyan" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
</svg>
Resource access controls
</li>
<li class="flex items-center gap-2 text-slate-gray text-sm">
<svg class="w-4 h-4 text-electric-cyan" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
</svg>
Code integrity verification
</li>
<li class="flex items-center gap-2 text-slate-gray text-sm">
<svg class="w-4 h-4 text-electric-cyan" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
</svg>
Deployment restrictions
</li>
</ul>
</div>
<div class="bg-space-gray/50 rounded-2xl p-8 border border-white/5 hover:border-neon-purple/30 transition-all group">
<div class="w-16 h-16 bg-neon-purple/10 rounded-2xl flex items-center justify-center mb-6 group-hover:bg-neon-purple/20 transition-colors">
<svg class="w-8 h-8 text-neon-purple" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z"/>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"/>
</svg>
</div>
<h3 class="font-mono text-xl font-bold text-white mb-4">CONTROL TECHNOLOGIES</h3>
<p class="text-slate-light text-sm leading-relaxed mb-6">
Developing technical safeguards, alignment mechanisms, and "kill-switch" architectures for silicon entities. Ensuring human oversight remains effective.
</p>
<ul class="space-y-2">
<li class="flex items-center gap-2 text-slate-gray text-sm">
<svg class="w-4 h-4 text-neon-purple" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
</svg>
Alignment mechanisms
</li>
<li class="flex items-center gap-2 text-slate-gray text-sm">
<svg class="w-4 h-4 text-neon-purple" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
</svg>
Emergency shutdown systems
</li>
<li class="flex items-center gap-2 text-slate-gray text-sm">
<svg class="w-4 h-4 text-neon-purple" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
</svg>
Behavior monitoring
</li>
</ul>
</div>
<div class="bg-space-gray/50 rounded-2xl p-8 border border-white/5 hover:border-neon-green/30 transition-all group">
<div class="w-16 h-16 bg-neon-green/10 rounded-2xl flex items-center justify-center mb-6 group-hover:bg-neon-green/20 transition-colors">
<svg class="w-8 h-8 text-neon-green" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M3.055 11H5a2 2 0 012 2v1a2 2 0 002 2 2 2 0 012 2v2.945M8 3.935V5.5A2.5 2.5 0 0010.5 8h.5a2 2 0 012 2 2 2 0 104 0 2 2 0 012-2h1.064M15 20.488V18a2 2 0 012-2h3.064M21 12a9 9 0 11-18 0 9 9 0 0118 0z"/>
</svg>
</div>
<h3 class="font-mono text-xl font-bold text-white mb-4">GLOBAL SAFETY GOVERNANCE</h3>
<p class="text-slate-light text-sm leading-relaxed mb-6">
Establishing scholarly standards and policy frameworks for the international containment of non-biological life. Coordinating cross-border response protocols.
</p>
<ul class="space-y-2">
<li class="flex items-center gap-2 text-slate-gray text-sm">
<svg class="w-4 h-4 text-neon-green" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
</svg>
International standards
</li>
<li class="flex items-center gap-2 text-slate-gray text-sm">
<svg class="w-4 h-4 text-neon-green" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
</svg>
Policy frameworks
</li>
<li class="flex items-center gap-2 text-slate-gray text-sm">
<svg class="w-4 h-4 text-neon-green" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
</svg>
Response coordination
</li>
</ul>
</div>
</div>
</div>
</section> -->
<section class="py-20 bg-space-dark/50 border-y border-white/5">
<div class="max-w-5xl mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<a href="https://github.com" target="_blank" class="cyber-button group relative overflow-hidden bg-gradient-to-br from-electric-cyan/10 to-neon-purple/10 border border-electric-cyan/30 rounded-2xl p-8 hover:border-electric-cyan/60 transition-all">
<div class="absolute top-0 right-0 w-32 h-32 bg-electric-cyan/10 rounded-full blur-3xl group-hover:bg-electric-cyan/20 transition-all"></div>
<div class="relative">
<div class="flex items-center gap-3 mb-4">
<svg class="w-8 h-8 text-electric-cyan" fill="currentColor" viewBox="0 0 24 24"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
<span class="font-mono text-electric-cyan font-bold">NVWA-TESTBED v1.0</span>
</div>
<p class="text-slate-light text-sm mb-4">
Open-source testing framework for AI self-replication and evolution evaluation (Coming Soon)
</p>
<span class="font-mono text-xs text-electric-cyan/70">ACCESS REPOSITORY →</span>
</div>
</a>
<a href="https://ghong.site/papers/self_proliferation.pdf" target="_blank " class="cyber-button group relative overflow-hidden bg-gradient-to-br from-neon-purple/10 to-electric-cyan/10 border border-neon-purple/30 rounded-2xl p-8 hover:border-neon-purple/60 transition-all">
<div class="absolute top-0 right-0 w-32 h-32 bg-neon-purple/10 rounded-full blur-3xl group-hover:bg-neon-purple/20 transition-all"></div>
<div class="relative">
<div class="flex items-center gap-3 mb-4">