-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcell-coding.html
More file actions
1273 lines (1122 loc) · 47.1 KB
/
cell-coding.html
File metadata and controls
1273 lines (1122 loc) · 47.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>세포코딩 — Cell Coding Paradigm</title>
<link href="https://fonts.googleapis.com/css2?family=Gowun+Batang:wght@400;700&family=DM+Mono:wght@300;400;500&family=Pretendard:wght@300;400;500;700&display=swap" rel="stylesheet">
<style>
:root {
--bg: #0a0f0d;
--bg2: #0f1a14;
--bg3: #142019;
--cell-green: #2dff8f;
--cell-green-dim: rgba(45,255,143,0.12);
--cell-green-glow: rgba(45,255,143,0.25);
--cell-amber: #ffd166;
--cell-coral: #ff6b6b;
--cell-blue: #74c0fc;
--text: #e8f5ee;
--text-dim: rgba(232,245,238,0.5);
--border: rgba(45,255,143,0.18);
--border-dim: rgba(45,255,143,0.08);
}
* { margin:0; padding:0; box-sizing:border-box; }
body {
background: var(--bg);
color: var(--text);
font-family: 'Pretendard', sans-serif;
font-weight: 300;
overflow-x: hidden;
cursor: crosshair;
}
/* ── Noise texture overlay ── */
body::before {
content: '';
position: fixed;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 999;
opacity: 0.6;
}
/* ── Animated background grid ── */
.grid-bg {
position: fixed;
inset: 0;
background-image:
linear-gradient(var(--border-dim) 1px, transparent 1px),
linear-gradient(90deg, var(--border-dim) 1px, transparent 1px);
background-size: 60px 60px;
pointer-events: none;
animation: gridPulse 8s ease-in-out infinite;
}
@keyframes gridPulse {
0%, 100% { opacity: 0.4; }
50% { opacity: 0.8; }
}
/* ── Floating orbs ── */
.orb {
position: fixed;
border-radius: 50%;
filter: blur(80px);
pointer-events: none;
animation: orbFloat linear infinite;
}
.orb1 { width:400px; height:400px; background:rgba(45,255,143,0.06); top:-100px; left:-100px; animation-duration:20s; }
.orb2 { width:300px; height:300px; background:rgba(116,192,252,0.05); bottom:10%; right:-80px; animation-duration:25s; animation-delay:-8s; }
.orb3 { width:200px; height:200px; background:rgba(255,107,107,0.04); top:50%; left:40%; animation-duration:18s; animation-delay:-12s; }
@keyframes orbFloat {
0%, 100% { transform: translateY(0px) scale(1); }
33% { transform: translateY(-30px) scale(1.05); }
66% { transform: translateY(20px) scale(0.95); }
}
/* ── Layout ── */
main { position: relative; z-index: 1; }
section { padding: 80px 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
/* ── Hero ── */
.hero {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
padding: 120px 0 80px;
position: relative;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
font-family: 'DM Mono', monospace;
font-size: 11px;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--cell-green);
border: 1px solid var(--border);
padding: 6px 14px;
border-radius: 2px;
margin-bottom: 40px;
width: fit-content;
}
.hero-badge::before {
content: '';
width: 6px; height: 6px;
border-radius: 50%;
background: var(--cell-green);
animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.2; }
}
.hero-title {
font-family: 'Gowun Batang', serif;
font-size: clamp(52px, 8vw, 110px);
font-weight: 700;
line-height: 0.95;
letter-spacing: -0.02em;
margin-bottom: 16px;
}
.hero-title .ko { color: var(--text); }
.hero-title .en {
display: block;
color: transparent;
-webkit-text-stroke: 1px rgba(45,255,143,0.5);
font-size: clamp(40px, 6vw, 80px);
margin-top: 8px;
}
.hero-sub {
font-family: 'DM Mono', monospace;
font-size: 13px;
color: var(--text-dim);
letter-spacing: 0.05em;
margin-bottom: 48px;
border-left: 2px solid var(--border);
padding-left: 16px;
line-height: 1.8;
}
.hero-desc {
max-width: 560px;
font-size: 17px;
line-height: 1.85;
color: rgba(232,245,238,0.8);
font-weight: 300;
margin-bottom: 12px;
}
.doc-lang-bar {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 1000;
display: flex;
flex-wrap: wrap;
gap: 12px;
align-items: center;
padding: 10px 48px;
background: rgba(10,15,13,0.92);
border-bottom: 1px solid var(--border);
font-family: 'DM Mono', monospace;
font-size: 11px;
color: var(--text-dim);
}
.doc-lang-bar a { color: var(--cell-green); text-decoration: none; }
main { padding-top: 44px; }
.overview-embed {
margin-top: 48px;
border: 1px solid var(--border);
overflow: hidden;
border-radius: 2px;
}
.overview-embed-header {
padding: 16px 20px;
border-bottom: 1px solid var(--border);
background: var(--bg2);
}
.overview-embed-header a {
color: var(--cell-green);
font-family: 'DM Mono', monospace;
font-size: 12px;
text-decoration: none;
}
.overview-embed iframe {
width: 100%;
height: 920px;
border: none;
background: var(--bg);
}
.complexity-diagram {
margin-top: 40px;
padding: 24px;
border: 1px solid var(--border);
background: rgba(45,255,143,0.03);
text-align: center;
}
.complexity-diagram img {
max-width: 680px;
width: 100%;
height: auto;
}
.hero-scroll {
position: absolute;
bottom: 40px;
left: 48px;
font-family: 'DM Mono', monospace;
font-size: 10px;
letter-spacing: 0.2em;
color: var(--text-dim);
text-transform: uppercase;
display: flex;
align-items: center;
gap: 12px;
}
.hero-scroll::after {
content: '';
width: 40px; height: 1px;
background: var(--border);
display: block;
animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
0% { width:20px; opacity:0.3; }
50% { width:60px; opacity:1; }
100% { width:20px; opacity:0.3; }
}
/* ── Section headings ── */
.sec-label {
font-family: 'DM Mono', monospace;
font-size: 10px;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--cell-green);
margin-bottom: 20px;
opacity: 0.7;
}
.sec-title {
font-family: 'Gowun Batang', serif;
font-size: clamp(28px, 4vw, 48px);
font-weight: 700;
line-height: 1.15;
margin-bottom: 24px;
}
.sec-body {
font-size: 16px;
line-height: 1.9;
color: rgba(232,245,238,0.7);
max-width: 640px;
}
/* ── Divider ── */
.divider {
border: none;
border-top: 1px solid var(--border-dim);
margin: 0;
}
/* ── Cell Principles ── */
.principles-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2px;
margin-top: 56px;
}
.principles-grid-2 {
grid-template-columns: repeat(2, 1fr);
}
.principle-card {
background: var(--bg2);
border: 1px solid var(--border-dim);
padding: 40px 32px;
position: relative;
overflow: hidden;
transition: border-color 0.3s, background 0.3s;
cursor: default;
}
.principle-card:hover {
border-color: var(--border);
background: var(--bg3);
}
.principle-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: var(--cell-green);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s ease;
}
.principle-card:hover::before { transform: scaleX(1); }
.principle-num {
font-family: 'DM Mono', monospace;
font-size: 10px;
letter-spacing: 0.2em;
color: var(--cell-green);
opacity: 0.6;
margin-bottom: 20px;
}
.principle-icon {
width: 48px; height: 48px;
margin-bottom: 20px;
}
.principle-title {
font-family: 'Gowun Batang', serif;
font-size: 22px;
font-weight: 700;
margin-bottom: 12px;
color: var(--text);
}
.principle-body {
font-size: 14px;
line-height: 1.8;
color: var(--text-dim);
}
/* ── Hierarchy ── */
.hierarchy-section { background: var(--bg2); }
.hierarchy-wrapper {
margin-top: 56px;
display: flex;
flex-direction: column;
gap: 3px;
}
.level {
display: grid;
grid-template-columns: 200px 1fr;
gap: 0;
border: 1px solid var(--border-dim);
overflow: hidden;
transition: border-color 0.3s;
cursor: default;
}
.level:hover { border-color: var(--border); }
.level-meta {
background: var(--bg3);
padding: 28px 24px;
border-right: 1px solid var(--border-dim);
display: flex;
flex-direction: column;
justify-content: center;
}
.level-name {
font-family: 'Gowun Batang', serif;
font-size: 18px;
font-weight: 700;
margin-bottom: 4px;
}
.level-en {
font-family: 'DM Mono', monospace;
font-size: 10px;
letter-spacing: 0.15em;
color: var(--text-dim);
}
.level-cells {
padding: 24px 28px;
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
}
.cell-chip {
font-family: 'DM Mono', monospace;
font-size: 11px;
padding: 6px 14px;
border-radius: 100px;
letter-spacing: 0.05em;
white-space: nowrap;
transition: transform 0.2s;
}
.cell-chip:hover { transform: translateY(-2px); }
.chip-green { background: var(--cell-green-dim); color: var(--cell-green); border: 1px solid rgba(45,255,143,0.25); }
.chip-amber { background: rgba(255,209,102,0.1); color: var(--cell-amber); border: 1px solid rgba(255,209,102,0.25); }
.chip-coral { background: rgba(255,107,107,0.1); color: var(--cell-coral); border: 1px solid rgba(255,107,107,0.25); }
.chip-blue { background: rgba(116,192,252,0.1); color: var(--cell-blue); border: 1px solid rgba(116,192,252,0.25); }
.level-arrow {
margin-left: auto;
font-size: 20px;
opacity: 0.2;
padding-right: 8px;
}
/* ── Comparison ── */
.compare-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2px;
margin-top: 56px;
}
.compare-col {
background: var(--bg2);
border: 1px solid var(--border-dim);
padding: 0;
overflow: hidden;
}
.compare-head {
padding: 24px 32px;
border-bottom: 1px solid var(--border-dim);
font-family: 'DM Mono', monospace;
font-size: 11px;
letter-spacing: 0.15em;
text-transform: uppercase;
}
.compare-col.oop .compare-head { color: var(--text-dim); }
.compare-col.cell .compare-head { color: var(--cell-green); }
.compare-rows { padding: 12px 0; }
.compare-row {
display: grid;
grid-template-columns: 100px 1fr;
gap: 0;
padding: 12px 32px;
border-bottom: 1px solid var(--border-dim);
font-size: 13px;
}
.compare-row:last-child { border-bottom: none; }
.compare-key {
font-family: 'DM Mono', monospace;
font-size: 10px;
color: var(--text-dim);
letter-spacing: 0.1em;
padding-top: 2px;
}
.compare-val { line-height: 1.6; color: rgba(232,245,238,0.85); }
.compare-col.cell .compare-val { color: var(--cell-green); }
/* ── Code Example ── */
.code-section { background: var(--bg); }
.code-block-wrapper {
margin-top: 56px;
border: 1px solid var(--border-dim);
overflow: hidden;
}
.code-bar {
background: var(--bg2);
padding: 14px 24px;
border-bottom: 1px solid var(--border-dim);
display: flex;
align-items: center;
gap: 8px;
}
.code-dot { width:10px; height:10px; border-radius:50%; }
.code-dot:nth-child(1) { background: #ff5f57; }
.code-dot:nth-child(2) { background: #febc2e; }
.code-dot:nth-child(3) { background: #28c840; }
.code-filename {
font-family: 'DM Mono', monospace;
font-size: 11px;
color: var(--text-dim);
margin-left: 8px;
letter-spacing: 0.05em;
}
.code-body {
background: #080d0a;
padding: 36px 40px;
font-family: 'DM Mono', monospace;
font-size: 13px;
line-height: 2;
overflow-x: auto;
}
.code-body pre { margin: 0; }
.c-comment { color: rgba(45,255,143,0.35); }
.c-keyword { color: #ff7eb3; }
.c-class { color: var(--cell-amber); }
.c-string { color: var(--cell-green); }
.c-attr { color: var(--cell-blue); }
.c-val { color: rgba(232,245,238,0.9); }
.c-fn { color: #c9a0ff; }
.c-paren { color: var(--text-dim); }
/* ── Three pillars ── */
.pillars-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2px;
margin-top: 56px;
}
.pillar {
padding: 40px 32px;
border: 1px solid var(--border-dim);
position: relative;
background: var(--bg2);
transition: border-color 0.3s;
}
.pillar:hover { border-color: var(--border); }
.pillar-icon-wrap {
width: 56px; height: 56px;
margin-bottom: 24px;
position: relative;
}
.pillar-glyph {
font-size: 36px;
line-height: 56px;
}
.pillar-title {
font-family: 'Gowun Batang', serif;
font-size: 20px;
font-weight: 700;
margin-bottom: 10px;
}
.pillar-en {
font-family: 'DM Mono', monospace;
font-size: 10px;
color: var(--text-dim);
letter-spacing: 0.15em;
margin-bottom: 16px;
}
.pillar-body {
font-size: 14px;
line-height: 1.85;
color: var(--text-dim);
}
/* ── CTA ── */
.cta-section {
text-align: center;
padding: 120px 0;
position: relative;
}
.cta-section::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 600px; height: 600px;
border-radius: 50%;
background: radial-gradient(circle, rgba(45,255,143,0.06) 0%, transparent 70%);
pointer-events: none;
}
.cta-title {
font-family: 'Gowun Batang', serif;
font-size: clamp(36px, 5vw, 64px);
font-weight: 700;
line-height: 1.1;
margin-bottom: 24px;
}
.cta-title span { color: var(--cell-green); }
.cta-body {
font-size: 16px;
color: var(--text-dim);
line-height: 1.8;
margin-bottom: 48px;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}
.cta-version {
font-family: 'DM Mono', monospace;
font-size: 11px;
color: var(--text-dim);
letter-spacing: 0.15em;
margin-top: 32px;
}
/* ── Footer ── */
footer {
border-top: 1px solid var(--border-dim);
padding: 32px 0;
}
.footer-inner {
display: flex;
justify-content: space-between;
align-items: center;
font-family: 'DM Mono', monospace;
font-size: 11px;
color: var(--text-dim);
letter-spacing: 0.1em;
}
/* ── Community CTA ── */
.community-cta {
border-top: 1px solid var(--border-dim);
padding: 40px 0 8px;
text-align: center;
}
.community-cta h2 {
font-family: 'Gowun Batang', serif;
font-size: clamp(1.2rem, 3vw, 1.6rem);
font-weight: 700;
color: var(--cell-green);
margin-bottom: 12px;
}
.community-cta p {
font-size: 14px;
color: var(--text-dim);
line-height: 1.75;
max-width: 560px;
margin: 0 auto 20px;
}
.community-cta .cta-buttons {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
margin-bottom: 8px;
}
.community-cta .btn {
font-family: 'DM Mono', monospace;
font-size: 11px;
padding: 10px 14px;
border: 1px solid var(--border);
color: var(--text);
text-decoration: none;
letter-spacing: 0.06em;
transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.community-cta .btn:hover {
border-color: var(--cell-green);
color: var(--cell-green);
}
.community-cta .btn-primary {
border-color: var(--cell-green);
color: var(--cell-green);
background: var(--cell-green-dim);
}
/* ── Canvas cell animation ── */
#cell-canvas {
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
pointer-events: none;
z-index: 0;
opacity: 0.35;
}
/* ── Animations on scroll ── */
.fade-in {
opacity: 0;
transform: translateY(24px);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
/* ── Responsive ── */
@media (max-width: 768px) {
.container { padding: 0 24px; }
.principles-grid { grid-template-columns: 1fr; }
.pillars-grid { grid-template-columns: 1fr; }
.compare-grid { grid-template-columns: 1fr; }
.level { grid-template-columns: 1fr; }
.level-meta { border-right: none; border-bottom: 1px solid var(--border-dim); }
.hero-title { font-size: 48px; }
.hero-title .en { font-size: 36px; }
}
</style>
</head>
<body>
<canvas id="cell-canvas"></canvas>
<div class="grid-bg"></div>
<div class="orb orb1"></div>
<div class="orb orb2"></div>
<div class="orb orb3"></div>
<main>
<nav class="doc-lang-bar">
<a href="index.html">← Home</a>
<span>|</span>
<span>English first · 한국어 병렬</span>
<span>|</span>
<a href="concept-overview.html">Concept Overview</a>
<span>|</span>
<a href="language-specification.html">Spec v0.1</a>
<span>|</span>
<a href="roadmap.html">Roadmap</a>
</nav>
<!-- ─── HERO ─── -->
<section class="hero">
<div class="container">
<div class="hero-badge">New Paradigm · v0.1 · 2025</div>
<h1 class="hero-title">
<span class="en">Cell Coding</span>
<span class="ko">세포코딩</span>
</h1>
<p class="hero-sub">
biological architecture · organic computation<br>
role-driven · signal-based · self-organizing
</p>
<p class="hero-desc">
Like human cells, every unit of code has a distinct role. Independent yet organically connected cells form systems that live and breathe — a new philosophy of programming.
</p>
<p class="hero-desc">
인간의 세포처럼, 코드의 모든 단위는 고유한 역할을 가진다. 독립적이면서도 유기적으로 연결된 세포들이 모여 살아 숨쉬는 시스템을 만드는 새로운 코딩 철학.
</p>
</div>
<div class="hero-scroll">Scroll to explore</div>
</section>
<!-- ─── WHY CELL CODING ─── -->
<section>
<div class="container">
<p class="sec-label fade-in">Why Cell Coding</p>
<h2 class="sec-title fade-in">Why Cell Coding exists · 왜 이 개념이 필요한가</h2>
<p class="sec-body fade-in">Classical software assumed a narrower input-process-output frame. Physical AI now requires many sensing channels and many action channels at once, so we need a model of cooperating functional cells rather than a single monolithic pipeline.</p>
<p class="sec-body fade-in">고전 소프트웨어는 비교적 좁은 입력-처리-출력 프레임을 전제로 했다. Physical AI는 다중 감각 채널과 다중 행동 채널을 동시에 요구하므로, 단일 거대 파이프라인이 아니라 기능 세포의 협업 모델이 필요하다.</p>
<div class="principles-grid principles-grid-2">
<div class="principle-card fade-in">
<div class="principle-num">Origin ——</div>
<div class="principle-title">From I/O to Functional Cells</div>
<div class="principle-body">Keyboard/mouse era software can model interaction as discrete I/O events. Embodied AI must process continuous multimodal sensing and produce layered physical actions.<br>키보드/마우스 중심 시대의 소프트웨어는 이산적인 I/O 이벤트로 상호작용을 모델링할 수 있었지만, 구현형 AI는 연속적인 다중 모달 감지와 계층적 물리 행동을 처리해야 한다.</div>
</div>
<div class="principle-card fade-in" style="transition-delay:0.1s">
<div class="principle-num">Definition ——</div>
<div class="principle-title">Cell Coding Definition</div>
<div class="principle-body">Cell Coding models software as role-defined cells, membrane contracts, and signal-mediated cooperation across tissue-organ-organism layers.<br>Cell Coding은 역할 기반 세포, 막 계약, 신호 기반 협업을 통해 조직-기관-유기체 계층의 소프트웨어를 모델링한다.</div>
</div>
</div>
<p class="sec-body fade-in" style="margin-top:48px">Physical AI scenarios | Physical AI 시나리오</p>
<div class="principles-grid">
<div class="principle-card fade-in">
<div class="principle-num">Example 1 ——</div>
<div class="principle-title">Spider Robot</div>
<div class="principle-body">A spider robot ingests vision, hearing, tactile, and chemical context, then produces locomotion, web generation, and chemical actions — sensing and acting cells adapt to terrain.<br>거미 로봇은 시각·청각·촉각·화학 맥락을 받아 보행·거미줄·화학 작동을 만들며, 감각·행동 세포가 지형에 적응한다.</div>
</div>
<div class="principle-card fade-in" style="transition-delay:0.1s">
<div class="principle-num">Example 2 ——</div>
<div class="principle-title">Humanoid Robot</div>
<div class="principle-body">A humanoid processes vision, proprioception, balance, hand tactile, and speech — locomotion, grasping, gestures, and expression map to balance, manipulation, and interaction organs.<br>휴머노이드는 시각·고유수용감각·균형·손 촉각·음성을 처리하며, 보행·파지·제스처·표정은 균형·조작·상호작용 기관의 협업으로 표현한다.</div>
</div>
<div class="principle-card fade-in" style="transition-delay:0.2s">
<div class="principle-num">Example 3 ——</div>
<div class="principle-title">PET Robot</div>
<div class="principle-body">A companion PET robot reads owner presence, touch, voice tone, and home context — following, vocalization, and comfort behaviors map to affect and safety cells.<br>반려(PET) 로봇은 주인 존재·터치·음성 톤·가정 맥락을 읽고, 따라가기·발성·위로 행동은 정서·안전 세포 네트워크로 모델링한다.</div>
</div>
</div>
</div>
</section>
<hr class="divider">
<!-- ─── PROCESS ARCHITECTURE ─── -->
<section>
<div class="container">
<p class="sec-label fade-in">Process Architecture</p>
<h2 class="sec-title fade-in">From I/O lanes to functional cells · I/O 레인에서 기능 세포로</h2>
<p class="sec-body fade-in">Classical I/O hides complexity in three boxes. Cell Coding decomposes each box into cells and connects them by signals, not direct calls.</p>
<p class="sec-body fade-in">고전 I/O는 복잡도를 세 개 상자에 숨깁니다. Cell Coding은 각 상자를 세포로 분해하고, 직접 호출이 아닌 신호로 연결합니다.</p>
<p class="sec-body fade-in">Four levels — Overall (Modeling/Coding/Interworking) → Flow lanes (Sense/Decide/Act) → Functional pairs → Component cells — map to genome, tissue, cell, and membrane/signal contracts.</p>
<p class="sec-body fade-in">4단계 — 전체(모델링/코딩/연동) → 흐름 레인(감각/판단/행동) → 기능 쌍 → 구성 세포 — 는 genome, tissue, cell, 막/신호 계약에 대응합니다.</p>
<div class="overview-embed fade-in">
<div class="overview-embed-header">
<a href="concept-overview.html">Open full diagram · 전체 다이어그램 보기 →</a>
</div>
<iframe src="concept-overview.html" title="Cell Coding Concept Overview"></iframe>
</div>
</div>
</section>
<hr class="divider">
<!-- ─── PRINCIPLES ─── -->
<section>
<div class="container">
<p class="sec-label fade-in">Core Principles</p>
<h2 class="sec-title fade-in">Three laws of cells · 세포의 3대 법칙</h2>
<p class="sec-body fade-in">Biology optimized these principles over billions of years. Three simple laws govern everything in Cell Coding.</p>
<p class="sec-body fade-in">생물의 세포가 수십억 년에 걸쳐 최적화한 원리를 코드에 적용한다. 단순하지만 강력한 세 가지 법칙이 모든 것을 결정한다.</p>
<div class="principles-grid">
<div class="principle-card fade-in">
<div class="principle-num">01 ——</div>
<svg class="principle-icon" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="24" cy="24" r="20" stroke="rgba(45,255,143,0.4)" stroke-width="1"/>
<circle cx="24" cy="24" r="12" stroke="rgba(45,255,143,0.6)" stroke-width="1" stroke-dasharray="3 3"/>
<circle cx="24" cy="24" r="4" fill="rgba(45,255,143,0.8)"/>
</svg>
<div class="principle-title">Role · 역할</div>
<div class="principle-body">Every cell has one clear role. Heart cells pump; nerve cells relay signals. In code: one cell, one responsibility.<br>모든 세포는 단 하나의 명확한 역할을 가진다. 심장세포는 펌핑만 한다. 신경세포는 신호만 전달한다. 코드도 마찬가지다. 하나의 세포, 하나의 책임.</div>
</div>
<div class="principle-card fade-in" style="transition-delay:0.1s">
<div class="principle-num">02 ——</div>
<svg class="principle-icon" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="6" y="6" width="36" height="36" rx="4" stroke="rgba(255,209,102,0.4)" stroke-width="1"/>
<line x1="14" y1="14" x2="34" y2="14" stroke="rgba(255,209,102,0.6)" stroke-width="1"/>
<line x1="14" y1="24" x2="34" y2="24" stroke="rgba(255,209,102,0.3)" stroke-width="1"/>
<line x1="14" y1="34" x2="24" y2="34" stroke="rgba(255,209,102,0.3)" stroke-width="1"/>
</svg>
<div class="principle-title">Membrane · 막</div>
<div class="principle-body">The cell membrane decides what enters and exits. In code, the membrane is the interface and contract — selective permeability lets only required signals through.<br>세포막은 무엇이 들어오고 나갈지를 결정한다. 코드에서 막은 인터페이스이자 계약이다. 선택적 투과성 — 필요한 신호만 통과시킨다.</div>
</div>
<div class="principle-card fade-in" style="transition-delay:0.2s">
<div class="principle-num">03 ——</div>
<svg class="principle-icon" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="12" cy="24" r="6" stroke="rgba(116,192,252,0.5)" stroke-width="1"/>
<circle cx="36" cy="12" r="6" stroke="rgba(116,192,252,0.5)" stroke-width="1"/>
<circle cx="36" cy="36" r="6" stroke="rgba(116,192,252,0.5)" stroke-width="1"/>
<path d="M18 21 L30 15" stroke="rgba(116,192,252,0.4)" stroke-width="1" marker-end="url(#arr)"/>
<path d="M18 27 L30 33" stroke="rgba(116,192,252,0.4)" stroke-width="1"/>
<defs><marker id="arr" markerWidth="4" markerHeight="4" refX="2" refY="2" orient="auto"><circle cx="2" cy="2" r="1.5" fill="rgba(116,192,252,0.6)"/></marker></defs>
</svg>
<div class="principle-title">Signal · 신호</div>
<div class="principle-body">Cells do not call methods directly. They emit signals and react. This indirection makes systems flexible and scalable.<br>세포는 메서드를 직접 호출하지 않는다. 신호를 보내고, 반응한다. 이 간접성이 시스템을 유연하고 확장 가능하게 만드는 핵심이다.</div>
</div>
</div>
</div>
</section>
<hr class="divider">
<!-- ─── HIERARCHY ─── -->
<section class="hierarchy-section">
<div class="container">
<p class="sec-label fade-in">Complexity Scale</p>
<h2 class="sec-title fade-in">From unicellular to organism · 단세포에서 유기체로</h2>
<p class="sec-body fade-in">System complexity is determined by cell count and organization level. A small script is unicellular; a large platform is human-scale.</p>
<p class="sec-body fade-in">세포의 수와 조직화 수준에 따라 시스템의 복잡도가 결정된다. 작은 스크립트는 단세포이고, 대규모 플랫폼은 인간이다.</p>
<div class="complexity-diagram fade-in">
<p class="sec-body" style="margin-bottom:16px">Complexity scale diagram · 복잡도 계층 다이어그램</p>
<img src="cell_coding_complexity_scale.svg" alt="Cell Coding complexity scale from unicellular to organism">
<p class="sec-body" style="margin-top:16px;font-size:13px">See also: <a href="concept-overview.html" style="color:var(--cell-green)">Concept Overview · 개념 구조</a> (process architecture)</p>
</div>
<div class="hierarchy-wrapper">
<div class="level fade-in">
<div class="level-meta">
<div class="level-name">단세포</div>
<div class="level-en">UNICELLULAR</div>
</div>
<div class="level-cells">
<span class="cell-chip chip-green">순수 함수</span>
<span class="cell-chip chip-green">단일 변환</span>
<span class="cell-chip chip-green">유틸리티</span>
<span class="level-arrow">→</span>
</div>
</div>
<div class="level fade-in" style="transition-delay:0.08s">
<div class="level-meta">
<div class="level-name">미생물</div>
<div class="level-en">MICROBE</div>
</div>
<div class="level-cells">
<span class="cell-chip chip-green">입력 세포</span>
<span class="cell-chip chip-green">처리 세포</span>
<span class="cell-chip chip-green">출력 세포</span>
<span class="cell-chip chip-amber">3~5개 세포</span>
<span class="level-arrow">→</span>
</div>
</div>
<div class="level fade-in" style="transition-delay:0.12s">
<div class="level-meta">
<div class="level-name">플랑크톤</div>
<div class="level-en">PLANKTON</div>
</div>
<div class="level-cells">
<span class="cell-chip chip-green">감지 세포</span>
<span class="cell-chip chip-green">판단 세포</span>
<span class="cell-chip chip-green">실행 세포</span>
<span class="cell-chip chip-amber">원시 조직화</span>
<span class="level-arrow">→</span>
</div>
</div>
<div class="level fade-in" style="transition-delay:0.16s">
<div class="level-meta">
<div class="level-name">곤충</div>
<div class="level-en">INSECT</div>
</div>
<div class="level-cells">
<span class="cell-chip chip-amber">감각 기관</span>
<span class="cell-chip chip-amber">처리 기관</span>
<span class="cell-chip chip-amber">출력 기관</span>
<span class="cell-chip chip-blue">기관 클러스터</span>
<span class="level-arrow">→</span>
</div>
</div>
<div class="level fade-in" style="transition-delay:0.20s">
<div class="level-meta">
<div class="level-name">척추동물</div>
<div class="level-en">VERTEBRATE</div>
</div>
<div class="level-cells">
<span class="cell-chip chip-amber">API 계층</span>
<span class="cell-chip chip-amber">비즈니스 기관</span>
<span class="cell-chip chip-amber">데이터 기관</span>
<span class="cell-chip chip-blue">신경계 이벤트</span>
<span class="level-arrow">→</span>
</div>
</div>
<div class="level fade-in" style="transition-delay:0.24s">
<div class="level-meta" style="background:rgba(45,255,143,0.06); border-right-color: var(--border);">
<div class="level-name" style="color:var(--cell-green)">인간</div>
<div class="level-en">HUMAN</div>
</div>
<div class="level-cells">
<span class="cell-chip chip-coral">마이크로서비스</span>
<span class="cell-chip chip-coral">분산 처리</span>
<span class="cell-chip chip-coral">자가 복구</span>
<span class="cell-chip chip-coral">진화 가능</span>
<span class="cell-chip chip-blue">수천 개 세포</span>
<span class="level-arrow">→</span>
</div>
</div>
</div>
</div>
</section>
<hr class="divider">
<!-- ─── COMPARISON ─── -->
<section>
<div class="container">
<p class="sec-label fade-in">Paradigm Comparison</p>