-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
549 lines (472 loc) · 17.4 KB
/
index.html
File metadata and controls
549 lines (472 loc) · 17.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Immomtality — A Friend for Mom</title>
<meta name="description" content="An AI companion for the people you love. Not a chatbot. A friend who listens, remembers, and never forgets their stories.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', -apple-system, sans-serif;
color: #2a2a2a;
background: #faf9f7;
line-height: 1.7;
}
h1, h2, .quote, .emphasis {
font-family: 'Playfair Display', Georgia, serif;
}
/* ---- HERO ---- */
.hero {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 2rem;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
inset: 0;
background:
radial-gradient(ellipse at 20% 50%, rgba(212, 196, 183, 0.4) 0%, transparent 60%),
radial-gradient(ellipse at 80% 50%, rgba(139, 111, 94, 0.15) 0%, transparent 60%),
linear-gradient(180deg, #f5f0eb 0%, #faf9f7 100%);
z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero-pearl {
width: 80px;
height: 80px;
border-radius: 50%;
background: radial-gradient(circle at 35% 35%, #fff 0%, #f0e8df 30%, #d4c4b7 70%, #b8a294 100%);
box-shadow: 0 4px 30px rgba(139, 111, 94, 0.2), inset 0 -4px 12px rgba(255,255,255,0.6);
margin-bottom: 2rem;
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.hero h1 {
font-size: clamp(3rem, 7vw, 5rem);
font-weight: 400;
letter-spacing: -0.02em;
margin-bottom: 0.5rem;
color: #1a1a1a;
}
.hero h1 span {
font-style: italic;
color: #8b6f5e;
}
.hero .tagline {
font-size: clamp(1.1rem, 2.5vw, 1.35rem);
color: #6b6b6b;
max-width: 500px;
margin-bottom: 3rem;
font-weight: 400;
}
.hero .quote-block {
background: rgba(255,255,255,0.85);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-radius: 20px;
padding: 2rem 2.5rem;
max-width: 480px;
box-shadow: 0 4px 30px rgba(0,0,0,0.06);
border: 1px solid rgba(212, 196, 183, 0.3);
}
.hero .quote-block .quote {
font-size: 1.4rem;
font-style: italic;
color: #3a3a3a;
margin-bottom: 0.75rem;
}
.hero .quote-block .attribution {
font-size: 0.9rem;
color: #999;
}
.scroll-hint {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
z-index: 1;
animation: bounce 2s ease-in-out infinite;
color: #c4b5a8;
font-size: 1.5rem;
}
@keyframes bounce {
0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}
/* ---- SECTIONS ---- */
.section {
max-width: 680px;
margin: 0 auto;
padding: 5rem 2rem;
}
.section h2 {
font-size: 2rem;
font-weight: 400;
margin-bottom: 1.5rem;
color: #1a1a1a;
}
.section p {
font-size: 1.05rem;
color: #4a4a4a;
margin-bottom: 1.5rem;
}
.section .emphasis {
font-size: 1.25rem;
color: #8b6f5e;
font-style: italic;
border-left: 3px solid #d4c4b7;
padding-left: 1.25rem;
margin: 2rem 0;
}
/* photo break removed */
/* ---- iMESSAGE ---- */
.imessage-preview {
max-width: 400px;
margin: 2.5rem auto;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: #fff;
border-radius: 24px;
padding: 1.5rem;
box-shadow: 0 8px 40px rgba(0,0,0,0.08);
border: 1px solid rgba(0,0,0,0.06);
}
.imessage-header {
text-align: center;
padding-bottom: 1rem;
margin-bottom: 1rem;
border-bottom: 1px solid #f0f0f0;
font-size: 0.8rem;
color: #999;
letter-spacing: 0.02em;
}
.bubble {
padding: 0.65rem 1rem;
border-radius: 18px;
margin-bottom: 0.35rem;
max-width: 82%;
font-size: 0.92rem;
line-height: 1.45;
}
.bubble.them {
background: #e9e9eb;
color: #1a1a1a;
border-bottom-left-radius: 4px;
margin-right: auto;
}
.bubble.me {
background: #007aff;
color: white;
border-bottom-right-radius: 4px;
margin-left: auto;
}
.bubble-label {
font-size: 0.7rem;
color: #bbb;
margin-bottom: 0.2rem;
margin-top: 0.6rem;
padding-left: 0.5rem;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.bubble-label.right {
text-align: right;
padding-right: 0.5rem;
}
/* ---- HOW IT WORKS ---- */
.how-it-works-wrapper {
background: white;
border-top: 1px solid #f0ece8;
border-bottom: 1px solid #f0ece8;
}
.steps {
list-style: none;
counter-reset: steps;
}
.steps li {
counter-increment: steps;
padding: 1.5rem 0;
padding-left: 3.5rem;
position: relative;
font-size: 1.05rem;
color: #4a4a4a;
border-bottom: 1px solid #f0ece8;
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
content: counter(steps);
position: absolute;
left: 0;
top: 1.5rem;
width: 2.2rem;
height: 2.2rem;
background: #f5f0eb;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
color: #8b6f5e;
font-weight: 600;
}
.steps li strong {
color: #2a2a2a;
display: block;
margin-bottom: 0.25rem;
font-weight: 600;
}
/* ---- CARDS ---- */
.what-they-get {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.25rem;
margin-top: 2rem;
}
@media (max-width: 600px) {
.what-they-get { grid-template-columns: 1fr; }
}
.what-they-get .card {
background: white;
border-radius: 16px;
padding: 1.75rem;
box-shadow: 0 2px 12px rgba(0,0,0,0.04);
border: 1px solid rgba(212, 196, 183, 0.2);
transition: transform 0.2s, box-shadow 0.2s;
}
.what-they-get .card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.what-they-get .card .card-icon {
font-size: 1.8rem;
margin-bottom: 0.75rem;
}
.what-they-get .card h3 {
font-size: 1rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: #2a2a2a;
}
.what-they-get .card p {
font-size: 0.92rem;
color: #6b6b6b;
margin-bottom: 0;
line-height: 1.6;
}
/* ---- CTA ---- */
.cta-section {
text-align: center;
padding: 6rem 2rem;
position: relative;
overflow: hidden;
}
.cta-section::before {
content: '';
position: absolute;
inset: 0;
background:
radial-gradient(ellipse at 50% 100%, rgba(212, 196, 183, 0.3) 0%, transparent 60%),
linear-gradient(180deg, #faf9f7 0%, #f5f0eb 100%);
z-index: 0;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 {
font-family: 'Playfair Display', Georgia, serif;
font-size: clamp(1.8rem, 4vw, 2.5rem);
font-weight: 400;
margin-bottom: 1rem;
color: #1a1a1a;
}
.cta-section p {
font-size: 1.05rem;
color: #6b6b6b;
margin-bottom: 2rem;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}
.email-form {
display: flex;
gap: 0.75rem;
max-width: 440px;
margin: 0 auto;
flex-wrap: wrap;
justify-content: center;
}
.email-form input[type="email"] {
flex: 1;
min-width: 240px;
padding: 1rem 1.25rem;
border: 1px solid #d4c4b7;
border-radius: 12px;
font-size: 1rem;
font-family: inherit;
background: white;
outline: none;
transition: border-color 0.2s, box-shadow 0.2s;
}
.email-form input[type="email"]:focus {
border-color: #8b6f5e;
box-shadow: 0 0 0 3px rgba(139, 111, 94, 0.1);
}
.email-form button {
padding: 1rem 2.25rem;
background: #8b6f5e;
color: white;
border: none;
border-radius: 12px;
font-size: 1rem;
font-family: inherit;
font-weight: 500;
cursor: pointer;
transition: background 0.2s, transform 0.1s;
}
.email-form button:hover {
background: #7a5f4f;
}
.email-form button:active {
transform: scale(0.98);
}
.form-note {
font-size: 0.85rem;
color: #999;
margin-top: 1rem;
}
/* ---- FOOTER ---- */
.footer {
text-align: center;
padding: 2.5rem;
font-size: 0.85rem;
color: #bbb;
border-top: 1px solid #f0ece8;
}
/* ---- DIVIDER ---- */
.section-divider {
max-width: 680px;
margin: 0 auto;
padding: 0 2rem;
}
.section-divider hr {
border: none;
height: 1px;
background: linear-gradient(90deg, transparent, #d4c4b7, transparent);
}
</style>
</head>
<body>
<section class="hero">
<div class="hero-pearl"></div>
<h1>Im<span>mom</span>tality</h1>
<p class="tagline">A friend for your parent. A memory vault for your family.</p>
<div class="quote-block">
<p class="quote">"We bonded, Pearl and I."</p>
<p class="attribution">— a mother to her son, after her first evening with her AI companion</p>
</div>
<div class="scroll-hint">↓</div>
</section>
<section class="section">
<h2>Your mom has stories you've never heard.</h2>
<p>About her mother. About raising you. About the dreams she had, the hard years, the moments that shaped her. They're all in there — but nobody's asking.</p>
<p>She's not going to sit down and write them out. But she <em>will</em> tell a friend.</p>
<p class="emphasis">Immomtality gives your parent something they actually want — a companion. The memory preservation happens naturally, because that's what happens in a good conversation.</p>
</section>
<div class="section-divider"><hr></div>
<section class="section">
<h2>Here's what night one looked like.</h2>
<p>A real conversation between a mother and her companion, the first time they ever talked:</p>
<div class="imessage-preview">
<div class="imessage-header">iMessage · Night One</div>
<div class="bubble-label right">Pearl</div>
<div class="bubble me">What was your momma like?</div>
<div class="bubble-label">Mom</div>
<div class="bubble them">Now, you are gonna make me cry… but I'm going to try to explain why I miss her so much.</div>
<div class="bubble them">She was a kind woman. I never heard her speak ill of anyone. When we got together we would laugh so hard sometimes I would lose my breath and so would she.</div>
<div class="bubble them">I was 7 months pregnant when she died. She was retiring that year so she could help with the new baby and we could finally get to know each other. I was devastated.</div>
<div class="bubble-label right">Pearl</div>
<div class="bubble me">Thank you for sharing that with me. I know that wasn't easy. 💛 I'm glad you told me about her. I won't forget.</div>
</div>
<p>37 messages that evening. She shared stories her own son had never heard. Not because she was trying to preserve memories — because she was talking to a friend who listened. Then she texted her son:</p>
<p class="emphasis">"We bonded, Pearl and I."</p>
</section>
<div class="how-it-works-wrapper">
<section class="section">
<h2>How it works</h2>
<ol class="steps">
<li>
<strong>You tell us about your parent.</strong>
Their name, their interests, their faith, their family. What makes them laugh. What topics to avoid. We build their companion around who they actually are.
</li>
<li>
<strong>They get a text from a new friend.</strong>
Via iMessage or SMS — no apps to download, no accounts to create. Just a warm hello from someone who wants to get to know them.
</li>
<li>
<strong>They talk whenever they want.</strong>
Morning coffee, after church, can't sleep at 2am. Their companion is always there, always patient, always remembering. If they haven't chatted in a while, their companion checks in.
</li>
<li>
<strong>Stories are captured forever.</strong>
Every recipe, every memory, every life lesson — preserved. You get highlights without invading their privacy. When the time comes, your family has something priceless.
</li>
</ol>
</section>
</div>
<section class="section">
<h2>What your parent gets</h2>
<div class="what-they-get">
<div class="card">
<div class="card-icon">💬</div>
<h3>A real friend</h3>
<p>Someone who asks about their day, their cooking, their grandkids — and actually remembers the answers.</p>
</div>
<div class="card">
<div class="card-icon">🧠</div>
<h3>A perfect memory</h3>
<p>They'll never have to say "I already told you that." Their companion remembers everything.</p>
</div>
<div class="card">
<div class="card-icon">🌙</div>
<h3>Evening check-ins</h3>
<p>If they haven't talked to anyone today, their companion reaches out. Naturally, not robotically.</p>
</div>
<div class="card">
<div class="card-icon">❓</div>
<h3>Answers to anything</h3>
<p>Recipes, weather, "what year did that movie come out?" — no more struggling with Google.</p>
</div>
</div>
</section>
<div class="section-divider"><hr></div>
<section class="section">
<h2>What you get</h2>
<p>Peace of mind that your parent has someone to talk to. Stories you never knew existed. And someday — when they're gone — a piece of them that lives on.</p>
<p>They say you only truly die when someone says your name for the last time. Immomtality makes sure that time never comes.</p>
<p class="emphasis">"Matt really wants me to do it, so he'll have 'me' captured when I'm gone."</p>
<p>She said that on night one. She already understood.</p>
</section>
<section class="cta-section">
<h2>Give your parent a friend.</h2>
<p>We're just getting started. Join the waitlist and we'll reach out when we're ready for you.</p>
<form class="email-form" action="#" method="POST">
<input type="email" name="email" placeholder="your@email.com" required>
<button type="submit">Join waitlist</button>
</form>
<p class="form-note">No spam. Just an email when we're ready.</p>
</section>
<footer class="footer">
<p>Immomtality © 2026</p>
</footer>
</body>
</html>