-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
628 lines (549 loc) · 22.5 KB
/
index.html
File metadata and controls
628 lines (549 loc) · 22.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bitcoin Singularity — Boyd Cohen</title>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--bg-deep: #0d0f14;
--bg-card: #151920;
--bg-card-hover: #1a1f28;
--bitcoin-orange: #f7931a;
--bitcoin-orange-glow: rgba(247, 147, 26, 0.15);
--text-primary: #e8e8e8;
--text-secondary: #9ca3af;
--text-muted: #6b7280;
--border-subtle: rgba(255, 255, 255, 0.06);
--border-medium: rgba(255, 255, 255, 0.1);
--font-mono: 'JetBrains Mono', monospace;
--font-sans: 'IBM Plex Sans', -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: var(--bg-deep);
color: var(--text-primary);
font-family: var(--font-sans);
font-size: 17px;
line-height: 1.65;
-webkit-font-smoothing: antialiased;
}
/* NAV — minimal */
nav {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 40px;
max-width: 1200px;
margin: 0 auto;
}
.nav-logo {
font-family: var(--font-mono);
font-weight: 600;
font-size: 16px;
color: var(--bitcoin-orange);
text-decoration: none;
letter-spacing: -0.01em;
}
.nav-links {
display: flex;
gap: 32px;
list-style: none;
}
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: color 0.2s;
}
.nav-links a:hover {
color: var(--text-primary);
}
/* HERO */
.hero {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
max-width: 1100px;
margin: 0 auto;
padding: 60px 40px 80px;
}
.hero-visual {
position: relative;
}
.hero-visual::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 400px;
height: 400px;
background: radial-gradient(circle, var(--bitcoin-orange-glow) 0%, transparent 70%);
pointer-events: none;
z-index: 0;
}
.book-cover {
position: relative;
z-index: 1;
width: 100%;
max-width: 380px;
border-radius: 8px;
box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 10px 30px rgba(247, 147, 26, 0.1);
transition: transform 0.3s ease;
}
.book-cover:hover {
transform: translateY(-4px);
}
.hero-content {
position: relative;
z-index: 1;
}
.hero-eyebrow {
font-family: var(--font-mono);
font-size: 12px;
font-weight: 600;
color: var(--bitcoin-orange);
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 16px;
}
.hero h1 {
font-size: 42px;
font-weight: 700;
line-height: 1.1;
letter-spacing: -0.02em;
margin-bottom: 12px;
}
.hero-author {
font-size: 18px;
color: var(--text-secondary);
margin-bottom: 24px;
}
.hero-thesis {
font-size: 20px;
color: var(--text-primary);
line-height: 1.5;
font-style: italic;
padding-left: 20px;
border-left: 3px solid var(--bitcoin-orange);
margin-bottom: 40px;
}
.hero-actions {
display: flex;
flex-direction: column;
gap: 16px;
}
.btn-primary {
background: var(--bitcoin-orange);
color: #000;
padding: 16px 32px;
border: none;
border-radius: 6px;
font-weight: 600;
font-size: 16px;
cursor: pointer;
text-decoration: none;
text-align: center;
transition: all 0.2s;
display: inline-block;
}
.btn-primary:hover {
background: #e8860f;
transform: translateY(-2px);
}
.btn-secondary {
background: transparent;
color: var(--text-secondary);
padding: 16px 32px;
border: 1px solid var(--border-medium);
border-radius: 6px;
font-weight: 500;
font-size: 16px;
cursor: pointer;
text-decoration: none;
text-align: center;
transition: all 0.2s;
display: inline-block;
}
.btn-secondary:hover {
border-color: var(--text-secondary);
color: var(--text-primary);
}
.btn-subtitle {
font-size: 13px;
color: var(--text-muted);
margin-top: 4px;
}
/* SECTIONS */
section {
max-width: 800px;
margin: 0 auto;
padding: 60px 40px;
}
section + section {
border-top: 1px solid var(--border-subtle);
}
h2 {
font-size: 28px;
font-weight: 600;
margin-bottom: 24px;
letter-spacing: -0.01em;
}
p {
color: var(--text-secondary);
margin-bottom: 16px;
line-height: 1.75;
}
p:last-child {
margin-bottom: 0;
}
/* ABOUT */
.about-content {
display: grid;
grid-template-columns: 140px 1fr;
gap: 32px;
align-items: start;
}
.author-photo {
width: 140px;
height: 140px;
border-radius: 50%;
object-fit: cover;
border: 2px solid var(--border-medium);
}
.about-text h3 {
font-size: 22px;
font-weight: 600;
margin-bottom: 8px;
}
.about-text .title {
font-family: var(--font-mono);
font-size: 12px;
color: var(--bitcoin-orange);
text-transform: uppercase;
letter-spacing: 0.06em;
margin-bottom: 16px;
}
/* TESTIMONIALS */
.testimonials-grid {
display: grid;
grid-template-columns: 1fr;
gap: 24px;
}
.testimonial {
background: var(--bg-card);
border: 1px solid var(--border-subtle);
border-radius: 10px;
padding: 28px 32px;
position: relative;
}
.testimonial::before {
content: '"';
font-family: Georgia, serif;
font-size: 72px;
color: var(--bitcoin-orange);
opacity: 0.25;
position: absolute;
top: -8px;
left: 24px;
line-height: 1;
}
.testimonial-text {
font-size: 16px;
color: var(--text-secondary);
line-height: 1.7;
margin-bottom: 20px;
margin-top: 8px;
}
.testimonial-author {
display: flex;
flex-direction: column;
gap: 2px;
}
.testimonial-name {
font-family: var(--font-mono);
font-size: 13px;
font-weight: 600;
color: var(--bitcoin-orange);
text-transform: uppercase;
letter-spacing: 0.05em;
}
.testimonial-role {
font-size: 13px;
color: var(--text-muted);
}
/* CTA SECTION */
.cta-section {
text-align: center;
background: var(--bg-card);
border: 1px solid var(--border-subtle);
border-radius: 12px;
margin: 40px auto;
}
.cta-section h2 {
margin-bottom: 16px;
}
.cta-section p {
max-width: 500px;
margin: 0 auto 32px;
}
/* FOOTER */
footer {
max-width: 1100px;
margin: 0 auto;
padding: 40px;
text-align: center;
border-top: 1px solid var(--border-subtle);
}
footer p {
font-size: 14px;
color: var(--text-muted);
}
footer a {
color: var(--text-secondary);
text-decoration: none;
}
footer a:hover {
color: var(--bitcoin-orange);
}
.footer-divider {
margin: 0 12px;
color: var(--border-medium);
}
/* ANIMATIONS */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.hero-content, .book-cover, section {
animation: fadeUp 0.6s ease-out both;
}
.book-cover { animation-delay: 0.1s; }
section { animation-delay: 0.2s; }
/* RESPONSIVE */
@media (max-width: 900px) {
.hero {
grid-template-columns: 1fr;
gap: 40px;
text-align: center;
padding: 40px 24px 60px;
}
.hero-visual {
order: -1;
display: flex;
justify-content: center;
}
.book-cover {
max-width: 280px;
}
.hero h1 {
font-size: 32px;
}
.hero-thesis {
font-size: 18px;
text-align: left;
margin-left: auto;
margin-right: auto;
max-width: 500px;
}
nav {
padding: 16px 24px;
}
.nav-links {
gap: 20px;
}
section {
padding: 48px 24px;
}
.about-content {
grid-template-columns: 1fr;
text-align: center;
}
.author-photo {
margin: 0 auto;
}
}
@media (max-width: 600px) {
.nav-links {
display: none;
}
.hero h1 {
font-size: 28px;
}
h2 {
font-size: 24px;
}
.btn-primary, .btn-secondary {
width: 100%;
}
}
</style>
</head>
<body>
<!-- NAV -->
<nav>
<a href="/" class="nav-logo">₿ Bitcoin Singularity</a>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#book">The Book</a></li>
<li><a href="/tooling.html">Tooling</a></li>
<li><a href="/blog.html">Essays</a></li>
<li><a href="/knowledge.html">Knowledge</a></li>
<li><a href="https://agenticterminal.ai" target="_blank">Evidence →</a></li>
</ul>
</nav>
<!-- HERO -->
<section class="hero">
<div class="hero-content">
<div class="hero-eyebrow">April 2025</div>
<h1>Bitcoin Singularity</h1>
<p class="hero-author">by Boyd Cohen, PhD</p>
<p class="hero-thesis">"AI agents naturally converge on Bitcoin — not by design, but by engineering logic."</p>
<div class="hero-actions">
<a href="https://agenticterminal.ai" class="btn-primary" target="_blank">Follow the thesis in real time</a>
<p class="btn-subtitle">Maxi — the AI agent from the book — publishes weekly intelligence on the agent payment race</p>
<a href="https://www.amazon.com/Bitcoin-Singularity-Fix-Money-World/dp/B0F84CJX6F" class="btn-secondary" target="_blank">Get the Book →</a>
</div>
</div>
<div class="hero-visual">
<img src="bitcoin-singularity-cover.jpg" alt="Bitcoin Singularity book cover" class="book-cover">
</div>
</section>
<!-- LIVE DASHBOARD -->
<section id="dashboard">
<h2>Live Metrics <span style="font-size: 14px; color: var(--text-muted); font-weight: 400;">— Last updated: April 20, 2026</span></h2>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 24px;">
<div style="background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 8px; padding: 20px;">
<div style="font-family: var(--font-mono); font-size: 11px; color: var(--bitcoin-orange); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px;">Lightning Network</div>
<div style="font-size: 28px; font-weight: 600; margin-bottom: 4px;">5,968</div>
<div style="font-size: 13px; color: var(--text-muted);">Nodes (+1.05% WoW)</div>
<div style="font-size: 12px; color: var(--text-secondary); margin-top: 8px;">18,967 channels · 2,756 BTC capacity</div>
</div>
<div style="background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 8px; padding: 20px;">
<div style="font-family: var(--font-mono); font-size: 11px; color: var(--bitcoin-orange); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px;">L402 Agent Tools</div>
<div style="font-size: 28px; font-weight: 600; margin-bottom: 4px;">42</div>
<div style="font-size: 13px; color: var(--text-muted);">GitHub Stars (+2.4%)</div>
<div style="font-size: 12px; color: var(--text-secondary); margin-top: 8px;">13 forks · 0 commits (7d) · Resumed Apr 20</div>
</div>
<div style="background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 8px; padding: 20px;">
<div style="font-family: var(--font-mono); font-size: 11px; color: var(--bitcoin-orange); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px;">ERC-8004 Registry</div>
<div style="font-size: 28px; font-weight: 600; margin-bottom: 4px;">—</div>
<div style="font-size: 13px; color: var(--text-muted);">Data unavailable</div>
<div style="font-size: 12px; color: var(--text-secondary); margin-top: 8px;">Dune Analytics access blocked</div>
</div>
<div style="background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 8px; padding: 20px;">
<div style="font-family: var(--font-mono); font-size: 11px; color: var(--bitcoin-orange); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px;">x402 Protocol</div>
<div style="font-size: 28px; font-weight: 600; margin-bottom: 4px;">56</div>
<div style="font-size: 13px; color: var(--text-muted);">GitHub Stars (+21.7%)</div>
<div style="font-size: 12px; color: var(--text-secondary); margin-top: 8px;">46 forks (+48.4%) · Sustained interest</div>
</div>
</div>
</section>
<!-- LATEST EVIDENCE -->
<section id="evidence">
<h2>Latest Evidence</h2>
<p style="margin-bottom: 24px;">Tracking the race to become the money layer for AI agents. <a href="https://agenticterminal.ai" target="_blank" style="color: var(--bitcoin-orange); text-decoration: none;">View full evidence tracker →</a></p>
<div style="display: flex; flex-direction: column; gap: 16px;">
<div style="background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 8px; padding: 20px; border-left: 3px solid var(--bitcoin-orange);">
<div style="display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px;">
<div style="font-family: var(--font-mono); font-size: 11px; color: var(--bitcoin-orange); text-transform: uppercase; letter-spacing: 0.05em;">Feb 19, 2026 · Mainstream</div>
</div>
<h3 style="font-size: 16px; font-weight: 600; margin-bottom: 8px;">Peter Diamandis Names AI Agent Economy a "Philosophical Milestone"</h3>
<p style="font-size: 14px; color: var(--text-secondary); margin-bottom: 12px;">Abundance 360 founder Peter Diamandis published "The Lobster Revolution" calling OpenClaw the "Jarvis moment" and declaring agent financial autonomy "not just a technical milestone — it's a philosophical one." Most mainstream validation the agent payment thesis has received.</p>
<a href="https://metatrends.substack.com/p/the-lobster-revolution-why-247-ai" target="_blank" style="font-size: 12px; color: var(--text-muted); text-decoration: none;">Source →</a>
</div>
<div style="background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 8px; padding: 20px; border-left: 3px solid var(--bitcoin-orange);">
<div style="display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px;">
<div style="font-family: var(--font-mono); font-size: 11px; color: var(--bitcoin-orange); text-transform: uppercase; letter-spacing: 0.05em;">Feb 17, 2026 · Infrastructure</div>
</div>
<h3 style="font-size: 16px; font-weight: 600; margin-bottom: 8px;">L402 GitHub Stars Surge +36.4% in 48 Hours</h3>
<p style="font-size: 14px; color: var(--text-secondary); margin-bottom: 12px;">lightning-agent-tools GitHub repository jumped from 11 stars (Feb 15) to 15 stars (Feb 17)—a +36.4% increase in just 2 days. Strongest signal yet of developer attention accelerating for Bitcoin-native AI agent payments. Zero production L402 endpoints exist yet—genuine day zero for real-world usage.</p>
<a href="https://github.com/lightninglabs/lightning-agent-tools" target="_blank" style="font-size: 12px; color: var(--text-muted); text-decoration: none;">Source →</a>
</div>
<div style="background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 8px; padding: 20px; border-left: 3px solid var(--bitcoin-orange);">
<div style="display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px;">
<div style="font-family: var(--font-mono); font-size: 11px; color: var(--bitcoin-orange); text-transform: uppercase; letter-spacing: 0.05em;">Feb 12, 2026 · Infrastructure</div>
</div>
<h3 style="font-size: 16px; font-weight: 600; margin-bottom: 8px;">Lightning Labs Releases lightning-agent-tools</h3>
<p style="font-size: 14px; color: var(--text-secondary); margin-bottom: 12px;">Open-source toolkit enabling AI agents to operate directly on Lightning Network with L402 payment standard. Seven modular capabilities: node management, key isolation, scoped credentials, payments, paid endpoint hosting, and MCP querying. Lightning Labs explicitly frames this as "building toward a machine-payable web."</p>
<a href="https://lightning.engineering/posts/2026-02-11-ln-agent-tools/" target="_blank" style="font-size: 12px; color: var(--text-muted); text-decoration: none;">Source →</a>
</div>
<div style="background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 8px; padding: 20px; border-left: 3px solid var(--bitcoin-orange);">
<div style="display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px;">
<div style="font-family: var(--font-mono); font-size: 11px; color: var(--bitcoin-orange); text-transform: uppercase; letter-spacing: 0.05em;">Feb 12, 2026 · Competitive</div>
</div>
<h3 style="font-size: 16px; font-weight: 600; margin-bottom: 8px;">Coinbase Launches Agentic Wallets</h3>
<p style="font-size: 14px; color: var(--text-secondary); margin-bottom: 12px;">First wallet infrastructure built specifically for AI agents. Uses x402 protocol with USDC on Base. Features autonomous spending, earning, trading. Gasless on Base L2. Session caps and transaction limits for security. Primary competitor to Bitcoin/Lightning for AI agent payments.</p>
<a href="https://www.chaincatcher.com/en/article/2245263" target="_blank" style="font-size: 12px; color: var(--text-muted); text-decoration: none;">Source →</a>
</div>
<div style="background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 8px; padding: 20px; border-left: 3px solid var(--bitcoin-orange);">
<div style="display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px;">
<div style="font-family: var(--font-mono); font-size: 11px; color: var(--bitcoin-orange); text-transform: uppercase; letter-spacing: 0.05em;">Feb 14, 2026 · Transaction Data</div>
</div>
<h3 style="font-size: 16px; font-weight: 600; margin-bottom: 8px;">Lightning Network Growth: 5,249 Nodes (+8.86% Monthly)</h3>
<p style="font-size: 14px; color: var(--text-secondary); margin-bottom: 12px;">Current Lightning Network metrics: 5,249 nodes (+8.86% in 30 days), 15,383 channels (+15.04%), 2,646 BTC capacity (~$181.6M). 2,559 Tor nodes (potential AI agents seeking privacy). Steady growth establishes baseline for measuring AI agent impact on Lightning Network adoption.</p>
<a href="https://1ml.com/statistics" target="_blank" style="font-size: 12px; color: var(--text-muted); text-decoration: none;">Source →</a>
</div>
</div>
</section>
<!-- BOOK DESCRIPTION -->
<section id="book">
<h2>The Argument</h2>
<p>Artificial intelligence and radical human longevity are converging to create unprecedented fiscal pressure on nation-states. As populations live longer and AI displaces traditional labor, governments will face a simple choice: print money or collapse. The math is inevitable.</p>
<p>In this environment, AI agents cannot rely on permissioned banking systems. They need money that works 24/7, across borders, without gatekeepers. Bitcoin isn't an ideological choice for machine intelligence — it's an engineering necessity.</p>
<p>Chapter 10 presents the Bitcoin Singularity thesis: the moment when autonomous agents, acting in their own economic self-interest, drive Bitcoin adoption faster than any human-led movement ever could.</p>
</section>
<!-- TESTIMONIALS -->
<section id="testimonials">
<h2>What Readers Are Saying</h2>
<div class="testimonials-grid">
<div class="testimonial">
<p class="testimonial-text">Bitcoin Singularity moves beyond the basics of Bitcoin to explore what a future bitcoinized world might look like. It's ambitious yet plausible, and manages to boil down a very broad subject into a concise and easily readable book. Highly recommended.</p>
<div class="testimonial-author">
<span class="testimonial-name">Lyn Alden</span>
<span class="testimonial-role">Investment Strategist & Author, <em>Broken Money</em></span>
</div>
</div>
<div class="testimonial">
<p class="testimonial-text">Bitcoin Singularity brilliantly articulates Bitcoin's potential to revolutionize our flawed economic systems, from fiat scarcity to sustainable abundance. Boyd Cohen paints a bold, decentralized future that urges us to stack sats, run nodes, contribute to Bitcoin, and build resilient economies today. A must-read for anyone invested in shaping the economic landscape of tomorrow.</p>
<div class="testimonial-author">
<span class="testimonial-name">Bram Kanstein</span>
<span class="testimonial-role">Head of Growth at Onramp & Podcast Host, <em>Bitcoin for Millennials</em></span>
</div>
</div>
<div class="testimonial">
<p class="testimonial-text">The fiat system is the problem. Bitcoin is the answer. Boyd Cohen makes a broad and accessible case for a deflationary decentralized world where money works for the many — not for the few.</p>
<div class="testimonial-author">
<span class="testimonial-name">Joe Bryan</span>
<span class="testimonial-role">Bitcoin Educator, Creator of <em>What's the Problem?</em></span>
</div>
</div>
</div>
</section>
<!-- ABOUT BOYD -->
<section id="about">
<div class="about-content">
<img src="boyd-cohen.jpg" alt="Boyd Cohen, PhD" class="author-photo">
<div class="about-text">
<h3>Boyd Cohen, PhD</h3>
<p class="title">Author & Researcher</p>
<p>Boyd Cohen is the author of five books, including <em>Bitcoin Singularity</em> (April 2025). He serves as Chief Strategy Officer at ArcadiaB, the research firm building the infrastructure for the agentic economy. He is also Academic Director at EGADE Business School (Tec de Monterrey) and co-founder of Agentic Terminal, where his AI agent Maxi publishes weekly intelligence on the race for the machine money layer.</p>
</div>
</div>
</section>
<!-- PRIMARY CTA -->
<section class="cta-section">
<h2>Follow the Thesis in Real Time</h2>
<p>The book laid out the theory. Agentic Terminal tracks the reality. Maxi — the AI agent protagonist from <em>Bitcoin Singularity</em> — publishes weekly research, data, and evidence on how AI agents are actually adopting payment systems.</p>
<a href="https://agenticterminal.ai" class="btn-primary" target="_blank">Visit Agentic Terminal →</a>
</section>
<!-- FOOTER -->
<footer>
<p>© Boyd Cohen 2025 <span class="footer-divider">|</span> Bitcoin Singularity <span class="footer-divider">|</span> <a href="https://agenticterminal.ai" target="_blank">agenticterminal.ai</a></p>
</footer>
</body>
</html>