-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
413 lines (364 loc) · 10.5 KB
/
index.html
File metadata and controls
413 lines (364 loc) · 10.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Leo Health Max — Early Access</title>
<link href="https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--blue: #1a3a8f;
--blue-mid: #2a52c9;
--blue-light: #e8edf8;
--green: #0d7a55;
--dark: #0a0f1e;
--gray: #5a6478;
--border: #e2e6f0;
--bg: #f7f8fc;
}
html { scroll-behavior: smooth; }
body {
font-family: 'DM Sans', sans-serif;
background: var(--bg);
color: var(--dark);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 48px 20px;
position: relative;
overflow-x: hidden;
}
/* Ambient background glow */
body::before {
content: '';
position: fixed;
top: -20vh; left: 50%;
transform: translateX(-50%);
width: 900px; height: 900px;
background: radial-gradient(circle, rgba(26,58,143,0.06) 0%, transparent 68%);
pointer-events: none;
animation: ambientPulse 8s ease-in-out infinite;
}
body::after {
content: '';
position: fixed;
bottom: -10vh; right: -10vw;
width: 600px; height: 600px;
background: radial-gradient(circle, rgba(13,122,85,0.04) 0%, transparent 70%);
pointer-events: none;
}
@keyframes ambientPulse {
0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}
/* Card */
.card {
background: white;
border: 1px solid var(--border);
border-radius: 24px;
max-width: 600px;
width: 100%;
padding: 56px 52px 48px;
text-align: center;
box-shadow: 0 2px 24px rgba(10,15,30,0.06), 0 12px 48px rgba(10,15,30,0.04);
animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
position: relative;
z-index: 1;
}
@keyframes fadeUp {
from { opacity: 0; transform: translateY(28px); }
to { opacity: 1; transform: translateY(0); }
}
/* Logo */
.logo {
width: 52px; height: 52px;
background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 28px;
box-shadow: 0 4px 16px rgba(26,58,143,0.25);
font-size: 24px;
}
/* Eyebrow badge */
.eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(--blue-light);
color: var(--blue);
font-size: 11.5px;
font-weight: 500;
letter-spacing: 0.09em;
text-transform: uppercase;
padding: 6px 14px;
border-radius: 100px;
margin-bottom: 24px;
}
.eyebrow-dot {
width: 6px; height: 6px;
background: var(--blue);
border-radius: 50%;
animation: blink 2.5s ease infinite;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.25; }
}
/* Heading */
h1 {
font-family: 'DM Serif Display', serif;
font-size: clamp(2rem, 5vw, 2.75rem);
color: var(--dark);
line-height: 1.12;
margin-bottom: 18px;
letter-spacing: -0.025em;
}
h1 em {
font-style: italic;
color: var(--blue);
}
.subtitle {
font-size: 1.02em;
color: var(--gray);
line-height: 1.75;
margin-bottom: 36px;
font-weight: 300;
max-width: 440px;
margin-left: auto;
margin-right: auto;
}
/* Feature list */
.features {
display: flex;
flex-direction: column;
gap: 11px;
margin-bottom: 32px;
text-align: left;
}
.feature {
display: flex;
align-items: flex-start;
gap: 13px;
font-size: 0.91em;
color: #374151;
line-height: 1.55;
padding: 12px 14px;
border-radius: 10px;
background: #fafbfd;
border: 1px solid #eef0f6;
transition: border-color 0.2s, background 0.2s;
}
.feature:hover {
background: var(--blue-light);
border-color: rgba(26,58,143,0.15);
}
.feature-icon {
width: 26px; height: 26px;
background: var(--blue-light);
border-radius: 7px;
display: flex;
align-items: center;
justify-content: center;
font-size: 13px;
flex-shrink: 0;
margin-top: 1px;
}
.feature-text strong {
display: block;
font-weight: 500;
color: var(--dark);
margin-bottom: 2px;
font-size: 0.93em;
}
.feature-text span {
color: var(--gray);
font-size: 0.88em;
}
/* Divider */
.divider {
border: none;
border-top: 1px solid var(--border);
margin: 28px 0;
}
/* Founding member callout */
.pricing {
display: inline-flex;
align-items: center;
gap: 10px;
background: linear-gradient(135deg, #f0fdf8 0%, #e8f4fd 100%);
border: 1px solid rgba(13,122,85,0.2);
border-radius: 12px;
padding: 12px 20px;
margin-bottom: 28px;
font-size: 0.9em;
}
.pricing-badge {
background: var(--green);
color: white;
font-size: 10.5px;
font-weight: 500;
letter-spacing: 0.06em;
text-transform: uppercase;
padding: 3px 8px;
border-radius: 6px;
white-space: nowrap;
}
.pricing-text {
color: #1a4a38;
font-weight: 400;
}
/* Beehiiv embed wrapper */
.form-wrapper {
width: 100%;
border-radius: 14px;
overflow: hidden;
border: 1px solid var(--border);
background: #fafbfd;
}
.form-wrapper iframe {
display: block;
width: 100% !important;
max-width: 100% !important;
border-radius: 0 !important;
}
/* Social proof */
.social-proof {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin-top: 28px;
flex-wrap: wrap;
}
.stat {
display: flex;
align-items: center;
gap: 7px;
font-size: 0.82em;
color: var(--gray);
}
.stat-dot {
width: 5px; height: 5px;
background: var(--border);
border-radius: 50%;
}
.stat strong {
color: var(--dark);
font-weight: 500;
}
/* Footer link */
.footer-link {
margin-top: 24px;
font-size: 0.82em;
color: var(--gray);
}
.footer-link a {
color: var(--blue);
text-decoration: none;
font-weight: 500;
}
.footer-link a:hover {
text-decoration: underline;
}
/* Privacy note */
.privacy-note {
margin-top: 14px;
font-size: 0.78em;
color: #9ca3af;
display: flex;
align-items: center;
justify-content: center;
gap: 5px;
}
@media (max-width: 560px) {
.card { padding: 40px 28px 36px; }
h1 { font-size: 2rem; }
}
</style>
</head>
<body>
<div class="card">
<div class="logo">🦁</div>
<div class="eyebrow">
<span class="eyebrow-dot"></span>
Early Access — Leo Max
</div>
<h1>Your health data,<br>analyzed <em>locally</em></h1>
<p class="subtitle">
An AI health coach that runs entirely on your Mac. Connects your wearable data, bloodwork history, and medical literature — all processed locally, nothing leaves your machine.
</p>
<div class="features">
<div class="feature">
<div class="feature-icon">🧠</div>
<div class="feature-text">
<strong>Local LLM Coach</strong>
<span>Ask questions about your HRV, sleep, workouts — answered by AI running on your hardware</span>
</div>
</div>
<div class="feature">
<div class="feature-icon">🔒</div>
<div class="feature-text">
<strong>Zero cloud, zero tracking</strong>
<span>All processing happens at ~/.leo-health/leo.db — your biometrics never touch a server</span>
</div>
</div>
<div class="feature">
<div class="feature-icon">📊</div>
<div class="feature-text">
<strong>Apple Health + Whoop unified</strong>
<span>HRV, SpO₂, sleep stages, HR zones — every metric in one queryable database</span>
</div>
</div>
<div class="feature">
<div class="feature-icon">📚</div>
<div class="feature-text">
<strong>Medical literature RAG</strong>
<span>Insights grounded in research, not generic wellness advice</span>
</div>
</div>
<div class="feature">
<div class="feature-icon">🩸</div>
<div class="feature-text">
<strong>Bloodwork history — photo or PDF</strong>
<span>Snap your annual lab report or upload the PDF. Leo extracts your panels and tracks trends across years — cholesterol, glucose, thyroid, vitamins and more</span>
</div>
</div>
</div>
<div class="pricing">
<span class="pricing-badge">Founding Member</span>
<span class="pricing-text">Join early — founding members get <strong>lifetime preferred pricing</strong> when Leo Max launches</span>
</div>
<div class="form-wrapper">
<script async src="https://subscribe-forms.beehiiv.com/embed.js"></script>
<iframe
src="https://subscribe-forms.beehiiv.com/5189f4c3-31c7-4cdf-af8b-7767f1684f0f"
class="beehiiv-embed"
data-test-id="beehiiv-embed"
frameborder="0"
scrolling="no"
style="width:100%; height:291px; margin:0; border-radius:0; background-color:transparent; box-shadow:none; max-width:100%;">
</iframe>
</div>
<div class="social-proof">
<div class="stat"><strong>31</strong> GitHub stars</div>
<div class="stat-dot"></div>
<div class="stat"><strong>5</strong> forks</div>
<div class="stat-dot"></div>
<div class="stat"><strong>2</strong> contributors</div>
<div class="stat-dot"></div>
<div class="stat"><strong>MIT</strong> licensed</div>
</div>
<div class="footer-link">
Already want the free version? <a href="https://github.com/sandseb123/Leo-Health-Core" target="_blank">Grab it on GitHub →</a>
</div>
<p class="privacy-note">
🔐 No spam. Unsubscribe anytime. Your email is only used for Leo Max launch updates.
</p>
</div>
</body>
</html>