-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathme.html
More file actions
622 lines (577 loc) · 33.8 KB
/
me.html
File metadata and controls
622 lines (577 loc) · 33.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kai - Your AI Wellness Companion | Project Vision</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
<style>
:root {
--primary-color: #6a11cb;
--secondary-color: #2575fc;
--dark-color: #2c3e50;
--light-color: #ffffff;
--gray-color: #f4f7f6;
--success-color: #2ecc71;
--shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
--border-radius: 20px;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Roboto', sans-serif;
line-height: 1.8;
background-color: var(--gray-color);
color: #333;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
}
/* --- Header --- */
header {
color: var(--light-color);
text-align: center;
padding: 100px 20px;
border-bottom-left-radius: 50px;
border-bottom-right-radius: 50px;
margin-bottom: 40px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), #8a2be2, #4169e1);
background-size: 400% 400%;
animation: gradientBG 15s ease infinite;
}
@keyframes gradientBG {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
header h1 {
font-family: 'Poppins', sans-serif;
font-size: 3.8rem;
margin-bottom: 15px;
font-weight: 700;
text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
header p {
font-size: 1.3rem;
max-width: 750px;
margin: 0 auto;
opacity: 0.9;
}
/* --- General Section Styling --- */
.section {
background: var(--light-color);
padding: 60px 40px;
margin-bottom: 30px;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
opacity: 0;
transform: translateY(30px);
animation: fadeIn 0.8s forwards;
}
.section-title, .subsection-title {
font-family: 'Poppins', sans-serif;
text-align: center;
font-size: 2.8rem;
margin-bottom: 50px;
color: var(--dark-color);
position: relative;
}
.section-title::after {
content: '';
display: block;
width: 80px;
height: 4px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
margin: 15px auto 0;
border-radius: 2px;
}
.subsection-title {
font-size: 2rem;
color: #444;
margin-top: 60px;
margin-bottom: 40px;
}
/* Animate sections on scroll */
:nth-child(even).section { animation-delay: 0.2s; }
:nth-child(odd).section { animation-delay: 0.1s; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }
/* --- Mission & Problem/Solution Sections --- */
.mission-statement {
text-align: center;
font-family: 'Poppins', sans-serif;
font-size: 1.5rem;
color: var(--dark-color);
font-weight: 600;
padding: 20px;
border-left: 5px solid var(--primary-color);
background: #fff;
}
.problem-solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.problem-solution-grid h3 { font-family: 'Poppins', sans-serif; font-size: 1.8rem; margin-bottom: 15px; color: var(--primary-color); }
.problem-solution-grid ul { list-style-position: inside; padding-left: 10px; }
.problem-solution-grid ul li { margin-bottom: 10px; }
/* --- Key Differentiators Section --- */
.differentiators-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.diff-card { text-align: center; padding: 25px; background: var(--gray-color); border-radius: 15px; transition: transform 0.3s, box-shadow 0.3s; }
.diff-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(44, 62, 80, 0.15); }
.diff-card svg { width: 50px; height: 50px; margin-bottom: 15px; color: var(--primary-color); }
.diff-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.3rem; margin-bottom: 10px; color: var(--dark-color); }
/* --- Rebuilt Diagram: Detailed Component Interaction --- */
.detailed-architecture {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: auto;
gap: 50px 25px;
position: relative;
}
.arch-node {
background-color: #fff;
padding: 20px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.07);
border: 1px solid #eef;
text-align: center;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
position: relative;
min-height: 100px;
}
.arch-node strong { font-family: 'Poppins'; color: var(--dark-color); font-size: 1.1rem; }
.arch-node span { font-size: 0.9rem; color: #666; }
.arch-node.full-width { grid-column: 1 / -1; }
.arch-node.ui { background-color: #e9f1ff; }
.arch-node.core { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: white; }
.arch-node.core strong, .arch-node.core span { color: white; }
.arch-node:not(.ui)::before, .arch-node.core + .arch-node::before {
content: '↓'; position: absolute; top: -35px; left: 50%; transform: translateX(-50%); color: var(--secondary-color); font-weight: bold; font-size: 1.8rem;
}
.arch-node.core + .arch-node::before { content: '↑'; }
/* --- Feature Breakdown --- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.feature-card { background: #fafafa; border-radius: 15px; padding: 30px; border-left: 5px solid; transition: transform 0.3s, box-shadow 0.3s; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.feature-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; margin-bottom: 15px; }
.feature-card ul { list-style: none; padding-left: 0; }
.feature-card ul li { background: #eee; padding: 8px 12px; border-radius: 20px; margin-bottom: 8px; font-size: 0.9rem; display: inline-block; }
#f1 { border-color: #3498db; } #f2 { border-color: #e67e22; } #f3 { border-color: #9b59b6; } #f4 { border-color: var(--success-color); }
/* --- Rebuilt Diagram: Integrated Technology Flow --- */
.integrated-flow { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.flow-row { display: flex; justify-content: center; gap: 20px; width: 100%; }
.flow-box { background: #fff; padding: 20px; border-radius: 15px; box-shadow: var(--shadow); text-align: center; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.flow-box h3 { font-family: 'Poppins'; font-size: 1.1rem; color: var(--dark-color); margin-bottom: 5px; }
.flow-box.full-width { width: 100%; max-width: 800px; }
.flow-box.dashed { border: 2px dashed var(--secondary-color); background: #fafdff; }
.flow-box .tech-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.tech-tag { background: #e5efff; color: var(--secondary-color); padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 500; }
.flow-arrow { font-size: 2rem; color: var(--dark-color); margin: 0; padding: 0; }
.split-arrow { font-size: 2rem; color: var(--dark-color); position: relative; width: 100%; text-align: center; }
.split-arrow::before, .split-arrow::after { content: ''; position: absolute; bottom: 10px; width: 40%; height: 2px; background: #ccc; }
.split-arrow::before { left: 0; transform: rotate(-25deg); transform-origin: left bottom; }
.split-arrow::after { right: 0; transform: rotate(25deg); transform-origin: right bottom; }
/* --- Ethics & Roadmap --- */
.ethics-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.ethics-item { display: flex; align-items: flex-start; gap: 15px; }
.ethics-item svg { width: 30px; height: 30px; color: var(--success-color); flex-shrink: 0; margin-top: 5px; }
.ethics-item h3 { font-family: 'Poppins'; font-size: 1.2rem; color: var(--dark-color); }
.roadmap { display: flex; justify-content: space-between; gap: 20px; position: relative; padding: 20px 0; }
.roadmap::before { content: ''; position: absolute; top: 50%; left: 10%; width: 80%; height: 4px; background: #eee; transform: translateY(-50%); }
.roadmap-stage { position: relative; text-align: center; width: 30%; }
.roadmap-stage::before { content: ''; position: absolute; top: 50%; left: 50%; width: 20px; height: 20px; background: white; border: 4px solid var(--secondary-color); border-radius: 50%; transform: translate(-50%, -50%); z-index: 1;}
.roadmap-stage:first-child::before { border-color: var(--primary-color); background: var(--primary-color); }
.roadmap-stage h3 { font-family: 'Poppins'; margin-bottom: 10px; }
/* --- Demo Chat --- */
.chat-container { max-width: 800px; margin: 0 auto; background: #e5efff; border-radius: var(--border-radius); padding: 30px; box-shadow: inset 0 4px 15px rgba(0,0,0,0.06); }
.chat-bubble { padding: 15px 20px; border-radius: 20px; margin-bottom: 15px; max-width: 85%; position: relative; opacity: 0; animation: popIn 0.5s forwards; }
.chat-bubble.user { background: var(--light-color); color: var(--dark-color); margin-left: auto; border-bottom-right-radius: 5px; }
.chat-bubble.ai { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: var(--light-color); border-bottom-left-radius: 5px; }
.chat-bubble p:first-child { margin-top: 0; } .chat-bubble p:last-child { margin-bottom: 0; }
.chat-bubble.proactive { background: #fff; border: 1px solid var(--secondary-color); color: var(--dark-color); font-style: italic; }
.chat-bubble .timestamp { font-size: 0.8rem; opacity: 0.7; display: block; margin-top: 8px; text-align: right; }
@keyframes popIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
.chat-bubble:nth-child(2) { animation-delay: 0.5s; } .chat-bubble:nth-child(3) { animation-delay: 1.2s; }
.chat-bubble:nth-child(4) { animation-delay: 1.7s; } .chat-bubble:nth-child(5) { animation-delay: 2.4s; }
.chat-bubble:nth-child(6) { animation-delay: 3.1s; }
/* START: New Styles for Added Diagram */
.flowchart-v2-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}
.flowchart-v2-row {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}
.flow-node-v2 {
background-color: #fff;
padding: 25px;
border-radius: 15px;
box-shadow: 0 8px 25px rgba(0,0,0,0.08);
text-align: center;
width: 220px;
border: 1px solid #f0f0f0;
}
.flow-node-v2-icon {
width: 40px;
height: 40px;
margin: 0 auto 15px auto;
color: var(--primary-color);
}
.flow-node-v2 h3 {
font-family: 'Poppins', sans-serif;
font-size: 1.2rem;
margin-bottom: 5px;
}
.flow-node-v2 p {
font-size: 0.9rem;
color: #777;
}
.flow-arrow-v2 {
display: flex;
align-items: center;
justify-content: center;
background-color: var(--secondary-color);
color: white;
width: 40px;
height: 40px;
border-radius: 10px;
font-size: 1.5rem;
font-weight: bold;
}
/* END: New Styles for Added Diagram */
/* --- Footer --- */
footer { text-align: center; padding: 40px 20px; margin-top: 40px; color: #777; }
/* --- Responsive --- */
@media (max-width: 992px) {
.problem-solution-grid { grid-template-columns: 1fr; }
.roadmap { flex-direction: column; align-items: center; gap: 40px; }
.roadmap::before { display: none; } .roadmap-stage { width: 80%; }
.roadmap-stage::before { top: -20px; left: 50%; transform: translateX(-50%); }
.detailed-architecture { grid-template-columns: 1fr; }
.flow-row { flex-direction: column; }
}
@media (max-width: 768px) {
header h1 { font-size: 2.8rem; } header p { font-size: 1.1rem; }
.section-title, .subsection-title { font-size: 2.2rem; }
.section { padding: 40px 20px; }
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Meet Kai: Your Personal Wellness Companion</h1>
<p>An empathetic AI designed to provide proactive, personalized, and private mental wellness support, helping you navigate life's challenges.</p>
</div>
</header>
<div class="container">
<section class="section mission-statement">
Our mission is to make proactive mental wellness support accessible to everyone, creating a world where no one has to feel alone with their thoughts.
</section>
<section class="section">
<h2 class="section-title">The Problem & Our Solution</h2>
<div class="problem-solution-grid">
<div>
<h3>The Silent Struggle</h3>
<ul>
<li>Many people face daily stress, anxiety, and burnout without accessible support.</li>
<li>Traditional therapy can be expensive, time-consuming, and stigmatized.</li>
<li>Existing apps are often reactive, waiting for a crisis instead of preventing one.</li>
</ul>
</div>
<div>
<h3>A Proactive Companion</h3>
<ul>
<li>Kai provides 24/7, confidential support right in your pocket, for free.</li>
<li>It learns your patterns and proactively offers personalized tools and encouragement.</li>
<li>We bridge the gap by making mental wellness a positive, daily practice.</li>
</ul>
</div>
</div>
</section>
<section class="section">
<h2 class="section-title">Key Differentiators</h2>
<div class="differentiators-grid">
<div class="diff-card">
<svg xmlns="http://www.w.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M9.813 15.904L9 18.75l-.813-2.846a4.5 4.5 0 00-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 003.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 003.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 00-3.09 3.09zM18.259 8.715L18 9.75l-.259-1.035a3.375 3.375 0 00-2.455-2.456L14.25 6l1.036-.259a3.375 3.375 0 002.455-2.456L18 2.25l.259 1.035a3.375 3.375 0 002.456 2.456L21.75 6l-1.035.259a3.375 3.375 0 00-2.456 2.456zM16.898 20.624L16.5 21.75l-.398-1.126a3.375 3.375 0 00-2.456-2.456L12.75 18l1.126-.398a3.375 3.375 0 002.456-2.456L16.5 14.25l.398 1.126a3.375 3.375 0 002.456 2.456L20.25 18l-1.126.398a3.375 3.375 0 00-2.456 2.456z" /></svg>
<h3>Proactive, Not Reactive</h3>
<p>Kai initiates conversations and offers support before you even have to ask.</p>
</div>
<div class="diff-card">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M16.5 10.5V6.75a4.5 4.5 0 10-9 0v3.75m-.75 11.25h10.5a2.25 2.25 0 002.25-2.25v-6.75a2.25 2.25 0 00-2.25-2.25H6.75a2.25 2.25 0 00-2.25 2.25v6.75a2.25 2.25 0 002.25 2.25z" /></svg>
<h3>Privacy-First Design</h3>
<p>Conversations are encrypted and anonymous. Your data is yours, always.</p>
</div>
<div class="diff-card">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M17.982 18.725A7.488 7.488 0 0012 15.75a7.488 7.488 0 00-5.982 2.975m11.963 0a9 9 0 10-11.963 0m11.963 0A8.966 8.966 0 0112 21a8.966 8.966 0 01-5.982-2.275M15 9.75a3 3 0 11-6 0 3 3 0 016 0z" /></svg>
<h3>Truly Personalized</h3>
<p>Remembers what works for you, creating a unique and deepening bond over time.</p>
</div>
</div>
</section>
<section class="section">
<h2 class="section-title">System Architecture</h2>
<h3 class="subsection-title">Detailed Component Interaction</h3>
<div class="detailed-architecture">
<div class="arch-node full-width ui">
<strong>User Interface</strong>
<span>Mobile/Web App (Text/Voice Input)</span>
</div>
<div class="arch-node">
<strong>Speech-to-Text</strong>
<span>Whisper / Google STT</span>
</div>
<div class="arch-node">
<strong>Input Analysis</strong>
<span>Mood & Intent Detection</span>
</div>
<div class="arch-node">
<strong>Memory System (RAG)</strong>
<span>Vector DB (Pinecone)</span>
</div>
<div class="arch-node full-width core">
<strong>Core Logic (LLM)</strong>
<span>Combines input, mood, and memory to generate response</span>
</div>
<div class="arch-node">
<strong>Agentic System</strong>
<span>Schedules proactive tasks</span>
</div>
<div class="arch-node">
<strong>Response Handler</strong>
<span>Formats and sends reply to UI</span>
</div>
<div class="arch-node">
<strong>Notification Service</strong>
<span>Firebase / Twilio for nudges</span>
</div>
</div>
</section>
<!-- START: Newly Added Section -->
<section class="section">
<h2 class="section-title">High-Level System Architecture</h2>
<div class="flowchart-v2-container">
<div class="flowchart-v2-row">
<div class="flow-node-v2">
<div class="flow-node-v2-icon">
<svg fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 1.5A10.5 10.5 0 0 1 22.5 12 10.5 10.5 0 0 1 12 22.5 10.5 10.5 0 0 1 1.5 12 10.5 10.5 0 0 1 12 1.5z"></path></svg>
</div>
<h3>User Input</h3>
<p>Text or Voice</p>
</div>
<div class="flow-arrow-v2">→</div>
<div class="flow-node-v2">
<div class="flow-node-v2-icon">
<svg fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5.636 5.636a9 9 0 1 0 12.728 0M12 3v9"></path><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 12h3.535M12 12H8.465M12 12v3.535M12 12V8.465"></path></svg>
</div>
<h3>Analysis & Memory</h3>
<p>Mood & Context</p>
</div>
<div class="flow-arrow-v2">→</div>
<div class="flow-node-v2">
<div class="flow-node-v2-icon">
<svg fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 9l4-4 4 4m0 6l-4 4-4-4"></path><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 12h16"></path></svg>
</div>
<h3>AI Core Processing</h3>
<p>Gemini API + RAG</p>
</div>
</div>
<div class="flow-arrow-v2" style="transform: rotate(90deg); margin: -10px;">→</div>
<div class="flowchart-v2-row">
<div class="flow-node-v2">
<div class="flow-node-v2-icon">
<svg fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 15V7a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v8l-3.5-3.5a1 1 0 0 0-1.414 0L12 13.586l-1.086-1.086a1 1 0 0 0-1.414 0L5 15z"></path><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 15l-2 2h18l-2-2"></path></svg>
</div>
<h3>Output & Action</h3>
<p>Response & Nudges</p>
</div>
</div>
</div>
</section>
<!-- END: Newly Added Section -->
<section class="section">
<h2 class="section-title">Feature-wise Tech Breakdown</h2>
<div class="feature-grid">
<div class="feature-card" id="f1">
<h3>1. Personalized Conversation</h3>
<p>Creates a human-like chat experience by remembering past interactions and context.</p>
<ul><li>Gemini API</li><li>LangChain</li><li>Pinecone</li></ul>
</div>
<div class="feature-card" id="f2">
<h3>2. Mood Detection</h3>
<p>Understands the user's emotional state from text and voice, not just their words.</p>
<ul><li>HuggingFace Transformers</li><li>SpeechBrain / Whisper</li></ul>
</div>
<div class="feature-card" id="f3">
<h3>3. Agentic AI (Proactive)</h3>
<p>Transforms the AI into an active companion that tracks goals and sends reminders.</p>
<ul><li>CrewAI / LangGraph</li><li>Celery</li><li>Firebase Cloud Messaging</li></ul>
</div>
<div class="feature-card" id="f4">
<h3>4. Friendly Interventions</h3>
<p>Provides dynamic support inspired by proven techniques like CBT in a casual way.</p>
<ul><li>Gemini API (Fine-tuned)</li><li>RAG Knowledge Base</li></ul>
</div>
</div>
</section>
<section class="section">
<h2 class="section-title">Integrated Technology & Feature Flow</h2>
<div class="integrated-flow">
<div class="flow-row">
<div class="flow-box full-width dashed">
<h3>👤 User</h3>
<p>Sends text or voice message</p>
</div>
</div>
<div class="flow-arrow">↓</div>
<div class="flow-row">
<div class="flow-box" style="border-left: 5px solid #e67e22;">
<h3>2. Mood Detection</h3>
<p>Analyzes emotional tone</p>
<div class="tech-tags">
<span class="tech-tag">HuggingFace</span>
<span class="tech-tag">Whisper</span>
</div>
</div>
<div class="flow-box" style="border-left: 5px solid #3498db;">
<h3>1. Personalized Conversation</h3>
<p>Retrieves past context</p>
<div class="tech-tags">
<span class="tech-tag">RAG (Pinecone)</span>
<span class="tech-tag">LangChain</span>
</div>
</div>
</div>
<div class="flow-arrow">↓</div>
<div class="flow-row">
<div class="flow-box full-width" style="background: var(--dark-color); color: white;">
<h3 style="color: white;">⚙️ AI Core (LLM Brain)</h3>
<p>Synthesizes input, mood, and context to reason and decide on a course of action.</p>
<div class="tech-tags">
<span class="tech-tag">Gemini API</span>
</div>
</div>
</div>
<div class="split-arrow"></div>
<div class="flow-row">
<div class="flow-box" style="border-left: 5px solid var(--success-color);">
<h3>4. Friendly Interventions</h3>
<p>Generates an immediate, empathetic response using CBT techniques.</p>
<div class="tech-tags">
<span class="tech-tag">RAG Knowledge Base</span>
</div>
</div>
<div class="flow-box" style="border-left: 5px solid #9b59b6;">
<h3>3. Agentic AI (Proactive)</h3>
<p>Schedules a future task, like a reminder or check-in.</p>
<div class="tech-tags">
<span class="tech-tag">CrewAI</span>
<span class="tech-tag">Celery</span>
</div>
</div>
</div>
<div class="flow-arrow">↓</div>
<div class="flow-row">
<div class="flow-box full-width dashed">
<h3>💬 Output & Action</h3>
<p>User receives an instant reply and a helpful nudge later.</p>
</div>
</div>
</div>
</section>
<section class="section">
<h2 class="section-title">How It Helps: An Agentic AI -Powered Scenario</h2>
<div class="chat-container">
<div class="chat-bubble user">
<p>Ugh, I have this huge project report due Friday and I just can't start. I feel totally overwhelmed and just keep scrolling on my phone instead.</p>
<span class="timestamp">Sunday, 8:15 PM</span>
</div>
<div class="chat-bubble ai">
<p>Hey Alex. That feeling of being frozen by a big task is completely normal. It’s not about being lazy; it's your brain trying to avoid something that feels huge and stressful.</p>
<p>Instead of just recalling a past technique, let's create a new first step together, right now. ✨ **What's the absolute smallest, easiest part of that report?**</p>
</div>
<div class="chat-bubble user">
<p>I guess... I could just create the document and write the title page. But that feels so pointless.</p>
<span class="timestamp">Sunday, 8:17 PM</span>
</div>
<div class="chat-bubble ai">
<p>That's a perfect start! The point isn't to make huge progress, but to break the "stuck" feeling. Let's make it a concrete plan. Based on what you said, here's a 5-minute action plan I've generated for you:</p>
<p><strong>1. Open a new document.<br>2. Title it: [Project Name] Report.<br>3. Write your name and the date.</strong></p>
<p>That's it. Once that's done, you've officially started. How does that feel?</p>
</div>
<div class="chat-bubble ai proactive">
<p>Morning, Alex! Just a friendly nudge. How did that 5-minute action plan feel yesterday? Hope you're having a good start to your Monday.</p>
<span class="timestamp">Monday, 9:30 AM</span>
</div>
<div class="chat-bubble user">
<p>Hey! It actually worked. I ended up working for 20 minutes and got the whole outline done. I feel so much lighter and more in control today. Thanks!</p>
<span class="timestamp">Monday, 9:32 AM</span>
</div>
</div>
</section>
<section class="section">
<h2 class="section-title">Our Ethical Framework</h2>
<div class="ethics-list">
<div class="ethics-item">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75L11.25 15 15 9.75m-3-7.036A11.959 11.959 0 013.598 6 11.99 11.99 0 003 9.749c0 5.592 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.31-.21-2.571-.598-3.751h-.152c-3.196 0-6.1-1.248-8.25-3.286zm0 13.036h.008v.008h-.008v-.008z" /></svg>
<div>
<h3>User Safety First</h3>
<p>Our system is trained to detect crisis situations and provide immediate access to resources like helpline numbers, prioritizing user well-being above all.</p>
</div>
</div>
<div class="ethics-item">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M14.25 7.756a4.5 4.5 0 100 8.488M7.5 10.5h5.25m-5.25 3h5.25M21 12a9 9 0 11-18 0 9 9 0 0118 0z" /></svg>
<div>
<h3>Data Anonymity</h3>
<p>All personally identifiable information is stripped from conversations. We analyze patterns, not people.</p>
</div>
</div>
<div class="ethics-item">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M3.98 8.223A10.477 10.477 0 001.934 12C3.226 16.338 7.244 19.5 12 19.5c.993 0 1.953-.138 2.863-.395M6.228 6.228A10.45 10.45 0 0112 4.5c4.756 0 8.773 3.162 10.065 7.498a10.523 10.523 0 01-4.293 5.774M6.228 6.228L3 3m3.228 3.228l3.65 3.65m7.894 7.894L21 21m-3.228-3.228l-3.65-3.65m0 0a3 3 0 10-4.243-4.243m4.243 4.243L6.228 6.228" /></svg>
<div>
<h3>Transparency</h3>
<p>We are always clear that Kai is an AI, not a human therapist. We set realistic expectations to ensure responsible use.</p>
</div>
</div>
</div>
</section>
<section class="section">
<h2 class="section-title">Project Roadmap</h2>
<div class="roadmap">
<div class="roadmap-stage">
<h3>Phase 1: Core App</h3>
<p>Launch with core features: personalized chat, mood detection, and proactive nudges.</p>
</div>
<div class="roadmap-stage">
<h3>Phase 2: Expansion</h3>
<p>Introduce guided modules for specific goals (e.g., anxiety, focus) and journal integration.</p>
</div>
<div class="roadmap-stage">
<h3>Phase 3: Community</h3>
<p>Develop optional, anonymous peer-support groups moderated by AI for shared experiences.</p>
</div>
</div>
</section>
</div>
<footer>
<div class="container">
<p>© 2025 Kai Wellness. A new era of mental well-being.</p>
</div>
</footer>
</body>
</html>