File size: 32,005 Bytes
f49f139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>MySelf-AI | Your Partner in Mental Wellness</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        .gradient-bg {
            background: linear-gradient(135deg, #6B73FF 0%, #000DFF 50%, #0085FF 100%);
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .chat-bubble {
            border-radius: 20px;
            position: relative;
        }
        .chat-bubble:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20px;
            width: 0;
            height: 0;
            border: 15px solid transparent;
            border-top-color: #EFF6FF;
            border-bottom: 0;
            margin-bottom: -15px;
        }
        .ai-bubble:after {
            border-top-color: #DBEAFE;
            left: auto;
            right: 20px;
        }
        .pattern-bg {
            background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 20px 20px;
        }
    </style>
</head>
<body class="font-sans antialiased text-gray-800">
    <!-- Header/Navigation -->
    <header class="gradient-bg text-white sticky top-0 z-50 shadow-lg">
        <div class="container mx-auto px-4 py-4 flex justify-between items-center">
            <div class="flex items-center space-x-2">
                <i class="fas fa-brain text-2xl"></i>
                <h1 class="text-2xl font-bold">MySelf-AI</h1>
            </div>
            <nav class="hidden md:flex space-x-8">
                <a href="#features" class="hover:text-blue-200 transition">Features</a>
                <a href="#how-it-works" class="hover:text-blue-200 transition">How It Works</a>
                <a href="#difference" class="hover:text-blue-200 transition">Our Difference</a>
                <a href="#cta" class="bg-white text-blue-600 px-4 py-2 rounded-full font-medium hover:bg-blue-50 transition">Get Started</a>
            </nav>
            <button class="md:hidden text-2xl">
                <i class="fas fa-bars"></i>
            </button>
        </div>
    </header>

    <!-- Hero Section -->
    <section class="gradient-bg text-white py-20 pattern-bg">
        <div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
            <div class="md:w-1/2 mb-10 md:mb-0">
                <h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">Your Partner in <span class="text-yellow-300">Mental Wellness</span></h1>
                <p class="text-xl mb-8">An autonomous, intelligent companion designed to proactively support your psychological well-being journey.</p>
                <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
                    <a href="#cta" class="bg-white text-blue-600 px-6 py-3 rounded-full font-bold text-center hover:bg-blue-50 transition">Start Your Journey</a>
                    <a href="#how-it-works" class="border-2 border-white text-white px-6 py-3 rounded-full font-bold text-center hover:bg-white hover:text-blue-600 transition">Learn More</a>
                </div>
            </div>
            <div class="md:w-1/2 flex justify-center">
                <div class="relative w-full max-w-md">
                    <div class="absolute -top-10 -left-10 w-32 h-32 bg-yellow-300 rounded-full opacity-20"></div>
                    <div class="absolute -bottom-10 -right-10 w-32 h-32 bg-pink-300 rounded-full opacity-20"></div>
                    <div class="relative bg-white rounded-2xl shadow-xl overflow-hidden">
                        <div class="bg-blue-600 text-white p-4 flex items-center">
                            <div class="w-3 h-3 bg-red-500 rounded-full mr-2"></div>
                            <div class="w-3 h-3 bg-yellow-500 rounded-full mr-2"></div>
                            <div class="w-3 h-3 bg-green-500 rounded-full mr-3"></div>
                            <p class="text-sm font-medium">MySelf-AI</p>
                        </div>
                        <div class="p-4 h-64 overflow-y-auto">
                            <div class="flex mb-4 justify-start">
                                <div class="bg-blue-100 chat-bubble ai-bubble px-4 py-3 max-w-xs">
                                    <p class="text-sm">I notice this is the 3rd time this week you've mentioned anxiety after 2 PM. Last time, the breathing exercise helped - shall we try that now?</p>
                                </div>
                            </div>
                            <div class="flex mb-4 justify-end">
                                <div class="bg-blue-600 text-white chat-bubble px-4 py-3 max-w-xs">
                                    <p class="text-sm">Yes please, I'm feeling overwhelmed again.</p>
                                </div>
                            </div>
                            <div class="flex mb-4 justify-start">
                                <div class="bg-blue-100 chat-bubble ai-bubble px-4 py-3 max-w-xs">
                                    <p class="text-sm">Let's begin. Breathe in for 4 seconds... hold for 7... and exhale for 8. I'll guide you through this.</p>
                                </div>
                            </div>
                        </div>
                        <div class="border-t p-3 flex items-center">
                            <input type="text" placeholder="Type your message..." class="flex-1 border rounded-full px-4 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500">
                            <button class="ml-2 bg-blue-600 text-white rounded-full p-2 hover:bg-blue-700 transition">
                                <i class="fas fa-paper-plane"></i>
                            </button>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- What Makes Us Different Section -->
    <section id="difference" class="py-20 bg-gray-50">
        <div class="container mx-auto px-4">
            <div class="text-center mb-16">
                <h2 class="text-3xl md:text-4xl font-bold mb-4">What Makes <span class="text-blue-600">MySelf-AI</span> Different?</h2>
                <p class="text-xl text-gray-600 max-w-3xl mx-auto">Traditional apps wait for you to tell them what's wrong. We proactively notice patterns and suggest helpful actions.</p>
            </div>
            
            <div class="grid md:grid-cols-2 gap-10 mb-16">
                <div class="bg-white p-8 rounded-xl shadow-md">
                    <div class="flex items-center mb-4">
                        <div class="bg-red-100 p-3 rounded-full mr-4">
                            <i class="fas fa-robot text-red-500 text-xl"></i>
                        </div>
                        <h3 class="text-xl font-bold">Traditional Chatbot</h3>
                    </div>
                    <div class="space-y-4">
                        <div class="flex">
                            <div class="bg-gray-100 rounded-lg p-3 max-w-xs">
                                <p class="text-sm">I'm feeling anxious.</p>
                            </div>
                        </div>
                        <div class="flex justify-end">
                            <div class="bg-blue-100 rounded-lg p-3 max-w-xs">
                                <p class="text-sm">I'm sorry to hear that. What's causing your anxiety?</p>
                            </div>
                        </div>
                    </div>
                    <div class="mt-6 pt-6 border-t border-gray-200">
                        <p class="text-gray-600">Reactive responses with no memory or pattern recognition.</p>
                    </div>
                </div>
                
                <div class="bg-white p-8 rounded-xl shadow-md border-2 border-blue-500 relative">
                    <div class="absolute -top-3 -right-3 bg-blue-500 text-white px-3 py-1 rounded-full text-xs font-bold">MySelf-AI</div>
                    <div class="flex items-center mb-4">
                        <div class="bg-blue-100 p-3 rounded-full mr-4">
                            <i class="fas fa-brain text-blue-500 text-xl"></i>
                        </div>
                        <h3 class="text-xl font-bold">Intelligent Partner</h3>
                    </div>
                    <div class="space-y-4">
                        <div class="flex">
                            <div class="bg-gray-100 rounded-lg p-3 max-w-xs">
                                <p class="text-sm">I'm feeling anxious.</p>
                            </div>
                        </div>
                        <div class="flex justify-end">
                            <div class="bg-blue-500 text-white rounded-lg p-3 max-w-xs">
                                <p class="text-sm">I notice this is the third time this week you've mentioned anxiety after 2 PM. Last time, the breathing exercise helped - shall we try that now, or would you prefer to explore what's different about today?</p>
                            </div>
                        </div>
                    </div>
                    <div class="mt-6 pt-6 border-t border-gray-200">
                        <p class="text-gray-600">Proactive responses with context, memory, and pattern recognition.</p>
                    </div>
                </div>
            </div>
            
            <div class="bg-white rounded-xl shadow-lg overflow-hidden">
                <div class="md:flex">
                    <div class="md:w-1/2 p-8 md:p-12">
                        <h3 class="text-2xl font-bold mb-4">Dual Memory System</h3>
                        <p class="text-gray-600 mb-6">MySelf-AI builds a comprehensive understanding of you through two powerful memory systems:</p>
                        
                        <div class="space-y-6">
                            <div class="flex">
                                <div class="bg-blue-100 p-3 rounded-full h-12 w-12 flex items-center justify-center mr-4 flex-shrink-0">
                                    <i class="fas fa-book text-blue-500"></i>
                                </div>
                                <div>
                                    <h4 class="font-bold mb-1">Memory for Facts</h4>
                                    <p class="text-gray-600 text-sm">Remembers your preferences, history, and important life events for truly personal conversations.</p>
                                </div>
                            </div>
                            
                            <div class="flex">
                                <div class="bg-purple-100 p-3 rounded-full h-12 w-12 flex items-center justify-center mr-4 flex-shrink-0">
                                    <i class="fas fa-project-diagram text-purple-500"></i>
                                </div>
                                <div>
                                    <h4 class="font-bold mb-1">Memory for Patterns</h4>
                                    <p class="text-gray-600 text-sm">Analyzes your inputs over time to map complex relationships between triggers, emotions, and behaviors.</p>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="md:w-1/2 bg-gray-50 p-8 md:p-12 flex items-center">
                        <div class="w-full">
                            <div class="bg-white rounded-lg shadow p-6 mb-6">
                                <div class="flex justify-between items-center mb-2">
                                    <span class="text-sm font-medium text-gray-500">Sleep Quality</span>
                                    <span class="text-sm font-bold text-green-500">+23%</span>
                                </div>
                                <div class="h-2 bg-gray-200 rounded-full overflow-hidden">
                                    <div class="h-full bg-green-500 rounded-full" style="width: 73%"></div>
                                </div>
                                <p class="text-xs text-gray-500 mt-2">Improves after meditation sessions</p>
                            </div>
                            <p class="text-gray-600 italic">"Your sleep quality improves by 23% after meditation sessions."</p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Features Section -->
    <section id="features" class="py-20">
        <div class="container mx-auto px-4">
            <div class="text-center mb-16">
                <h2 class="text-3xl md:text-4xl font-bold mb-4">Features Designed for <span class="text-blue-600">Your Growth</span></h2>
                <p class="text-xl text-gray-600 max-w-3xl mx-auto">Comprehensive tools that work together to support your long-term mental wellness goals.</p>
            </div>
            
            <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
                <div class="bg-white rounded-xl shadow-md overflow-hidden feature-card transition duration-300">
                    <div class="h-48 bg-blue-500 flex items-center justify-center">
                        <i class="fas fa-book-open text-white text-5xl"></i>
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-3">Intelligent Journaling</h3>
                        <p class="text-gray-600 mb-4">When you journal, MySelf-AI analyzes themes, connects to past entries, and offers immediate insights or follow-up actions.</p>
                        <div class="flex items-center text-blue-500 font-medium">
                            <span>Try command: /dagbog</span>
                        </div>
                    </div>
                </div>
                
                <div class="bg-white rounded-xl shadow-md overflow-hidden feature-card transition duration-300">
                    <div class="h-48 bg-purple-500 flex items-center justify-center">
                        <i class="fas fa-tools text-white text-5xl"></i>
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-3">Evidence-Based Tools</h3>
                        <p class="text-gray-600 mb-4">Comprehensive library of therapeutic interventions based on proven methods like CBT and Mindfulness.</p>
                        <div class="flex space-x-2">
                            <span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">CBT</span>
                            <span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">DBT</span>
                            <span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">ACT</span>
                        </div>
                    </div>
                </div>
                
                <div class="bg-white rounded-xl shadow-md overflow-hidden feature-card transition duration-300">
                    <div class="h-48 bg-green-500 flex items-center justify-center">
                        <i class="fas fa-bullseye text-white text-5xl"></i>
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-3">Adaptive Interventions</h3>
                        <p class="text-gray-600 mb-4">Tools are suggested based on your current state, preferences, and what has worked for you in the past.</p>
                        <div class="flex items-center text-green-500">
                            <i class="fas fa-chart-line mr-2"></i>
                            <span>Personalized recommendations</span>
                        </div>
                    </div>
                </div>
                
                <div class="bg-white rounded-xl shadow-md overflow-hidden feature-card transition duration-300">
                    <div class="h-48 bg-yellow-500 flex items-center justify-center">
                        <i class="fas fa-flag text-white text-5xl"></i>
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-3">Autonomous Goal Pursuit</h3>
                        <p class="text-gray-600 mb-4">Helps you set and track objectives, proactively bringing them up later with concrete strategies.</p>
                        <div class="flex items-center text-yellow-600">
                            <i class="fas fa-bell mr-2"></i>
                            <span>Proactive reminders</span>
                        </div>
                    </div>
                </div>
                
                <div class="bg-white rounded-xl shadow-md overflow-hidden feature-card transition duration-300">
                    <div class="h-48 bg-red-500 flex items-center justify-center">
                        <i class="fas fa-chart-pie text-white text-5xl"></i>
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-3">Pattern Recognition</h3>
                        <p class="text-gray-600 mb-4">Identifies connections between your mood, activities, and environment that you might have missed.</p>
                        <div class="flex items-center text-red-500">
                            <i class="fas fa-lightbulb mr-2"></i>
                            <span>Valuable insights</span>
                        </div>
                    </div>
                </div>
                
                <div class="bg-white rounded-xl shadow-md overflow-hidden feature-card transition duration-300">
                    <div class="h-48 bg-indigo-500 flex items-center justify-center">
                        <i class="fas fa-heart text-white text-5xl"></i>
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-3">Compassionate Companion</h3>
                        <p class="text-gray-600 mb-4">More than a tool - a consistent, insightful partner that celebrates your progress and helps navigate challenges.</p>
                        <div class="flex items-center text-indigo-500">
                            <i class="fas fa-hand-holding-heart mr-2"></i>
                            <span>Always there for you</span>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- How It Works Section -->
    <section id="how-it-works" class="py-20 bg-gray-900 text-white">
        <div class="container mx-auto px-4">
            <div class="text-center mb-16">
                <h2 class="text-3xl md:text-4xl font-bold mb-4">How <span class="text-blue-400">MySelf-AI</span> Works</h2>
                <p class="text-xl text-gray-300 max-w-3xl mx-auto">Built on sophisticated agent architecture that perceives, thinks, and acts to support your mental wellness.</p>
            </div>
            
            <div class="grid md:grid-cols-3 gap-8">
                <div class="bg-gray-800 rounded-lg p-8 text-center">
                    <div class="bg-blue-500 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
                        <i class="fas fa-eye text-2xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3">Perceives</h3>
                    <p class="text-gray-300">Continuously monitors your inputs, emotions, and patterns through conversations and journal entries.</p>
                </div>
                
                <div class="bg-gray-800 rounded-lg p-8 text-center">
                    <div class="bg-purple-500 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
                        <i class="fas fa-brain text-2xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3">Thinks</h3>
                    <p class="text-gray-300">Analyzes information using dual memory systems to understand context and identify meaningful patterns.</p>
                </div>
                
                <div class="bg-gray-800 rounded-lg p-8 text-center">
                    <div class="bg-green-500 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
                        <i class="fas fa-bolt text-2xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3">Acts</h3>
                    <p class="text-gray-300">Proactively suggests interventions, asks insightful questions, and helps implement strategies.</p>
                </div>
            </div>
            
            <div class="mt-16 bg-gray-800 rounded-xl p-8 md:p-12">
                <div class="md:flex items-center">
                    <div class="md:w-1/2 mb-8 md:mb-0">
                        <h3 class="text-2xl font-bold mb-4">Your Journey, Your Partner</h3>
                        <p class="text-gray-300 mb-6">MySelf-AI is more than a tool; it's a companion designed to be consistent, insightful, and proactive. Its success is measured not just by your engagement, but by its ability to autonomously contribute to your mental health.</p>
                        <div class="flex items-center text-blue-400">
                            <i class="fas fa-hands-helping text-2xl mr-3"></i>
                            <span class="font-medium">Celebrating your progress and helping you navigate challenges along the way.</span>
                        </div>
                    </div>
                    <div class="md:w-1/2 flex justify-center">
                        <div class="relative">
                            <div class="w-64 h-64 bg-blue-500 rounded-full opacity-20 absolute -top-10 -left-10"></div>
                            <div class="w-64 h-64 bg-purple-500 rounded-full opacity-20 absolute -bottom-10 -right-10"></div>
                            <div class="relative bg-gray-700 rounded-xl p-8 shadow-lg border border-gray-600">
                                <div class="flex items-center mb-6">
                                    <div class="bg-blue-500 text-white p-3 rounded-full mr-4">
                                        <i class="fas fa-brain"></i>
                                    </div>
                                    <div>
                                        <h4 class="font-bold">Progress Report</h4>
                                        <p class="text-sm text-gray-300">Last 30 days</p>
                                    </div>
                                </div>
                                <div class="space-y-5">
                                    <div>
                                        <div class="flex justify-between mb-1">
                                            <span class="text-sm font-medium">Mood Improvement</span>
                                            <span class="text-sm font-bold text-green-400">+18%</span>
                                        </div>
                                        <div class="w-full bg-gray-600 rounded-full h-2">
                                            <div class="bg-green-500 h-2 rounded-full" style="width: 68%"></div>
                                        </div>
                                    </div>
                                    <div>
                                        <div class="flex justify-between mb-1">
                                            <span class="text-sm font-medium">Anxiety Episodes</span>
                                            <span class="text-sm font-bold text-red-400">-32%</span>
                                        </div>
                                        <div class="w-full bg-gray-600 rounded-full h-2">
                                            <div class="bg-red-500 h-2 rounded-full" style="width: 38%"></div>
                                        </div>
                                    </div>
                                    <div>
                                        <div class="flex justify-between mb-1">
                                            <span class="text-sm font-medium">Tool Utilization</span>
                                            <span class="text-sm font-bold text-blue-400">+45%</span>
                                        </div>
                                        <div class="w-full bg-gray-600 rounded-full h-2">
                                            <div class="bg-blue-500 h-2 rounded-full" style="width: 75%"></div>
                                        </div>
                                    </div>
                                </div>
                                <div class="mt-6 pt-6 border-t border-gray-600 text-center">
                                    <p class="text-sm text-gray-300">"Consistency leads to progress. Keep going!"</p>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- CTA Section -->
    <section id="cta" class="py-20 gradient-bg text-white">
        <div class="container mx-auto px-4 text-center">
            <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Begin Your <span class="text-yellow-300">Mental Wellness</span> Journey?</h2>
            <p class="text-xl mb-8 max-w-2xl mx-auto">Your journey matters. Let's navigate it together with MySelf-AI as your intelligent, compassionate partner.</p>
            <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6">
                <a href="#" class="bg-white text-blue-600 px-8 py-4 rounded-full font-bold hover:bg-blue-50 transition">Get Started Now</a>
                <a href="#" class="border-2 border-white text-white px-8 py-4 rounded-full font-bold hover:bg-white hover:text-blue-600 transition">Learn More</a>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-900 text-white py-12">
        <div class="container mx-auto px-4">
            <div class="grid md:grid-cols-4 gap-8 mb-8">
                <div>
                    <div class="flex items-center space-x-2 mb-4">
                        <i class="fas fa-brain text-2xl text-blue-400"></i>
                        <h3 class="text-xl font-bold">MySelf-AI</h3>
                    </div>
                    <p class="text-gray-400">Your autonomous, intelligent partner dedicated to your psychological well-being.</p>
                </div>
                <div>
                    <h4 class="text-lg font-bold mb-4">Product</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Features</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">How It Works</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Pricing</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">FAQ</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="text-lg font-bold mb-4">Company</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="text-lg font-bold mb-4">Connect</h4>
                    <div class="flex space-x-4 mb-4">
                        <a href="#" class="bg-gray-700 hover:bg-blue-600 transition w-10 h-10 rounded-full flex items-center justify-center">
                            <i class="fab fa-facebook-f"></i>
                        </a>
                        <a href="#" class="bg-gray-700 hover:bg-blue-400 transition w-10 h-10 rounded-full flex items-center justify-center">
                            <i class="fab fa-twitter"></i>
                        </a>
                        <a href="#" class="bg-gray-700 hover:bg-pink-600 transition w-10 h-10 rounded-full flex items-center justify-center">
                            <i class="fab fa-instagram"></i>
                        </a>
                        <a href="#" class="bg-gray-700 hover:bg-red-500 transition w-10 h-10 rounded-full flex items-center justify-center">
                            <i class="fab fa-youtube"></i>
                        </a>
                    </div>
                    <p class="text-gray-400">Subscribe to our newsletter</p>
                    <div class="flex mt-2">
                        <input type="email" placeholder="Your email" class="bg-gray-700 text-white px-4 py-2 rounded-l focus:outline-none focus:ring-2 focus:ring-blue-500 flex-1">
                        <button class="bg-blue-500 hover:bg-blue-600 px-4 py-2 rounded-r">
                            <i class="fas fa-paper-plane"></i>
                        </button>
                    </div>
                </div>
            </div>
            <div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
                <p class="text-gray-400 mb-4 md:mb-0">© 2023 MySelf-AI. All rights reserved.</p>
                <div class="flex space-x-6">
                    <a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a>
                    <a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a>
                    <a href="#" class="text-gray-400 hover:text-white transition">Cookies</a>
                </div>
            </div>
        </div>
    </footer>

    <script>
        // Simple smooth scrolling for anchor links
        document.querySelectorAll('a[href^="#"]').forEach(anchor => {
            anchor.addEventListener('click', function (e) {
                e.preventDefault();
                document.querySelector(this.getAttribute('href')).scrollIntoView({
                    behavior: 'smooth'
                });
            });
        });
        
        // Mobile menu toggle would go here
        // const mobileMenuButton = document.querySelector('.md\\:hidden');
        // const mobileMenu = document.querySelector('nav');
        // mobileMenuButton.addEventListener('click', () => {
        //     mobileMenu.classList.toggle('hidden');
        // });
    </script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=james123231/myself-ai" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>