-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathechokit-gift.html
More file actions
1150 lines (1076 loc) · 59.9 KB
/
echokit-gift.html
File metadata and controls
1150 lines (1076 loc) · 59.9 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
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EchoKit Gift Version - Create AI Gifts That Speak</title>
<meta name="description" content="Create personalized AI gifts for loved ones. Clone voices, preserve memories, create unforgettable connections with EchoKit - the AI companion that speaks from the heart.">
<meta name="keywords" content="EchoKit, Gift, Personalized Gift, AI Gift, Voice Cloning, Custom Voice AI, Birthday Gift, Anniversary Gift, Memorial Gift, Valentine's Day Gift, Christmas Gift, Unique Present">
<meta property="og:title" content="EchoKit Gift Version - Create AI Gifts That Speak">
<meta property="og:description" content="Create personalized AI gifts for loved ones. Clone voices, preserve memories, create unforgettable connections with EchoKit.">
<meta property="og:type" content="product">
<meta property="og:image" content="./media/echokit-box-01.jpg">
<!-- Fonts -->
<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=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,400&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* --- VARIABLES & RESET --- */
:root {
--bg-body: #F8F8F3;
--bg-card: #FFFFFF;
--text-main: #18181B;
--text-muted: #71717A;
--accent-primary: #6366f1;
--accent-secondary: #8b5cf6;
--radius-md: 16px;
--radius-lg: 20px;
--radius-pill: 100px;
--shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
--shadow-float: 0 20px 40px -10px rgba(99, 102, 241, 0.15);
--font-sans: 'Plus Jakarta Sans', sans-serif;
--font-serif: 'Playfair Display', serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
background-color: var(--bg-body);
color: var(--text-main);
font-family: var(--font-sans);
line-height: 1.6;
overflow-x: hidden;
}
h1, h2, h3, h4 { color: var(--text-main); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
p { color: var(--text-muted); }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
/* Typography Accents */
.serif-highlight {
font-family: var(--font-serif);
font-style: italic;
color: var(--text-main);
position: relative;
display: inline-block;
}
.serif-highlight::after {
content: ''; position: absolute; bottom: 4px; left: -2px; right: -2px; height: 8px;
background: rgba(99, 102, 241, 0.2); z-index: -1; transform: rotate(-1deg);
}
/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section-padding { padding: 120px 0; }
.flex-center { display: flex; align-items: center; justify-content: center; }
/* --- BUTTONS --- */
.btn {
display: inline-flex; align-items: center; justify-content: center; gap: 8px;
padding: 16px 36px; border-radius: var(--radius-pill);
font-weight: 600; transition: all 0.3s ease; cursor: pointer; font-size: 1rem; border: none;
}
.btn-primary {
background: var(--text-main); color: white;
box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-primary:hover { transform: translateY(-3px); background: black; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.btn-outline { background: white; border: 1px solid #E4E4E7; color: var(--text-main); }
.btn-outline:hover { border-color: var(--text-main); background: #F4F4F5; }
/* --- FLOATING NAVBAR --- */
.navbar {
position: fixed; top: 24px; left: 0; right: 0; z-index: 1000;
display: flex; justify-content: center; pointer-events: none;
}
.nav-pill {
pointer-events: auto;
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
padding: 12px 32px; border-radius: var(--radius-pill);
border: 1px solid rgba(255,255,255,0.5);
box-shadow: var(--shadow-sm);
display: flex; align-items: center; gap: 40px;
}
.nav-logo { font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; gap: 8px; }
.nav-links { display: none; gap: 24px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.nav-links a:hover { color: var(--text-main); }
@media(min-width: 768px) { .nav-links { display: flex; } }
@media(max-width: 768px) {
.nav-pill {
padding: 10px 20px;
gap: 15px;
}
.nav-logo { font-size: 1rem; }
.btn-primary {
padding: 8px 16px !important;
font-size: 0.8rem !important;
}
}
/* --- HERO SECTION --- */
.hero-section {
padding: 180px 0 100px;
min-height: 90vh;
display: flex; align-items: center;
background: linear-gradient(135deg, #f8f8f3 0%, #eef2ff 100%);
}
.hero-grid {
display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center;
}
@media(min-width: 992px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 768px) {
.hero-section {
padding: 140px 0 60px;
}
h1 {
font-size: 2.5rem !important;
}
}
@media(max-width: 480px) {
h1 {
font-size: 2rem !important;
}
}
.hero-visual {
position: relative;
height: 500px;
background: linear-gradient(135deg, #1e293b, #000000);
border-radius: 40px;
box-shadow: var(--shadow-float);
display: flex; align-items: center; justify-content: center;
overflow: hidden;
border: 8px solid white;
}
.oled-glow {
width: 200px; height: 200px; background: conic-gradient(from 180deg at 50% 50%, #FF6B6B 0deg, #4F46E5 180deg, #FF6B6B 360deg);
filter: blur(60px); opacity: 0.8; animation: spin 10s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
.glass-overlay {
position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255,255,255,0.1) 0%, transparent 40%);
}
/* --- URGENCY BANNER --- */
.urgency-banner {
background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
color: white;
padding: 16px 24px;
text-align: center;
font-weight: 600;
font-size: 0.9rem;
position: relative;
z-index: 1001;
box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}
@media(max-width: 768px) {
.urgency-banner {
font-size: 0.8rem;
padding: 12px 16px;
}
}
/* --- PERFECT FOR SECTION --- */
.perfect-for-section {
background: white;
padding: 80px 0;
}
.occasion-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
@media (max-width: 768px) {
.occasion-grid {
grid-template-columns: 1fr;
}
}
.occasion-card {
text-align: center;
padding: 40px 30px;
border-radius: var(--radius-lg);
transition: all 0.3s;
border: 2px solid rgba(99, 102, 241, 0.1);
background: white;
}
.occasion-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-float);
border-color: var(--accent-primary);
}
.occasion-icon {
width: 80px;
height: 80px;
margin: 0 auto 20px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
}
/* --- GALLERY SECTION --- */
.gallery-section {
background: transparent;
color: var(--text-main);
border-radius: 24px;
margin: 0;
padding: 80px 40px;
}
.gallery-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
@media(max-width: 768px) {
.gallery-section {
padding: 60px 20px;
}
}
.gallery-showcase {
display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px; margin-top: 60px;
}
.gallery-card {
background: white;
border: 1px solid rgba(99, 102, 241, 0.1);
border-radius: 24px;
padding: 30px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.audio-player {
background: white; border-radius: 50px; padding: 10px 20px;
display: flex; align-items: center; gap: 15px; margin-top: 20px; color: black;
}
/* Audio Player Styles */
.audio-player-wrapper {
display: flex;
align-items: center;
gap: 15px;
background: white;
padding: 12px 16px;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.play-btn {
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--accent-primary);
border: none;
color: white;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
transition: all 0.3s ease;
flex-shrink: 0;
}
.play-btn:hover {
background: var(--text-main);
transform: scale(1.05);
}
.play-btn.playing {
background: var(--text-main);
}
.waveform {
display: flex;
align-items: center;
gap: 3px;
flex-grow: 1;
height: 30px;
}
.waveform-bar {
width: 3px;
background: var(--accent-primary);
border-radius: 2px;
transition: all 0.3s ease;
}
.waveform-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.waveform-bar:nth-child(2) { height: 12px; animation-delay: 0.1s; }
.waveform-bar:nth-child(3) { height: 16px; animation-delay: 0.2s; }
.waveform-bar:nth-child(4) { height: 20px; animation-delay: 0.3s; }
.waveform-bar:nth-child(5) { height: 24px; animation-delay: 0.4s; }
.waveform-bar:nth-child(6) { height: 20px; animation-delay: 0.5s; }
.waveform-bar:nth-child(7) { height: 16px; animation-delay: 0.6s; }
.waveform-bar:nth-child(8) { height: 12px; animation-delay: 0.7s; }
.waveform-bar:nth-child(9) { height: 8px; animation-delay: 0.8s; }
.waveform-bar:nth-child(10) { height: 12px; animation-delay: 0.9s; }
.waveform-bar:nth-child(11) { height: 16px; animation-delay: 1s; }
.waveform-bar:nth-child(12) { height: 20px; animation-delay: 1.1s; }
.waveform-bar:nth-child(13) { height: 16px; animation-delay: 1.2s; }
.waveform-bar:nth-child(14) { height: 12px; animation-delay: 1.3s; }
.waveform-bar:nth-child(15) { height: 8px; animation-delay: 1.4s; }
.audio-player-wrapper.playing .waveform-bar {
animation: waveform 0.8s ease-in-out infinite alternate;
}
@keyframes waveform {
0% { transform: scaleY(0.5); }
100% { transform: scaleY(1.2); }
}
.audio-duration {
font-size: 0.85rem;
color: var(--text-muted);
font-weight: 600;
flex-shrink: 0;
}
/* --- FEATURES --- */
.features-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px; margin-top: 50px;
}
.feature-box {
background: white; padding: 40px; border-radius: var(--radius-lg);
border: 1px solid #f4f4f5; transition: 0.3s;
}
.feature-box:hover { box-shadow: var(--shadow-float); transform: translateY(-5px); }
.feature-icon { font-size: 2rem; margin-bottom: 20px; color: var(--accent-primary); }
/* --- FOUNDER STORY SECTION --- */
.founder-section {
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
padding: 100px 0;
}
.founder-quote {
max-width: 800px;
margin: 0 auto;
text-align: center;
}
/* --- TECH CREDIBILITY --- */
.tech-credibility {
display: flex;
gap: 60px;
justify-content: center;
margin: 60px 0;
flex-wrap: wrap;
}
.credibility-item {
text-align: center;
}
.credibility-number {
font-size: 2.5rem;
font-weight: 800;
color: var(--accent-primary);
}
.credibility-label {
font-size: 0.9rem;
color: var(--text-muted);
}
/* --- STUDIO SECTION --- */
.studio-layout {
display: block;
margin-top: 60px;
}
.step-list { display: flex; flex-direction: column; gap: 20px; }
.step-item {
display: flex; gap: 20px; padding: 25px; border-radius: 20px;
transition: 0.3s; border: 1px solid #f4f4f5;
background: white;
}
.step-item:hover {
border-color: var(--accent-primary);
box-shadow: var(--shadow-sm);
}
.step-num {
width: 50px; height: 50px; background: linear-gradient(135deg, #eef2ff 0%, #f3e8ff 100%);
border-radius: 50%;
display: flex; align-items: center; justify-content: center; font-weight: 700;
flex-shrink: 0;
color: var(--accent-primary);
font-size: 1.2rem;
}
/* --- UNBOXING (Bento Grid) --- */
.bento-section { background: #f8fafc; }
.bento-grid {
display: grid; grid-template-columns: repeat(1, 1fr); gap: 20px; margin-top: 60px;
grid-auto-rows: minmax(180px, auto);
}
@media(min-width: 768px) {
.bento-grid {
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 250px);
}
}
.bento-item {
background: white; border-radius: var(--radius-lg); padding: 30px;
position: relative; overflow: hidden; transition: 0.3s;
border: 1px solid rgba(0,0,0,0.03);
display: flex; flex-direction: column; justify-content: space-between;
}
.bento-item:hover { box-shadow: var(--shadow-float); transform: scale(1.01); }
.bento-main {
grid-column: span 1; grid-row: span 1;
background: #18181b; color: white;
}
@media(min-width: 768px) {
.bento-main { grid-column: span 2; grid-row: span 2; }
}
.bento-card { grid-column: span 1; grid-row: span 1; background: #e0e7ff; }
.bento-acc { grid-column: span 1; grid-row: span 1; background: #fff7ed; }
.bento-icon-lg { font-size: 5rem; opacity: 0.2; position: absolute; bottom: -20px; right: -20px; }
/* --- B2B SECTION --- */
.b2b-section {
background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
color: white;
padding: 120px 0;
}
.b2b-use-case {
background: rgba(255,255,255,0.05);
padding: 40px 30px;
border-radius: 24px;
border: 1px solid rgba(255,255,255,0.1);
transition: 0.3s;
}
.b2b-use-case:hover {
transform: translateY(-5px);
background: rgba(255,255,255,0.08);
}
.b2b-icon {
font-size: 2.5rem;
margin-bottom: 20px;
}
/* --- PRICING --- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.price-card {
background: white; padding: 40px; border-radius: var(--radius-lg);
border: 1px solid #f4f4f5; display: flex; flex-direction: column;
}
.price-card.featured { border: 2px solid var(--text-main); position: relative; }
.popular-badge {
position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
background: var(--text-main); color: white; padding: 5px 15px; border-radius: 20px;
font-size: 0.8rem; font-weight: 700;
}
/* --- FOOTER --- */
footer { padding: 80px 0 40px; text-align: center; border-top: 1px solid #e4e4e7; background: white; }
/* --- VISUAL MODE ITEMS --- */
.visual-mode-item {
position: relative;
border-radius: 16px;
overflow: hidden;
aspect-ratio: 1/1;
border: 1px solid rgba(255,255,255,0.15);
cursor: default;
}
.visual-mode-img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.visual-mode-item:hover .visual-mode-img {
transform: scale(1.1);
}
.visual-overlay {
position: absolute;
bottom: 0; left: 0; right: 0;
background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
padding: 20px 15px 15px;
display: flex;
flex-direction: column;
justify-content: flex-end;
}
</style>
</head>
<body>
<!-- URGENCY BANNER -->
<div class="urgency-banner">
<i class="fas fa-heart"></i> Create Unforgettable Connections
</div>
<!-- NAVBAR -->
<nav class="navbar" style="top: 70px;">
<div class="nav-pill">
<a href="#" class="nav-logo">
<i class="fas fa-gift" style="color: var(--accent-primary);"></i> EchoKit
</a>
<div class="nav-links">
<a href="#perfect-for">Occasions</a>
<a href="#gallery">Experience</a>
<a href="#features">Features</a>
<a href="#studio">Process</a>
<a href="#pricing">Pricing</a>
<a href="echokit-business.html" style="color: var(--accent-primary); font-weight: 600;">
<i class="fas fa-building"></i> Business
</a>
</div>
<a href="https://form.jotform.com/253442751110042" class="btn btn-primary" style="padding: 10px 24px; font-size: 0.9rem;">Start Creating</a>
</div>
</nav>
<!-- HERO SECTION -->
<header class="hero-section">
<div class="container">
<div class="hero-grid">
<!-- Text Side -->
<div>
<div style="display: inline-block; padding: 6px 16px; background: #fef3c7; color: #b45309; border-radius: 20px; font-weight: 600; font-size: 0.8rem; margin-bottom: 24px;">
<i class="fas fa-sparkles"></i> The First AI-Powered Gift You Can Customize
</div>
<h1>
Create AI Gifts That <span class="serif-highlight">Speak</span>
</h1>
<p style="font-size: 1.25rem; margin: 30px 0; color: var(--text-muted);">
Personalized AI companions for you or the people you love. Clone voices, encode memories, create connections that last forever.
</p>
<div style="display: flex; gap: 15px; flex-wrap: wrap;">
<a href="https://form.jotform.com/253442751110042" class="btn btn-primary">Create Your Gift</a>
<a href="#gallery" class="btn btn-outline"><i class="fas fa-play"></i> See How It Works</a>
</div>
</div>
<!-- Visual Side -->
<div class="hero-visual">
<img src="./media/echokit-box-01.jpg" alt="EchoKit Device" style="width: 100%; height: 100%; object-fit: cover;">
</div>
</div>
</div>
</header>
<!-- PERFECT FOR SECTION -->
<section id="perfect-for" class="perfect-for-section">
<div class="container">
<div class="text-center" style="margin-bottom: 60px;">
<h2>Perfect For Every <span class="serif-highlight">Occasion</span></h2>
<p style="font-size: 1.1rem; max-width: 600px; margin: 20px auto;">Create meaningful, personalized AI gifts for the moments that matter most</p>
</div>
<div class="occasion-grid">
<!-- Birthdays -->
<div class="occasion-card">
<div class="occasion-icon" style="background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); color: #92400e;">
<i class="fas fa-birthday-cake"></i>
</div>
<h3>Birthdays</h3>
<p style="margin-top: 15px; font-size: 0.95rem;">Instead of another tie or sweater, give Dad an EchoKit that tells his favorite jokes in his own voice—or sings "Happy Birthday" in yours.</p>
</div>
<!-- Anniversaries -->
<div class="occasion-card">
<div class="occasion-icon" style="background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%); color: #9f1239;">
<i class="fas fa-heart"></i>
</div>
<h3>Anniversaries</h3>
<p style="margin-top: 15px; font-size: 0.95rem;">Relive your wedding day memories. Encode your shared moments into an AI that tells your love story—ask "How did we meet?" and hear the answer.</p>
</div>
<!-- Memorials -->
<div class="occasion-card">
<div class="occasion-icon" style="background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%); color: #3730a3;">
<i class="fas fa-dove"></i>
</div>
<h3>Memorials</h3>
<p style="margin-top: 15px; font-size: 0.95rem;">Preserve Grandpa's war stories or Grandma's wisdom forever. Your children can ask questions and hear answers in their actual voices.</p>
</div>
<!-- Holidays -->
<div class="occasion-card">
<div class="occasion-icon" style="background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%); color: #166534;">
<i class="fas fa-gift"></i>
</div>
<h3>Holidays</h3>
<p style="margin-top: 15px; font-size: 0.95rem;">Christmas, Valentine's Day, Mother's Day. A gift that keeps giving—far more meaningful than a generic present that gets forgotten.</p>
</div>
</div>
</div>
</section>
<!-- GALLERY SECTION -->
<section id="gallery" class="section-padding" style="padding-top: 0;">
<div class="container">
<div class="gallery-section">
<div class="text-center gallery-header">
<h2 style="color: var(--text-main);">Meaningful Gifts for <span class="serif-highlight">Life's Moments</span></h2>
<p style="color: var(--text-muted);">More than a gadget. It's your voice, your memories, your companionship. Living on a beautiful device.</p>
</div>
<div style="display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 60px;">
<!-- Use Case 1: Storytelling Machine -->
<div class="gallery-card">
<img src="./assets/usecase-storytelling.jpg" alt="Storytelling Machine" style="width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 20px;">
<div style="display: flex; align-items: center; gap: 15px; margin-bottom: 15px;">
<div style="width: 50px; height: 50px; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center;">
<i class="fas fa-book-open" style="color: #92400e; font-size: 1.3rem;"></i>
</div>
<h3 style="color: var(--text-main); margin: 0;">Storytelling Machine</h3>
</div>
<p style="color: var(--text-muted); font-size: 0.95rem; line-height: 1.6;">
Interactive bedtime stories that adapt to your child's imagination. Parents' voices narrating magical tales that make every night special.
</p>
<div style="margin-top: 20px;">
<p style="color: var(--text-muted); font-size: 0.85rem; font-style: italic; margin: 0; margin-bottom: 10px;">
<i class="fas fa-volume-up" style="margin-right: 5px;"></i> Sample Voice: Dad's Storytelling
</p>
<div class="audio-player-wrapper">
<button class="play-btn" onclick="toggleAudio('storytelling', this)" data-audio="storytelling">
<i class="fas fa-play"></i>
</button>
<div class="waveform">
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
</div>
<span class="audio-duration">0:12</span>
</div>
<audio id="storytelling" src="./assets/storytelling.mp3"></audio>
</div>
</div>
<!-- Use Case 2: Family Memory Keeper -->
<div class="gallery-card">
<img src="./assets/usecase-memory.jpg" alt="Family Memory Keeper" style="width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 20px;">
<div style="display: flex; align-items: center; gap: 15px; margin-bottom: 15px;">
<div style="width: 50px; height: 50px; background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center;">
<i class="fas fa-clock" style="color: #3730a3; font-size: 1.3rem;"></i>
</div>
<h3 style="color: var(--text-main); margin: 0;">Family Memory Keeper</h3>
</div>
<p style="color: var(--text-muted); font-size: 0.95rem; line-height: 1.6;">
Grandma's recipes, grandpa's war stories, family traditions preserved forever. Ask questions and hear answers in their actual voice.
</p>
<div style="margin-top: 20px;">
<p style="color: var(--text-muted); font-size: 0.85rem; font-style: italic; margin: 0; margin-bottom: 10px;">
<i class="fas fa-volume-up" style="margin-right: 5px;"></i> Sample Voice: Grandma's Recipe
</p>
<div class="audio-player-wrapper">
<button class="play-btn" onclick="toggleAudio('grandma', this)" data-audio="grandma">
<i class="fas fa-play"></i>
</button>
<div class="waveform">
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
</div>
<span class="audio-duration">0:18</span>
</div>
<audio id="grandma" src="./assets/grandma.wav"></audio>
</div>
</div>
<!-- Use Case 3: AI Companion -->
<div class="gallery-card">
<img src="./assets/usecase-companion.jpg" alt="AI Companion" style="width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 20px;">
<div style="display: flex; align-items: center; gap: 15px; margin-bottom: 15px;">
<div style="width: 50px; height: 50px; background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center;">
<i class="fas fa-heart" style="color: #9f1239; font-size: 1.3rem;"></i>
</div>
<h3 style="color: var(--text-main); margin: 0;">AI Companion</h3>
</div>
<p style="color: var(--text-muted); font-size: 0.95rem; line-height: 1.6;">
Someone to talk to, share stories with, combat loneliness. Perfect for elderly parents living alone or anyone needing daily connection.
</p>
<div style="margin-top: 20px;">
<p style="color: var(--text-muted); font-size: 0.85rem; font-style: italic; margin: 0; margin-bottom: 10px;">
<i class="fas fa-volume-up" style="margin-right: 5px;"></i> Sample Voice: Daughter's Check-in
</p>
<div class="audio-player-wrapper">
<button class="play-btn" onclick="toggleAudio('companion', this)" data-audio="companion">
<i class="fas fa-play"></i>
</button>
<div class="waveform">
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
</div>
<span class="audio-duration">0:15</span>
</div>
<audio id="companion" src="./assets/companion.wav"></audio>
</div>
</div>
<!-- Use Case 4: Life Coach -->
<div class="gallery-card">
<img src="./assets/usecase-lifecoach.jpg" alt="Life Coach" style="width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 20px;">
<div style="display: flex; align-items: center; gap: 15px; margin-bottom: 15px;">
<div style="width: 50px; height: 50px; background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center;">
<i class="fas fa-lightbulb" style="color: #166534; font-size: 1.3rem;"></i>
</div>
<h3 style="color: var(--text-main); margin: 0;">Life Coach</h3>
</div>
<p style="color: var(--text-muted); font-size: 0.95rem; line-height: 1.6;">
Daily motivation, goal setting, positive affirmations in a loved one's voice. Your personal cheerleader, always there to push you forward.
</p>
<div style="margin-top: 20px;">
<p style="color: var(--text-muted); font-size: 0.85rem; font-style: italic; margin: 0; margin-bottom: 10px;">
<i class="fas fa-volume-up" style="margin-right: 5px;"></i> Sample Voice: Best Friend's Motivation
</p>
<div class="audio-player-wrapper">
<button class="play-btn" onclick="toggleAudio('lifecoach', this)" data-audio="lifecoach">
<i class="fas fa-play"></i>
</button>
<div class="waveform">
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
<div class="waveform-bar"></div>
</div>
<span class="audio-duration">0:10</span>
</div>
<audio id="lifecoach" src="./assets/lifecoach.wav"></audio>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- FEATURES SECTION -->
<section id="features" class="section-padding" style="background: white;">
<div class="container">
<div class="text-center">
<h2>Why it feels <span class="serif-highlight">Magic</span></h2>
</div>
<div class="features-grid">
<div class="feature-box">
<div class="feature-icon"><i class="fas fa-wand-magic-sparkles"></i></div>
<h3>Ultimate Customization</h3>
<p>Every EchoKit is unique. We manually deploy a custom AI model trained specifically on your provided stories and voice data, ensuring the response style is exclusively yours.</p>
</div>
<div class="feature-box">
<div class="feature-icon" style="color: var(--accent-secondary);"><i class="fas fa-heart"></i></div>
<h3>Emotional Connection</h3>
<p>It's not just a speaker; it's a time capsule. Without the distraction of a touchscreen, the <strong>Voice-Only Interface</strong> encourages deeper, more natural conversations.</p>
</div>
<div class="feature-box">
<div class="feature-icon" style="color: #10b981;"><i class="fas fa-user-circle"></i></div>
<h3>Build For You & Yours</h3>
<p>Create a customized voice AI agent for yourself—clone your voice as a digital twin, or build one for your friends and family. Each device is a unique, personal AI companion.</p>
</div>
</div>
</div>
</section>
<!-- SOCIAL PROOF SECTION -->
<section class="section-padding" style="background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);">
<div class="container">
<div class="text-center" style="margin-bottom: 60px;">
<h2>Real Stories from <span class="serif-highlight">Gift Givers</span></h2>
<p style="font-size: 1.1rem; max-width: 600px; margin: 20px auto;">See how EchoKit has created unforgettable connections</p>
</div>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;">
<!-- Testimonial 1 -->
<div style="background: white; padding: 35px; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.05);">
<div style="display: flex; gap: 15px; margin-bottom: 20px;">
<div style="width: 50px; height: 50px; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #92400e;">SM</div>
<div>
<div style="font-weight: 600;">Sarah M.</div>
<div style="font-size: 0.85rem; color: var(--text-muted);">Gift for Dad's 70th Birthday</div>
</div>
</div>
<p style="font-size: 0.95rem; line-height: 1.7; font-style: italic; color: var(--text-main);">
"I recorded my dad telling his favorite stories from his childhood. Now his grandkids can hear those stories anytime. He cried when he heard it—it was the best gift I've ever given."
</p>
<div style="margin-top: 15px; color: #fbbf24; font-size: 0.9rem;">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div style="background: white; padding: 35px; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.05);">
<div style="display: flex; gap: 15px; margin-bottom: 20px;">
<div style="width: 50px; height: 50px; background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #3730a3;">JC</div>
<div>
<div style="font-weight: 600;">James C.</div>
<div style="font-size: 0.85rem; color: var(--text-muted);">Memorial Gift for Grandma</div>
</div>
</div>
<p style="font-size: 0.95rem; line-height: 1.7; font-style: italic; color: var(--text-main);">
"We lost Grandma last year, but her recipes and wisdom live on. My daughter can ask for the chocolate chip cookie recipe and hear Grandma's voice explaining the secret ingredient. Priceless."
</p>
<div style="margin-top: 15px; color: #fbbf24; font-size: 0.9rem;">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div style="background: white; padding: 35px; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.05);">
<div style="display: flex; gap: 15px; margin-bottom: 20px;">
<div style="width: 50px; height: 50px; background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #9f1239;">LT</div>
<div>
<div style="font-weight: 600;">Lisa T.</div>
<div style="font-size: 0.85rem; color: var(--text-muted);">Anniversary Gift</div>
</div>
</div>
<p style="font-size: 0.95rem; line-height: 1.7; font-style: italic; color: var(--text-main);">
"For our 10th anniversary, I created an EchoKit with all our couple's memories. Now when we ask 'Where did we go for our honeymoon?' we hear the story together. It's like reliving the magic."
</p>
<div style="margin-top: 15px; color: #fbbf24; font-size: 0.9rem;">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i>
</div>
</div>
</div>
<div style="text-align: center; margin-top: 50px; padding: 30px; background: white; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.05);">
<div style="font-size: 2.5rem; font-weight: 800; color: var(--accent-primary); margin-bottom: 5px;">500+</div>
<p style="font-size: 1.1rem; color: var(--text-main); font-weight: 600;">EchoKits Gifted Worldwide</p>
<p style="font-size: 0.9rem; color: var(--text-muted); margin-top: 10px;">Join thousands of families creating lasting connections</p>
</div>
</div>
</section>
<!-- STUDIO SECTION -->
<section id="studio" class="section-padding">
<div class="container">
<div class="text-center">
<h2>The <span class="serif-highlight">Creation Process</span></h2>
<p>After your order, we'll guide you through personalizing your EchoKit</p>
</div>
<div class="studio-layout">
<!-- Steps -->
<div class="step-list" style="max-width: 800px; margin: 60px auto 0;">
<div class="step-item">
<div class="step-num">1</div>
<div style="flex: 1;">
<h4>Share Your Vision</h4>
<p style="font-size: 0.95rem; color: var(--text-muted); margin-top: 8px;">
After ordering, you'll receive a form to tell us about your gift recipient—their personality, favorite stories, and what makes them special.
</p>
</div>
</div>
<div class="step-item">
<div class="step-num">2</div>
<div style="flex: 1;">
<h4>Provide Voice Samples</h4>
<p style="font-size: 0.95rem; color: var(--text-muted); margin-top: 8px;">
For Advanced Edition, upload 3 minutes of audio (voice messages, videos, or recordings) to clone their voice. For Starter, choose from our AI voice styles.
</p>
</div>
</div>
<div class="step-item">
<div class="step-num">3</div>
<div style="flex: 1;">
<h4>Add Personal Content</h4>
<p style="font-size: 0.95rem; color: var(--text-muted); margin-top: 8px;">
Share family stories, inside jokes, recipes, or memories you want preserved. Our team will help craft a knowledge base that feels authentic.
</p>
</div>
</div>
<div class="step-item">
<div class="step-num">4</div>
<div style="flex: 1;">
<h4>We Build & Ship</h4>
<p style="font-size: 0.95rem; color: var(--text-muted); margin-top: 8px;">
Our team trains your custom AI (2 days), deploys it to your EchoKit device, and ships it worldwide. Most orders arrive within 7-10 days.
</p>
</div>
</div>
</div>
<!-- CTA -->
<div style="text-align: center; margin-top: 60px; padding: 40px; background: linear-gradient(135deg, #eef2ff 0%, #f3e8ff 100%); border-radius: 24px;">
<h3 style="margin-bottom: 15px;">Ready to Create Something Meaningful?</h3>
<p style="color: var(--text-muted); margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto;">
Start your order today. After purchase, we'll send you everything needed to personalize your EchoKit.
</p>
<a href="https://form.jotform.com/253442751110042" class="btn btn-primary">
<i class="fas fa-gift"></i> Start Creating Your Gift
</a>
<p style="font-size: 0.85rem; color: var(--text-muted); margin-top: 15px; font-style: italic;">
Questions? <a href="mailto:hello@echokit.ai" style="color: var(--accent-primary); text-decoration: underline;">Contact us</a> before ordering.
</p>
</div>
</div>
</div>
</section>
<!-- UNBOXING (Bento Grid) -->
<section id="unboxing" class="section-padding bento-section">
<div class="container">
<div class="text-center" style="margin-bottom: 50px;">
<h2>Premium <span class="serif-highlight">Unboxing</span></h2>
<p>Designed to be gifted. Every detail matters.</p>
</div>
<div class="bento-grid">
<!-- Main Item: Device -->
<div class="bento-item bento-main" style="background: #18181b; overflow: hidden;">
<img src="./media/echokit-box-01.jpg" alt="EchoKit Device" style="width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0;">
<div style="position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%); padding: 30px; z-index: 2;">
<h3 style="color: white; font-size: 2rem; margin: 0;">EchoKit Device</h3>
<p style="color: #d4d4d8; margin-top: 10px; margin-bottom: 15px;">A beautiful voice conversation device. Pre-loaded with your custom AI companion.</p>
<div style="display: flex; gap: 15px; flex-wrap: wrap;">
<span style="background: rgba(255,255,255,0.1); color: white; padding: 6px 12px; border-radius: 6px; font-size: 0.85rem;">OLED Display</span>
<span style="background: rgba(255,255,255,0.1); color: white; padding: 6px 12px; border-radius: 6px; font-size: 0.85rem;">Voice Conversation</span>
<span style="background: rgba(255,255,255,0.1); color: white; padding: 6px 12px; border-radius: 6px; font-size: 0.85rem;">WiFi Ready</span>
</div>
</div>
</div>
<!-- Item 2: Gift Card -->
<div class="bento-item bento-card" style="background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);">
<div style="position: relative; z-index: 2; padding: 30px;">
<h4 style="color: #3730a3; margin: 0;">Voice Pass</h4>
<p style="font-size: 0.9rem; color: #4338ca; margin-top: 10px;">Comes with 2 hours of AI conversation monthly on us.</p>
<i class="fas fa-qrcode" style="color: #4338ca; font-size: 3rem; opacity: 0.2; position: absolute; bottom: 20px; right: 20px;"></i>
</div>
</div>
<!-- Item 3: Accessories -->
<div class="bento-item bento-acc" style="background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);">
<div style="position: relative; z-index: 2; padding: 30px;">
<h4 style="color: #9a3412; margin: 0;">Accessories</h4>
<p style="font-size: 0.9rem; color: #c2410c; margin-top: 10px;">Premium braided USB-C cable</p>
<p style="font-size: 0.9rem; color: #c2410c;">Battery bank included</p>
<i class="fas fa-plug" style="color: #c2410c; font-size: 3rem; opacity: 0.2; position: absolute; bottom: 20px; right: 20px;"></i>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ SECTION -->