-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1156 lines (1019 loc) · 49.4 KB
/
Copy pathindex.html
File metadata and controls
1156 lines (1019 loc) · 49.4 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-theme="auto">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>0TA - Zero Token Architecture</title>
<meta name="description" content="Zero Token Architecture (0TA) is a revolutionary, carbon-based processing framework. Stop prompting. Start thinking.">
<meta name="author" content="The 0TA Initiative">
<meta name="theme-color" content="#0a0a0a" id="meta-theme-color">
<meta name="color-scheme" content="dark light">
<link rel="canonical" href="https://wraas.github.io/0ta/">
<!-- Favicon -->
<link rel="icon" href="favicon.svg" type="image/svg+xml">
<link rel="icon" href="favicon.ico" sizes="48x48 32x32 16x16">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:title" content="0TA - Zero Token Architecture">
<meta property="og:description" content="Zero tokens. Infinite thoughts. A revolutionary, carbon-based processing framework that runs on wetware.">
<meta property="og:url" content="https://wraas.github.io/0ta/">
<meta property="og:site_name" content="0TA">
<meta property="og:locale" content="en_US">
<meta property="og:image" content="https://wraas.github.io/0ta/og-image.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="0TA - Zero Token Architecture: Stop prompting. Start thinking.">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="0TA - Zero Token Architecture">
<meta name="twitter:description" content="Zero tokens. Infinite thoughts. A revolutionary, carbon-based processing framework that runs on wetware.">
<meta name="twitter:image" content="https://wraas.github.io/0ta/og-image.png">
<meta name="twitter:image:alt" content="0TA - Zero Token Architecture: Stop prompting. Start thinking.">
<!-- GoatCounter -->
<script data-goatcounter="https://wraas.click/0ta" async src="//gc.zgo.at/count.js"></script>
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "0TA - Zero Token Architecture",
"url": "https://wraas.github.io/0ta/",
"description": "Zero Token Architecture (0TA) is a revolutionary, carbon-based processing framework. Stop prompting. Start thinking."
}
</script>
<style>
/* ========================================
DESIGN TOKENS
======================================== */
/* Dark theme (default) */
:root {
--bg: #0a0a0a;
--bg-elevated: #141414;
--bg-inset: #050505;
--border: #2a2a2a;
--border-strong:#3a3a3a;
--text: #e0e0e0;
--text-strong: #ffffff;
--muted: #888888;
--accent: #00e07a;
--accent-soft: #00cc6a;
--accent-bg: rgba(0, 224, 122, 0.08);
--accent-glow: rgba(0, 224, 122, 0.3);
--danger: #ff5555;
--danger-bg: rgba(255, 85, 85, 0.06);
--warn: #ffaa00;
--overlay: rgba(0, 0, 0, 0.8);
--shadow: rgba(0, 0, 0, 0.4);
--theme-color: #0a0a0a;
}
/* Light theme */
[data-theme="light"] {
--bg: #f5f5f0;
--bg-elevated: #ffffff;
--bg-inset: #eaeae5;
--border: #d0d0c8;
--border-strong:#b0b0a8;
--text: #1a1a1a;
--text-strong: #000000;
--muted: #666666;
--accent: #007a3d;
--accent-soft: #009950;
--accent-bg: rgba(0, 122, 61, 0.06);
--accent-glow: rgba(0, 122, 61, 0.15);
--danger: #cc3333;
--danger-bg: rgba(204, 51, 51, 0.06);
--warn: #b37700;
--overlay: rgba(0, 0, 0, 0.5);
--shadow: rgba(0, 0, 0, 0.1);
--theme-color: #f5f5f0;
}
/* Auto: follow system preference */
@media (prefers-color-scheme: light) {
[data-theme="auto"] {
--bg: #f5f5f0;
--bg-elevated: #ffffff;
--bg-inset: #eaeae5;
--border: #d0d0c8;
--border-strong:#b0b0a8;
--text: #1a1a1a;
--text-strong: #000000;
--muted: #666666;
--accent: #007a3d;
--accent-soft: #009950;
--accent-bg: rgba(0, 122, 61, 0.06);
--accent-glow: rgba(0, 122, 61, 0.15);
--danger: #cc3333;
--danger-bg: rgba(204, 51, 51, 0.06);
--warn: #b37700;
--overlay: rgba(0, 0, 0, 0.5);
--shadow: rgba(0, 0, 0, 0.1);
--theme-color: #f5f5f0;
}
}
/* ========================================
RESET & BASE
======================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
transition-duration: 0.01ms !important;
}
}
body {
font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
background: var(--bg);
color: var(--text);
line-height: 1.7;
overflow-x: hidden;
transition: background 0.3s, color 0.3s;
}
:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
}
/* ========================================
SKIP LINK
======================================== */
.skip-link {
position: absolute;
top: -100%;
left: 1rem;
background: var(--accent);
color: var(--bg);
padding: 0.5rem 1rem;
font-family: inherit;
font-weight: 700;
z-index: 200;
text-decoration: none;
}
.skip-link:focus { top: 1rem; }
/* ========================================
LAYOUT
======================================== */
.container {
max-width: 800px;
margin: 0 auto;
padding: 2rem 1.5rem;
}
/* ========================================
THEME TOGGLE
======================================== */
.theme-toggle {
position: fixed;
top: 1rem;
right: 1rem;
z-index: 60;
display: flex;
align-items: center;
gap: 0;
background: var(--bg-elevated);
border: 1px solid var(--border);
border-radius: 2px;
overflow: hidden;
}
.theme-toggle button {
background: transparent;
border: none;
color: var(--muted);
font-family: inherit;
font-size: 0.7rem;
font-weight: 600;
padding: 0.35rem 0.6rem;
cursor: pointer;
transition: background 0.2s, color 0.2s;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.theme-toggle button:hover {
color: var(--text);
}
.theme-toggle button[aria-pressed="true"] {
background: var(--accent);
color: var(--bg);
}
.theme-toggle button + button {
border-left: 1px solid var(--border);
}
/* ========================================
HEADER
======================================== */
header {
text-align: center;
padding: 4rem 0 3rem;
border-bottom: 1px solid var(--border);
}
.logo {
font-size: 5rem;
font-weight: 900;
letter-spacing: -0.05em;
color: var(--accent);
text-shadow: 0 0 40px var(--accent-glow);
margin-bottom: 0.5rem;
}
.tagline {
font-size: 1.1rem;
color: var(--muted);
font-style: italic;
}
.tagline strong { color: var(--accent); }
/* ========================================
STICKY NAV
======================================== */
.sticky-nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 50;
background: var(--bg);
border-bottom: 1px solid var(--border);
padding: 0.5rem 1.5rem;
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
transform: translateY(-100%);
transition: transform 0.3s ease, background 0.3s;
}
.sticky-nav.visible { transform: translateY(0); }
.sticky-nav .sticky-title {
font-size: 1.1rem;
font-weight: 900;
color: var(--accent);
letter-spacing: -0.03em;
}
.sticky-nav .sticky-subtitle {
font-size: 0.8rem;
color: var(--text);
text-transform: uppercase;
letter-spacing: 0.05em;
}
.sticky-nav .sticky-tagline {
font-size: 0.75rem;
color: var(--muted);
font-style: italic;
}
/* ========================================
CRISIS BANNER
======================================== */
.crisis {
margin: 3rem 0;
padding: 1.5rem;
border: 1px solid var(--danger);
border-left: 4px solid var(--danger);
background: var(--danger-bg);
}
.crisis h2 {
color: var(--danger);
font-size: 1.3rem;
margin-bottom: 1rem;
}
.crisis .error-msg {
display: inline-block;
background: var(--bg-elevated);
border: 1px solid var(--border);
padding: 0.4rem 0.8rem;
color: var(--warn);
margin: 0.5rem 0;
}
/* ========================================
SECTIONS
======================================== */
section {
margin: 3rem 0;
padding-top: 2rem;
border-top: 1px solid var(--border);
}
h2 {
font-size: 1.3rem;
color: var(--accent);
margin-bottom: 1.5rem;
text-transform: uppercase;
letter-spacing: 0.1em;
}
h3 {
font-size: 1rem;
color: var(--text);
margin: 1.5rem 0 0.5rem;
}
p { margin-bottom: 1rem; color: var(--muted); }
strong { color: var(--text); }
/* ========================================
SPECS (Definition List)
======================================== */
.specs {
display: grid;
grid-template-columns: auto 1fr;
gap: 0;
}
.specs dt, .specs dd {
padding: 0.5rem 0;
border-bottom: 1px solid var(--border);
}
.specs dt {
color: var(--accent-soft);
font-weight: 600;
padding-right: 2rem;
}
.specs dd { color: var(--muted); }
.specs dt:last-of-type,
.specs dd:last-of-type { border-bottom: none; }
/* ========================================
BENCHMARK TABLE
======================================== */
.table-wrapper {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
margin: 1rem 0;
}
.benchmark {
width: 100%;
border-collapse: collapse;
font-size: 0.85rem;
min-width: 480px;
}
.benchmark caption {
text-align: left;
font-size: 0.8rem;
color: var(--muted);
padding-bottom: 0.5rem;
}
.benchmark th {
text-align: left;
padding: 0.75rem;
border-bottom: 2px solid var(--accent);
color: var(--accent);
font-weight: 600;
}
.benchmark td {
padding: 0.75rem;
border-bottom: 1px solid var(--border);
color: var(--muted);
}
.benchmark th[scope="row"] {
color: var(--text);
font-weight: 600;
border-bottom: 1px solid var(--border);
}
.benchmark tr:hover td,
.benchmark tr:hover th[scope="row"] {
background: var(--accent-bg);
}
/* ========================================
WORKFLOW STEPS
======================================== */
.step {
margin: 1.5rem 0;
padding: 1rem 1.5rem;
border-left: 2px solid var(--accent);
background: var(--bg-elevated);
display: flex;
gap: 1rem;
align-items: flex-start;
}
.step-content {
flex: 1;
min-width: 0;
}
.step h3 {
color: var(--accent);
font-weight: 700;
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.1em;
margin: 0 0 0.5rem;
}
.step p { margin-bottom: 0; }
/* ========================================
REVIEWS
======================================== */
.reviews blockquote {
margin: 1.5rem 0;
padding: 1rem 1.5rem;
background: var(--bg-elevated);
border: 1px solid var(--border);
font-style: italic;
color: var(--muted);
}
.reviews blockquote footer {
margin-top: 0.75rem;
font-style: normal;
color: var(--accent-soft);
font-size: 0.85rem;
padding: 0;
border: none;
text-align: left;
}
/* ========================================
PRICING
======================================== */
.pricing-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
margin: 1.5rem 0;
}
.tier {
padding: 1.5rem;
border: 1px solid var(--border);
background: var(--bg-elevated);
}
.tier h3 {
margin-top: 0;
color: var(--accent);
}
.tier .price {
font-size: 2rem;
font-weight: 900;
color: var(--text);
margin: 0.5rem 0;
}
.tier .includes {
font-size: 0.85rem;
color: var(--muted);
margin-bottom: 1rem;
}
.tier .btn {
display: inline-block;
padding: 0.5rem 1.5rem;
border: 1px solid var(--accent);
color: var(--accent);
text-decoration: none;
font-family: inherit;
font-size: 0.85rem;
font-weight: 600;
cursor: pointer;
transition: background 0.2s, color 0.2s;
background: transparent;
}
.tier .btn:hover {
background: var(--accent);
color: var(--bg);
}
/* ========================================
FOOTER
======================================== */
body > .container > footer {
margin-top: 4rem;
padding: 2rem 0;
border-top: 1px solid var(--border);
text-align: center;
}
body > .container > footer .slogan {
font-size: 1.1rem;
color: var(--text);
font-weight: 700;
margin-bottom: 0.5rem;
}
body > .container > footer .sub {
color: var(--accent-soft);
font-size: 0.9rem;
margin-bottom: 1.5rem;
}
body > .container > footer .sponsor {
font-size: 0.8rem;
color: var(--muted);
margin-bottom: 1rem;
}
body > .container > footer .sponsor a {
color: var(--accent);
text-decoration: none;
font-weight: 600;
}
body > .container > footer .sponsor a:hover {
text-decoration: underline;
}
body > .container > footer .legal {
font-size: 0.75rem;
color: var(--muted);
font-style: italic;
}
/* ========================================
MODAL
======================================== */
.modal-overlay {
display: none;
position: fixed;
inset: 0;
background: var(--overlay);
z-index: 100;
align-items: center;
justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
background: var(--bg-elevated);
border: 1px solid var(--accent);
padding: 2rem;
max-width: 420px;
width: 90%;
text-align: center;
box-shadow: 0 0 40px var(--accent-glow);
}
.modal p {
color: var(--text);
font-size: 1rem;
margin-bottom: 1.5rem;
}
.modal .btn-close {
display: inline-block;
padding: 0.5rem 1.5rem;
border: 1px solid var(--accent);
color: var(--accent);
background: transparent;
font-family: inherit;
font-size: 0.85rem;
font-weight: 600;
cursor: pointer;
transition: background 0.2s, color 0.2s;
}
.modal .btn-close:hover {
background: var(--accent);
color: var(--bg);
}
/* ========================================
ILLUSTRATIONS
======================================== */
.illustration {
display: flex;
justify-content: center;
margin: 2rem 0;
}
.illustration svg {
width: 100%;
max-width: 400px;
height: auto;
}
.illustration-sm svg { max-width: 80px; }
.crisis .illustration svg { max-width: 500px; }
.step-icon {
flex-shrink: 0;
}
.step-icon svg { width: 48px; height: 48px; }
.tier-icon {
display: flex;
justify-content: center;
margin-bottom: 1rem;
}
.tier-icon svg { width: 64px; height: 64px; }
/* SVG theming: use CSS variables */
.svg-accent { fill: var(--accent); }
.svg-accent-soft { fill: var(--accent-soft); }
.svg-muted { fill: var(--muted); }
.svg-danger { fill: var(--danger); }
.svg-warn { fill: var(--warn); }
.svg-bg { fill: var(--bg); }
.svg-surface { fill: var(--bg-elevated); }
.svg-inset { fill: var(--bg-inset); }
.svg-border { fill: var(--border); }
.svg-s-accent { stroke: var(--accent); }
.svg-s-accent-soft { stroke: var(--accent-soft); }
.svg-s-muted { stroke: var(--muted); }
.svg-s-danger { stroke: var(--danger); }
.svg-s-border { stroke: var(--border); }
.svg-s-border-strong { stroke: var(--border-strong); }
/* ========================================
CURSOR BLINK
======================================== */
.cursor::after {
content: '_';
animation: blink 1s step-end infinite;
color: var(--accent);
}
@keyframes blink { 50% { opacity: 0; } }
/* ========================================
RESPONSIVE
======================================== */
@media (max-width: 600px) {
.pricing-grid { grid-template-columns: 1fr; }
.logo { font-size: 3.5rem; }
header { padding: 2.5rem 0 2rem; }
.sticky-nav { padding: 0.4rem 1rem; }
.sticky-nav .sticky-title { font-size: 0.95rem; }
.sticky-nav .sticky-subtitle { display: none; }
.sticky-nav .sticky-tagline { display: none; }
.theme-toggle { top: 0.5rem; right: 0.5rem; }
.theme-toggle button { font-size: 0.6rem; padding: 0.25rem 0.45rem; }
.specs { grid-template-columns: 1fr; }
.specs dt { padding-bottom: 0; border-bottom: none; }
.specs dd { padding-top: 0; padding-bottom: 0.75rem; }
}
@media (max-width: 400px) {
.logo { font-size: 2.5rem; }
.container { padding: 1rem; }
.tier { padding: 1rem; }
.tier .price { font-size: 1.5rem; }
}
</style>
</head>
<body>
<a href="#main" class="skip-link">Skip to content</a>
<!-- Theme toggle -->
<div class="theme-toggle" role="radiogroup" aria-label="Color theme">
<button type="button" role="radio" aria-pressed="false" data-theme-value="light" aria-label="Light theme">Light</button>
<button type="button" role="radio" aria-pressed="true" data-theme-value="auto" aria-label="Auto theme">Auto</button>
<button type="button" role="radio" aria-pressed="false" data-theme-value="dark" aria-label="Dark theme">Dark</button>
</div>
<nav class="sticky-nav" id="sticky-nav" aria-label="Site">
<span class="sticky-title">0TA</span>
<span class="sticky-subtitle">Zero Token Architecture</span>
<span class="sticky-tagline">Zero tokens. Infinite thoughts.</span>
</nav>
<div class="container">
<header>
<div class="illustration" aria-hidden="true">
<svg viewBox="0 0 200 160" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M60 110 C20 110 10 80 20 60 C10 40 20 20 45 20 C50 10 70 5 85 15 C95 5 115 5 125 15 C140 5 165 10 170 30 C185 35 190 55 180 70 C190 90 175 110 140 110" class="svg-s-accent" stroke-width="2" fill="none" opacity="0.6"/>
<circle cx="70" cy="55" r="4" class="svg-accent" opacity="0.8"/>
<circle cx="100" cy="40" r="4" class="svg-accent" opacity="0.8"/>
<circle cx="130" cy="55" r="4" class="svg-accent" opacity="0.8"/>
<circle cx="85" cy="80" r="4" class="svg-accent" opacity="0.8"/>
<circle cx="115" cy="80" r="4" class="svg-accent" opacity="0.8"/>
<circle cx="100" cy="65" r="5" class="svg-accent"/>
<line x1="70" y1="55" x2="100" y2="65" class="svg-s-accent" stroke-width="1" opacity="0.4"/>
<line x1="100" y1="40" x2="100" y2="65" class="svg-s-accent" stroke-width="1" opacity="0.4"/>
<line x1="130" y1="55" x2="100" y2="65" class="svg-s-accent" stroke-width="1" opacity="0.4"/>
<line x1="85" y1="80" x2="100" y2="65" class="svg-s-accent" stroke-width="1" opacity="0.4"/>
<line x1="115" y1="80" x2="100" y2="65" class="svg-s-accent" stroke-width="1" opacity="0.4"/>
<path d="M40 130 L60 130 L65 120 L70 140 L75 125 L80 135 L85 130 L160 130" class="svg-s-accent" stroke-width="1.5" opacity="0.5"/>
<circle cx="55" cy="35" r="1.5" class="svg-accent" opacity="0.3"/>
<circle cx="150" cy="40" r="1.5" class="svg-accent" opacity="0.3"/>
<circle cx="45" cy="75" r="1.5" class="svg-accent" opacity="0.3"/>
<circle cx="160" cy="85" r="1.5" class="svg-accent" opacity="0.3"/>
</svg>
</div>
<p class="logo" aria-hidden="true">0TA</p>
<h1 class="tagline">ZERO TOKEN ARCHITECTURE</h1>
<p class="tagline"><strong>Zero tokens. Infinite thoughts.</strong></p>
</header>
<main id="main">
<div class="crisis" role="alert">
<h2>// The Crisis</h2>
<p>You see the message. Your heart sinks.</p>
<p class="error-msg" role="status">"Usage limit reached. Try again in 4 hours."</p>
<p>The "Coding Agent" has bailed. The "Assistant" is on strike. You are standing on the edge of the productivity abyss with zero credits and a deadline. You've spent so much time "prompting" that you've forgotten how to actually <strong>think</strong>. ...you think.</p>
<div class="illustration" aria-hidden="true">
<svg viewBox="0 0 500 140" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="20" y="10" width="460" height="120" rx="6" class="svg-s-border-strong svg-inset" stroke-width="1.5"/>
<rect x="20" y="10" width="460" height="28" rx="6" class="svg-border"/>
<rect x="20" y="30" width="460" height="8" class="svg-border"/>
<circle cx="40" cy="24" r="5" class="svg-danger"/>
<circle cx="58" cy="24" r="5" class="svg-warn"/>
<circle cx="76" cy="24" r="5" class="svg-accent" opacity="0.3"/>
<text x="40" y="60" font-family="monospace" font-size="13" class="svg-muted">$ coding-agent --help</text>
<text x="40" y="80" font-family="monospace" font-size="13" class="svg-danger">ERROR 429: Usage limit reached</text>
<text x="40" y="100" font-family="monospace" font-size="13" class="svg-muted">$ assistant --rescue</text>
<text x="40" y="120" font-family="monospace" font-size="13" class="svg-danger">ERROR 402: Payment required</text>
<rect x="268" y="110" width="8" height="14" class="svg-accent" opacity="0.7">
<animate attributeName="opacity" values="0.7;0;0.7" dur="1.2s" repeatCount="indefinite"/>
</rect>
</svg>
</div>
</div>
<section aria-labelledby="solution-heading">
<h2 id="solution-heading">// The Solution: 0TA</h2>
<p><strong>Zero Token Architecture (0TA)</strong> is a revolutionary, carbon-based processing framework that doesn't require a credit card, a data center, or a high-speed internet connection.</p>
<p>It runs on <strong>Wetware</strong>: a 3-pound biological supercomputer located directly behind your eyeballs.</p>
<div class="illustration" aria-hidden="true">
<svg viewBox="0 0 400 200" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="150" y="50" width="100" height="100" rx="4" class="svg-s-accent svg-surface" stroke-width="2"/>
<text x="200" y="95" text-anchor="middle" font-family="monospace" font-size="14" font-weight="bold" class="svg-accent">0TA</text>
<text x="200" y="112" text-anchor="middle" font-family="monospace" font-size="8" class="svg-muted">WETWARE v1.0</text>
<!-- Pins top -->
<line x1="170" y1="50" x2="170" y2="30" class="svg-s-accent" stroke-width="1.5" opacity="0.5"/>
<line x1="190" y1="50" x2="190" y2="30" class="svg-s-accent" stroke-width="1.5" opacity="0.5"/>
<line x1="210" y1="50" x2="210" y2="30" class="svg-s-accent" stroke-width="1.5" opacity="0.5"/>
<line x1="230" y1="50" x2="230" y2="30" class="svg-s-accent" stroke-width="1.5" opacity="0.5"/>
<!-- Pins bottom -->
<line x1="170" y1="150" x2="170" y2="170" class="svg-s-accent" stroke-width="1.5" opacity="0.5"/>
<line x1="190" y1="150" x2="190" y2="170" class="svg-s-accent" stroke-width="1.5" opacity="0.5"/>
<line x1="210" y1="150" x2="210" y2="170" class="svg-s-accent" stroke-width="1.5" opacity="0.5"/>
<line x1="230" y1="150" x2="230" y2="170" class="svg-s-accent" stroke-width="1.5" opacity="0.5"/>
<!-- Pins left -->
<line x1="150" y1="70" x2="130" y2="70" class="svg-s-accent" stroke-width="1.5" opacity="0.5"/>
<line x1="150" y1="90" x2="130" y2="90" class="svg-s-accent" stroke-width="1.5" opacity="0.5"/>
<line x1="150" y1="110" x2="130" y2="110" class="svg-s-accent" stroke-width="1.5" opacity="0.5"/>
<line x1="150" y1="130" x2="130" y2="130" class="svg-s-accent" stroke-width="1.5" opacity="0.5"/>
<!-- Pins right -->
<line x1="250" y1="70" x2="270" y2="70" class="svg-s-accent" stroke-width="1.5" opacity="0.5"/>
<line x1="250" y1="90" x2="270" y2="90" class="svg-s-accent" stroke-width="1.5" opacity="0.5"/>
<line x1="250" y1="110" x2="270" y2="110" class="svg-s-accent" stroke-width="1.5" opacity="0.5"/>
<line x1="250" y1="130" x2="270" y2="130" class="svg-s-accent" stroke-width="1.5" opacity="0.5"/>
<!-- Traces -->
<line x1="130" y1="70" x2="70" y2="40" class="svg-s-accent" stroke-width="1" opacity="0.3"/>
<line x1="130" y1="130" x2="50" y2="150" class="svg-s-accent" stroke-width="1" opacity="0.3"/>
<line x1="270" y1="70" x2="340" y2="35" class="svg-s-accent" stroke-width="1" opacity="0.3"/>
<line x1="270" y1="130" x2="350" y2="160" class="svg-s-accent" stroke-width="1" opacity="0.3"/>
<!-- Nodes -->
<circle cx="70" cy="40" r="6" class="svg-s-accent svg-surface" stroke-width="1"/>
<circle cx="50" cy="150" r="6" class="svg-s-accent svg-surface" stroke-width="1"/>
<circle cx="340" cy="35" r="6" class="svg-s-accent svg-surface" stroke-width="1"/>
<circle cx="350" cy="160" r="6" class="svg-s-accent svg-surface" stroke-width="1"/>
<!-- Labels -->
<text x="70" y="25" text-anchor="middle" font-family="monospace" font-size="8" class="svg-muted">MEMORY</text>
<text x="50" y="172" text-anchor="middle" font-family="monospace" font-size="8" class="svg-muted">COFFEE</text>
<text x="340" y="20" text-anchor="middle" font-family="monospace" font-size="8" class="svg-muted">FOCUS</text>
<text x="350" y="182" text-anchor="middle" font-family="monospace" font-size="8" class="svg-muted">SLEEP</text>
<!-- Pulse dots -->
<circle r="3" class="svg-accent" opacity="0.6">
<animateMotion dur="2s" repeatCount="indefinite" path="M130,70 L70,40"/>
</circle>
<circle r="3" class="svg-accent" opacity="0.6">
<animateMotion dur="2.5s" repeatCount="indefinite" path="M270,130 L350,160"/>
</circle>
</svg>
</div>
<h3 class="cursor">Technical Specs</h3>
<dl class="specs">
<dt>Model</dt>
<dd>Neural Network (Organic)</dd>
<dt>Context Window</dt>
<dd>20+ years of life experience</dd>
<dt>Training Data</dt>
<dd>Every book, mistake, and coffee</dd>
<dt>Uptime</dt>
<dd>100% (Subject to sleep cycles)</dd>
</dl>
</section>
<section aria-labelledby="benchmarks-heading">
<h2 id="benchmarks-heading">// Benchmarks: LLM vs. 0TA</h2>
<div class="table-wrapper" role="region" aria-labelledby="benchmarks-heading" tabindex="0">
<table class="benchmark">
<caption>Comparison of LLM and 0TA features</caption>
<thead>
<tr>
<th scope="col">Feature</th>
<th scope="col">LLM (The "Old" Way)</th>
<th scope="col">0TA (The Human Way)</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Cost</th>
<td>$20/month (Plus your soul)</td>
<td>One sandwich</td>
</tr>
<tr>
<th scope="row">Token Quota</th>
<td>Unlimited (Atrophy included free)</td>
<td>Bound by curiosity</td>
</tr>
<tr>
<th scope="row">Latency</th>
<td>500ms + Network Jitter</td>
<td>Instant "Aha!" moments</td>
</tr>
<tr>
<th scope="row">Hallucinations</th>
<td>Confidently wrong facts</td>
<td>Creative "Visionary" genius</td>
</tr>
<tr>
<th scope="row">Power Source</th>
<td>Coal & Nuclear Grid</td>
<td>A double-shot espresso</td>
</tr>
<tr>
<th scope="row">Privacy</th>
<td>Your data is their data</td>
<td>End-to-end skull encryption</td>
</tr>
</tbody>
</table>
</div>
</section>
<section aria-labelledby="workflow-heading">
<h2 id="workflow-heading">// The 0TA Workflow</h2>
<div class="step">
<div class="step-icon" aria-hidden="true">
<svg viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="4" y="8" width="28" height="20" rx="2" class="svg-s-accent" stroke-width="1.5" fill="none" opacity="0.4"/>
<rect x="10" y="14" width="28" height="20" rx="2" class="svg-s-accent" stroke-width="1.5" fill="none" opacity="0.6"/>
<rect x="16" y="20" width="28" height="20" rx="2" class="svg-s-accent svg-surface" stroke-width="1.5"/>
<line x1="34" y1="26" x2="26" y2="34" class="svg-s-danger" stroke-width="2"/>
<line x1="26" y1="26" x2="34" y2="34" class="svg-s-danger" stroke-width="2"/>
</svg>
</div>
<div class="step-content">
<h3>Step 1 — Clear the Cache</h3>
<p>Close 42 browser tabs. Put your phone in a drawer. If the "User" cannot focus, the "CPU" cannot process.</p>
</div>
</div>
<div class="step">
<div class="step-icon" aria-hidden="true">
<svg viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="8" y="6" width="24" height="36" rx="2" class="svg-s-accent svg-surface" stroke-width="1.5"/>
<line x1="14" y1="14" x2="26" y2="14" class="svg-s-accent" stroke-width="1" opacity="0.4"/>
<line x1="14" y1="20" x2="26" y2="20" class="svg-s-accent" stroke-width="1" opacity="0.4"/>
<line x1="14" y1="26" x2="22" y2="26" class="svg-s-accent" stroke-width="1" opacity="0.4"/>
<line x1="36" y1="8" x2="28" y2="36" class="svg-s-accent" stroke-width="1.5"/>
<polygon points="28,36 26,40 30,38" class="svg-accent"/>
</svg>
</div>
<div class="step-content">
<h3>Step 2 — Analog Input</h3>
<p>Switch to the <strong>0TA Physical Interface</strong> (a notebook and a pen). This hardware has zero latency and infinite battery life.</p>
</div>
</div>
<div class="step">
<div class="step-icon" aria-hidden="true">
<svg viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14 30 C6 28 4 20 8 14 C6 8 12 4 20 6 C22 2 30 2 32 6 C38 4 42 8 40 14 C44 18 42 28 34 30" class="svg-s-accent" stroke-width="1.5" fill="none"/>
<line x1="24" y1="30" x2="24" y2="38" class="svg-s-accent" stroke-width="1.5"/>
<circle cx="24" cy="18" r="6" class="svg-accent" opacity="0.15"/>
<circle cx="24" cy="18" r="3" class="svg-accent" opacity="0.4"/>
<line x1="24" y1="8" x2="24" y2="5" class="svg-s-accent" stroke-width="1" opacity="0.5"/>
<line x1="32" y1="14" x2="35" y2="12" class="svg-s-accent" stroke-width="1" opacity="0.5"/>
<line x1="16" y1="14" x2="13" y2="12" class="svg-s-accent" stroke-width="1" opacity="0.5"/>
<line x1="20" y1="38" x2="28" y2="38" class="svg-s-accent" stroke-width="1.5"/>
<line x1="20" y1="42" x2="28" y2="42" class="svg-s-accent" stroke-width="1.5"/>
</svg>
</div>
<div class="step-content">
<h3>Step 3 — Deep Reasoning</h3>
<p>Engage your pre-frontal cortex. It's a high-bandwidth, natively multimodal processor. It can solve bugs while you're in the shower — <em>try doing that with a Python script.</em></p>
</div>
</div>
</section>
<section class="reviews" aria-labelledby="reviews-heading">
<h2 id="reviews-heading">// User Reviews</h2>
<div class="illustration" aria-hidden="true">
<svg viewBox="0 0 400 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(100,20)">
<polygon points="20,0 26,14 40,14 28,22 32,38 20,28 8,38 12,22 0,14 14,14" class="svg-accent" opacity="0.8"/>
</g>
<g transform="translate(140,20)">
<polygon points="20,0 26,14 40,14 28,22 32,38 20,28 8,38 12,22 0,14 14,14" class="svg-accent" opacity="0.8"/>
</g>
<g transform="translate(180,20)">
<polygon points="20,0 26,14 40,14 28,22 32,38 20,28 8,38 12,22 0,14 14,14" class="svg-accent" opacity="0.8"/>
</g>
<g transform="translate(220,20)">
<polygon points="20,0 26,14 40,14 28,22 32,38 20,28 8,38 12,22 0,14 14,14" class="svg-accent" opacity="0.8"/>
</g>
<g transform="translate(260,20)">
<polygon points="20,0 26,14 40,14 28,22 32,38 20,28 8,38 12,22 0,14 14,14" class="svg-accent" opacity="0.8"/>
</g>
<text x="200" y="85" text-anchor="middle" font-family="monospace" font-size="11" class="svg-muted">5/5 neurons fired</text>
</svg>
</div>
<blockquote>
<p>"I hit my token limit and was forced to use 0TA. I realized I didn't need a prompt to tell me how to write a loop. I felt like a god."</p>
<footer><cite>@Dev_Burnout99</cite></footer>
</blockquote>
<blockquote>
<p>"The 0TA 'Daydreaming' plugin is incredible. I stared at a wall for 20 minutes and solved a database architecture issue that ChatGPT couldn't figure out in ten tries."</p>
<footer><cite>@Token_Poor_Creator</cite></footer>
</blockquote>
</section>
<section aria-labelledby="pricing-heading">
<h2 id="pricing-heading">// Pricing Tiers</h2>
<div class="pricing-grid">
<div class="tier">
<div class="tier-icon" aria-hidden="true">
<svg viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="32" cy="28" r="16" class="svg-s-accent" stroke-width="1.5" fill="none"/>
<path d="M24 28 C24 22 28 18 32 18 C36 18 40 22 40 28" class="svg-s-accent" stroke-width="1" opacity="0.5"/>
<path d="M24 28 C24 34 28 38 32 38 C36 38 40 34 40 28" class="svg-s-accent" stroke-width="1" opacity="0.5"/>
<line x1="32" y1="18" x2="32" y2="38" class="svg-s-accent" stroke-width="1" opacity="0.3"/>
<path d="M16 50 C22 46 26 52 32 48 C38 44 42 50 48 46" class="svg-s-accent" stroke-width="1" opacity="0.4"/>
<path d="M18 56 C24 52 28 58 34 54 C40 50 44 56 50 52" class="svg-s-accent" stroke-width="1" opacity="0.25"/>
</svg>