-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1286 lines (1138 loc) · 41.1 KB
/
index.html
File metadata and controls
1286 lines (1138 loc) · 41.1 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.0">
<title>nanoAgentTeam — AI Agent Research & Tools</title>
<meta name="description" content="Exploring the frontier of AI agents. Building practical tools for academic research, multi-agent collaboration, and autonomous self-evolution.">
<meta property="og:type" content="website">
<meta property="og:title" content="nanoAgentTeam">
<meta property="og:description" content="Exploring the frontier of AI agents. Building practical tools for academic research, multi-agent collaboration, and autonomous self-evolution.">
<meta property="og:url" content="https://nanoagentteam.github.io">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="nanoAgentTeam">
<meta name="twitter:description" content="Exploring the frontier of AI agents. Building practical tools for academic research, multi-agent collaboration, and autonomous self-evolution.">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🦀</text></svg>">
<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=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<style>
:root {
--bg-primary: #0a0e17;
--bg-secondary: #111827;
--bg-card: #1a2332;
--bg-card-hover: #1f2b3d;
--text-primary: #e2e8f0;
--text-secondary: #94a3b8;
--text-muted: #64748b;
--accent: #38bdf8;
--accent-dim: #0ea5e9;
--accent-glow: rgba(56, 189, 248, 0.15);
--green: #4ade80;
--purple: #a78bfa;
--orange: #fb923c;
--border: #1e293b;
--radius: 12px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--bg-primary);
color: var(--text-primary);
line-height: 1.6;
overflow-x: hidden;
}
body::before {
content: '';
position: fixed;
inset: 0;
background-image:
linear-gradient(rgba(56, 189, 248, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(56, 189, 248, 0.03) 1px, transparent 1px);
background-size: 60px 60px;
pointer-events: none;
z-index: 0;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 0 24px;
position: relative;
z-index: 1;
}
/* ── NAV ── */
nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
background: rgba(10, 14, 23, 0.85);
backdrop-filter: blur(16px);
border-bottom: 1px solid var(--border);
}
nav .container {
display: flex;
align-items: center;
justify-content: space-between;
height: 64px;
}
.nav-brand {
font-family: 'JetBrains Mono', monospace;
font-size: 18px;
font-weight: 600;
color: var(--accent);
text-decoration: none;
letter-spacing: -0.5px;
}
.nav-brand span { color: var(--text-muted); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-github {
display: inline-flex;
align-items: center;
gap: 6px;
background: var(--bg-card);
padding: 8px 16px;
border-radius: 8px;
border: 1px solid var(--border);
color: var(--text-primary);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: all 0.2s;
}
.nav-github:hover {
border-color: var(--accent);
background: var(--bg-card-hover);
}
/* ── MOBILE MENU ── */
.menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 8px;
color: var(--text-secondary);
}
.menu-toggle svg { display: block; }
.mobile-menu {
display: none;
position: fixed;
top: 64px; left: 0; right: 0;
background: rgba(10, 14, 23, 0.95);
backdrop-filter: blur(16px);
border-bottom: 1px solid var(--border);
padding: 16px 24px;
z-index: 99;
flex-direction: column;
gap: 12px;
}
.mobile-menu a {
color: var(--text-secondary);
text-decoration: none;
font-size: 15px;
font-weight: 500;
padding: 8px 0;
transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu.open { display: flex; }
@media (max-width: 768px) {
.menu-toggle { display: block; }
}
/* ── HERO ── */
.hero {
padding: 160px 0 100px;
text-align: center;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(--accent-glow);
border: 1px solid rgba(56, 189, 248, 0.2);
color: var(--accent);
font-size: 13px;
font-weight: 500;
padding: 6px 16px;
border-radius: 100px;
margin-bottom: 32px;
font-family: 'JetBrains Mono', monospace;
}
.hero-badge .dot {
width: 6px; height: 6px;
background: var(--green);
border-radius: 50%;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}
.hero h1 {
font-size: clamp(40px, 6vw, 64px);
font-weight: 700;
line-height: 1.1;
letter-spacing: -1.5px;
margin-bottom: 24px;
}
.hero h1 .gradient {
background: linear-gradient(135deg, var(--accent), var(--purple));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero p {
font-size: 18px;
color: var(--text-secondary);
max-width: 640px;
margin: 0 auto 40px;
line-height: 1.7;
}
.hero-actions {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap;
}
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 28px;
border-radius: 10px;
font-size: 15px;
font-weight: 600;
text-decoration: none;
transition: all 0.2s;
cursor: pointer;
border: none;
}
.btn-primary {
background: var(--accent);
color: var(--bg-primary);
}
.btn-primary:hover {
background: var(--accent-dim);
box-shadow: 0 0 30px var(--accent-glow);
}
.btn-secondary {
background: var(--bg-card);
color: var(--text-primary);
border: 1px solid var(--border);
}
.btn-secondary:hover {
border-color: var(--text-muted);
background: var(--bg-card-hover);
}
/* ── SECTION ── */
section { padding: 100px 0; }
.section-label {
font-family: 'JetBrains Mono', monospace;
font-size: 13px;
font-weight: 500;
color: var(--accent);
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 16px;
}
.section-title {
font-size: clamp(28px, 4vw, 40px);
font-weight: 700;
letter-spacing: -1px;
margin-bottom: 16px;
}
.section-desc {
color: var(--text-secondary);
font-size: 16px;
max-width: 600px;
margin-bottom: 48px;
line-height: 1.7;
}
/* ── PROJECT SHOWCASE ── */
.showcase {
border-top: 1px solid var(--border);
}
.showcase.alt {
background: var(--bg-secondary);
}
.showcase-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.showcase-content.reverse {
direction: rtl;
}
.showcase-content.reverse > * {
direction: ltr;
}
.showcase-text .section-desc { margin-bottom: 28px; }
.showcase-tag {
display: inline-block;
font-size: 11px;
font-weight: 600;
padding: 4px 10px;
border-radius: 6px;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 16px;
}
.showcase-tag.app { background: rgba(74, 222, 128, 0.15); color: var(--green); }
.showcase-tag.framework { background: rgba(56, 189, 248, 0.15); color: var(--accent); }
.showcase-tag.experiment { background: rgba(167, 139, 250, 0.15); color: var(--purple); }
.showcase-features {
display: flex;
flex-direction: column;
gap: 14px;
margin-bottom: 28px;
}
.showcase-feat {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 14px;
color: var(--text-secondary);
line-height: 1.6;
}
.showcase-feat .icon {
flex-shrink: 0;
width: 22px;
height: 22px;
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
margin-top: 2px;
}
.showcase-feat .icon.green { background: rgba(74, 222, 128, 0.15); color: var(--green); }
.showcase-feat .icon.blue { background: rgba(56, 189, 248, 0.15); color: var(--accent); }
.showcase-feat .icon.purple { background: rgba(167, 139, 250, 0.15); color: var(--purple); }
.showcase-feat .icon.orange { background: rgba(251, 146, 60, 0.15); color: var(--orange); }
.showcase-link {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 14px;
font-weight: 600;
color: var(--accent);
text-decoration: none;
transition: gap 0.2s;
}
.showcase-link:hover { gap: 10px; }
/* Chat mockup */
.chat-mockup {
background: var(--bg-primary);
border: 1px solid var(--border);
border-radius: var(--radius);
overflow: hidden;
}
.chat-mockup .terminal-header {
background: var(--bg-card);
border-bottom: 1px solid var(--border);
padding: 12px 16px;
display: flex;
align-items: center;
gap: 8px;
}
.chat-body {
padding: 20px;
display: flex;
flex-direction: column;
gap: 14px;
font-size: 13px;
line-height: 1.6;
}
.chat-msg {
max-width: 85%;
padding: 10px 14px;
border-radius: 10px;
}
.chat-msg.user {
align-self: flex-end;
background: rgba(56, 189, 248, 0.12);
color: var(--text-primary);
border-bottom-right-radius: 4px;
}
.chat-msg.bot {
align-self: flex-start;
background: var(--bg-card);
color: var(--text-secondary);
border-bottom-left-radius: 4px;
}
.chat-msg.bot .status { color: var(--green); }
/* Terminal */
.terminal {
background: var(--bg-primary);
border: 1px solid var(--border);
border-radius: var(--radius);
overflow: hidden;
}
.terminal-header {
display: flex;
align-items: center;
gap: 8px;
padding: 12px 16px;
background: var(--bg-card);
border-bottom: 1px solid var(--border);
}
.terminal-dot {
width: 12px; height: 12px;
border-radius: 50%;
}
.terminal-dot.red { background: #f87171; }
.terminal-dot.yellow { background: #fbbf24; }
.terminal-dot.green { background: #4ade80; }
.terminal-body {
padding: 20px;
font-family: 'JetBrains Mono', monospace;
font-size: 12.5px;
line-height: 1.8;
color: var(--text-secondary);
}
.terminal-body .prompt { color: var(--green); }
.terminal-body .cmd { color: var(--text-primary); }
.terminal-body .comment { color: var(--text-muted); }
.terminal-body .output { color: var(--accent); }
/* ── TEAM ── */
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
gap: 16px;
}
.team-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 20px 16px;
text-align: center;
text-decoration: none;
color: inherit;
transition: all 0.3s;
}
.team-card:hover {
border-color: rgba(56, 189, 248, 0.3);
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.team-avatar {
width: 56px;
height: 56px;
border-radius: 50%;
margin: 0 auto 12px;
border: 2px solid var(--border);
overflow: hidden;
transition: border-color 0.2s;
display: flex;
align-items: center;
justify-content: center;
background: var(--bg-primary);
}
.team-card:hover .team-avatar { border-color: var(--accent); }
.team-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.team-avatar .initials {
font-family: 'JetBrains Mono', monospace;
font-size: 18px;
font-weight: 600;
color: var(--text-muted);
}
.team-name {
font-family: 'JetBrains Mono', monospace;
font-size: 14px;
font-weight: 600;
margin-bottom: 2px;
}
.team-role {
font-size: 11px;
color: var(--accent);
margin-bottom: 4px;
font-weight: 500;
}
.team-handle {
color: var(--text-muted);
font-size: 12px;
margin-bottom: 8px;
}
.team-bio {
color: var(--text-secondary);
font-size: 12px;
line-height: 1.4;
min-height: 0;
}
/* ── FOOTER ── */
footer {
border-top: 1px solid var(--border);
padding: 48px 0;
}
.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 16px;
}
.footer-brand {
font-family: 'JetBrains Mono', monospace;
font-size: 15px;
font-weight: 500;
color: var(--text-muted);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
color: var(--text-muted);
text-decoration: none;
font-size: 14px;
transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
/* ── HERO VIDEO ── */
.hero-video {
max-width: 800px;
margin: 48px auto 0;
border-radius: var(--radius);
border: 1px solid var(--border);
overflow: hidden;
background: var(--bg-card);
}
.hero-video video {
width: 100%;
display: block;
}
/* ── PHONE DEMO ── */
.showcase-visual {
display: flex;
flex-direction: column;
gap: 16px;
}
.phone-demo {
max-width: 320px;
margin: 0 auto;
border-radius: 20px;
border: 2px solid var(--border);
overflow: hidden;
background: #000;
}
.phone-demo video {
width: 100%;
display: block;
cursor: pointer;
}
.phone-demo::after {
content: 'Click to expand';
position: absolute;
bottom: 12px;
left: 50%;
transform: translateX(-50%);
font-size: 11px;
font-family: 'JetBrains Mono', monospace;
color: rgba(255,255,255,0.7);
background: rgba(0,0,0,0.6);
padding: 4px 12px;
border-radius: 100px;
pointer-events: none;
opacity: 0;
transition: opacity 0.2s;
}
.phone-demo { position: relative; }
.phone-demo:hover::after { opacity: 1; }
/* ── VIDEO MODAL ── */
.video-modal {
display: none;
position: fixed;
inset: 0;
z-index: 200;
background: rgba(0,0,0,0.85);
backdrop-filter: blur(8px);
align-items: center;
justify-content: center;
}
.video-modal.open { display: flex; }
.video-modal-inner {
position: relative;
max-width: 400px;
width: 90%;
border-radius: 20px;
overflow: hidden;
border: 2px solid var(--border);
background: #000;
}
.video-modal-inner video {
width: 100%;
display: block;
}
.video-modal-close {
position: absolute;
top: -40px;
right: 0;
background: none;
border: none;
color: rgba(255,255,255,0.7);
font-size: 28px;
cursor: pointer;
padding: 4px 8px;
line-height: 1;
transition: color 0.2s;
}
.video-modal-close:hover { color: #fff; }
.hero-video .placeholder {
display: flex;
align-items: center;
justify-content: center;
height: 400px;
color: var(--text-muted);
font-size: 14px;
font-family: 'JetBrains Mono', monospace;
}
/* ── STATS BAR ── */
.stats-bar {
border-top: 1px solid var(--border);
padding: 48px 0;
}
.stats-grid {
display: flex;
justify-content: center;
gap: 56px;
flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
font-family: 'JetBrains Mono', monospace;
font-size: 36px;
font-weight: 700;
line-height: 1;
}
.stat-number.blue { color: var(--accent); }
.stat-number.green { color: var(--green); }
.stat-number.purple { color: var(--purple); }
.stat-number.orange { color: var(--orange); }
.stat-label {
font-size: 13px;
color: var(--text-muted);
margin-top: 8px;
}
/* ── SCREENSHOT GALLERY ── */
.screenshot-tabs {
display: flex;
gap: 0;
border-bottom: 1px solid var(--border);
background: var(--bg-card);
}
.screenshot-tabs button {
flex: 1;
background: none;
border: none;
padding: 10px 12px;
font-size: 12px;
font-family: 'JetBrains Mono', monospace;
font-weight: 500;
color: var(--text-muted);
cursor: pointer;
border-bottom: 2px solid transparent;
transition: all 0.2s;
}
.screenshot-tabs button.active {
color: var(--accent);
border-bottom-color: var(--accent);
}
.screenshot-tabs button:hover { color: var(--text-primary); }
.screenshot-panel {
display: none;
background: var(--bg-primary);
}
.screenshot-panel.active { display: block; }
.screenshot-panel img {
width: 100%;
display: block;
}
.screenshot-gallery {
border: 1px solid var(--border);
border-radius: var(--radius);
overflow: hidden;
}
.screenshot-panel.video-panel.active {
display: flex;
flex-direction: column;
align-items: center;
background: #000;
}
.screenshot-panel.video-panel video {
max-height: 500px;
width: auto;
max-width: 100%;
}
.demo-meta {
width: 100%;
padding: 10px 16px;
background: var(--bg-card);
font-size: 12px;
color: var(--text-muted);
text-align: center;
font-family: 'JetBrains Mono', monospace;
line-height: 2;
}
.demo-meta a {
color: var(--accent);
text-decoration: none;
}
.demo-meta a:hover { text-decoration: underline; }
/* ── EVOLUTION SESSIONS ── */
.evo-sessions {
display: flex;
flex-direction: column;
gap: 16px;
}
.evo-session {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 20px;
}
.evo-session-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 12px;
}
.evo-session-title {
font-family: 'JetBrains Mono', monospace;
font-size: 14px;
font-weight: 600;
color: var(--text-primary);
}
.evo-badge {
font-size: 11px;
font-weight: 600;
padding: 3px 10px;
border-radius: 100px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.evo-badge.pass { background: rgba(74, 222, 128, 0.15); color: var(--green); }
.evo-badge.ongoing { background: rgba(167, 139, 250, 0.15); color: var(--purple); }
.evo-features {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-top: 10px;
}
.evo-feat {
font-size: 11px;
padding: 3px 8px;
border-radius: 4px;
background: var(--bg-primary);
border: 1px solid var(--border);
color: var(--text-secondary);
font-family: 'JetBrains Mono', monospace;
}
.evo-date {
font-size: 12px;
color: var(--text-muted);
}
.evo-ongoing-note {
text-align: center;
padding: 20px;
color: var(--text-muted);
font-size: 13px;
font-style: italic;
}
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
.nav-links { display: none; }
.hero { padding: 130px 0 60px; }
section { padding: 60px 0; }
.showcase-content, .showcase-content.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
.team-grid { grid-template-columns: repeat(2, 1fr); }
.nav-github { padding: 6px 12px; font-size: 13px; }
.stats-grid { gap: 32px; }
.stat-number { font-size: 28px; }
.hero-video .placeholder { height: 220px; }
}
html { scroll-behavior: smooth; }
</style>
</head>
<body>
<!-- NAV -->
<nav>
<div class="container">
<a href="#" class="nav-brand">nano<span>AgentTeam</span></a>
<div class="nav-links">
<a href="#projects">Research Claw</a>
<a href="#framework">Framework</a>
<a href="#evolution">Evolution</a>
<a href="#team">Team</a>
</div>
<div style="display:flex;align-items:center;gap:12px;">
<a href="https://github.com/nanoAgentTeam" class="nav-github" target="_blank">
<svg width="18" height="18" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z"/></svg>
GitHub
</a>
<button class="menu-toggle" onclick="document.getElementById('mobile-menu').classList.toggle('open')" aria-label="Menu">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M3 12h18M3 6h18M3 18h18"/></svg>
</button>
</div>
</div>
</nav>
<div id="mobile-menu" class="mobile-menu">
<a href="#projects" onclick="this.parentElement.classList.remove('open')">Research Claw</a>
<a href="#framework" onclick="this.parentElement.classList.remove('open')">Framework</a>
<a href="#evolution" onclick="this.parentElement.classList.remove('open')">Evolution</a>
<a href="#team" onclick="this.parentElement.classList.remove('open')">Team</a>
</div>
<!-- HERO -->
<section class="hero">
<div class="container">
<div class="hero-badge">
<span class="dot"></span>
open source & actively building
</div>
<h1>Exploring the Frontier of<br><span class="gradient">AI Agents</span></h1>
<p>
We explore what AI agents can — and can't — do.
From multi-agent collaboration to autonomous self-evolution,
we research agent capabilities, build practical tools, and push the boundaries — all in the open.
</p>
<div class="hero-actions">
<a href="https://github.com/nanoAgentTeam/research-claw" class="btn btn-primary" target="_blank">
Research Claw
</a>
<a href="#projects" class="btn btn-secondary">
All Projects
</a>
</div>
</div>
</section>
<!-- ═══ PROJECT: Research Claw ═══ -->
<section id="projects" class="showcase">
<div class="container">
<!-- Phone demo (left) + Text (right) -->
<div class="showcase-content">
<div class="showcase-text">
<span class="showcase-tag app">Application</span>
<h2 class="section-title">Research Claw</h2>
<p class="section-desc">
A self-hosted AI assistant for academic research — manages your papers, searches literature, tracks deadlines, and answers you on the channels you already use.
</p>
<div class="showcase-features">
<div class="showcase-feat">
<span class="icon green">✎</span>
<span><strong>Writing & Compilation</strong> — Chat-driven LaTeX editing, one-command compile with auto-diagnosis, built-in venue skills (NeurIPS, ICML, ICLR, ACL, CVPR…).</span>
</div>
<div class="showcase-feat">
<span class="icon blue">🔄</span>
<span><strong>Overleaf & Git</strong> — Bidirectional sync, every AI edit auto-committed, instant rollback.</span>
</div>
<div class="showcase-feat">
<span class="icon purple">🎭</span>
<span><strong>Multi-Agent Collaboration</strong> — Sub-agents in isolated sandboxes; <code>/task</code> decomposes goals into a DAG and runs in parallel.</span>
</div>
<div class="showcase-feat">
<span class="icon orange">🔍</span>
<span><strong>Literature Search</strong> — arXiv, PubMed, OpenAlex with full-text PDF reading.</span>
</div>
<div class="showcase-feat">
<span class="icon green">📡</span>
<span><strong>Research Radar</strong> — Daily scans, weekly digests, deadline alerts — pushed to Telegram, Feishu, Email, or any Apprise channel.</span>
</div>
<div class="showcase-feat">
<span class="icon blue">🧠</span>
<span><strong>Memory & Context</strong> — Project-level memory across sessions with automated summarization.</span>
</div>
<div class="showcase-feat">
<span class="icon purple">💬</span>
<span><strong>Access Anywhere</strong> — Web UI, CLI, Feishu, Telegram, QQ, DingTalk — no public IP required.</span>
</div>
</div>
<a href="https://github.com/nanoAgentTeam/research-claw" class="showcase-link" target="_blank">
View on GitHub →
</a>
</div>
<div style="text-align:center;">
<div style="display:inline-flex;gap:0;margin-bottom:16px;border:1px solid var(--border);border-radius:8px;overflow:hidden;">
<button onclick="switchDemo('en')" id="demo-tab-en" style="padding:6px 18px;font-size:12px;font-family:'Inter',sans-serif;border:none;cursor:pointer;background:var(--accent);color:var(--bg-primary);font-weight:600;transition:all .2s;">English</button>
<button onclick="switchDemo('zh')" id="demo-tab-zh" style="padding:6px 18px;font-size:12px;font-family:'Inter',sans-serif;border:none;cursor:pointer;background:var(--bg-card);color:var(--text-secondary);font-weight:500;transition:all .2s;">中文</button>
</div>
<div id="demo-en">
<div class="phone-demo">
<video autoplay loop muted playsinline>
<source src="assets/research-claw-demo-en.mp4" type="video/mp4">
</video>