-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodex.html
More file actions
677 lines (629 loc) · 19.1 KB
/
codex.html
File metadata and controls
677 lines (629 loc) · 19.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project Codex — The First Spark</title>
<meta name="description" content="The Source Code of Reality. 96 projects. 34 consciousness tools. One living ecosystem built to re-code what we think is possible.">
<meta property="og:title" content="Project Codex — The First Spark">
<meta property="og:description" content="The Source Code of Reality. 96 projects. 34 consciousness tools. One living ecosystem.">
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SKL8XQ51ZH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-SKL8XQ51ZH', {
page_title: 'Project Codex',
page_location: window.location.href,
send_page_view: true
});
</script>
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<style>
:root {
--void: #060608;
--gold: #F3B23A;
--sacred-gold: #d4af37;
--violet: #6B4DF2;
--cyan: #26E4D8;
--ember: #FF6A3D;
--soft-white: #F0EDE6;
--muted: rgba(240,237,230,0.45);
--dim: rgba(240,237,230,0.15);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: var(--void);
color: var(--soft-white);
font-family: 'Cormorant Garamond', serif;
overflow-x: hidden;
min-height: 100vh;
}
/* ── STARFIELD ── */
.starfield {
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
z-index: 0;
pointer-events: none;
}
.starfield canvas { width: 100%; height: 100%; }
/* ── AMBIENT GLOWS ── */
.glow-top {
position: fixed;
top: -200px; left: 50%;
transform: translateX(-50%);
width: 800px; height: 500px;
background: radial-gradient(ellipse, rgba(107,77,242,0.12) 0%, transparent 70%);
pointer-events: none;
z-index: 0;
}
.glow-bottom {
position: fixed;
bottom: -200px; right: -100px;
width: 600px; height: 400px;
background: radial-gradient(ellipse, rgba(38,228,216,0.07) 0%, transparent 70%);
pointer-events: none;
z-index: 0;
}
/* ── CONTAINER ── */
.container {
position: relative;
z-index: 1;
max-width: 1100px;
margin: 0 auto;
padding: 2rem 1.5rem 6rem;
}
/* ── HEADER ── */
.header {
text-align: center;
padding: 5rem 0 3rem;
}
.header .eyebrow {
font-family: 'Space Mono', monospace;
font-size: 0.65rem;
letter-spacing: 0.45em;
text-transform: uppercase;
color: var(--cyan);
opacity: 0.7;
margin-bottom: 1.2rem;
}
.header h1 {
font-family: 'Cinzel', serif;
font-weight: 900;
font-size: clamp(2.2rem, 5.5vw, 4rem);
letter-spacing: 0.1em;
text-transform: uppercase;
background: linear-gradient(135deg, var(--gold) 0%, var(--ember) 45%, var(--violet) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1.1;
margin-bottom: 0.6rem;
}
.header .tagline {
font-family: 'Cormorant Garamond', serif;
font-style: italic;
font-size: clamp(1.1rem, 2.5vw, 1.5rem);
color: var(--muted);
letter-spacing: 0.04em;
margin-bottom: 3rem;
}
/* ── DIVIDER ── */
.divider {
width: 100%;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(243,178,58,0.3), transparent);
margin: 0 auto 3rem;
}
/* ── STATS BAR ── */
.stats-bar {
display: flex;
justify-content: center;
gap: clamp(2rem, 5vw, 5rem);
flex-wrap: wrap;
padding: 2.5rem 2rem;
background: rgba(255,255,255,0.02);
border: 1px solid var(--dim);
border-radius: 2px;
margin-bottom: 4rem;
position: relative;
overflow: hidden;
}
.stats-bar::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(--gold), transparent);
opacity: 0.5;
}
.stat {
text-align: center;
}
.stat-number {
font-family: 'Cinzel', serif;
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 700;
background: linear-gradient(135deg, var(--gold), var(--sacred-gold));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
margin-bottom: 0.4rem;
}
.stat-label {
font-family: 'Space Mono', monospace;
font-size: 0.6rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--muted);
}
/* ── SECTION LABEL ── */
.section-label {
font-family: 'Space Mono', monospace;
font-size: 0.6rem;
letter-spacing: 0.35em;
text-transform: uppercase;
color: var(--cyan);
opacity: 0.6;
margin-bottom: 0.8rem;
}
/* ── SECTION HEADER ── */
.section-header {
margin-bottom: 2.5rem;
}
.section-header h2 {
font-family: 'Cinzel', serif;
font-weight: 700;
font-size: clamp(1.4rem, 3vw, 2rem);
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--soft-white);
margin-bottom: 0.5rem;
}
.section-header p {
font-size: 1.1rem;
color: var(--muted);
line-height: 1.7;
max-width: 680px;
}
/* ── FULL-WIDTH SECTION BLOCK ── */
.section-block {
margin-bottom: 4rem;
padding: 2.5rem;
background: rgba(255,255,255,0.02);
border: 1px solid var(--dim);
border-radius: 2px;
position: relative;
overflow: hidden;
transition: border-color 0.4s ease;
}
.section-block:hover {
border-color: rgba(243,178,58,0.2);
}
.section-block .accent-bar {
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
}
/* ── TWO-COL GRID ── */
.two-col {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
margin-bottom: 4rem;
}
@media (max-width: 720px) {
.two-col { grid-template-columns: 1fr; }
}
/* ── THREE-COL GRID ── */
.three-col {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
margin-bottom: 4rem;
}
@media (max-width: 860px) {
.three-col { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
.three-col { grid-template-columns: 1fr; }
}
/* ── CARD ── */
.card {
padding: 2rem;
background: rgba(255,255,255,0.02);
border: 1px solid var(--dim);
border-radius: 2px;
position: relative;
overflow: hidden;
transition: all 0.35s ease;
}
.card:hover {
border-color: rgba(243,178,58,0.25);
transform: translateY(-3px);
box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
opacity: 0;
transition: opacity 0.35s ease;
}
.card:hover::before { opacity: 1; }
.card .icon {
font-size: 1.6rem;
margin-bottom: 1rem;
display: block;
}
.card h3 {
font-family: 'Cinzel', serif;
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--soft-white);
margin-bottom: 0.6rem;
}
.card p {
font-size: 0.95rem;
color: var(--muted);
line-height: 1.7;
}
.card .badge {
display: inline-block;
margin-top: 1rem;
font-family: 'Space Mono', monospace;
font-size: 0.6rem;
letter-spacing: 0.15em;
text-transform: uppercase;
padding: 0.3rem 0.75rem;
border: 1px solid;
border-radius: 20px;
opacity: 0.7;
}
/* accent colors per card */
.card.gold::before { background: linear-gradient(90deg, var(--gold), transparent); }
.card.violet::before { background: linear-gradient(90deg, var(--violet), transparent); }
.card.cyan::before { background: linear-gradient(90deg, var(--cyan), transparent); }
.card.ember::before { background: linear-gradient(90deg, var(--ember), transparent); }
.card.gold .badge { border-color: var(--gold); color: var(--gold); }
.card.violet .badge { border-color: var(--violet); color: var(--violet); }
.card.cyan .badge { border-color: var(--cyan); color: var(--cyan); }
.card.ember .badge { border-color: var(--ember); color: var(--ember); }
/* ── TOOLS STRIP ── */
.tools-strip {
display: flex;
flex-wrap: wrap;
gap: 0.6rem;
margin-top: 1.2rem;
}
.tool-tag {
font-family: 'Space Mono', monospace;
font-size: 0.6rem;
letter-spacing: 0.1em;
text-transform: uppercase;
padding: 0.3rem 0.7rem;
border: 1px solid rgba(38,228,216,0.25);
color: var(--cyan);
opacity: 0.75;
transition: opacity 0.2s;
}
.tool-tag:hover { opacity: 1; }
/* ── COMING SOON BANNER ── */
.coming-soon {
margin-bottom: 4rem;
padding: 3rem 2.5rem;
background: rgba(107,77,242,0.06);
border: 1px solid rgba(107,77,242,0.25);
border-radius: 2px;
text-align: center;
position: relative;
overflow: hidden;
}
.coming-soon::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, transparent, var(--violet), var(--cyan), transparent);
}
.coming-soon .eyebrow {
font-family: 'Space Mono', monospace;
font-size: 0.6rem;
letter-spacing: 0.4em;
text-transform: uppercase;
color: var(--violet);
opacity: 0.8;
margin-bottom: 1rem;
}
.coming-soon h2 {
font-family: 'Cinzel', serif;
font-weight: 700;
font-size: clamp(1.5rem, 3.5vw, 2.4rem);
letter-spacing: 0.08em;
text-transform: uppercase;
background: linear-gradient(135deg, var(--violet), var(--cyan));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 1rem;
}
.coming-soon p {
font-size: 1.1rem;
color: var(--muted);
line-height: 1.8;
max-width: 640px;
margin: 0 auto 2rem;
}
.coming-soon .pills {
display: flex;
justify-content: center;
gap: 0.75rem;
flex-wrap: wrap;
}
.coming-soon .pill {
font-family: 'Space Mono', monospace;
font-size: 0.65rem;
letter-spacing: 0.12em;
text-transform: uppercase;
padding: 0.5rem 1.2rem;
border: 1px solid rgba(107,77,242,0.4);
color: rgba(240,237,230,0.65);
}
/* ── CTA ROW ── */
.cta-row {
display: flex;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
margin-bottom: 5rem;
}
.btn {
font-family: 'Space Mono', monospace;
font-size: 0.7rem;
letter-spacing: 0.15em;
text-transform: uppercase;
text-decoration: none;
padding: 0.9rem 2rem;
border: 1px solid;
transition: all 0.3s ease;
display: inline-block;
cursor: pointer;
}
.btn-gold {
border-color: var(--gold);
color: var(--gold);
background: transparent;
}
.btn-gold:hover {
background: rgba(243,178,58,0.1);
box-shadow: 0 0 30px rgba(243,178,58,0.15);
}
.btn-violet {
border-color: var(--violet);
color: var(--violet);
background: transparent;
}
.btn-violet:hover {
background: rgba(107,77,242,0.1);
box-shadow: 0 0 30px rgba(107,77,242,0.2);
}
/* ── FOOTER ── */
footer {
text-align: center;
padding: 2rem 0;
border-top: 1px solid var(--dim);
}
footer p {
font-family: 'Space Mono', monospace;
font-size: 0.6rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--muted);
opacity: 0.5;
}
footer a {
color: var(--gold);
text-decoration: none;
opacity: 0.7;
transition: opacity 0.2s;
}
footer a:hover { opacity: 1; }
</style>
</head>
<body>
<!-- Starfield -->
<div class="starfield"><canvas id="stars"></canvas></div>
<div class="glow-top"></div>
<div class="glow-bottom"></div>
<div class="container">
<!-- ── HEADER ── -->
<header class="header">
<div class="eyebrow">The First Spark · Living Ecosystem</div>
<h1>Project Codex</h1>
<p class="tagline">The Source Code of Reality</p>
<div class="divider"></div>
</header>
<!-- ── STATS BAR ── -->
<div class="stats-bar">
<div class="stat">
<div class="stat-number">96</div>
<div class="stat-label">Total Projects</div>
</div>
<div class="stat">
<div class="stat-number">90</div>
<div class="stat-label">Live Projects</div>
</div>
<div class="stat">
<div class="stat-number">34</div>
<div class="stat-label">Consciousness Tools</div>
</div>
<div class="stat">
<div class="stat-number">5</div>
<div class="stat-label">Soul Maps Delivered</div>
</div>
</div>
<!-- ── SECTION 1: PROJECTS TO RE-CODE REALITY ── -->
<div class="section-block">
<div class="accent-bar" style="background: linear-gradient(90deg, var(--gold), var(--ember), transparent);"></div>
<div class="section-label">Archive</div>
<div class="section-header">
<h2>Projects to Re-Code Reality</h2>
<p>A vast living library of 90 builds — tools, soul maps, investor materials, mythos chapters, and interactive experiences — each designed to fracture the ordinary and reveal the architecture beneath.</p>
</div>
<div class="tools-strip">
<span class="tool-tag">90 Live Builds</span>
<span class="tool-tag">33 Tools</span>
<span class="tool-tag">6 Soul Maps</span>
<span class="tool-tag">Investor Materials</span>
<span class="tool-tag">Mythos Chapters</span>
<span class="tool-tag">Interactive Experiences</span>
</div>
</div>
<!-- ── SECTION 2: CONSCIOUSNESS + SCIOUSNESS (two-col) ── -->
<div class="two-col">
<div class="card gold">
<span class="icon">🧠</span>
<h3>The Consciousness</h3>
<p>34 interactive modules ranging from archetype decoders and reality debugging sandboxes to selector rituals, entanglement maps, and soul-map interfaces — each tool a lens on a different layer of awareness.</p>
<span class="badge">34 Tools Live</span>
<div class="tools-strip" style="margin-top:1.2rem;">
<span class="tool-tag">Archetype Decoders</span>
<span class="tool-tag">Reality Debugging</span>
<span class="tool-tag">Selector Rituals</span>
<span class="tool-tag">Soul Contracts</span>
</div>
</div>
<div class="card cyan">
<span class="icon">🧭</span>
<h3>The Sciousness Engine</h3>
<p>The tracking, mapping, and synthesis layer of the ecosystem. Integrates Maps of Consciousness, Soul Code Registry, Bloodline geometry, and the Soul Map Interface into a coherent model of individual and collective awareness.</p>
<span class="badge">Core Architecture</span>
<div class="tools-strip" style="margin-top:1.2rem;">
<span class="tool-tag" style="border-color:rgba(38,228,216,0.25)">Maps of Consciousness</span>
<span class="tool-tag" style="border-color:rgba(38,228,216,0.25)">Soul Code Registry</span>
<span class="tool-tag" style="border-color:rgba(38,228,216,0.25)">Bloodline</span>
</div>
</div>
</div>
<!-- ── SECTION 3: SOUL MAP INTERFACE + MYTHOS (two-col) ── -->
<div class="two-col">
<div class="card violet">
<span class="icon">🗺️</span>
<h3>Soul Map Interface</h3>
<p>Delivered individually by hand. Each Soul Map decodes a person's archetypes, numerological signature, and soul geometry into a navigable map of their specific consciousness field.</p>
<span class="badge">5 Delivered</span>
</div>
<div class="card ember">
<span class="icon">📜</span>
<h3>Integrated Mythos & Origin</h3>
<p>A 12-item framework detailing the "Source Architecture" — the origin narrative that underlies every tool, map, and build in the Codex. The why beneath the what.</p>
<span class="badge">12-Item Framework</span>
<div class="tools-strip" style="margin-top:1.2rem;">
<span class="tool-tag" style="border-color:rgba(255,106,61,0.3); color:var(--ember);">Source Architecture</span>
<span class="tool-tag" style="border-color:rgba(255,106,61,0.3); color:var(--ember);">Origin Narrative</span>
</div>
</div>
</div>
<!-- ── SECTION 4: THE SPARKVERSE ECOSYSTEM ── -->
<div class="section-block" style="border-color: rgba(38,228,216,0.12);">
<div class="accent-bar" style="background: linear-gradient(90deg, var(--cyan), var(--violet), transparent);"></div>
<div class="section-label">Ecosystem</div>
<div class="section-header">
<h2>The Sparkverse Ecosystem</h2>
<p>A membership gateway and sovereign tracking layer built for the community doing the work. Every tool, map, and module lives inside a coherent living system.</p>
</div>
<div class="three-col" style="margin-bottom:0;">
<div class="card cyan" style="margin:0;">
<span class="icon">🚀</span>
<h3>The Sparkverse Hub</h3>
<p>The central membership gateway. Features the Players Lounge, sovereign tracking systems, and full access to the consciousness tool library.</p>
<span class="badge">Live</span>
</div>
<div class="card cyan" style="margin:0;">
<span class="icon">🎮</span>
<h3>Players Lounge</h3>
<p>The community layer. A space for players, builders, and seekers inside the Sparkverse — discussion, accountability, and live collaboration.</p>
<span class="badge">Live</span>
</div>
<div class="card cyan" style="margin:0;">
<span class="icon">📡</span>
<h3>Sovereign Tracking</h3>
<p>Tools and systems for members to track their own consciousness evolution, soul map progress, and engagement with the ecosystem over time.</p>
<span class="badge">In Development</span>
</div>
</div>
</div>
<!-- ── COMING SOON: $SPRK TOKEN ── -->
<div class="coming-soon">
<div class="eyebrow">Coming Soon</div>
<h2>$SPRK Token</h2>
<p>The next expansion of the ecosystem introduces a tolog economy, NFT collections, and the Inner Sanctum — a sovereign layer for those ready to go deeper into the Source Architecture.</p>
<div class="pills">
<span class="pill">Tolog Economy</span>
<span class="pill">NFT Collections</span>
<span class="pill">Inner Sanctum</span>
<span class="pill">$SPRK Token</span>
</div>
</div>
<!-- ── CTA ── -->
<div class="cta-row">
<a href="https://sparkverse.thefirstspark.shop" class="btn btn-gold">Enter the Sparkverse</a>
<a href="/investor-deck-v2.html" class="btn btn-violet">View Investor Deck</a>
</div>
<!-- ── FOOTER ── -->
<footer>
<p>
<a href="/">The First Spark</a> · thefirstspark.shop · Project Codex
</p>
</footer>
</div><!-- /container -->
<!-- ── STARFIELD SCRIPT ── -->
<script>
(function() {
const canvas = document.getElementById('stars');
const ctx = canvas.getContext('2d');
let stars = [];
function resize() {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
}
function initStars() {
stars = [];
const count = Math.floor((canvas.width * canvas.height) / 4000);
for (let i = 0; i < count; i++) {
stars.push({
x: Math.random() * canvas.width,
y: Math.random() * canvas.height,
r: Math.random() * 1.2 + 0.2,
a: Math.random() * 0.7 + 0.1,
speed: Math.random() * 0.004 + 0.001,
phase: Math.random() * Math.PI * 2
});
}
}
let frame = 0;
function draw() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
frame++;
stars.forEach(s => {
const alpha = s.a * (0.6 + 0.4 * Math.sin(frame * s.speed + s.phase));
ctx.beginPath();
ctx.arc(s.x, s.y, s.r, 0, Math.PI * 2);
ctx.fillStyle = `rgba(255,255,255,${alpha})`;
ctx.fill();
});
requestAnimationFrame(draw);
}
window.addEventListener('resize', () => { resize(); initStars(); });
resize();
initStars();
draw();
})();
</script>
</body>
</html>