-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpresentation.html
More file actions
427 lines (382 loc) · 17.8 KB
/
presentation.html
File metadata and controls
427 lines (382 loc) · 17.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HAWRA | The Bio-Quantum Infrastructure</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=JetBrains+Mono&display=swap" rel="stylesheet">
<style>
:root {
--primary: #00ff88;
--bg: #050a0f;
--text: #e0e6ed;
--accent: #00d4ff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background-color: var(--bg);
color: var(--text);
font-family: 'Inter', sans-serif;
overflow-x: hidden;
}
/* Video-like Animation CSS */
.hero-video {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
background: radial-gradient(circle at center, #102030 0%, #050a0f 100%);
overflow: hidden;
}
.dna-bg {
position: absolute;
width: 100%;
height: 100%;
opacity: 0.1;
z-index: 0;
background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
}
.title-anim {
font-size: 5rem;
font-weight: 900;
text-transform: uppercase;
letter-spacing: -2px;
-webkit-animation: fadeInScale 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
animation: fadeInScale 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
z-index: 1;
background: -webkit-linear-gradient(90deg, var(--primary), var(--accent));
background: linear-gradient(90deg, var(--primary), var(--accent));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.subtitle {
font-family: 'JetBrains Mono', monospace;
font-size: 1.2rem;
color: var(--primary);
margin-top: 1rem;
opacity: 0;
-webkit-animation: slideUp 1s 0.5s forwards;
animation: slideUp 1s 0.5s forwards;
z-index: 1;
}
@-webkit-keyframes fadeInScale {
0% { opacity: 0; -webkit-transform: scale(0.9) translateY(20px); transform: scale(0.9) translateY(20px); -webkit-filter: blur(10px); filter: blur(10px); }
100% { opacity: 1; -webkit-transform: scale(1) translateY(0); transform: scale(1) translateY(0); -webkit-filter: blur(0); filter: blur(0); }
}
@keyframes fadeInScale {
0% { opacity: 0; -webkit-transform: scale(0.9) translateY(20px); transform: scale(0.9) translateY(20px); -webkit-filter: blur(10px); filter: blur(10px); }
100% { opacity: 1; -webkit-transform: scale(1) translateY(0); transform: scale(1) translateY(0); -webkit-filter: blur(0); filter: blur(0); }
}
@-webkit-keyframes slideUp {
from { opacity: 0; -webkit-transform: translateY(30px); transform: translateY(30px); }
to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}
@keyframes slideUp {
from { opacity: 0; -webkit-transform: translateY(30px); transform: translateY(30px); }
to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}
/* Lab-Ready Section */
.section {
padding: 100px 10%;
min-height: 80vh;
display: flex;
flex-direction: column;
justify-content: center;
}
.grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
margin-top: 50px;
}
.card {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(0, 255, 136, 0.1);
padding: 40px;
border-radius: 20px;
transition: all 0.3s ease;
}
.card:hover {
border-color: var(--primary);
background: rgba(0, 255, 136, 0.05);
transform: translateY(-10px);
}
.card h3 {
color: var(--primary);
margin-bottom: 20px;
font-size: 1.8rem;
}
.card p {
line-height: 1.6;
color: #a0aec0;
}
/* "Waiting for Pipettes" Call to Action */
.cta-section {
text-align: center;
background: linear-gradient(180deg, var(--bg) 0%, #0a1f16 100%);
padding: 150px 10%;
}
.pipette-icon {
font-size: 4rem;
margin-bottom: 30px;
display: inline-block;
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
.btn {
display: inline-block;
padding: 20px 40px;
background: var(--primary);
color: var(--bg);
text-decoration: none;
font-weight: 800;
border-radius: 50px;
font-size: 1.2rem;
margin-top: 40px;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}
.btn:hover {
transform: scale(1.05);
box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}
/* Code Display */
.code-block {
background: #000;
padding: 20px;
border-radius: 10px;
font-family: 'JetBrains Mono', monospace;
font-size: 0.9rem;
color: #00ff00;
border-left: 4px solid var(--primary);
margin-top: 20px;
overflow-x: auto;
}
/* Timeline */
.timeline {
margin-top: 80px;
border-left: 2px solid rgba(0, 255, 136, 0.2);
padding-left: 30px;
position: relative;
}
.timeline-item {
margin-bottom: 40px;
position: relative;
}
.timeline-item::before {
content: '';
position: absolute;
left: -37px;
top: 5px;
width: 12px;
height: 12px;
background: var(--primary);
border-radius: 50%;
box-shadow: 0 0 10px var(--primary);
}
.timeline-date {
font-family: 'JetBrains Mono', monospace;
color: var(--primary);
font-size: 0.9rem;
margin-bottom: 5px;
}
.timeline-content h4 {
font-size: 1.3rem;
margin-bottom: 5px;
}
.timeline-content p {
color: #a0aec0;
font-size: 0.95rem;
}
.audit-tag {
display: inline-block;
padding: 5px 12px;
background: rgba(0, 212, 255, 0.1);
color: var(--accent);
border-radius: 4px;
font-size: 0.8rem;
font-weight: 700;
margin-bottom: 15px;
text-transform: uppercase;
}
@media (max-width: 768px) {
.title-anim { font-size: 3rem; }
.grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<div class="hero-video">
<div class="dna-bg"></div>
<h1 class="title-anim">HAWRA</h1>
<p class="subtitle">> The infrastructure is ready. The code is compiled.</p>
</div>
<section class="section" style="background: rgba(255,255,255,0.02);">
<h2 style="font-size: 3rem; margin-bottom: 20px;">From Vision to <span style="color: var(--primary);">Reality</span></h2>
<p style="font-size: 1.2rem; color: #a0aec0;">The evolution of biological computation: a lineage of pioneers leading to HAWRA.</p>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-date">1952 - Alan Turing</div>
<div class="timeline-content">
<h4>Chemical Morphogenesis</h4>
<p>Turing postulates that biological patterns are the result of self-organized chemical computation. The seed is planted.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">2007 - Greg Engel (Nature)</div>
<div class="timeline-content">
<h4>Biological Quantum Coherence</h4>
<p>Experimental proof that plants use quantum coherence to transfer energy with 99% efficiency. The physics is confirmed.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">2010s - Andrew Adamatzky</div>
<div class="timeline-content">
<h4>Phyto-Computation</h4>
<p>Demonstration of rudimentary logic gates in plant tissues. But a programmable architecture was missing.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">2026 - HAWRA (Current Status)</div>
<div class="timeline-content">
<span class="audit-tag">Audit Diagnostic: Rigorous & Lab-Ready</span>
<h4>The Metabiotic Infrastructure</h4>
<p>HAWRA unifies 70 years of research into a complete architecture: Arbol DSL Compiler, BSIM Instruction Set, and Genetic Design v18.1. We move from observation to engineering.</p>
</div>
</div>
</div>
</section>
<section class="section" style="background: linear-gradient(180deg, #000 0%, #050a0f 100%);">
<div class="audit-tag" style="margin-bottom: 20px;">The Metabiotic Paradigm</div>
<h2 style="font-size: 3.5rem; margin-bottom: 30px;">Living Tissue as a <span style="color: var(--primary);">Quantum Register</span></h2>
<p style="font-size: 1.4rem; color: #a0aec0; max-width: 900px; line-height: 1.6;">
HAWRA bypasses the classical trade-off between temperature and decoherence by leveraging evolutionary optimizations. Life is not a limitation; it is a <b>self-repairing, persistent quantum register</b>.
</p>
<div class="grid" style="margin-top: 50px;">
<div class="card" style="text-align: left; padding: 40px;">
<h3 style="color: var(--primary);">Lindblad-Hill Coupling</h3>
<p style="font-family: 'JetBrains Mono', monospace; font-size: 1.1rem; color: #fff; background: rgba(0,0,0,0.5); padding: 20px; border-radius: 10px; margin: 20px 0;">
dρ/dt = -i[H(Bio), ρ] + L(ρ)
</p>
<p>The mathematical unification of genetic kinetics (Hill) and quantum density matrix evolution (Lindblad).</p>
</div>
<div class="card" style="text-align: left; padding: 40px;">
<h3 style="color: var(--accent);">Algorithmic Fidelity</h3>
<div style="font-size: 3rem; font-weight: bold; color: var(--accent); margin: 20px 0;">99.47%</div>
<p>Average precision measured during the execution of the <b>HAWRA Mega-Validation</b> suite (Grover, Deutsch-Jozsa, First Bloom).</p>
</div>
</div>
</section>
<section class="section" style="background: rgba(0,255,136,0.02); border-top: 1px solid rgba(0,255,136,0.1);">
<div class="audit-tag">Scientific Breakthrough</div>
<h2 style="font-size: 3rem; margin-bottom: 20px;">Coherence <span style="color: var(--primary);">Protection</span></h2>
<div class="grid">
<div class="card">
<h3>Silica Shield (Lsi1)</h3>
<div style="font-size: 2.5rem; font-weight: bold; color: var(--primary); margin: 15px 0;">+67% T2</div>
<p>Quantum coherence duration improvement via nanometric confinement of the P700 reaction center.</p>
</div>
<div class="card">
<h3>Bio-Quantum Coupling</h3>
<div style="font-size: 2.5rem; font-weight: bold; color: var(--accent); margin: 15px 0;">P = 0.993</div>
<p>State inversion probability (NOT gate) driven by <b>CRY2</b> gene expression at 80Hz.</p>
</div>
</div>
</section>
<section class="section">
<h2 style="font-size: 3rem; margin-bottom: 20px;"><span style="color: var(--primary);">Full-Stack</span> Architecture</h2>
<p style="font-size: 1.2rem; color: #a0aec0; margin-bottom: 40px;">HAWRA covers the entire technology stack, from programming language to molecular biology.</p>
<div class="grid">
<div class="card">
<span class="audit-tag">Software Layer</span>
<h3>Arbol DSL & BSIM</h3>
<p>A high-level language for programming quantum states in living substrates. Compiled into <b>Biological Instruction Set Architecture (BSIM)</b>.</p>
</div>
<div class="card">
<span class="audit-tag">Simulation Layer</span>
<h3>Multiphysics Digital Twin</h3>
<p>Simulator integrating <b>Lindblad-Hill</b> equations. Predicts bio-qubit behavior with 98% accuracy relative to theoretical models.</p>
</div>
<div class="card">
<span class="audit-tag">Hardware Layer</span>
<h3>PQPE & Silica Shield</h3>
<p>The computing entity (Phyto-Quantum Entity). Uses the <b>Lsi1</b> transporter to create a nanometric silica cage, extending T2 coherence by <b>orders of magnitude</b> at 300K.</p>
</div>
<div class="card">
<span class="audit-tag">Energy Layer</span>
<h3>CAM 24/7 Module</h3>
<p>Metabolic optimization via <b>PEPC</b> and <b>HSP70</b>, allowing the system to operate day and night without power loss.</p>
</div>
</div>
</section>
<section class="section">
<h2 style="font-size: 3rem; margin-bottom: 20px;">Validated <span style="color: var(--accent);">Quantum Protocols</span></h2>
<div class="grid">
<div class="card" style="border-color: var(--accent);">
<h4>First Bloom Protocol</h4>
<p>Initialization of the superposition state via the P700 reaction center.</p>
</div>
<div class="card" style="border-color: var(--accent);">
<h4>Grover / Deutsch-Jozsa</h4>
<p>Search and logic algorithms already implemented in the test BSIM bytecode.</p>
</div>
</div>
</section>
<section class="section" style="background: rgba(255,255,255,0.02);">
<h2 style="font-size: 3rem; margin-bottom: 20px;"><span style="color: var(--primary);">Turnkey</span> Infrastructure</h2>
<p style="font-size: 1.2rem; max-width: 800px; color: #a0aec0;">HAWRA is not a concept; it is a complete architecture. We have solved the software layer and genetic design. Only physical implementation remains.</p>
<div class="grid">
<div class="card">
<h3>01. Software Stack</h3>
<p>A functional compiler that transforms Arbol language into BSIM bytecode. The digital twin is already validated.</p>
<div class="code-block">
$ arbol-compile --target ficus-v1<br>
> Compilation successful: 18.1kb BSIM
</div>
</div>
<div class="card">
<h3>02. Genetic Design (v18.1)</h3>
<p>An 18,121 bp cassette segmented into <b>7 synthetic blocks</b> with 40 bp overlaps for optimal Gibson assembly.</p>
<div class="code-block" style="font-size: 0.75rem;">
[psaA] -> Photosystem I (Bio-Qubit)<br>
[CRY2] -> Blue Light Gate (Input)<br>
[SIT1] -> Silica Shield (Coherence)<br>
[LUC] -> Bioluminescence (Output)<br>
[PEPC] -> CAM Energy (24/7 Ops)
</div>
</div>
</div>
</section>
<section class="section" style="background: #050a0f;">
<h2 style="font-size: 3rem; margin-bottom: 20px;"><span style="color: var(--accent);">Valuation</span> Model</h2>
<div class="grid">
<div class="card">
<h3>IP & Licensing</h3>
<p>The Arbol DSL and BSIM structure are licensable intellectual assets for the bio-computing industry.</p>
</div>
<div class="card">
<h3>Silica Shield Patent</h3>
<p>The use of biomineralization to protect quantum states is a major patentable innovation.</p>
</div>
</div>
</section>
<section class="cta-section">
<div class="pipette-icon">🧪</div>
<h2 style="font-size: 3.5rem; margin-bottom: 20px;">History is waiting <br>for <span style="color: var(--primary);">your pipettes.</span></h2>
<p style="font-size: 1.5rem; color: #a0aec0;">We have the architecture. You have the lab.<br>Together, let's create the first living computer.</p>
<div style="display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;">
<a href="demo.html" class="btn">LAUNCH SYNTHESIS</a>
<a href="https://github.com/selectess/HAWRA" class="btn" style="background: var(--accent);">VIEW REPOSITORY</a>
</div>
<p style="margin-top: 50px; font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; opacity: 0.5;">
"The line between hardware and wetware is fading. <br>We are no longer simulating life; we are programming it."
</p>
</section>
</body>
</html>