-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1509 lines (1397 loc) · 62.2 KB
/
index.html
File metadata and controls
1509 lines (1397 loc) · 62.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">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
<title>No ?/@ — On AI Native Work</title>
<meta name="description" content="No ?/@ in AI Native generation. No to-do. To-do is doing. Doing is done." />
<meta name="color-scheme" content="light" />
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect width='64' height='64' rx='10' fill='%230b0b0b'/%3E%3Ctext x='50%25' y='54%25' text-anchor='middle' dominant-baseline='middle' font-family='Georgia,Times,serif' font-size='52' font-weight='400' fill='%23f6f4ef'%3E%3F%3C/text%3E%3C/svg%3E" />
<!-- Open Graph -->
<meta property="og:title" content="No ?/@ — On AI Native Work" />
<meta property="og:description" content="No ?/@ in AI Native generation. No to-do. To-do is doing. Doing is done." />
<meta property="og:type" content="website" />
<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=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,700;1,9..144,400&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet" />
<style>
:root {
--ink: #0b0b0b;
--ink-soft: #1a1a1a;
--paper: #f6f4ef; /* warm off-white, editorial */
--paper-pure: #ffffff;
--rule: #c9c5bc; /* soft grey rule */
--muted: #6b6b6b;
--muted-soft: #9a9a9a;
--serif: "Fraunces", "Songti SC", "Source Han Serif SC", "Noto Serif CJK SC", "Times New Roman", Georgia, serif;
--sans: "Inter", -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
--mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
--maxw: 1240px;
--gutter: clamp(20px, 4vw, 56px);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
background: var(--paper);
color: var(--ink);
font-family: var(--serif);
font-weight: 400;
font-size: 18px;
line-height: 1.55;
font-feature-settings: "ss01", "ss02", "liga", "kern";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
::selection { background: var(--ink); color: var(--paper); }
a { color: inherit; text-underline-offset: 4px; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }
/* ---------- Layout ---------- */
.wrap {
max-width: var(--maxw);
margin: 0 auto;
padding: 0 var(--gutter);
}
hr.rule {
border: 0;
border-top: 1px solid var(--rule);
margin: 0;
}
/* ---------- Masthead ---------- */
.masthead {
padding-top: clamp(20px, 2vw, 28px);
padding-bottom: clamp(20px, 2vw, 28px);
}
.masthead .mh-row {
font-family: var(--sans);
font-size: 11px;
letter-spacing: 0.28em;
text-transform: uppercase;
color: var(--muted);
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}
/* ---------- Hero ---------- */
.hero {
padding-top: clamp(48px, 7vw, 96px);
padding-bottom: clamp(60px, 10vw, 140px);
position: relative;
}
.hero:has(.reasoning) {
padding-bottom: clamp(28px, 4vw, 56px);
}
.kicker {
font-family: var(--sans);
font-size: 11px;
letter-spacing: 0.28em;
text-transform: uppercase;
color: var(--ink);
display: inline-flex;
align-items: center;
gap: 12px;
margin-bottom: clamp(28px, 4vw, 44px);
}
.kicker::before {
content: "";
width: 28px;
height: 1px;
background: var(--ink);
display: inline-block;
}
h1.display {
font-family: var(--serif);
font-weight: 400;
font-style: normal;
font-size: clamp(44px, 9.2vw, 156px);
line-height: 0.96;
letter-spacing: -0.02em;
margin: 0;
font-variation-settings: "opsz" 144;
}
h1.display .it { font-style: italic; font-weight: 300; }
h1.display .amp {
font-style: italic;
font-weight: 300;
font-family: var(--serif);
}
h1.display .punct {
font-family: var(--mono);
font-weight: 500;
font-size: 0.78em;
vertical-align: 0.02em;
letter-spacing: -0.02em;
}
.hero-meta {
margin-top: clamp(36px, 5vw, 64px);
font-family: var(--sans);
font-size: 13px;
color: var(--muted);
}
.hero-meta .lede {
font-family: var(--serif);
font-size: clamp(18px, 1.6vw, 22px);
line-height: 1.45;
color: var(--ink);
max-width: 42ch;
}
.hero-meta .lede em { font-style: italic; color: var(--muted); }
.hero-meta .byline {
align-self: end;
justify-self: end;
text-align: right;
letter-spacing: 0.12em;
text-transform: uppercase;
font-size: 11px;
}
.hero-meta .byline strong { color: var(--ink); font-weight: 500; letter-spacing: 0.12em; }
/* ---------- Section scaffolding ---------- */
section.article {
padding-top: clamp(80px, 10vw, 140px);
padding-bottom: clamp(80px, 10vw, 140px);
}
section.article:has(.reasoning) {
padding-bottom: clamp(28px, 3.4vw, 48px);
}
section.article:has(.reasoning) + footer.end {
padding-top: clamp(20px, 2.5vw, 36px);
}
section.article:has(.reasoning) + .wrap + section.article {
padding-top: clamp(48px, 6vw, 88px);
}
.section-head {
margin-bottom: clamp(40px, 6vw, 72px);
}
.section-title {
font-family: var(--serif);
font-weight: 400;
font-size: clamp(26px, 4.2vw, 56px);
line-height: 1.1;
letter-spacing: -0.02em;
margin: 0;
max-width: 22ch;
}
.section-title em { font-style: italic; font-weight: 300; color: var(--muted); }
.cols {
max-width: 64ch;
}
.cols .body p {
font-size: clamp(17px, 1.25vw, 19px);
line-height: 1.7;
margin: 0 0 1.1em;
}
.cols .body p.drop::first-letter,
.cols .body .drop-glyph {
font-family: var(--serif);
font-weight: 400;
font-size: 2.6em;
line-height: 0.9;
vertical-align: -0.12em;
margin-right: 0.04em;
color: var(--ink);
}
.cols .body .pull.pull-sm {
font-size: clamp(17px, 1.4vw, 20px);
line-height: 1.5;
}
.cols .body .pull {
font-family: var(--serif);
font-style: italic;
font-weight: 300;
font-size: clamp(24px, 2.6vw, 34px);
line-height: 1.25;
letter-spacing: -0.01em;
margin: 1.4em 0;
padding: 0 0 0 1em;
border-left: 1px solid var(--ink);
color: var(--ink);
}
/* ---------- Triptych (No to-do. To-do is doing. Doing is done.) ---------- */
.triptych {
display: grid;
grid-template-columns: repeat(3, 1fr);
margin-top: clamp(40px, 5vw, 72px);
}
.triptych .panel {
padding: clamp(32px, 4vw, 56px) clamp(22px, 2.6vw, 36px);
border-right: 1px solid var(--rule);
min-height: clamp(220px, 28vw, 340px);
display: flex;
flex-direction: column;
justify-content: space-between;
}
.triptych .panel:last-child { border-right: 0; }
.triptych .panel .idx {
font-family: var(--mono);
font-size: 11px;
letter-spacing: 0.14em;
color: var(--muted);
}
.triptych .panel .phrase {
font-family: var(--serif);
font-weight: 400;
font-size: clamp(26px, 3.4vw, 44px);
line-height: 1.1;
letter-spacing: -0.015em;
}
.triptych .panel .phrase em { font-style: italic; font-weight: 300; }
.triptych .panel .note {
font-family: var(--sans);
font-size: 12px;
letter-spacing: 0.04em;
color: var(--muted);
max-width: 28ch;
}
.triptych .panel.invert {
background: var(--ink);
color: var(--paper);
border-color: var(--ink);
}
.triptych .panel.invert .idx,
.triptych .panel.invert .note { color: rgba(246,244,239,0.6); }
/* ---------- Big mark (typographic ornament) ---------- */
.mark {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: clamp(24px, 4vw, 64px);
padding: clamp(60px, 9vw, 120px) 0;
}
.mark .glyphs {
font-family: var(--serif);
font-weight: 300;
font-size: clamp(160px, 32vw, 440px);
line-height: 0.8;
letter-spacing: -0.05em;
color: var(--ink);
user-select: none;
}
.mark .glyphs .slash {
font-style: italic;
color: var(--muted-soft);
padding: 0 0.04em;
}
.mark .gloss {
max-width: 38ch;
font-family: var(--serif);
font-size: clamp(17px, 1.3vw, 20px);
line-height: 1.6;
color: var(--ink);
}
.mark .gloss .label {
font-family: var(--sans);
font-size: 11px;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--muted);
display: block;
margin-bottom: 14px;
}
/* ---------- Two-up tenets ---------- */
.tenets {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
border-top: 1px solid var(--rule);
}
.tenet {
padding: clamp(28px, 3.4vw, 44px) clamp(22px, 2.6vw, 36px);
border-right: 1px solid var(--rule);
border-bottom: 1px solid var(--rule);
}
.tenet:nth-child(2n) { border-right: 0; }
.tenet .t-num {
font-family: var(--mono);
font-size: 11px;
letter-spacing: 0.14em;
color: var(--muted);
margin-bottom: 10px;
}
.tenet h3 {
font-family: var(--serif);
font-weight: 400;
font-size: clamp(22px, 2.2vw, 30px);
line-height: 1.2;
letter-spacing: -0.01em;
margin: 0 0 10px;
}
.tenet h3 em { font-style: italic; font-weight: 300; }
.tenet p {
margin: 0;
font-family: var(--serif);
font-size: 16px;
line-height: 1.6;
color: var(--ink-soft);
max-width: 46ch;
}
/* ---------- Coda ---------- */
.coda {
background: var(--ink);
color: var(--paper);
min-height: 100vh;
padding: clamp(360px, 60vh, 720px) 0 clamp(220px, 30vh, 380px);
margin-top: 0;
box-sizing: border-box;
}
.coda-inner {
max-width: none;
text-align: center;
}
.coda-question {
font-family: var(--serif);
font-style: italic;
font-weight: 300;
font-size: clamp(28px, 4vw, 52px);
line-height: 1.3;
letter-spacing: -0.01em;
color: var(--paper);
margin: 0;
max-width: 22ch;
margin-left: auto;
margin-right: auto;
font-variation-settings: "opsz" 144;
}
.coda-ellipsis {
display: inline-block;
margin-top: 0.5em;
letter-spacing: 0.4em;
color: rgba(246,244,239,0.45);
font-style: normal;
}
/* ---------- End / footnote (inverted, merged with coda) ---------- */
footer.end {
background: var(--ink);
color: rgba(246,244,239,0.55);
padding: 0 0 clamp(28px, 3vw, 48px);
margin-top: 0;
}
footer.end .footnote {
border-top: 1px solid rgba(246,244,239,0.18);
color: rgba(246,244,239,0.55);
}
.footnote {
padding-top: 16px;
border-top: 1px solid var(--rule);
display: flex;
justify-content: space-between;
gap: 16px;
font-family: var(--mono);
font-size: 11px;
letter-spacing: 0.08em;
color: var(--muted);
text-transform: uppercase;
text-align: left;
}
/* ---------- Responsive ---------- */
@media (max-width: 820px) {
.hero-meta { grid-template-columns: 1fr; }
.triptych { grid-template-columns: 1fr; }
.triptych .panel { border-right: 0; border-bottom: 1px solid var(--rule); min-height: unset; }
.triptych .panel:last-child { border-bottom: 0; }
.mark { grid-template-columns: 1fr; }
.mark .glyphs { font-size: clamp(140px, 52vw, 280px); }
.tenets { grid-template-columns: 1fr; }
.tenet { border-right: 0; }
.footnote { flex-direction: column; }
.cols .body p.drop::first-letter,
.cols .body .drop-glyph { font-size: 2.2em; }
h1.display { font-size: clamp(40px, 13vw, 72px); }
}
/* ---------- Reveal on scroll ---------- */
.reveal {
opacity: 0;
transform: translateY(14px);
transition: opacity 900ms cubic-bezier(.2,.6,.2,1), transform 900ms cubic-bezier(.2,.6,.2,1);
will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
.reveal { opacity: 1; transform: none; transition: none; }
}
/* gentle fade-in on first paint */
@keyframes bootFade { from { opacity: 0; } to { opacity: 1; } }
body { animation: bootFade 700ms ease both; }
/* ---------- Language toggle ---------- */
.lang-toggle {
font-family: var(--sans);
font-size: 11px;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--muted);
user-select: none;
display: inline-flex;
gap: 10px;
align-items: center;
}
.lang-toggle button {
all: unset;
cursor: pointer;
padding: 0 2px;
color: var(--muted);
transition: color 200ms ease;
letter-spacing: inherit;
font: inherit;
}
.lang-toggle button:hover { color: var(--ink); }
.lang-toggle button.active { color: var(--ink); }
.lang-toggle .sep { color: var(--rule); }
/* ---------- Scan animation ---------- */
.scan-line {
position: fixed;
left: 0;
right: 0;
top: 0;
height: 1px;
background: var(--ink);
z-index: 60;
pointer-events: none;
opacity: 0;
transform: translateY(-10px);
box-shadow: 0 0 32px rgba(11,11,11,0.12);
}
.scan-line.run {
animation: scanDown 1400ms cubic-bezier(.45,.05,.55,.95) forwards;
}
@keyframes scanDown {
0% { opacity: 0; transform: translateY(-10px); }
8% { opacity: 1; }
92% { opacity: 1; }
100% { opacity: 0; transform: translateY(100vh); }
}
@media (prefers-reduced-motion: reduce) {
.scan-line.run { animation: none; }
}
/* per-element flicker during language swap */
.i18n.swapping {
opacity: 0;
transition: opacity 220ms ease;
}
/* Chinese typography tweaks */
html[lang="zh"] body {
font-feature-settings: "kern";
}
html[lang="zh"] h1.display,
html[lang="zh"] .section-title,
html[lang="zh"] .triptych .phrase,
html[lang="zh"] .coda-question {
letter-spacing: 0;
}
html[lang="zh"] .footnote {
text-transform: none;
}
html[lang="zh"] .coda-inner {
max-width: none;
}
html[lang="zh"] .coda-question {
font-size: clamp(22px, 5vw, 44px);
}
/* ---------- Reasoning (scroll-revealed) ---------- */
.reasoning {
margin-top: clamp(28px, 3.4vw, 44px);
overflow: hidden;
}
.reasoning .label-row {
padding: 18px 0;
display: inline-flex;
align-items: center;
gap: 14px;
font-family: var(--sans);
font-size: 11px;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--muted);
}
.reasoning .label-row::before {
content: "";
width: 22px;
height: 1px;
background: currentColor;
display: inline-block;
}
/* collapsed → expanded animation via grid-template-rows */
.reasoning .collapsible {
display: grid;
grid-template-rows: 0fr;
transition:
grid-template-rows 1100ms cubic-bezier(.2,.6,.2,1);
will-change: grid-template-rows;
}
.reasoning.open .collapsible {
grid-template-rows: 1fr;
}
.reasoning .collapsible > .body-wrap {
overflow: hidden;
min-height: 0;
}
.reasoning .body-inner {
padding: 8px 0 28px;
max-width: 64ch;
font-family: var(--serif);
font-size: clamp(16px, 1.15vw, 18px);
line-height: 1.7;
color: var(--ink-soft);
opacity: 0;
transform: translateY(10px);
transition:
opacity 900ms cubic-bezier(.2,.6,.2,1) 200ms,
transform 900ms cubic-bezier(.2,.6,.2,1) 200ms;
}
.reasoning.open .body-inner {
opacity: 1;
transform: none;
}
.reasoning .body-inner > * + * { margin-top: 0.9em; }
.reasoning .body-inner h4 {
font-family: var(--sans);
font-weight: 500;
font-size: 11px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--muted);
margin: 1.6em 0 0.4em;
}
.reasoning .body-inner blockquote {
margin: 1.1em 0;
padding: 0 0 0 1em;
border-left: 1px solid var(--ink);
font-style: italic;
font-weight: 300;
color: var(--ink);
}
.reasoning .body-inner code {
font-family: var(--mono);
font-size: 0.92em;
background: rgba(11,11,11,0.06);
padding: 0.06em 0.36em;
border-radius: 2px;
}
.reasoning .body-inner ul {
margin: 0.6em 0;
padding-left: 1.2em;
}
.reasoning .body-inner li + li { margin-top: 0.4em; }
@media (prefers-reduced-motion: reduce) {
.reasoning .collapsible,
.reasoning .body-inner { transition: none; }
}
/* ---------- §IV door (faded ? as doorway) ---------- */
.door {
margin: clamp(56px, 8vw, 110px) auto clamp(32px, 5vw, 64px);
max-width: 720px;
display: grid;
grid-template-columns: auto 1fr;
align-items: center;
gap: clamp(28px, 4vw, 56px);
}
.door-svg {
width: clamp(210px, 27vw, 330px);
height: auto;
color: var(--ink);
opacity: 0.32;
}
.door-svg text { opacity: 0.55; }
.door-caption {
font-family: var(--serif);
font-size: clamp(15px, 1.3vw, 17px);
line-height: 1.6;
color: var(--muted);
max-width: 38ch;
margin: 0;
}
.door-caption .label {
display: block;
font-family: var(--sans);
font-size: 11px;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--ink-soft);
margin-bottom: 10px;
}
.door-caption code {
font-family: var(--mono, ui-monospace, monospace);
font-size: 0.92em;
color: var(--ink);
}
@media (max-width: 720px) {
.door {
grid-template-columns: 1fr;
justify-items: center;
text-align: center;
gap: 18px;
}
.door-caption { max-width: none; }
.door-svg { width: clamp(210px, 66vw, 300px); }
}
/* ---------- §V lead-with-artifacts (OLD vs NEW) ---------- */
.lead-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
margin: clamp(40px, 6vw, 80px) 0 clamp(24px, 4vw, 48px);
border-top: 1px solid var(--rule);
border-bottom: 1px solid var(--rule);
}
.lead-col {
padding: clamp(28px, 3.5vw, 48px) clamp(22px, 2.8vw, 40px);
border-right: 1px solid var(--rule);
}
.lead-col:last-child { border-right: 0; }
.lead-tag {
font-family: var(--mono, ui-monospace, monospace);
font-size: 11px;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: clamp(18px, 2vw, 28px);
}
.lead-col ul {
list-style: none;
margin: 0;
padding: 0;
font-family: var(--serif);
font-size: clamp(16px, 1.4vw, 19px);
line-height: 1.55;
}
.lead-col li {
padding: 0.55em 0;
border-top: 1px solid var(--rule);
}
.lead-col li:first-child { border-top: 0; }
.lead-talk .lead-tag,
.lead-make .lead-tag { color: var(--ink); }
.lead-talk ul,
.lead-make ul { color: var(--ink); }
@media (max-width: 720px) {
.lead-grid { grid-template-columns: 1fr; }
.lead-col { border-right: 0; border-bottom: 1px solid var(--rule); }
.lead-col:last-child { border-bottom: 0; }
}
</style>
</head>
<body>
<div class="scan-line" aria-hidden="true"></div>
<!-- ============ MASTHEAD ============ -->
<header class="masthead">
<div class="wrap">
<div class="mh-row">
<span data-i18n="masthead">How to Work in the AI Native Era</span>
<span class="lang-toggle" aria-label="Language">
<button type="button" data-lang="en" class="active">EN</button>
<span class="sep">·</span>
<button type="button" data-lang="zh">中</button>
</span>
</div>
</div>
</header>
<div class="wrap"><hr class="rule" /></div>
<!-- ============ HERO ============ -->
<section class="hero">
<div class="wrap">
<h1 class="display reveal" data-i18n="hero.title">
No <span class="punct">?</span><span class="amp">/</span><span class="punct">@</span><br/>
in <span class="it">AI Native</span><br/>
generation.
</h1>
<div class="hero-meta reveal">
<p class="lede" data-i18n="hero.lede">
Start with your agent. It’s already thinking.
</p>
</div>
<div class="reasoning reveal" data-gate="1">
<div class="label-row" data-i18n="r1.label">Why this piece exists</div>
<div class="collapsible"><div class="body-wrap"><div class="body-inner" data-i18n="r1.body">
<p>The cost of <em>collecting context and forming a judgment</em> used to be high — so we asked, we @-ed, we synced.</p>
<p>In the AI native era, an agent can read the repo, the doc, the thread, the spec, and hand you back a synthesized answer in seconds. The bottleneck is no longer information — it's <em>your willingness to do the work of thinking before you interrupt someone else.</em></p>
<p>So this piece is not anti-question and not anti-collaboration. It is against an older mode of working. It says: before you take another human's attention, spend the agent's first.</p>
<blockquote>The questions worth asking a human are the ones an agent cannot answer: decisions, permissions, taste.</blockquote>
</div></div></div>
</div>
</div>
</section>
<div class="wrap"><hr class="rule" /></div>
<!-- ============ TYPOGRAPHIC MARK ============ -->
<div class="wrap">
<div class="mark reveal">
<div class="glyphs" aria-hidden="true">?<span class="slash">/</span>@</div>
<div class="gloss" data-i18n="mark.gloss">
<span class="label">Two characters, one rule.</span>
Did you look it up? Did you think it through? Let your agent take a look first.
</div>
</div>
<div class="reasoning reveal">
<div class="label-row" data-i18n="r2.label">What <code>?</code> and <code>@</code> really mean</div>
<div class="collapsible"><div class="body-wrap"><div class="body-inner" data-i18n="r2.body">
<p>Read literally, "no <code>?</code>, no <code>@</code>" sounds like "don't ask, don't talk to people." That's not it.</p>
<p>The two characters stand for a specific failure mode — <em>the zero-context interrupt</em>:</p>
<ul>
<li><code>?</code> is not the question mark. It's you being too lazy to open an agent.</li>
<li><code>@</code> is not the at sign. It's you being too lazy to finish reading.</li>
</ul>
<p>Both are bids for someone else's attention you haven't earned. In a pre-AI world that was forgivable — looking things up was expensive. In an AI native world, the agent is the cheap, infinite first responder. Sending the unknown to the agent first is no longer a courtesy; it is <strong>the new baseline of competence.</strong></p>
<h4>When you should still @ a human</h4>
<ul>
<li><strong>Decisions</strong> — when a tradeoff is irreversible and someone owns it.</li>
<li><strong>Permissions</strong> — when the answer is structurally outside the agent's reach.</li>
<li><strong>Taste</strong> — when the project's identity is the anchor, and only a person carries it.</li>
</ul>
<blockquote>Everything else: ask the agent. Ask it a few more times.</blockquote>
</div></div></div>
</div>
</div>
<div class="wrap"><hr class="rule" /></div>
<!-- ============ ARTICLE II ============ -->
<section class="article">
<div class="wrap">
<div class="section-head reveal">
<h2 class="section-title" data-i18n="s2.title">
No to-do. <em>To-do is doing. Doing is done.</em>
</h2>
</div>
<div class="cols reveal">
<div class="body">
<p class="pull pull-sm" data-i18n="s2.pull">
The only real list is the one you never write down.
</p>
</div>
</div>
<div class="triptych reveal" aria-label="No to-do. To-do is doing. Doing is done.">
<div class="panel">
<div class="idx">01</div>
<div class="phrase" data-i18n="s2.p1.phrase">No <em>to-do.</em></div>
<div class="note" data-i18n="s2.p1.note">Think it — it's already a prompt.</div>
</div>
<div class="panel">
<div class="idx">02</div>
<div class="phrase" data-i18n="s2.p2.phrase">To-do <em>is</em> doing.</div>
<div class="note" data-i18n="s2.p2.note">Prompt it, and it's running.</div>
</div>
<div class="panel invert">
<div class="idx">03</div>
<div class="phrase" data-i18n="s2.p3.phrase">Doing <em>is</em> done.</div>
<div class="note" data-i18n="s2.p3.note">Look up, and it's shipped.</div>
</div>
</div>
<div class="reasoning reveal">
<div class="label-row" data-i18n="r3.label">Why the to-do list is dead</div>
<div class="collapsible"><div class="body-wrap"><div class="body-inner" data-i18n="r3.body">
<p>The to-do list was a coping mechanism for a specific bottleneck: <em>the gap between intention and execution.</em> You wrote it down because you couldn't act on it yet — context to gather, code to write, people to wait on. The list was the holding pen.</p>
<p>Agents collapse that gap. The moment you can articulate the task clearly enough to write it down, you can articulate it clearly enough to delegate it. The act of <em>capturing</em> and the act of <em>starting</em> are now the same act.</p>
<h4>The new loop</h4>
<ul>
<li><strong>Think it</strong> — this is the prompt.</li>
<li><strong>Hand it</strong> — the agent begins before you've finished phrasing it.</li>
<li><strong>Look up</strong> — your job is review and judgment, not tracking.</li>
</ul>
<p>The risk this introduces is real: speed without taste produces fast garbage. So the discipline is not "ship faster" — it is <em>raise your bar for what counts as done.</em></p>
<p>When generation becomes cheap, judgment and taste become expensive. Cultivate them.</p>
</div></div></div>
</div>
</div>
</section>
<div class="wrap"><hr class="rule" /></div>
<!-- ============ §III ============ -->
<section class="article">
<div class="wrap">
<div class="section-head reveal">
<h2 class="section-title" data-i18n="s3.title">
No teamwork is <em>the best teamwork.</em>
</h2>
</div>
<div class="cols reveal">
<div class="body">
<p class="drop" data-i18n="s3.drop">
Meetings, threads, hand-offs — all of it is overhead.
The agent doesn't need any of it.
</p>
<p class="pull" data-i18n="s3.pull">
Before you talk to a human, listen to what the agent has to say.
</p>
</div>
</div>
<div class="reasoning reveal">
<div class="label-row" data-i18n="r4.label">Why "no teamwork" is not anti-team</div>
<div class="collapsible"><div class="body-wrap"><div class="body-inner" data-i18n="r4.body">
<p>"The best teamwork is no teamwork" sounds like a solo-hacker fantasy. It isn't.</p>
<p>Most teamwork is not collaboration — it is <em>waste</em>: status meetings, FYI, hand-offs, "quick syncs"… These exist because some people are still working in the previous era. This overhead is the price paid when people from different eras have to share the same model of the world.</p>
<p>In the AI native era, this shared model is equal and egalitarian. Everyone should read what the agent produced carefully first, then consider whether to manufacture the cost of communication and collaboration.</p>
<h4>What survives</h4>
<ul>
<li><strong>Decisions made together</strong> — because the consequences are shared.</li>
<li><strong>Taste collided together</strong> — because there is only one outlet for taste.</li>
<li><strong>Trust built together</strong> — because no agent can vouch for you.</li>
</ul>
<p>What dies: the meeting that exists to confirm what everyone already knew. The thread that exists because no one wanted to read the doc. The hand-off that exists because the work wasn't really finished.</p>
</div></div></div>
</div>
</div>
</section>
<div class="wrap"><hr class="rule" /></div>
<!-- ============ §IV ============ -->
<section class="article">
<div class="wrap">
<div class="section-head reveal">
<h2 class="section-title" data-i18n="s4.title">
Unknowns are <em>invitations.</em>
</h2>
</div>
<div class="cols reveal">
<div class="body">
<p class="drop" data-i18n="s4.drop">
In the last era, the unknown made you anxious.
In this one, it should make you excited — because it marks the territory AI can walk into with you.
</p>
<p class="pull" data-i18n="s4.pull">
What you haven’t seen is yours to explore.
</p>
</div>
</div>
<figure class="door reveal" aria-hidden="true">
<svg class="door-svg" viewBox="0 0 200 320" xmlns="http://www.w3.org/2000/svg">
<!-- door frame -->
<path d="M 30 310 L 30 40 Q 30 20 50 20 L 150 20 Q 170 20 170 40 L 170 310"
fill="none" stroke="currentColor" stroke-width="1.2" stroke-linecap="square"/>
<!-- threshold -->
<line x1="20" y1="310" x2="180" y2="310" stroke="currentColor" stroke-width="1.2"/>
<!-- question mark, centered inside frame -->
<text x="100" y="200" text-anchor="middle"
font-family="'EB Garamond', Georgia, serif"
font-size="150" font-weight="300" fill="currentColor">?</text>
</svg>
<figcaption class="door-caption" data-i18n="s4.door">
<span class="label">The same mark, a different door.</span>
In §I, <code>?</code> was a shortcut you owed someone.
Here, it’s the doorway — step through.
</figcaption>
</figure>
<div class="reasoning reveal">
<div class="label-row" data-i18n="r5.label">Why the unknown is an invitation</div>
<div class="collapsible"><div class="body-wrap"><div class="body-inner" data-i18n="r5.body">
<p>In the previous era, the unknown made you anxious. Walking into it was expensive — you had to gather information alone, try things alone, and carry the risk of not getting through alone. So you detoured. You asked. You deferred.</p>
<p>In the AI native era, the cost of <em>exploring</em> has collapsed. AI can read the structure with you, break the problem down with you, try things fast. The unknown is no longer a black box — it is a region you and the agent can illuminate together. <em>Difficulty</em> is just the shape unknowns take in execution: when you haven’t arrived yet, hard feels like a wall; once you’re on the path, hard is just terrain.</p>
<p>So when you find something no one has made work, the signal has inverted. That’s not a warning — it’s an invitation. A place AI can help you reach, where others haven’t reached yet, is your opening. Share what you see; others are waiting for that map.</p>
<h4>The new reflex</h4>
<ul>
<li><strong>See the unknown</strong> — that is the opportunity.</li>
<li><strong>Walk in</strong> — the agent walks with you.</li>
<li><strong>Send it out</strong> — what you saw is what others want to see.</li>
</ul>
<blockquote>The unknown is not a threat. It is a path no one has walked yet.</blockquote>
</div></div></div>
</div>
</div>
</section>
<div class="wrap"><hr class="rule" /></div>
<!-- ============ §V ============ -->
<section class="article">
<div class="wrap">
<div class="section-head reveal">
<h2 class="section-title" data-i18n="s5.title">
Lead with <em>artifacts.</em>
</h2>
</div>
<div class="cols reveal">
<div class="body">
<p class="drop" data-i18n="s5.drop">
AI widened the edge of what one person can build.
When anyone can ship a working thing, the leverage shifts —
from who you are, to what you put in front of people.
Lead with the artifact.
</p>
<p class="pull" data-i18n="s5.pull">
When anyone can build it, everyone can lead.
</p>
</div>
</div>
<div class="lead-grid reveal" aria-label="Old leverage vs new leverage">
<div class="lead-col lead-talk">
<div class="lead-tag" data-i18n="s5.talk.tag">Old leverage</div>
<ul data-i18n="s5.talk.list">
<li>Your title.</li>
<li>The size of your team.</li>
<li>The room you’re in.</li>
<li>The budget you control.</li>
</ul>
</div>
<div class="lead-col lead-make">
<div class="lead-tag" data-i18n="s5.make.tag">New leverage</div>
<ul data-i18n="s5.make.list">
<li>A diff anyone can read.</li>
<li>A thing you actually shipped.</li>
<li>A demo that runs.</li>
<li>The people who saw it.</li>
</ul>
</div>
</div>
<div class="reasoning reveal">
<div class="label-row" data-i18n="r6.label">Why everyone leads now</div>
<div class="collapsible"><div class="body-wrap"><div class="body-inner" data-i18n="r6.body">
<p>In the previous era, leading meant <em>moving other people</em>. Building anything real required a team, a budget, a room. So leverage was about position: title, headcount, the right meeting. If you didn’t have those, your ideas waited in line.</p>
<p>AI just collapsed the cost of building a working thing. One person plus an agent can produce what used to need a team. That changes who gets to lead.</p>
<h4>The new shape of leverage</h4>
<ul>
<li><strong>From mobilizing people, to producing artifacts.</strong> You no longer need to convince a room before you can show a thing. Show the thing.</li>
<li><strong>From the seat you have, to the work you put in front of people.</strong> A diff that runs travels further than a deck that doesn’t.</li>
<li><strong>From permission, to demonstration.</strong> Most of what you used to ask for, you can now show instead.</li>
</ul>
<p>This is not utopia — the old leverage still works for the things only it can do (decisions, permissions, real trust). But the floor has been lifted. Anyone who can ship a working thing now has reach that used to require an org chart.</p>
<p>Your influence is no longer bounded by your title. It is bounded by what you dare to make — and put in front of people.</p>