-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvolume-2.html
More file actions
2204 lines (1818 loc) · 154 KB
/
Copy pathvolume-2.html
File metadata and controls
2204 lines (1818 loc) · 154 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" data-mode="dark">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>The Axiom Zen Innovation Process — Volume II: The Apparatus</title>
<script>
// No-FOUC mode read.
try {
var m = localStorage.getItem('cd-mode');
if (m === 'light' || m === 'dark') document.documentElement.setAttribute('data-mode', m);
} catch (e) {}
</script>
<style>
/* ================================================================ */
/* FONTS */
/* ================================================================ */
@font-face { font-family: "Tiempos Headline"; src: url("fonts/TiemposHeadline-Regular.otf") format("opentype"); font-weight: 300 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Tiempos Headline"; src: url("fonts/TiemposHeadline-Bold.otf") format("opentype"); font-weight: 600 800; font-style: normal; font-display: swap; }
@font-face { font-family: "Tiempos Text"; src: url("fonts/TiemposText-Regular.otf") format("opentype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Tiempos Text"; src: url("fonts/TiemposText-RegularItalic.otf") format("opentype"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "Tiempos Text"; src: url("fonts/TiemposText-Bold.otf") format("opentype"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Tiempos Text"; src: url("fonts/TiemposText-BoldItalic.otf") format("opentype"); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: "Söhne"; src: url("fonts/Söhne-Buch.otf") format("opentype"); font-weight: 400 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Söhne"; src: url("fonts/Söhne-Fett.otf") format("opentype"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Söhne Breit"; src: url("fonts/SöhneBreit-Fett.otf") format("opentype"); font-weight: 500 800; font-style: normal; font-display: swap; }
@font-face { font-family: "Söhne Mono"; src: url("fonts/SöhneMono-Buch.otf") format("opentype"); font-weight: 400 500; font-style: normal; font-display: swap; }
/* ================================================================ */
/* TOKENS — DARK (default) + LIGHT */
/* ================================================================ */
:root[data-mode="dark"] {
--bg-canvas: #07090C;
--bg-panel: #0E1218;
--bg-elevated: #141923;
--ink-primary: rgba(241,233,216,0.92);
--ink-secondary: #A39A86;
--ink-tertiary: #6B6555;
--accent-1: #E8722C;
--accent-2: #C2412A;
--accent-3: #C9A961;
--hairline-gold: rgba(201,169,97,0.35);
--hairline-gold-strong: rgba(201,169,97,0.7);
--hairline-cyan: rgba(120,180,200,0.18);
--glow-warm: rgba(232,114,44,0.10);
--pullquote-bg: rgba(232,114,44,0.05);
--grain-opacity: 0.05;
--dropcap-shadow: 0 0 28px rgba(232,114,44,0.32);
--dropcap-shadow-hover: 0 0 36px rgba(232,114,44,0.50);
--plate-vignette: linear-gradient(180deg, rgba(7,9,12,0.4) 0%, rgba(7,9,12,0.05) 35%, rgba(7,9,12,0.55) 78%, rgba(201,169,97,0.10) 100%);
--selection-bg: rgba(201,169,97,0.28);
}
:root[data-mode="light"] {
--bg-canvas: #F4ECD8;
--bg-panel: #EDE2C8;
--bg-elevated: #E5D8B9;
--ink-primary: #1F1A14;
--ink-secondary: #5C5246;
--ink-tertiary: #8B7E6A;
--accent-1: #D2691E;
--accent-2: #B22222;
--accent-3: #A6822F;
--hairline-gold: rgba(166,130,47,0.40);
--hairline-gold-strong: rgba(166,130,47,0.75);
--hairline-cyan: rgba(120,150,160,0.20);
--glow-warm: rgba(210,105,30,0.10);
--pullquote-bg: rgba(166,130,47,0.05);
--grain-opacity: 0.03;
--dropcap-shadow: none;
--dropcap-shadow-hover: 0 0 18px rgba(210,105,30,0.20);
--plate-vignette: linear-gradient(180deg, rgba(244,236,216,0.20) 0%, rgba(244,236,216,0.05) 35%, rgba(244,236,216,0.55) 78%, rgba(166,130,47,0.10) 100%);
--selection-bg: rgba(166,130,47,0.28);
}
:root {
--display: "Tiempos Headline", "Iowan Old Style", Georgia, serif;
--body: "Tiempos Text", "Iowan Old Style", Georgia, serif;
--ui: "Söhne", -apple-system, "Helvetica Neue", Arial, sans-serif;
--ui-breit: "Söhne Breit", "Söhne", -apple-system, "Helvetica Neue", Arial, sans-serif;
--mono: "Söhne Mono", "JetBrains Mono", ui-monospace, monospace;
--reading-w: 66ch;
--left-rail: 80px;
--right-rail: 240px;
--container-max: 1280px;
--pad-x: 80px;
--scroll-progress: 0;
--parallax-y: 0px;
}
/* RESET */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg-canvas); }
body {
background: var(--bg-canvas);
color: var(--ink-primary);
font-family: var(--body);
font-size: 19px;
line-height: 1.7;
font-feature-settings: "kern", "liga", "onum";
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
overflow-x: hidden;
animation: pageFade 600ms ease both;
transition: background-color 220ms ease, color 220ms ease;
}
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }
img { max-width: 100%; display: block; }
a { color: var(--accent-3); text-decoration: none; }
.prose a, .colophon a { background-image: linear-gradient(currentColor, currentColor); background-position: 0 100%; background-repeat: no-repeat; background-size: 0% 1px; transition: background-size 300ms cubic-bezier(0.2,0,0.2,1); padding-bottom: 1px; }
.prose a:hover, .colophon a:hover { background-size: 100% 1px; }
::selection { background: var(--selection-bg); color: var(--ink-primary); }
/* PAPER GRAIN */
body::before {
content: "";
position: fixed; inset: 0;
pointer-events: none; z-index: 1;
opacity: var(--grain-opacity);
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.9 0 0 0 0 0.85 0 0 0 0 0.7 0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
mix-blend-mode: overlay;
}
/* STICKY THIN LABEL */
.sticky-label {
position: fixed; top: 0; left: 0; right: 0; height: 38px;
z-index: 40;
display: flex; align-items: center; justify-content: space-between;
padding: 0 24px;
font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
color: var(--ink-secondary);
background: linear-gradient(180deg, color-mix(in srgb, var(--bg-canvas) 92%, transparent) 0%, color-mix(in srgb, var(--bg-canvas) 60%, transparent) 70%, transparent);
backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
border-bottom: 1px solid var(--hairline-gold);
}
.sticky-label .ctx em { color: var(--ink-primary); font-style: normal; }
.sticky-label .ctx em.acc { color: var(--accent-3); }
.sticky-label .right-cluster { display: inline-flex; align-items: center; gap: 14px; }
.sticky-label .mode-toggle {
display: inline-flex; align-items: center; justify-content: center;
width: 26px; height: 26px;
border: 1px solid var(--hairline-gold); border-radius: 50%;
cursor: pointer; background: transparent;
color: var(--accent-3);
font-size: 13px; line-height: 1;
}
.sticky-label .mode-toggle:hover { border-color: var(--accent-3); }
:root[data-mode="dark"] .mode-toggle__sun { display: none; }
:root[data-mode="dark"] .mode-toggle__moon { display: inline; }
:root[data-mode="light"] .mode-toggle__sun { display: inline; }
:root[data-mode="light"] .mode-toggle__moon { display: none; }
.sticky-label .coords { color: var(--ink-tertiary); font-feature-settings: "tnum"; }
/* SUGIMOTO HORIZON */
.horizon {
position: fixed; bottom: 0; left: 0; height: 1px;
width: calc(var(--scroll-progress) * 100%);
background: var(--accent-3); z-index: 50;
pointer-events: none;
box-shadow: 0 0 8px rgba(201,169,97,0.4);
}
/* FOLIO */
.folio {
position: fixed; bottom: 18px; right: 22px; z-index: 60;
font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase;
color: var(--accent-3);
background: color-mix(in srgb, var(--bg-canvas) 80%, transparent);
padding: 6px 10px; border: 1px solid var(--hairline-gold);
backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
font-feature-settings: "tnum";
}
/* MAIN GRID WRAPPER */
.book {
position: relative; z-index: 2;
padding: 96px 0 120px;
}
.book .grid {
max-width: var(--container-max);
margin: 0 auto;
padding: 0 var(--pad-x);
display: grid;
grid-template-columns: var(--left-rail) minmax(0, var(--reading-w)) 1fr;
column-gap: 40px;
}
.book .leftrail { position: relative; }
.book .leftrail .glyph-rail {
position: sticky; top: 80px;
display: grid; gap: 22px; justify-items: start;
}
.book .leftrail .glyph-rail svg { width: 36px; height: 36px; opacity: 0.85; }
.book .leftrail .glyph-rail .partno {
writing-mode: vertical-rl; transform: rotate(180deg);
font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
color: var(--ink-tertiary);
}
.book .reading { color: var(--ink-primary); min-width: 0; }
/* TITLE PAGE */
.title-page {
text-align: center;
padding: 120px 20px 90px;
border-bottom: 1px solid var(--hairline-gold);
margin-bottom: 56px;
}
.title-page .ornament {
display: flex; justify-content: center; align-items: center; gap: 16px;
margin-bottom: 44px;
color: var(--accent-3); font-size: 0;
}
.title-page .ornament::before, .title-page .ornament::after {
content: ""; width: 80px; height: 1px;
background: linear-gradient(90deg, transparent, var(--accent-3), transparent);
display: inline-block;
}
.title-page .ornament span {
font-family: var(--display); font-size: 22px;
color: var(--accent-3); letter-spacing: 0.4em; padding-left: 0.4em;
}
.title-page h1 {
font-family: var(--display); font-style: italic; font-weight: 300;
font-size: clamp(40px, 6.4vw, 80px); line-height: 1.05; letter-spacing: -0.015em;
color: var(--ink-primary);
text-shadow: 0 0 60px rgba(232,114,44,0.18);
margin-bottom: 16px;
}
:root[data-mode="light"] .title-page h1 { text-shadow: none; }
.title-page .volume-label {
font-family: var(--ui-breit); font-size: 13px; font-weight: 500;
letter-spacing: 0.24em; text-transform: uppercase;
color: var(--accent-3); margin: 22px 0 22px;
}
.title-page .subtitle {
font-family: var(--display); font-style: italic; font-size: 22px;
color: var(--ink-secondary); line-height: 1.5;
max-width: 540px; margin: 0 auto 52px;
}
.title-page .author-line {
font-family: var(--ui-breit); font-size: 12px; font-weight: 500;
letter-spacing: 0.22em; text-transform: uppercase;
color: var(--ink-primary); margin-bottom: 8px;
}
.title-page .author-title {
font-family: var(--display); font-style: italic; font-size: 14px;
color: var(--ink-tertiary); letter-spacing: 0.04em;
}
.title-page .version-badge {
display: inline-block; margin-top: 42px;
font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
color: var(--accent-3);
border: 1px solid var(--hairline-gold-strong); border-radius: 999px;
padding: 6px 18px;
background: color-mix(in srgb, var(--bg-panel) 60%, transparent);
}
.title-page .companion-line {
margin-top: 28px; font-family: var(--display); font-style: italic;
font-size: 16px; color: var(--ink-secondary);
}
.title-page .companion-line a { color: var(--accent-3); }
/* ABSTRACT */
.abstract {
background: color-mix(in srgb, var(--bg-panel) 70%, transparent);
border: 1px solid var(--hairline-gold);
border-left: 3px solid var(--accent-1);
padding: 30px 34px;
margin: 0 0 56px 0;
font-family: var(--body); font-size: 17px; line-height: 1.7;
color: var(--ink-primary);
}
.abstract strong:first-child {
display: inline-block; margin-bottom: 8px;
font-family: var(--ui-breit); font-weight: 500; font-size: 12px;
letter-spacing: 0.18em; text-transform: uppercase;
color: var(--accent-3);
}
.abstract strong { color: var(--accent-3); font-family: var(--ui-breit); font-weight: 500; }
/* EPIGRAPH */
.epigraph {
font-family: var(--display); font-style: italic;
font-size: 22px; line-height: 1.5;
color: var(--ink-secondary);
text-align: center;
max-width: 60ch; margin: 0 auto 64px;
padding: 0 20px;
}
.epigraph .attrib {
display: block; margin-top: 16px;
font-family: var(--mono); font-style: normal; font-size: 11px;
letter-spacing: 0.14em; text-transform: uppercase;
color: var(--ink-tertiary);
}
/* TOC */
.toc {
margin: 0 0 80px 0;
padding: 40px 0;
border-top: 1px solid var(--hairline-gold);
border-bottom: 1px solid var(--hairline-gold);
}
.toc h2 {
font-family: var(--display); font-style: italic; font-weight: 400;
font-size: 28px; color: var(--ink-primary);
margin: 0 0 24px; text-align: center;
padding: 0; border: none;
}
.toc h2::before { content: none !important; }
.toc-part {
margin-top: 22px; margin-bottom: 8px;
font-family: var(--ui-breit); font-weight: 500; font-size: 12px;
letter-spacing: 0.16em; text-transform: uppercase;
}
.toc-part a { color: var(--accent-3); }
.toc-item { padding-left: 18px; margin-bottom: 4px; font-family: var(--body); font-size: 15px; }
.toc-item a { color: var(--ink-secondary); }
.toc-item a:hover, .toc-part a:hover { color: var(--accent-1); }
/* CHAPTER PLATE */
.chapter-plate {
margin: 80px 0 0;
padding: 0;
position: relative;
isolation: isolate;
}
.chapter-plate img {
width: 100%; height: auto; display: block;
border: 1px solid var(--hairline-gold-strong);
filter: saturate(0.95) contrast(1.02);
will-change: transform;
}
.chapter-plate figcaption {
margin-top: 18px;
display: flex; align-items: center; gap: 14px; justify-content: center;
font-family: var(--mono); font-size: 11px;
letter-spacing: 0.18em; text-transform: uppercase;
color: var(--ink-secondary);
}
.chapter-plate .plate-rule {
flex: 1; height: 1px; background: var(--hairline-gold);
}
.chapter-plate .plate-caption { color: var(--accent-3); }
/* PART BREAK */
.part-break {
margin: 56px 0 48px;
padding: 40px 0 28px;
border-top: 1px solid var(--hairline-gold-strong);
border-bottom: 1px solid var(--hairline-gold);
text-align: left;
}
.part-break .part-label {
font-family: var(--mono); font-size: 11px;
letter-spacing: 0.18em; text-transform: uppercase;
color: var(--accent-3);
margin-bottom: 12px;
}
.part-break h2 {
font-family: var(--display); font-style: italic; font-weight: 400;
font-size: clamp(32px, 4.4vw, 52px); line-height: 1.05; letter-spacing: -0.01em;
color: var(--ink-primary);
margin: 0; padding: 0; border: none;
text-shadow: 0 0 50px rgba(232,114,44,0.15);
}
.part-break h2::before { content: none !important; }
:root[data-mode="light"] .part-break h2 { text-shadow: none; }
/* PROSE: HEADINGS */
.reading h2 {
font-family: var(--display); font-style: italic; font-weight: 400;
font-size: 30px; line-height: 1.2;
margin: 64px 0 16px;
position: relative; padding-top: 24px;
color: var(--ink-primary);
}
.reading h2::before {
content: ""; position: absolute; left: 0; right: 0; top: 0;
height: 1px; background: var(--hairline-gold);
}
/* §22 retention cascade: atomic-orbit ornament before h2 */
.reading h2#s22::after {
content: "";
position: absolute; left: 0; top: -30px;
width: 28px; height: 28px;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><g fill='none' stroke='%23C9A961' stroke-width='1.2'><circle cx='50' cy='50' r='44'/><ellipse cx='50' cy='50' rx='44' ry='14'/><ellipse cx='50' cy='50' rx='44' ry='14' transform='rotate(60 50 50)'/><ellipse cx='50' cy='50' rx='44' ry='14' transform='rotate(120 50 50)'/></g><circle cx='50' cy='50' r='4' fill='%23E8722C'/></svg>");
background-size: contain; background-repeat: no-repeat;
opacity: 0.9;
}
.reading h3 {
font-family: var(--ui-breit); font-weight: 500; font-size: 14px;
line-height: 1.4; letter-spacing: 0.12em; text-transform: uppercase;
color: var(--accent-3);
margin: 40px 0 12px;
}
.reading h4 {
font-family: var(--display); font-style: italic; font-weight: 400;
font-size: 19px; line-height: 1.3;
color: var(--ink-primary);
margin: 24px 0 8px;
}
/* PROSE PARAGRAPHS */
.reading p {
margin: 0 0 16px;
color: var(--ink-primary);
}
.reading p + p { text-indent: 1.5em; }
.reading h2 + p, .reading h3 + p, .reading h4 + p,
.reading blockquote + p, .reading ul + p, .reading ol + p,
.reading .archetype-box + p, .reading .case-study + p,
.reading .north-star-box + p, .reading .table-wrap + p,
.reading pre + p, .reading figure + p, .reading hr + p {
text-indent: 0;
}
.reading em, .reading i { font-style: italic; }
.reading strong { font-weight: 500; color: var(--ink-primary); }
/* DROPCAP — first p after each part-break (Part I — first prose §1) */
.reading .part-break + h2 + p::first-letter,
.reading .has-dropcap::first-letter {
font-family: var(--display);
font-weight: 300; font-style: italic;
float: left;
font-size: 5.2em; line-height: 0.85;
margin: 0.06em 0.14em -0.05em 0;
color: var(--accent-1);
font-feature-settings: "lnum";
text-shadow: var(--dropcap-shadow);
transition: text-shadow 200ms ease;
}
.reading .has-dropcap:hover::first-letter { text-shadow: var(--dropcap-shadow-hover); }
/* BLOCKQUOTE */
.reading blockquote {
margin: 28px 0;
padding: 4px 0 4px 24px;
border-left: 1px solid var(--hairline-gold-strong);
font-family: var(--display); font-style: italic;
font-size: 19px; line-height: 1.6;
color: var(--ink-secondary);
}
.reading blockquote p { margin: 0 0 8px; color: var(--ink-secondary); }
.reading blockquote .attrib {
display: block; margin-top: 8px;
font-family: var(--mono); font-style: normal; font-size: 11px;
letter-spacing: 0.12em; text-transform: uppercase;
color: var(--ink-tertiary);
}
/* GOLD PULL-QUOTE TREATMENT for §47 (Roham verbatim) */
.reading #s47 ~ blockquote,
.reading #s47 + h3 ~ blockquote {
position: relative;
margin: 32px 0;
padding: 24px 28px;
border-left: 2px solid var(--accent-3);
background: var(--pullquote-bg);
font-size: 20px;
isolation: isolate;
}
.reading #s47 ~ blockquote::before,
.reading #s47 + h3 ~ blockquote::before {
content: "";
position: absolute; inset: -10px -16px;
background: radial-gradient(ellipse at center, var(--glow-warm) 0%, transparent 70%);
z-index: -1;
}
/* LISTS */
.reading ul { list-style: none; padding: 0 0 0 0.4em; margin: 16px 0 24px; }
.reading ul li {
position: relative;
padding-left: 1.4em;
margin-bottom: 8px;
}
.reading ul li::before {
content: "•";
position: absolute; left: 0; top: 0;
color: var(--accent-3); font-size: 18px; line-height: 1.7;
}
.reading ol { list-style: none; counter-reset: oli; padding: 0; margin: 16px 0 24px; }
.reading ol li {
counter-increment: oli;
position: relative;
padding-left: 3.2em; margin-bottom: 10px;
}
.reading ol li::before {
content: counter(oli, decimal-leading-zero);
position: absolute; left: 0; top: 0.18em;
font-family: var(--mono); font-size: 12px;
letter-spacing: 0.08em; color: var(--accent-3);
font-feature-settings: "tnum";
}
/* PRE-FLIGHT CHECKLISTS — atomic-orbit dot + gold rules between */
.reading ol.checklist { padding: 0; margin: 24px 0 36px; }
.reading ol.checklist li {
counter-increment: oli;
position: relative;
padding: 14px 0 14px 3.4em;
margin: 0;
border-bottom: 1px solid var(--hairline-gold);
list-style: none;
}
.reading ol.checklist li:first-child { border-top: 1px solid var(--hairline-gold-strong); }
.reading ol.checklist li:last-child { border-bottom: 1px solid var(--hairline-gold-strong); }
.reading ol.checklist li::before {
content: "";
position: absolute; left: 0.4em; top: 18px;
width: 18px; height: 18px;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><g fill='none' stroke='%23E8722C' stroke-width='3'><circle cx='50' cy='50' r='44'/><ellipse cx='50' cy='50' rx='44' ry='14'/></g><circle cx='50' cy='50' r='10' fill='%23E8722C'/></svg>");
background-size: contain; background-repeat: no-repeat;
font-family: unset; font-size: 0;
letter-spacing: 0; color: transparent;
}
/* ARCHETYPE BOX */
.reading .archetype-box {
margin: 28px 0;
padding: 22px 26px;
background: color-mix(in srgb, var(--bg-panel) 60%, transparent);
border: 1px solid var(--hairline-gold);
border-left: 3px solid var(--accent-3);
}
.reading .archetype-box p { margin: 0 0 10px; }
.reading .archetype-box p:last-child { margin-bottom: 0; }
.reading .archetype-box strong { color: var(--accent-3); font-family: var(--ui-breit); font-weight: 500; font-size: 0.92em; letter-spacing: 0.04em; }
/* CASE STUDY */
.reading .case-study {
margin: 22px 0;
padding: 18px 22px;
background: color-mix(in srgb, var(--bg-elevated) 50%, transparent);
border: 1px solid var(--hairline-gold);
}
.reading .case-study h4 {
margin: 0 0 8px;
font-family: var(--ui-breit); font-style: normal;
font-size: 12px; font-weight: 500;
letter-spacing: 0.16em; text-transform: uppercase;
color: var(--accent-3);
}
.reading .case-study p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--ink-secondary); }
/* NORTH STAR BOX (§19, §28a) */
.reading .north-star-box {
margin: 28px 0;
padding: 22px 26px;
background: color-mix(in srgb, var(--bg-panel) 70%, transparent);
border: 1px solid var(--hairline-gold-strong);
border-radius: 0;
position: relative;
}
.reading .north-star-box::before {
content: "";
position: absolute; top: -1px; left: -1px; right: -1px;
height: 2px;
background: linear-gradient(90deg, transparent 0%, var(--accent-3) 50%, transparent 100%);
}
.reading .north-star-box p { margin: 0 0 12px; }
.reading .north-star-box p:last-child { margin-bottom: 0; }
.reading .north-star-box strong {
color: var(--accent-1);
font-family: var(--ui-breit); font-weight: 500;
font-size: 0.92em; letter-spacing: 0.04em;
}
/* GATE METRICS TABLE — §30 */
.reading table.metrics-table,
.reading .table-wrap table {
width: 100%;
border-collapse: collapse;
font-family: var(--body); font-size: 14px;
font-feature-settings: "tnum", "lnum";
margin: 28px 0;
}
.reading table.metrics-table thead th {
text-align: left;
padding: 14px 10px;
font-family: var(--ui-breit); font-weight: 500;
font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
color: var(--accent-3);
border-top: 1px solid var(--hairline-gold-strong);
border-bottom: 1px solid var(--hairline-gold-strong);
background: color-mix(in srgb, var(--bg-panel) 60%, transparent);
vertical-align: bottom;
}
.reading table.metrics-table tbody td {
padding: 12px 10px;
border-bottom: none;
color: var(--ink-primary);
vertical-align: top;
line-height: 1.5;
}
.reading table.metrics-table tbody tr:nth-child(even) td {
background: color-mix(in srgb, var(--bg-panel) 30%, transparent);
}
.reading table.metrics-table tbody tr:last-child td {
border-bottom: 1px solid var(--hairline-gold-strong);
}
.reading table.metrics-table tbody td strong { color: var(--ink-primary); }
.reading table.metrics-table tbody td:first-child { font-family: var(--body); }
.reading table.metrics-table tbody td:nth-child(n+3):nth-child(-n+6) {
font-family: var(--mono); font-size: 13px;
color: var(--accent-1);
font-feature-settings: "tnum";
}
.reading table.metrics-table tbody td:nth-child(7),
.reading table.metrics-table tbody td:nth-child(8) {
font-family: var(--mono); font-size: 12px;
color: var(--ink-tertiary);
letter-spacing: 0.02em;
}
/* PSEUDOCODE / CODE — §43, §44 */
.reading pre {
margin: 28px 0;
padding: 22px 24px;
background: var(--bg-panel);
border: 1px solid var(--hairline-cyan);
font-family: var(--mono); font-size: 14px; line-height: 1.6;
color: var(--ink-primary);
overflow-x: auto;
white-space: pre-wrap;
word-break: normal;
}
.reading pre code {
font-family: inherit; font-size: inherit; color: inherit;
background: none; padding: 0;
}
/* simple syntax tinting via spans (already inline-tinted via colors below) */
.reading pre .kw { color: var(--accent-3); }
.reading pre .str { color: var(--accent-1); }
.reading pre .cm { color: var(--ink-tertiary); font-style: italic; }
/* DOC FOOTER + COLOPHON */
hr {
border: none; height: 1px;
background: var(--hairline-gold);
margin: 64px 0;
}
.section-divider {
margin: 80px 0 40px;
text-align: center;
font-family: var(--display);
color: var(--accent-3);
font-size: 22px; letter-spacing: 0.5em; padding-left: 0.5em;
opacity: 0.85;
}
.doc-footer {
margin-top: 56px;
padding: 32px 0 64px;
border-top: 1px solid var(--hairline-gold);
font-family: var(--mono); font-size: 11px;
letter-spacing: 0.04em; text-transform: none;
color: var(--ink-tertiary);
line-height: 1.7;
}
.doc-footer p { margin: 0; color: var(--ink-tertiary); }
.doc-footer strong { color: var(--accent-3); font-family: var(--ui-breit); font-weight: 500; letter-spacing: 0.1em; }
.doc-footer a { color: var(--accent-3); }
/* TOC anchor headings inside body should not get part dropcap */
.toc h2, .part-break h2, .chapter-plate { /* placeholder selector — kept */ }
/* RESPONSIVE */
@media (max-width: 1100px) {
:root { --pad-x: 36px; }
.book .grid { grid-template-columns: 1fr; column-gap: 0; }
.book .leftrail { display: none; }
}
@media (max-width: 640px) {
:root { --pad-x: 20px; }
body { font-size: 17px; line-height: 1.65; }
.title-page h1 { font-size: 36px; }
.title-page .subtitle { font-size: 18px; }
.reading h2 { font-size: 24px; }
.part-break h2 { font-size: 28px; }
.folio { bottom: 12px; right: 12px; font-size: 11px; padding: 5px 8px; }
.reading table.metrics-table { font-size: 12px; }
.reading table.metrics-table thead th,
.reading table.metrics-table tbody td { padding: 8px 6px; }
}
/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
body { animation: none; }
.chapter-plate img { transform: none !important; }
.prose a, .colophon a { transition: none; }
}
/* PRINT */
@media print {
body { background: white; color: black; }
.sticky-label, .horizon, .folio { display: none; }
.book { padding: 0; }
.book .grid { display: block; }
.chapter-plate, .part-break { page-break-before: always; }
.reading h2 { page-break-after: avoid; }
}
</style>
</head>
<body>
<!-- STICKY THIN LABEL -->
<header class="sticky-label" role="banner">
<span class="ctx"><em class="acc">Vol II</em> · <em>The Apparatus</em> — Farming Luck</span>
<span class="coords" aria-hidden="true">RA 14h 32m 06s · DEC −47° 12′</span>
<span class="right-cluster">
<button class="mode-toggle" id="modeToggle" type="button" aria-label="Toggle light or dark mode">
<span class="mode-toggle__moon" aria-hidden="true">☾</span>
<span class="mode-toggle__sun" aria-hidden="true">☀</span>
</button>
</span>
</header>
<!-- BOOK MAIN -->
<main class="book">
<div class="grid">
<aside class="leftrail" aria-hidden="true">
<div class="glyph-rail">
<svg viewBox="0 0 40 40">
<g fill="none" stroke="#C9A961" stroke-width="0.8">
<circle cx="20" cy="20" r="18"/>
<ellipse cx="20" cy="20" rx="18" ry="6"/>
<ellipse cx="20" cy="20" rx="18" ry="6" transform="rotate(60 20 20)"/>
</g>
<circle cx="20" cy="20" r="1.4" fill="#C9A961"/>
</svg>
<div class="partno">Vol II · The Apparatus</div>
</div>
</aside>
<article class="reading prose">
<!-- =====================================================
CONTENT INSERTION POINT — preserved verbatim from
legacy volume-2.html
===================================================== -->
<!-- ═══════════════════ TITLE PAGE ═══════════════════ -->
<div class="title-page" data-page="1">
<div class="ornament"><span>☉</span></div>
<h1>The Axiom Zen<br>Innovation Process</h1>
<p class="volume-label">Volume II · The Apparatus</p>
<p class="subtitle">Farming Luck: An Operator's Playbook for Waitlist, Alpha, and Beta</p>
<p class="author-line">Roham Gharegozlou</p>
<p class="author-title">Founder, Axiom Zen & Dapper Labs</p>
<div class="version-badge">VERSION 1.0 — 2026.04</div>
<p class="companion-line">Companion to <a href="volume-1.html">Volume I — The Thesis</a></p>
</div>
<!-- ═══════════════════ ABSTRACT ═══════════════════ -->
<div class="abstract">
<strong>Abstract.</strong> This is the operational manual for the gap between Step 7 and Step 8 of the Axiom Zen Innovation Process — the moment a Green Lit bet becomes real code in front of a stranger, and the long arc from there to escape velocity. It codifies the phase-gate sequence <strong>waitlist → Alpha (closed) → Private Beta → Public Beta → GA</strong> as a sieve, not a schedule: each stage a finer screen, each promotion a programmatic function of metrics, each gate pre-committed before the cohort opens. The central doctrine is <strong>farming luck</strong>: innovation is not random, but it is luck-dependent, and luck is farmable by building machinery that increases both the rate at which breakthroughs can happen and the acuity with which the organization hears them when they do. The book covers waitlist doctrine and the case library (Superhuman, Robinhood, Dropbox, Clubhouse cautionary); Alpha as Hook validation with founder-led user interviews and Sean Ellis 40%; Private Beta as Legs validation through the retention cascade, smile curve, and discovered aha moment; Public Beta as Flywheel validation via Bass-diffusion word-of-mouth and product-led growth. Gate metrics are tabulated, kill criteria pre-committed, fallbacks taxonomized. The book assumes Volume I.
</div>
<!-- ═══════════════════ EPIGRAPH ═══════════════════ -->
<div class="epigraph">
“In the fields of observation, chance favors only the prepared mind.”
<span class="attrib">Louis Pasteur, Lille, 7 December 1854</span>
</div>
<!-- ═══════════════════ TOC ═══════════════════ -->
<div class="toc" data-page="2">
<h2>Contents</h2>
<div class="toc-part"><a href="#part-i">Part I — The Frame</a></div>
<div class="toc-item"><a href="#s1">§1. Why this document exists</a></div>
<div class="toc-item"><a href="#s2">§2. Farming luck</a></div>
<div class="toc-item"><a href="#s3">§3. The Startup Sluice</a></div>
<div class="toc-item"><a href="#s4">§4. The three commitments</a></div>
<div class="toc-part"><a href="#part-ii">Part II — The Place in the AZ System</a></div>
<div class="toc-item"><a href="#s5">§5. Inside Steps 7 and 8</a></div>
<div class="toc-item"><a href="#s6">§6. Mapping to the Green Light Framework</a></div>
<div class="toc-item"><a href="#s7">§7. Tier implications</a></div>
<div class="toc-item"><a href="#s8">§8. Archetype dependency</a></div>
<div class="toc-part"><a href="#part-iii">Part III — Pre-Alpha: The Waitlist</a></div>
<div class="toc-item"><a href="#s9">§9. The waitlist is not a launch tactic</a></div>
<div class="toc-item"><a href="#s10">§10. Waitlist case library</a></div>
<div class="toc-item"><a href="#s11">§11. Viral math — the cycle-time lever</a></div>
<div class="toc-item"><a href="#s12">§12. The waitlist decay curve</a></div>
<div class="toc-item"><a href="#s12a">§12a. Public vs private waitlist</a></div>
<div class="toc-item"><a href="#s13">§13. Waitlist gates to enter Alpha</a></div>
<div class="toc-part"><a href="#part-iv">Part IV — Alpha (Closed)</a></div>
<div class="toc-item"><a href="#s14">§14. The purpose of Alpha</a></div>
<div class="toc-item"><a href="#s15">§15. Cohort size and ladder</a></div>
<div class="toc-item"><a href="#s16">§16. What we actually do in Alpha</a></div>
<div class="toc-item"><a href="#s17">§17. Alpha-specific instrumentation</a></div>
<div class="toc-item"><a href="#s18">§18. Alpha entry criteria</a></div>
<div class="toc-item"><a href="#s19">§19. The three-gate check</a></div>
<div class="toc-item"><a href="#s20">§20. Alpha exit criteria</a></div>
<div class="toc-item"><a href="#s21">§21. Kill, pivot, or polish</a></div>
<div class="toc-part"><a href="#part-v">Part V — Beta (Private → Public)</a></div>
<div class="toc-item"><a href="#s22">§22. The purpose of Beta — retention, habit, aha</a></div>
<div class="toc-item"><a href="#s23">§23. The doubling ladder</a></div>
<div class="toc-item"><a href="#s24">§24. The gate check at every doubling</a></div>
<div class="toc-item"><a href="#s25">§25. Fallback taxonomy</a></div>
<div class="toc-item"><a href="#s26">§26. Escalation protocol</a></div>
<div class="toc-item"><a href="#s27">§27. The Vohra segmentation move</a></div>
<div class="toc-item"><a href="#s28">§28. Private Beta vs Public Beta</a></div>
<div class="toc-item"><a href="#s28a">§28a. P0/P1: bugs and metric misses</a></div>
<div class="toc-item"><a href="#s29">§29. Activation point discovery</a></div>
<div class="toc-part"><a href="#part-vi">Part VI — The Gate Metrics Table</a></div>
<div class="toc-item"><a href="#s30">§30. The canonical metrics table</a></div>
<div class="toc-part"><a href="#part-vii">Part VII — Behavioral Signal Mining (The Hound Dog)</a></div>
<div class="toc-item"><a href="#s31">§31. Product is behavior, not PRD</a></div>
<div class="toc-item"><a href="#s32">§32. Signal taxonomy</a></div>
<div class="toc-item"><a href="#s33">§33. The Hound Dog ritual</a></div>
<div class="toc-item"><a href="#s34">§34. The silent supermajority</a></div>
<div class="toc-item"><a href="#s35">§35. Pivot vs polish decision rule</a></div>
<div class="toc-part"><a href="#part-viii">Part VIII — PLG and Word-of-Mouth Engineering</a></div>
<div class="toc-item"><a href="#s36">§36. The math of WOM is not opinion</a></div>
<div class="toc-item"><a href="#s37">§37. PLG works — with boundary conditions</a></div>
<div class="toc-item"><a href="#s38">§38. Loops, ranked by viability</a></div>
<div class="toc-item"><a href="#s39">§39. Rogers' five attributes as WOM scorecard</a></div>
<div class="toc-item"><a href="#s40">§40. STEPPS — the feature-sharing checklist</a></div>
<div class="toc-item"><a href="#s41">§41. NPS is a thermometer, not a gate</a></div>
<div class="toc-item"><a href="#s42">§42. Atomic network seeding</a></div>
<div class="toc-part"><a href="#part-ix">Part IX — Programmatic Execution</a></div>
<div class="toc-item"><a href="#s43">§43. Promotion as a deterministic function</a></div>
<div class="toc-item"><a href="#s44">§44. Pre-committed kill criteria</a></div>
<div class="toc-item"><a href="#s45">§45. Programmatic enough — automate what should be</a></div>
<div class="toc-item"><a href="#s46">§46. The agent layer</a></div>
<div class="toc-part"><a href="#part-x">Part X — Appendix</a></div>
<div class="toc-item"><a href="#s47">§47. Quote library</a></div>
<div class="toc-item"><a href="#s48">§48. Benchmark sources</a></div>
<div class="toc-item"><a href="#s49">§49. Pre-flight checklists</a></div>
<div class="toc-item"><a href="#s50">§50. Anti-pattern catalog</a></div>
<div class="toc-item"><a href="#s51">§51. Forthcoming companion docs</a></div>
<div class="toc-item"><a href="#s52">§52. Addendum — Feature rollout on an existing product</a></div>
<div class="toc-item"><a href="#coda">Coda</a></div>
</div>
<!-- ═══════════════════ PART I ═══════════════════ -->
<figure class="chapter-plate" data-page="3">
<img src="img/v2/part-i-frame.png" alt="Plate I — Farming Luck: cultivated rows under a probability sky, depicting Alpha and Beta as the deliberate practice of farming, not chasing, fortune." loading="lazy">
<figcaption>
<span class="plate-rule"></span>
<span class="plate-caption">PLATE I · FARMING LUCK</span>
<span class="plate-rule"></span>
</figcaption>
</figure>
<div class="part-break" id="part-i">
<div class="part-label">Part I</div>
<h2>The Frame</h2>
</div>
<h2 id="s1">§1. Why this document exists</h2>
<p class="has-dropcap">The Axiom Zen Innovation Book lays out how we choose what to build, how we fund it, and how we staff it — the Nine Steps, the Green Light Framework, the Six Archetypes, the portfolio tiers (SER/BBP/EBU), the Clock Speed, the Bold Beats, the Scientific Method as an operating system. That book is the architecture of how we pick bets and fund them without flinching.</p>
<p>It stops, deliberately, at the moment the bet becomes real code in front of a stranger. Step 7 says: <em>ship it</em>. Step 8 says: <em>scale what works</em>. Between those two words sits almost every company we have ever killed and almost every one we have ever kept.</p>
<p>This is the operational manual for that gap.</p>
<p>Wherever the AZ book uses a term — Hooks, Legs, Flywheel, Petri Dish, Killer App, Bold Beat, above water, programmatic enough — this book uses the same term and sharpens its edge. If you have not read the AZ book, read it first. This one assumes it.</p>
<p>What you hold is the companion. The second book. The part that turns a Green Lit bet into an actual business by running it through a sequence of ever-sharpening sieves, watching what users <em>do</em> with it, and either doubling the invite list or pulling the plug. No politics. No theater. No self-deception.</p>
<p>If the AZ book is <em>how we get to the starting line</em>, this book is <em>how we get to escape velocity</em>.</p>
<h2 id="s2">§2. Farming luck</h2>
<p>Innovation is not random. It requires luck. But luck is farmable.</p>
<p>This is the central doctrine and it sits behind every decision downstream. Every page of this playbook — every gate, every metric, every cohort ladder — exists to increase the number of shots we take and to sharpen the instrument we use to hear when one lands. We are not praying for lightning. We are building rods, placing them in fields during storm season, and watching the sky.</p>
<p>The frame has been given to us by people smarter than we are:</p>
<blockquote>
<p><em>“Dans les champs de l'observation, le hasard ne favorise que les esprits préparés.”</em><br>
(“In the fields of observation, chance favors only the prepared mind.”)</p>
<span class="attrib">Louis Pasteur, Lille inaugural lecture, 7 December 1854</span>
</blockquote>
<p>Pasteur was not talking about fortune cookies. He meant that chance events happen constantly, and the person who happens to be <em>equipped</em> to notice one and act on it gets credit for a breakthrough. Everyone else gets nothing. The preparation is the whole thing.</p>
<blockquote>
<p><em>“I used the same technique which I had found successful when working with the lysozyme…”</em></p>
<span class="attrib">Alexander Fleming, Nobel Lecture, 1945</span>
</blockquote>
<p>Fleming did not stumble onto penicillin because he was lucky. He stumbled onto penicillin because he had already spent years developing the technique to <em>recognize</em> what he saw in the contaminated petri dish. Other microbiologists had seen moldy plates and thrown them out. Fleming had built the apparatus to ask the right question of a contaminated sample. The mold was luck. The preparation was not.</p>
<blockquote>
<p><em>“Chance favors the connected mind.”</em></p>
<span class="attrib">Steven Johnson, <em>Where Good Ideas Come From</em> (2010)</span>
</blockquote>
<blockquote>
<p><em>“Adjacent possible.”</em> Stuart Kauffman, on how the next viable move depends on the current boundary of what exists. You cannot leap to the distant possibility. You can only step into what is one step away from the current edge.</p>
</blockquote>
<blockquote>
<p><em>“Bush [early, protected] vs Franchise [mature, optimized].”</em> Safi Bahcall, <em>Loonshots</em> (2019). Different phases demand different environments. Do not run a bush project on franchise metrics.</p>
</blockquote>
<blockquote>
<p><em>“Equal-odds rule.”</em> Dean Keith Simonton. Within a given creator, the hit-rate is roughly constant. What varies is volume. Geniuses are not more likely per attempt. They just take more attempts.</p>
</blockquote>
<blockquote>
<p><em>“Convexity. Optionality. Barbell.”</em> Nassim Taleb. Bets whose downside is bounded and whose upside is open-ended are the only bets worth taking in uncertain systems. Beta is how we enforce that asymmetry at the product level.</p>
</blockquote>
<blockquote>
<p><em>“Luck surface area = Doing × Telling.”</em> Jason Roberts. The more things you do, and the more you let the world know about them, the larger the surface area that luck can strike. Waitlists are luck surface area. Alphas are luck surface area. Every user conversation is luck surface area.</p>
</blockquote>
<blockquote>
<p><em>“Maximize opportunities. Listen to intuition. Expect good fortune. Turn bad luck to good.”</em> Richard Wiseman, <em>The Luck Factor</em> (2003). Empirical work on “lucky” versus “unlucky” people. The lucky ones did not roll better dice. They showed up more, paid closer attention, and re-framed setbacks faster.</p>
</blockquote>
<p>Put together, these thinkers tell us something that should be uncontroversial and that most companies nevertheless ignore: <strong>you do not sit and wait for the breakthrough. You build machinery that increases the rate at which breakthroughs can happen, and the acuity with which you hear them when they do.</strong></p>
<p>The Alpha/Beta process is that machinery. That is the whole book in one sentence.</p>
<p>The frame itself is empirical. We refined it by observing which luck-farming practices compounded across our own bets and we will adjust when the data contradicts it. This book is the current best draft of the apparatus, not the final one.</p>
<h2 id="s3">§3. The Startup Sluice</h2>
<p>Picture a mining sluice. At the top, you pour in a slurry of ore — ideas, PRDs, pitches, hunches, half-baked prototypes. The slurry moves through a series of progressively finer screens. Most of what you poured in washes out. What survives the first screen is smaller, denser, more promising. What survives the second screen is smaller still. At the bottom of the apparatus, if the mine is real, there is gold.</p>
<p>The Alpha/Beta pipeline is our sluice. Each stage is a finer sieve. Ideas enter wide. Survivors exit narrow and sharp. The sieves are:</p>
<ol>
<li><strong>Green Lit concept</strong> (from the AZ Nine Steps)</li>
<li><strong>Pre-Alpha / Waitlist</strong> — demand exists in strangers' minds</li>
<li><strong>Alpha (closed)</strong> — strangers actually use it, the hook lands</li>
<li><strong>Private Beta</strong> — it has legs: retention holds, the habit forms, evangelists surface</li>
<li><strong>Public Beta</strong> — it scales through word-of-mouth without collapsing</li>
<li><strong>GA</strong> — it operates as a franchise, not a bush</li>
</ol>
<p>At each step, we lose ideas. This is not failure. This is the step working. A pipeline that never kills anything is a pipeline without screens.</p>
<p>The point of this book is to describe what each screen is made of, what passes through it, and how we decide — honestly, programmatically, without ego — whether to keep going.</p>
<p>What survives all the way down is shaped, at every stage, not by our opinions but by the behavior of strangers. This is the crucial inversion. When a product emerges from the sluice, it is not the product we started with. It is the product that <em>customers carved out of what we started with</em> by choosing, with their actions, which parts to use and which parts to ignore. The team's job is to notice, quickly.</p>
<p>Lightning in a bottle is not metaphor. It is the empirical claim that rare outsized outcomes emerge from a specific combination — the right team, the right moment, the right wave, the right scientific apparatus to capture the signal when it hits. You cannot generate the lightning. You can only be ready to catch it. The farming-luck process, the sieve, and the scientific method are the three legs of that readiness. Miss any leg and the lightning strikes and dissipates before you can bottle it.</p>
<h2 id="s4">§4. The three commitments</h2>
<p>This pipeline only works if three commitments are real. Drop any one of them and you are running theater.</p>
<div class="archetype-box">
<p><strong>Commitment 1: Programmatic gating.</strong> Promotion from one stage to the next is a function of metrics, not meetings. Before we open a cohort, we write down the numbers that will permit its doubling, the numbers that will force its freeze, and the numbers that will trigger a rollback. Then, week over week, the numbers decide. Our job is to set direction and then <em>refuse</em> to override the gate. If this sounds harsh, remember: the alternative is an organization that promotes products for political reasons, and every person in the room already knows which ones.</p>
</div>
<div class="archetype-box">
<p><strong>Commitment 2: Customer-driven shape.</strong> What users <em>do</em> with the product overrides what we <em>thought we were building</em>. If the waitlist shape suggests a different market, we adjust. If the Alpha session replays show people using the third-most-important feature as if it were the first, we adjust. If the Beta cohort is retaining because of a surprise use case, we double down on the surprise. As founders we chose the direction. From the moment a stranger touches the product, the customer is a co-pilot. This is not abdication. This is the only way to avoid building a beautiful thing no one wants.</p>
</div>
<div class="archetype-box">
<p><strong>Commitment 3: Scientific method.</strong> Each cohort launch is a hypothesis, not a vanity milestone. Before we ship: <em>we predict the number</em>. After we ship: <em>we compare the number to the prediction</em>. We write down, before the experiment, what result will cause us to kill the product. Then, if we see that result, we kill it. Ries calls this the pivot-or-persevere meeting, scheduled in advance, where the numbers are presented and the decision is made with the evidence already collected. We run ours the same way.</p>
</div>
<p>If Programmatic Gating, Customer-Driven Shape, and Scientific Method are all operational, the Alpha/Beta pipeline will compound. If any one is missing, it will decay into theater, and the company will lose the luck it spent years farming.</p>
<!-- ═══════════════════ PART II ═══════════════════ -->
<figure class="chapter-plate" data-page="4">
<img src="img/v2/part-ii-place.png" alt="Plate II — Place in the System: a mechanical schematic locating Alpha and Beta inside Steps 7 and 8 of the broader Axiom Zen nine-step apparatus." loading="lazy">
<figcaption>
<span class="plate-rule"></span>
<span class="plate-caption">PLATE II · PLACE IN THE SYSTEM</span>
<span class="plate-rule"></span>
</figcaption>
</figure>
<div class="part-break" id="part-ii">
<div class="part-label">Part II</div>
<h2>The Place in the AZ System</h2>
</div>
<h2 id="s5">§5. Inside Steps 7 and 8</h2>
<p class="has-dropcap">In the Nine Steps, Alpha and Beta live inside Step 7 (build the minimum lovable thing) and extend into Step 8 (scale what works). They are not new steps. They are the rigor inside those two.</p>
<p>What makes Step 7 real is the Alpha. What makes Step 8 real is the Beta doubling ladder. Without this machinery, Step 7 becomes “we shipped something” and Step 8 becomes “we spent a lot on marketing.” Both of those outcomes kill companies.</p>
<h2 id="s6">§6. Mapping to the Green Light Framework</h2>
<p>The AZ book's Green Light Framework defines three stages of a bet's life: <strong>Hook</strong>, <strong>Legs</strong>, <strong>Flywheel</strong>.</p>
<ul>
<li><strong>Alpha = Hook validation.</strong> Does it grab? Does a stranger who touches the product get it, use it, come back the next day?</li>
<li><strong>Private Beta = Legs validation.</strong> Does it hold? Do weekly cohorts retain through D7, D14, D30 — and does the curve start to smile as the habit forms?</li>
<li><strong>Public Beta = Flywheel validation.</strong> Does it pull the next user in by itself? Is word-of-mouth carrying new users into the product faster than we push them in? Does the K-factor cross the threshold where external push becomes optional?</li>
</ul>
<p>Preserve the vocabulary. Alpha is Hooks. Private Beta is Legs. Public Beta is Flywheel. GA is the franchise.</p>
<h2 id="s7">§7. Tier implications — do not open Alpha without tier alignment</h2>
<p>The AZ book divides the portfolio into SER (Search), BBP (Big Bold Play), and EBU (Existing Business Unit). Each tier has different risk tolerance, different investment size, different time horizon.</p>
<ul>
<li><strong>Alpha sits in late-SER / early-BBP.</strong> It is the moment a search candidate either becomes a real bet or returns to the idea pool. The capital commitment steps up: you are no longer merely exploring, you are reserving a slot in the portfolio for this thing to prove itself.</li>
<li><strong>Private Beta is a BBP phase.</strong> The bet is now real. The company is betting time, headcount, roadmap position, and opportunity cost on this specific hypothesis.</li>
<li><strong>Public Beta transitions BBP → EBU candidacy.</strong> If it graduates, it becomes a franchise. If not, it becomes a shut-down decision.</li>