-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1027 lines (958 loc) · 89.7 KB
/
index.html
File metadata and controls
1027 lines (958 loc) · 89.7 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="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>하루 - 태교 동화 & 태담 일기 | 매일 한 편, 아기에게 들려주는 특별한 이야기</title>
<meta name="description" content="280편의 태교 동화, 음성 태담 기록, 아기에게 보내는 편지. 100% 기기 내 저장으로 안전하게. 한국어, English, 日本語 지원.">
<meta name="keywords" content="태교, 동화, 태담, 임산부, 태교앱, 임신, prenatal, story, 하루, haru">
<!-- Open Graph -->
<meta property="og:title" content="하루 - 태교 동화 & 태담 일기">
<meta property="og:description" content="매일 한 편, 아기에게 들려주는 특별한 이야기. 280편의 태교 동화와 음성 태담 기록.">
<meta property="og:image" content="https://is1-ssl.mzstatic.com/image/thumb/Purple211/v4/f5/9c/4f/f59c4f8f-fd87-7dd4-172a-165aba149ac1/AppIcon-0-0-1x_U007epad-0-1-85-220.png/1200x630wa.png">
<meta property="og:url" content="https://iamwongeeeee.github.io/haru-support/">
<meta property="og:type" content="website">
<meta property="og:locale" content="ko_KR">
<meta property="og:locale:alternate" content="en_US">
<meta property="og:locale:alternate" content="ja_JP">
<meta property="og:site_name" content="하루 (Haru)">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="하루 - 태교 동화 & 태담 일기">
<meta name="twitter:description" content="매일 한 편, 아기에게 들려주는 특별한 이야기">
<meta name="twitter:image" content="https://is1-ssl.mzstatic.com/image/thumb/Purple211/v4/f5/9c/4f/f59c4f8f-fd87-7dd4-172a-165aba149ac1/AppIcon-0-0-1x_U007epad-0-1-85-220.png/1200x630wa.png">
<!-- Favicon -->
<link rel="icon" type="image/png" href="https://is1-ssl.mzstatic.com/image/thumb/Purple211/v4/f5/9c/4f/f59c4f8f-fd87-7dd4-172a-165aba149ac1/AppIcon-0-0-1x_U007epad-0-1-85-220.png/1200x630wa.png">
<style>
/* ============================================================
RESET & DESIGN SYSTEM
============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
/* Brand Palette */
--peach-50: #FFF8F3;
--peach-100: #FFF0E6;
--peach-200: #FFDDC4;
--peach-300: #FFC9A3;
--peach-400: #FFAB76;
--peach-500: #F4945E;
--peach-600: #E07A3F;
--peach-700: #C4612D;
/* Neutrals */
--warm-white: #FFFCF9;
--warm-50: #FDF9F6;
--warm-100: #F5EDE6;
--warm-200: #E8DDD4;
--warm-300: #D4C5B8;
--warm-400: #B09A89;
--warm-500: #8C7566;
--warm-600: #6B5849;
--warm-700: #4A3B30;
--warm-800: #342A22;
--warm-900: #1E1814;
/* Semantic */
--text-primary: #342A22;
--text-secondary: #6B5849;
--text-tertiary: #8C7566;
--text-inverse: #FFFCF9;
--bg-body: #FFFCF9;
--bg-alt: #FFF8F3;
--bg-card: #FFFFFF;
--border-light: #E8DDD4;
--border-subtle: #F5EDE6;
/* Accent */
--green: #7CB08A;
--blue: #7BA5C9;
--lavender: #B5A1D4;
/* Typography */
--text-xs: 0.75rem;
--text-sm: 0.875rem;
--text-base: 1rem;
--text-lg: 1.125rem;
--text-xl: 1.25rem;
--text-2xl: 1.5rem;
--text-3xl: 2rem;
--text-4xl: 2.5rem;
--text-5xl: 3.25rem;
--font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans KR', sans-serif;
--font-serif: 'Noto Serif KR', Georgia, serif;
/* Spacing */
--sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem;
--sp-4: 1rem; --sp-5: 1.25rem; --sp-6: 1.5rem;
--sp-8: 2rem; --sp-10: 2.5rem; --sp-12: 3rem;
--sp-16: 4rem; --sp-20: 5rem; --sp-24: 6rem;
/* Layout */
--container-max: 1120px;
--radius-sm: 8px; --radius-md: 12px; --radius-lg: 20px;
--radius-xl: 28px; --radius-full: 9999px;
/* Shadows */
--shadow-sm: 0 1px 3px rgba(74,59,48,0.06);
--shadow-md: 0 4px 16px rgba(74,59,48,0.08);
--shadow-lg: 0 8px 32px rgba(74,59,48,0.10);
--shadow-xl: 0 16px 48px rgba(74,59,48,0.12);
--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
font-family: var(--font-sans);
color: var(--text-primary);
background: var(--bg-body);
line-height: 1.7;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
/* Layout */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--sp-6); }
.section { padding: var(--sp-20) 0; }
.section--lg { padding: var(--sp-24) 0; }
/* Accessibility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
:focus-visible { outline: 2px solid var(--peach-400); outline-offset: 2px; }
/* ============================================================
SCROLL REVEAL
============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
.reveal { opacity: 1; transform: none; transition: none; }
.hero__float { animation: none !important; }
html { scroll-behavior: auto; }
}
/* ============================================================
NAVIGATION
============================================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,252,249,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid transparent; transition: border-color 0.3s, box-shadow 0.3s; }
.nav.is-scrolled { border-bottom-color: var(--border-subtle); box-shadow: 0 1px 8px rgba(74,59,48,0.04); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav__brand { display: flex; align-items: center; gap: var(--sp-3); }
.nav__logo { width: 36px; height: 36px; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.nav__name { font-size: var(--text-lg); font-weight: 700; }
.nav__right { display: flex; align-items: center; gap: var(--sp-4); }
/* Language Switcher */
.lang-sw { display: flex; background: var(--warm-100); border-radius: var(--radius-full); padding: 3px; }
.lang-sw__btn { padding: 6px 12px; font-size: var(--text-xs); font-weight: 600; color: var(--text-tertiary); border-radius: var(--radius-full); transition: all 0.15s; line-height: 1; }
.lang-sw__btn.is-active { background: var(--bg-card); color: var(--text-primary); box-shadow: var(--shadow-sm); }
.lang-sw__btn:hover:not(.is-active) { color: var(--text-secondary); }
/* Buttons */
.btn { display: inline-flex; align-items: center; gap: var(--sp-2); font-weight: 600; border-radius: var(--radius-full); transition: all 0.3s var(--ease-out); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn--primary { padding: 10px 24px; background: var(--text-primary); color: var(--text-inverse); font-size: var(--text-sm); box-shadow: var(--shadow-sm); }
.btn--primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); background: var(--warm-700); }
.btn--primary-lg { padding: 16px 36px; font-size: var(--text-base); }
.btn--cta { padding: 16px 40px; font-size: var(--text-base); background: var(--text-primary); color: var(--text-inverse); box-shadow: var(--shadow-md); }
.btn--cta svg { width: 20px; height: 20px; }
.btn--cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: var(--warm-700); }
/* ============================================================
HERO
============================================================ */
.hero { padding-top: calc(64px + var(--sp-16)); padding-bottom: var(--sp-16); position: relative; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background: linear-gradient(170deg, var(--peach-50) 0%, var(--warm-white) 50%, var(--bg-body) 100%); z-index: -2; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; z-index: -1; }
.hero__orb--1 { width: 400px; height: 400px; background: var(--peach-200); top: -100px; right: -80px; }
.hero__orb--2 { width: 300px; height: 300px; background: var(--peach-100); bottom: -60px; left: -60px; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-12); align-items: center; }
.hero__badge { display: inline-flex; align-items: center; gap: var(--sp-2); padding: 6px 16px; background: var(--peach-100); color: var(--peach-600); font-size: var(--text-sm); font-weight: 600; border-radius: var(--radius-full); margin-bottom: var(--sp-6); }
.hero__badge svg { width: 14px; height: 14px; }
.hero__title { font-size: var(--text-4xl); font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; margin-bottom: var(--sp-6); }
.hero__title em { font-style: normal; color: var(--peach-500); }
.hero__desc { font-size: var(--text-lg); color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--sp-8); max-width: 480px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; }
.hero__note { font-size: var(--text-sm); color: var(--text-tertiary); }
.hero__stats { display: flex; gap: var(--sp-6); margin-top: var(--sp-8); }
.hero__stat-val { font-size: var(--text-2xl); font-weight: 700; line-height: 1.2; }
.hero__stat-lbl { font-size: var(--text-sm); color: var(--text-tertiary); margin-top: var(--sp-1); }
.hero__visual { display: flex; justify-content: center; position: relative; }
.hero__icon { width: 280px; height: 280px; border-radius: 56px; box-shadow: var(--shadow-xl); transition: transform 0.5s var(--ease-out); }
.hero__icon:hover { transform: scale(1.03) rotate(-1deg); }
.hero__float { position: absolute; background: var(--bg-card); border-radius: var(--radius-lg); padding: var(--sp-4) var(--sp-5); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: var(--sp-3); animation: hfloat 6s ease-in-out infinite; }
.hero__float--1 { top: 10%; right: -10%; }
.hero__float--2 { bottom: 15%; left: -5%; animation-delay: -3s; }
.hero__float-ic { width: 40px; height: 40px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero__float-ic svg { width: 20px; height: 20px; }
.hero__float-ic--peach { background: var(--peach-100); color: var(--peach-600); }
.hero__float-ic--green { background: #E8F5E9; color: var(--green); }
.hero__float-txt { font-size: var(--text-sm); font-weight: 600; white-space: nowrap; }
.hero__float-sub { font-size: var(--text-xs); color: var(--text-tertiary); }
@keyframes hfloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
/* ============================================================
SECTION HEADER
============================================================ */
.shdr { max-width: 560px; margin-bottom: var(--sp-12); }
.shdr--c { margin-left: auto; margin-right: auto; text-align: center; }
.shdr__over { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: var(--text-sm); font-weight: 600; color: var(--peach-500); letter-spacing: 0.04em; margin-bottom: var(--sp-4); }
.shdr__over svg { width: 16px; height: 16px; }
.shdr__title { font-size: var(--text-3xl); font-weight: 700; line-height: 1.25; letter-spacing: -0.015em; margin-bottom: var(--sp-4); }
.shdr__desc { font-size: var(--text-lg); color: var(--text-secondary); line-height: 1.7; }
/* ============================================================
FEATURES
============================================================ */
.features { background: var(--bg-alt); }
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-8); }
.feat { background: var(--bg-card); border-radius: var(--radius-xl); padding: var(--sp-8); border: 1px solid var(--border-subtle); transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out); }
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feat__ic { width: 52px; height: 52px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-5); }
.feat__ic svg { width: 26px; height: 26px; }
.feat__ic--peach { background: var(--peach-100); color: var(--peach-600); }
.feat__ic--green { background: #E8F5E9; color: var(--green); }
.feat__ic--blue { background: #E3F0FA; color: var(--blue); }
.feat__ic--lavender { background: #F0EBF8; color: var(--lavender); }
.feat__ic--warm { background: var(--warm-100); color: var(--warm-600); }
.feat__ic--coral { background: #FFE8E0; color: #D4735C; }
.feat__title { font-size: var(--text-lg); font-weight: 600; margin-bottom: var(--sp-2); }
.feat__desc { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; }
.feat__tag { display: inline-block; font-size: var(--text-xs); font-weight: 600; color: var(--peach-600); background: var(--peach-50); padding: 3px 10px; border-radius: var(--radius-full); margin-top: var(--sp-4); }
/* ============================================================
HIGHLIGHT SECTION
============================================================ */
.hl__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: center; }
.hl__list { list-style: none; display: flex; flex-direction: column; gap: var(--sp-5); margin-top: var(--sp-8); }
.hl__item { display: flex; gap: var(--sp-4); align-items: flex-start; }
.hl__item-ic { width: 36px; height: 36px; border-radius: 50%; background: var(--peach-100); color: var(--peach-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.hl__item-ic svg { width: 18px; height: 18px; }
.hl__item-txt strong { display: block; font-size: var(--text-base); font-weight: 600; margin-bottom: var(--sp-1); }
.hl__item-txt span { font-size: var(--text-sm); color: var(--text-secondary); }
.hl__illust { width: 100%; max-width: 400px; aspect-ratio: 1; background: linear-gradient(135deg, var(--peach-100), var(--peach-50)); border-radius: var(--radius-xl); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: var(--sp-8); position: relative; overflow: hidden; margin: 0 auto; }
.hl__illust::before { content:''; position: absolute; width: 200px; height: 200px; background: var(--peach-200); border-radius: 50%; filter: blur(60px); opacity: 0.5; top: -40px; right: -40px; }
.hl__illust-q { font-family: var(--font-serif); font-size: var(--text-xl); color: var(--warm-700); line-height: 1.8; text-align: center; z-index: 1; }
.hl__illust-a { font-size: var(--text-sm); color: var(--peach-600); margin-top: var(--sp-4); font-weight: 600; z-index: 1; }
/* ============================================================
TRUST SECTION
============================================================ */
.trust { background: var(--bg-alt); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-6); }
.trust-c { text-align: center; padding: var(--sp-8) var(--sp-4); background: var(--bg-card); border-radius: var(--radius-xl); border: 1px solid var(--border-subtle); transition: transform 0.3s var(--ease-out); }
.trust-c:hover { transform: translateY(-3px); }
.trust-c__ic { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto var(--sp-4); display: flex; align-items: center; justify-content: center; }
.trust-c__ic svg { width: 28px; height: 28px; }
.trust-c__ic--green { background: #E8F5E9; color: var(--green); }
.trust-c__ic--blue { background: #E3F0FA; color: var(--blue); }
.trust-c__ic--peach { background: var(--peach-100); color: var(--peach-600); }
.trust-c__ic--lavender { background: #F0EBF8; color: var(--lavender); }
.trust-c__title { font-size: var(--text-base); font-weight: 600; margin-bottom: var(--sp-2); }
.trust-c__desc { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.5; }
/* ============================================================
REVIEWS
============================================================ */
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-6); }
.rev { background: var(--bg-card); border-radius: var(--radius-xl); padding: var(--sp-8); border: 1px solid var(--border-subtle); display: flex; flex-direction: column; }
.rev__stars { display: flex; gap: 2px; margin-bottom: var(--sp-4); }
.rev__stars svg { width: 16px; height: 16px; color: var(--peach-400); }
.rev__text { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7; flex: 1; font-style: italic; }
.rev__author { margin-top: var(--sp-4); padding-top: var(--sp-4); border-top: 1px solid var(--border-subtle); font-size: var(--text-sm); font-weight: 600; }
/* ============================================================
CTA
============================================================ */
.cta__box { background: linear-gradient(135deg, var(--peach-100), var(--peach-50) 50%, var(--warm-100)); border-radius: var(--radius-xl); padding: var(--sp-16) var(--sp-8); text-align: center; position: relative; overflow: hidden; }
.cta__box::before, .cta__box::after { content:''; position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3; }
.cta__box::before { width: 300px; height: 300px; background: var(--peach-300); top: -100px; left: -50px; }
.cta__box::after { width: 250px; height: 250px; background: var(--peach-200); bottom: -80px; right: -50px; }
.cta__content { position: relative; z-index: 1; }
.cta__icon { width: 72px; height: 72px; border-radius: 18px; margin: 0 auto var(--sp-6); box-shadow: var(--shadow-lg); }
.cta__title { font-size: var(--text-3xl); font-weight: 700; letter-spacing: -0.015em; margin-bottom: var(--sp-4); }
.cta__desc { font-size: var(--text-lg); color: var(--text-secondary); margin-bottom: var(--sp-8); max-width: 460px; margin-left: auto; margin-right: auto; }
.cta__note { margin-top: var(--sp-4); font-size: var(--text-sm); color: var(--text-tertiary); }
/* ============================================================
FOOTER
============================================================ */
.foot { padding: var(--sp-12) 0 var(--sp-8); border-top: 1px solid var(--border-subtle); }
.foot__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--sp-8); margin-bottom: var(--sp-8); }
.foot__brand-desc { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; margin-top: var(--sp-3); max-width: 320px; }
.foot__heading { font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--sp-4); }
.foot__links { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.foot__links a { font-size: var(--text-sm); color: var(--text-secondary); transition: color 0.15s; }
.foot__links a:hover { color: var(--peach-500); }
.foot__bottom { padding-top: var(--sp-6); border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-between; align-items: center; }
.foot__copy { font-size: var(--text-xs); color: var(--text-tertiary); }
.foot__bottom-links { display: flex; gap: var(--sp-4); }
.foot__bottom-links a { font-size: var(--text-xs); color: var(--text-tertiary); transition: color 0.15s; }
.foot__bottom-links a:hover { color: var(--peach-500); }
/* ============================================================
LANGUAGE VISIBILITY
============================================================ */
[data-i] { display: none !important; }
/* ============================================================
RESPONSIVE
============================================================ */
@media (min-width: 768px) {
.hero__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
.hero__title { font-size: var(--text-5xl); }
.hero { padding-top: calc(64px + var(--sp-20)); padding-bottom: var(--sp-20); }
}
@media (max-width: 767px) {
:root { --text-3xl: 1.75rem; --text-4xl: 2rem; --text-5xl: 2.5rem; }
.section { padding: var(--sp-12) 0; }
.section--lg { padding: var(--sp-16) 0; }
.container { padding: 0 var(--sp-5); }
.nav__right { gap: var(--sp-3); }
.nav__cta-txt { display: none; }
.nav .btn--primary { padding: 8px 14px; }
.hero__grid { text-align: center; }
.hero__desc { margin-left: auto; margin-right: auto; }
.hero__actions { justify-content: center; }
.hero__stats { justify-content: center; }
.hero__icon { width: 200px; height: 200px; border-radius: 44px; }
.hero__float { display: none; }
.feat-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
.feat { padding: var(--sp-6); }
.hl__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
.hl__visual { order: -1; }
.hl__illust { max-width: 320px; }
.trust-grid { grid-template-columns: repeat(2,1fr); gap: var(--sp-4); }
.trust-c { padding: var(--sp-6) var(--sp-4); }
.rev-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
.shdr { margin-bottom: var(--sp-8); }
.shdr__title { font-size: var(--text-2xl); }
.cta__box { padding: var(--sp-10) var(--sp-6); border-radius: var(--radius-lg); }
.cta__title { font-size: var(--text-2xl); }
.foot__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
.foot__bottom { flex-direction: column; gap: var(--sp-4); text-align: center; }
}
@media (min-width: 500px) and (max-width: 767px) {
.feat-grid { grid-template-columns: repeat(2,1fr); }
.rev-grid { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 1200px) {
.hero__title { font-size: 3.5rem; }
.hero__grid { gap: var(--sp-16); }
}
</style>
</head>
<body>
<!-- ============================================================
NAV
============================================================ -->
<nav class="nav" role="navigation" aria-label="Main navigation">
<div class="container nav__inner">
<a href="#" class="nav__brand" aria-label="Home">
<img class="nav__logo" src="https://is1-ssl.mzstatic.com/image/thumb/Purple211/v4/f5/9c/4f/f59c4f8f-fd87-7dd4-172a-165aba149ac1/AppIcon-0-0-1x_U007epad-0-1-85-220.png/1200x630wa.png" alt="Haru" width="36" height="36">
<span class="nav__name" data-i="ko">하루</span>
<span class="nav__name" data-i="en">Haru</span>
<span class="nav__name" data-i="ja">はる</span>
</a>
<div class="nav__right">
<div class="lang-sw" role="radiogroup" aria-label="Language">
<button class="lang-sw__btn is-active" data-lang="ko" role="radio" aria-checked="true">KO</button>
<button class="lang-sw__btn" data-lang="en" role="radio" aria-checked="false">EN</button>
<button class="lang-sw__btn" data-lang="ja" role="radio" aria-checked="false">JA</button>
</div>
<a href="https://apps.apple.com/kr/app/%ED%95%98%EB%A3%A8-%ED%83%9C%EA%B5%90-%EB%8F%99%ED%99%94-%ED%83%9C%EB%8B%B4-%EC%9D%BC%EA%B8%B0/id6760256673" class="btn btn--primary" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/><polyline points="15 3 21 3 21 9"/><line x1="10" y1="14" x2="21" y2="3"/></svg>
<span class="nav__cta-txt" data-i="ko">다운로드</span>
<span class="nav__cta-txt" data-i="en">Download</span>
<span class="nav__cta-txt" data-i="ja">入手</span>
</a>
</div>
</div>
</nav>
<!-- ============================================================
HERO
============================================================ -->
<section class="hero" id="hero">
<div class="hero__bg">
<div class="hero__orb hero__orb--1"></div>
<div class="hero__orb hero__orb--2"></div>
</div>
<div class="container hero__grid">
<!-- KO -->
<div class="hero__content reveal" data-i="ko">
<div class="hero__badge">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg>
App Store 5.0
</div>
<h1 class="hero__title">오늘도,<br><em>한 편의 이야기</em></h1>
<p class="hero__desc">뱃속 아기에게 매일 들려주는 280일의 태교 동화. 목소리로, 글로. 아기에게 건넨 말을 기록하고, 매일 아침 아기가 보내는 편지를 받아보세요.</p>
<div class="hero__actions">
<a href="https://apps.apple.com/kr/app/%ED%95%98%EB%A3%A8-%ED%83%9C%EA%B5%90-%EB%8F%99%ED%99%94-%ED%83%9C%EB%8B%B4-%EC%9D%BC%EA%B8%B0/id6760256673" class="btn btn--primary btn--primary-lg" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" fill="currentColor" aria-hidden="true"><path d="M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.8-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z"/></svg>
App Store에서 다운로드
</a>
<span class="hero__note">무료 - iOS 17.0+</span>
</div>
<div class="hero__stats">
<div><div class="hero__stat-val">280</div><div class="hero__stat-lbl">태교 동화</div></div>
<div><div class="hero__stat-val">3</div><div class="hero__stat-lbl">지원 언어</div></div>
<div><div class="hero__stat-val">100%</div><div class="hero__stat-lbl">기기 내 저장</div></div>
</div>
</div>
<!-- EN -->
<div class="hero__content reveal" data-i="en">
<div class="hero__badge">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg>
App Store 5.0
</div>
<h1 class="hero__title">A story a day,<br>a special gift for<br><em>your little one</em></h1>
<p class="hero__desc">Read one of 280 prenatal stories each day. Record voice talks and write letters to your baby. All memories stay safely on your device.</p>
<div class="hero__actions">
<a href="https://apps.apple.com/kr/app/%ED%95%98%EB%A3%A8-%ED%83%9C%EA%B5%90-%EB%8F%99%ED%99%94-%ED%83%9C%EB%8B%B4-%EC%9D%BC%EA%B8%B0/id6760256673" class="btn btn--primary btn--primary-lg" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" fill="currentColor" aria-hidden="true"><path d="M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.8-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z"/></svg>
Download on App Store
</a>
<span class="hero__note">Free - iOS 17.0+</span>
</div>
<div class="hero__stats">
<div><div class="hero__stat-val">280</div><div class="hero__stat-lbl">Stories</div></div>
<div><div class="hero__stat-val">3</div><div class="hero__stat-lbl">Languages</div></div>
<div><div class="hero__stat-val">100%</div><div class="hero__stat-lbl">On-device</div></div>
</div>
</div>
<!-- JA -->
<div class="hero__content reveal" data-i="ja">
<div class="hero__badge">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg>
App Store 5.0
</div>
<h1 class="hero__title"><em>毎日一つ、</em><br>赤ちゃんに届ける<br>特別な物語</h1>
<p class="hero__desc">280編の胎教童話を毎日一つずつ読み聞かせましょう。声の胎談を記録し、赤ちゃんへの手紙を書いてみてください。すべての記憶は安全にデバイスに保存されます。</p>
<div class="hero__actions">
<a href="https://apps.apple.com/kr/app/%ED%95%98%EB%A3%A8-%ED%83%9C%EA%B5%90-%EB%8F%99%ED%99%94-%ED%83%9C%EB%8B%B4-%EC%9D%BC%EA%B8%B0/id6760256673" class="btn btn--primary btn--primary-lg" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" fill="currentColor" aria-hidden="true"><path d="M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.8-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z"/></svg>
App Storeでダウンロード
</a>
<span class="hero__note">無料 - iOS 17.0+</span>
</div>
<div class="hero__stats">
<div><div class="hero__stat-val">280</div><div class="hero__stat-lbl">胎教童話</div></div>
<div><div class="hero__stat-val">3</div><div class="hero__stat-lbl">対応言語</div></div>
<div><div class="hero__stat-val">100%</div><div class="hero__stat-lbl">端末内保存</div></div>
</div>
</div>
<!-- Visual -->
<div class="hero__visual reveal reveal-d2">
<img class="hero__icon" src="https://is1-ssl.mzstatic.com/image/thumb/Purple211/v4/f5/9c/4f/f59c4f8f-fd87-7dd4-172a-165aba149ac1/AppIcon-0-0-1x_U007epad-0-1-85-220.png/1200x630wa.png" alt="Haru app icon" width="280" height="280">
<div class="hero__float hero__float--1">
<div class="hero__float-ic hero__float-ic--peach">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"/><path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"/></svg>
</div>
<div>
<div class="hero__float-txt" data-i="ko">280편의 동화</div>
<div class="hero__float-txt" data-i="en">280 Stories</div>
<div class="hero__float-txt" data-i="ja">280編の童話</div>
<div class="hero__float-sub" data-i="ko">한/영/일 3개 언어</div>
<div class="hero__float-sub" data-i="en">KO / EN / JA</div>
<div class="hero__float-sub" data-i="ja">韓/英/日 3言語</div>
</div>
</div>
<div class="hero__float hero__float--2">
<div class="hero__float-ic hero__float-ic--green">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>
</div>
<div>
<div class="hero__float-txt" data-i="ko">프라이버시 우선</div>
<div class="hero__float-txt" data-i="en">Privacy First</div>
<div class="hero__float-txt" data-i="ja">プライバシー保護</div>
<div class="hero__float-sub" data-i="ko">서버 전송 없음</div>
<div class="hero__float-sub" data-i="en">No server uploads</div>
<div class="hero__float-sub" data-i="ja">サーバー送信なし</div>
</div>
</div>
</div>
</div>
</section>
<!-- ============================================================
FEATURES
============================================================ -->
<section class="features section section--lg" id="features">
<div class="container">
<!-- KO Header -->
<div class="shdr shdr--c reveal" data-i="ko">
<div class="shdr__over">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2L2 7l10 5 10-5-10-5z"/><path d="M2 17l10 5 10-5"/><path d="M2 12l10 5 10-5"/></svg>
Core Features
</div>
<h2 class="shdr__title">280일의 여정을 함께하는 기능들</h2>
<p class="shdr__desc">태교의 모든 순간을 따뜻하게 기록하고, 소중한 추억으로 남겨보세요.</p>
</div>
<div class="shdr shdr--c reveal" data-i="en">
<div class="shdr__over">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2L2 7l10 5 10-5-10-5z"/><path d="M2 17l10 5 10-5"/><path d="M2 12l10 5 10-5"/></svg>
Core Features
</div>
<h2 class="shdr__title">Features for your 280-day journey</h2>
<p class="shdr__desc">Warmly record every moment of prenatal bonding and preserve precious memories.</p>
</div>
<div class="shdr shdr--c reveal" data-i="ja">
<div class="shdr__over">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2L2 7l10 5 10-5-10-5z"/><path d="M2 17l10 5 10-5"/><path d="M2 12l10 5 10-5"/></svg>
Core Features
</div>
<h2 class="shdr__title">280日の旅を共にする機能</h2>
<p class="shdr__desc">胎教のすべての瞬間を温かく記録し、大切な思い出として残しましょう。</p>
</div>
<!-- KO Features -->
<div class="feat-grid" data-i="ko">
<div class="feat reveal reveal-d1">
<div class="feat__ic feat__ic--peach"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"/><path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"/></svg></div>
<h3 class="feat__title">280편 태교 동화</h3>
<p class="feat__desc">임신 기간 매일 한 편씩, 아기 이름이 들어간 맞춤 동화를 읽어줄 수 있어요. 과학적 근거에 기반한 3분 분량의 따뜻한 이야기.</p>
<span class="feat__tag">한/영/일 3개 언어</span>
</div>
<div class="feat reveal reveal-d2">
<div class="feat__ic feat__ic--blue"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z"/><path d="M19 10v2a7 7 0 0 1-14 0v-2"/><line x1="12" y1="19" x2="12" y2="23"/><line x1="8" y1="23" x2="16" y2="23"/></svg></div>
<h3 class="feat__title">음성 태담 기록</h3>
<p class="feat__desc">아기에게 들려주고 싶은 이야기를 음성으로 녹음하세요. 자동 음성 인식(STT)으로 텍스트도 함께 저장됩니다.</p>
</div>
<div class="feat reveal reveal-d3">
<div class="feat__ic feat__ic--lavender"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/><polyline points="22,6 12,13 2,6"/></svg></div>
<h3 class="feat__title">매일 아기 편지</h3>
<p class="feat__desc">매일 아기가 보내는 따뜻한 메시지를 받아보세요. 하루 한 번 봉투를 열면 임신 주차에 맞는 감성 편지가 도착해요.</p>
</div>
<div class="feat reveal reveal-d1">
<div class="feat__ic feat__ic--green"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/></svg></div>
<h3 class="feat__title">PDF 태교북 제작</h3>
<p class="feat__desc">그동안의 동화, 태담, 편지를 모아 세상에 단 하나뿐인 태교북 PDF로 만들어 보세요. 출산 후 소중한 선물이 됩니다.</p>
</div>
<div class="feat reveal reveal-d2">
<div class="feat__ic feat__ic--coral"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg></div>
<h3 class="feat__title">감정 안전 설계</h3>
<p class="feat__desc">임산부의 감정을 가장 먼저 생각합니다. 민감한 상황을 배려한 부드러운 UX와, 원할 때 언제든 데이터를 삭제할 수 있어요.</p>
</div>
<div class="feat reveal reveal-d3">
<div class="feat__ic feat__ic--warm"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></svg></div>
<h3 class="feat__title">완전한 프라이버시</h3>
<p class="feat__desc">모든 데이터는 기기 내부와 본인의 iCloud에만 저장됩니다. 외부 서버 전송이 전혀 없어, 개발자도 접근할 수 없어요.</p>
</div>
</div>
<!-- EN Features -->
<div class="feat-grid" data-i="en">
<div class="feat reveal reveal-d1">
<div class="feat__ic feat__ic--peach"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"/><path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"/></svg></div>
<h3 class="feat__title">280 Prenatal Stories</h3>
<p class="feat__desc">One personalized story each day with your baby's name woven in. Warm, 3-minute tales grounded in science.</p>
<span class="feat__tag">KO / EN / JA</span>
</div>
<div class="feat reveal reveal-d2">
<div class="feat__ic feat__ic--blue"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z"/><path d="M19 10v2a7 7 0 0 1-14 0v-2"/><line x1="12" y1="19" x2="12" y2="23"/><line x1="8" y1="23" x2="16" y2="23"/></svg></div>
<h3 class="feat__title">Voice Talk Recording</h3>
<p class="feat__desc">Record stories to your baby with your voice. Automatic speech-to-text saves a transcript alongside each recording.</p>
</div>
<div class="feat reveal reveal-d3">
<div class="feat__ic feat__ic--lavender"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/><polyline points="22,6 12,13 2,6"/></svg></div>
<h3 class="feat__title">Daily Baby Letters</h3>
<p class="feat__desc">Receive a warm message from your baby each day. Open a daily envelope to find a heartfelt letter matched to your pregnancy week.</p>
</div>
<div class="feat reveal reveal-d1">
<div class="feat__ic feat__ic--green"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/></svg></div>
<h3 class="feat__title">PDF Book Export</h3>
<p class="feat__desc">Compile your stories, voice talks, and letters into a one-of-a-kind prenatal book PDF. A priceless gift after birth.</p>
</div>
<div class="feat reveal reveal-d2">
<div class="feat__ic feat__ic--coral"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg></div>
<h3 class="feat__title">Emotional Safety</h3>
<p class="feat__desc">Designed with expecting mothers' feelings first. Gentle UX for sensitive situations, with full data control at all times.</p>
</div>
<div class="feat reveal reveal-d3">
<div class="feat__ic feat__ic--warm"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></svg></div>
<h3 class="feat__title">Complete Privacy</h3>
<p class="feat__desc">All data stays on your device and your own iCloud. Zero server transmissions. Even the developer cannot access your information.</p>
</div>
</div>
<!-- JA Features -->
<div class="feat-grid" data-i="ja">
<div class="feat reveal reveal-d1">
<div class="feat__ic feat__ic--peach"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"/><path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"/></svg></div>
<h3 class="feat__title">280編の胎教童話</h3>
<p class="feat__desc">毎日一つずつ、赤ちゃんの名前が入ったオーダーメイド童話を読み聞かせましょう。科学的根拠に基づいた3分間の温かい物語。</p>
<span class="feat__tag">韓/英/日 3言語</span>
</div>
<div class="feat reveal reveal-d2">
<div class="feat__ic feat__ic--blue"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z"/><path d="M19 10v2a7 7 0 0 1-14 0v-2"/><line x1="12" y1="19" x2="12" y2="23"/><line x1="8" y1="23" x2="16" y2="23"/></svg></div>
<h3 class="feat__title">音声胎談記録</h3>
<p class="feat__desc">赤ちゃんに聞かせたい話を音声で録音しましょう。自動音声認識(STT)でテキストも一緒に保存されます。</p>
</div>
<div class="feat reveal reveal-d3">
<div class="feat__ic feat__ic--lavender"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/><polyline points="22,6 12,13 2,6"/></svg></div>
<h3 class="feat__title">毎日の赤ちゃんレター</h3>
<p class="feat__desc">毎日赤ちゃんからの温かいメッセージを受け取りましょう。1日1回封筒を開けると、妊娠週数に合わせた手紙が届きます。</p>
</div>
<div class="feat reveal reveal-d1">
<div class="feat__ic feat__ic--green"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/></svg></div>
<h3 class="feat__title">PDF胎教ブック制作</h3>
<p class="feat__desc">これまでの童話、胎談、手紙を集めて世界に一つだけの胎教ブックPDFを作りましょう。出産後の大切なプレゼントに。</p>
</div>
<div class="feat reveal reveal-d2">
<div class="feat__ic feat__ic--coral"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg></div>
<h3 class="feat__title">感情安全設計</h3>
<p class="feat__desc">妊婦の感情を最優先に考えます。繊細な状況に配慮した優しいUXと、いつでもデータを削除できる安心設計。</p>
</div>
<div class="feat reveal reveal-d3">
<div class="feat__ic feat__ic--warm"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></svg></div>
<h3 class="feat__title">完全なプライバシー</h3>
<p class="feat__desc">すべてのデータはデバイス内部とご自身のiCloudにのみ保存。外部サーバーへの送信は一切なく、開発者もアクセスできません。</p>
</div>
</div>
</div>
</section>
<!-- ============================================================
HIGHLIGHT: STORYTELLING
============================================================ -->
<section class="section section--lg" id="story">
<div class="container">
<!-- KO -->
<div class="hl__grid" data-i="ko">
<div class="reveal">
<div class="shdr">
<div class="shdr__over"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"/><path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"/></svg> Storytelling</div>
<h2 class="shdr__title">아기의 이름으로 완성되는 이야기</h2>
<p class="shdr__desc">모든 동화 속에 아기의 태명이 자연스럽게 녹아들어, 세상에 단 하나뿐인 이야기가 됩니다.</p>
</div>
<ul class="hl__list">
<li class="hl__item"><div class="hl__item-ic"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg></div><div class="hl__item-txt"><strong>매일 3분, 꾸준한 태교</strong><span>바쁜 일상 속에서도 부담 없이 읽을 수 있는 분량이에요.</span></div></li>
<li class="hl__item"><div class="hl__item-ic"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><line x1="2" y1="12" x2="22" y2="12"/><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"/></svg></div><div class="hl__item-txt"><strong>한국어 / English / 日本語</strong><span>세 가지 언어로 동화를 전환하며 자연스럽게 다국어 태교를 해보세요.</span></div></li>
<li class="hl__item"><div class="hl__item-ic"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"/><path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"/></svg></div><div class="hl__item-txt"><strong>과학 근거 기반 콘텐츠</strong><span>태아 발달 단계에 맞춘 주제와 감성을 담아 전문적으로 설계했어요.</span></div></li>
</ul>
</div>
<div class="reveal reveal-d2" style="display:flex;justify-content:center">
<div class="hl__illust">
<div class="hl__illust-q">"오늘은 작은 별님이<br>구름 위를 걸어가며<br>엄마의 노래를<br>듣는 이야기예요"</div>
<div class="hl__illust-a">- 하루 동화 중에서 -</div>
</div>
</div>
</div>
<!-- EN -->
<div class="hl__grid" data-i="en">
<div class="reveal">
<div class="shdr">
<div class="shdr__over"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"/><path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"/></svg> Storytelling</div>
<h2 class="shdr__title">Stories completed with your baby's name</h2>
<p class="shdr__desc">Your baby's name is woven naturally into every story, making each tale truly one of a kind.</p>
</div>
<ul class="hl__list">
<li class="hl__item"><div class="hl__item-ic"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg></div><div class="hl__item-txt"><strong>3 minutes a day</strong><span>Short enough to fit into the busiest schedule, rich enough to make a difference.</span></div></li>
<li class="hl__item"><div class="hl__item-ic"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><line x1="2" y1="12" x2="22" y2="12"/><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"/></svg></div><div class="hl__item-txt"><strong>Korean / English / Japanese</strong><span>Switch between three languages for a natural multilingual prenatal experience.</span></div></li>
<li class="hl__item"><div class="hl__item-ic"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"/><path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"/></svg></div><div class="hl__item-txt"><strong>Science-based content</strong><span>Professionally crafted themes and emotions aligned with fetal development stages.</span></div></li>
</ul>
</div>
<div class="reveal reveal-d2" style="display:flex;justify-content:center">
<div class="hl__illust">
<div class="hl__illust-q">"Today, a little star<br>walked on the clouds,<br>listening to<br>mommy's song"</div>
<div class="hl__illust-a">- From a Haru story -</div>
</div>
</div>
</div>
<!-- JA -->
<div class="hl__grid" data-i="ja">
<div class="reveal">
<div class="shdr">
<div class="shdr__over"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"/><path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"/></svg> Storytelling</div>
<h2 class="shdr__title">赤ちゃんの名前で完成する物語</h2>
<p class="shdr__desc">すべての童話に赤ちゃんの名前が自然に溶け込み、世界にたった一つの物語になります。</p>
</div>
<ul class="hl__list">
<li class="hl__item"><div class="hl__item-ic"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg></div><div class="hl__item-txt"><strong>毎日3分、続けやすい胎教</strong><span>忙しい日常の中でも負担なく読める分量です。</span></div></li>
<li class="hl__item"><div class="hl__item-ic"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><line x1="2" y1="12" x2="22" y2="12"/><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"/></svg></div><div class="hl__item-txt"><strong>韓国語 / English / 日本語</strong><span>3つの言語で童話を切り替えて自然な多言語胎教を体験してください。</span></div></li>
<li class="hl__item"><div class="hl__item-ic"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"/><path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"/></svg></div><div class="hl__item-txt"><strong>科学的根拠に基づくコンテンツ</strong><span>胎児の発達段階に合わせたテーマと感性を込めて専門的に設計しました。</span></div></li>
</ul>
</div>
<div class="reveal reveal-d2" style="display:flex;justify-content:center">
<div class="hl__illust">
<div class="hl__illust-q">「今日は小さな星が<br>雲の上を歩きながら<br>ママの歌を<br>聴くお話です」</div>
<div class="hl__illust-a">- はるの童話より -</div>
</div>
</div>
</div>
</div>
</section>
<!-- ============================================================
TRUST
============================================================ -->
<section class="trust section section--lg" id="trust">
<div class="container">
<div class="shdr shdr--c reveal" data-i="ko">
<div class="shdr__over"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg> Trust & Safety</div>
<h2 class="shdr__title">안심하고 사용할 수 있는 설계 원칙</h2>
<p class="shdr__desc">엄마와 아기의 소중한 기억을 지키기 위해, 처음부터 신뢰를 중심으로 설계했습니다.</p>
</div>
<div class="shdr shdr--c reveal" data-i="en">
<div class="shdr__over"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg> Trust & Safety</div>
<h2 class="shdr__title">Design principles you can rely on</h2>
<p class="shdr__desc">Built with trust at its core to protect the precious memories of mother and baby.</p>
</div>
<div class="shdr shdr--c reveal" data-i="ja">
<div class="shdr__over"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg> Trust & Safety</div>
<h2 class="shdr__title">安心して使える設計原則</h2>
<p class="shdr__desc">ママと赤ちゃんの大切な記憶を守るために、最初から信頼を中心に設計しました。</p>
</div>
<!-- KO -->
<div class="trust-grid" data-i="ko">
<div class="trust-c reveal reveal-d1"><div class="trust-c__ic trust-c__ic--green"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg></div><h3 class="trust-c__title">서버 전송 없음</h3><p class="trust-c__desc">모든 데이터는 기기와 iCloud에만 저장. 외부 서버로 전송하지 않습니다.</p></div>
<div class="trust-c reveal reveal-d2"><div class="trust-c__ic trust-c__ic--blue"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="22 12 18 12 15 21 9 3 6 12 2 12"/></svg></div><h3 class="trust-c__title">iCloud 동기화</h3><p class="trust-c__desc">기기 변경 시에도 소중한 기록이 안전하게 유지됩니다.</p></div>
<div class="trust-c reveal reveal-d3"><div class="trust-c__ic trust-c__ic--peach"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg></div><h3 class="trust-c__title">감정 배려 설계</h3><p class="trust-c__desc">민감한 상황에 대한 부드러운 전환과 배려 깊은 인터페이스.</p></div>
<div class="trust-c reveal reveal-d4"><div class="trust-c__ic trust-c__ic--lavender"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><polyline points="8 12 11 15 16 9"/></svg></div><h3 class="trust-c__title">완전한 데이터 삭제</h3><p class="trust-c__desc">언제든 모든 데이터를 영구 삭제할 수 있습니다.</p></div>
</div>
<!-- EN -->
<div class="trust-grid" data-i="en">
<div class="trust-c reveal reveal-d1"><div class="trust-c__ic trust-c__ic--green"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg></div><h3 class="trust-c__title">No Server Uploads</h3><p class="trust-c__desc">All data stays on your device and iCloud. Nothing sent to external servers.</p></div>
<div class="trust-c reveal reveal-d2"><div class="trust-c__ic trust-c__ic--blue"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="22 12 18 12 15 21 9 3 6 12 2 12"/></svg></div><h3 class="trust-c__title">iCloud Sync</h3><p class="trust-c__desc">Your precious records are safely preserved even when switching devices.</p></div>
<div class="trust-c reveal reveal-d3"><div class="trust-c__ic trust-c__ic--peach"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg></div><h3 class="trust-c__title">Emotional Care</h3><p class="trust-c__desc">Gentle transitions and thoughtful interfaces for sensitive moments.</p></div>
<div class="trust-c reveal reveal-d4"><div class="trust-c__ic trust-c__ic--lavender"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><polyline points="8 12 11 15 16 9"/></svg></div><h3 class="trust-c__title">Full Data Deletion</h3><p class="trust-c__desc">Permanently delete all data at any time you choose.</p></div>
</div>
<!-- JA -->
<div class="trust-grid" data-i="ja">
<div class="trust-c reveal reveal-d1"><div class="trust-c__ic trust-c__ic--green"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg></div><h3 class="trust-c__title">サーバー送信なし</h3><p class="trust-c__desc">すべてのデータはデバイスとiCloudにのみ保存。外部サーバーへの送信はありません。</p></div>
<div class="trust-c reveal reveal-d2"><div class="trust-c__ic trust-c__ic--blue"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="22 12 18 12 15 21 9 3 6 12 2 12"/></svg></div><h3 class="trust-c__title">iCloud同期</h3><p class="trust-c__desc">デバイス変更時も大切な記録が安全に保持されます。</p></div>
<div class="trust-c reveal reveal-d3"><div class="trust-c__ic trust-c__ic--peach"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg></div><h3 class="trust-c__title">感情配慮設計</h3><p class="trust-c__desc">繊細な状況に対する優しい遷移と思いやりのあるインターフェース。</p></div>
<div class="trust-c reveal reveal-d4"><div class="trust-c__ic trust-c__ic--lavender"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><polyline points="8 12 11 15 16 9"/></svg></div><h3 class="trust-c__title">完全なデータ削除</h3><p class="trust-c__desc">いつでもすべてのデータを永久に削除できます。</p></div>
</div>
</div>
</section>
<!-- ============================================================
REVIEWS
============================================================ -->
<section class="section section--lg" id="reviews">
<div class="container">
<div class="shdr shdr--c reveal" data-i="ko">
<div class="shdr__over"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"/></svg> Reviews</div>
<h2 class="shdr__title">사용자 후기</h2>
<p class="shdr__desc">하루를 사용하시는 분들의 이야기를 들어보세요.</p>
</div>
<div class="shdr shdr--c reveal" data-i="en">
<div class="shdr__over"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"/></svg> Reviews</div>
<h2 class="shdr__title">User Reviews</h2>
<p class="shdr__desc">Hear from mothers who use Haru every day.</p>
</div>
<div class="shdr shdr--c reveal" data-i="ja">
<div class="shdr__over"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"/></svg> Reviews</div>
<h2 class="shdr__title">ユーザーレビュー</h2>
<p class="shdr__desc">はるを使っているお母さんたちの声をお聞きください。</p>
</div>
<!-- KO Reviews -->
<div class="rev-grid" data-i="ko">
<div class="rev reveal reveal-d1">
<div class="rev__stars"><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg></div>
<p class="rev__text">"매일 자기 전에 아기에게 동화를 읽어주는 것이 일상이 되었어요. 태명이 들어가니 더 특별하게 느껴져요."</p>
<div class="rev__author">28주 예비맘</div>
</div>
<div class="rev reveal reveal-d2">
<div class="rev__stars"><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg></div>
<p class="rev__text">"개인정보가 외부로 나가지 않는다는 점이 가장 마음에 들어요. 녹음도 기기에만 저장되니 안심하고 사용합니다."</p>
<div class="rev__author">32주 예비맘</div>
</div>
<div class="rev reveal reveal-d3">
<div class="rev__stars"><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg></div>
<p class="rev__text">"영어와 일본어 동화도 있어서 다국어 태교가 가능해요. 남편도 함께 태담을 녹음하며 즐기고 있습니다."</p>
<div class="rev__author">24주 예비맘</div>
</div>
</div>
<!-- EN Reviews -->
<div class="rev-grid" data-i="en">
<div class="rev reveal reveal-d1">
<div class="rev__stars"><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg></div>
<p class="rev__text">"Reading a story to my baby before bed has become a nightly ritual. Having their name in the story makes it feel so personal."</p>
<div class="rev__author">28-week expecting mom</div>
</div>
<div class="rev reveal reveal-d2">
<div class="rev__stars"><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg></div>
<p class="rev__text">"What I love most is that no personal data leaves my device. Recordings stay on-device only, so I use it with complete peace of mind."</p>
<div class="rev__author">32-week expecting mom</div>
</div>
<div class="rev reveal reveal-d3">
<div class="rev__stars"><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg></div>
<p class="rev__text">"Stories in English and Japanese too! My husband and I enjoy recording voice talks together. A beautiful bonding experience."</p>
<div class="rev__author">24-week expecting mom</div>
</div>
</div>
<!-- JA Reviews -->
<div class="rev-grid" data-i="ja">
<div class="rev reveal reveal-d1">
<div class="rev__stars"><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg></div>
<p class="rev__text">「毎晩寝る前に赤ちゃんに童話を読み聞かせるのが日課になりました。胎名が入るとより特別に感じます。」</p>
<div class="rev__author">28週のプレママ</div>
</div>
<div class="rev reveal reveal-d2">
<div class="rev__stars"><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg></div>
<p class="rev__text">「個人情報が外部に出ないところが一番気に入っています。録音もデバイスにのみ保存されるので安心です。」</p>
<div class="rev__author">32週のプレママ</div>
</div>
<div class="rev reveal reveal-d3">
<div class="rev__stars"><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg><svg viewBox="0 0 24 24" fill="currentColor"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg></div>
<p class="rev__text">「英語と日本語の童話もあるので多言語胎教ができます。主人も一緒に胎談を録音して楽しんでいます。」</p>
<div class="rev__author">24週のプレママ</div>
</div>
</div>
</div>
</section>
<!-- ============================================================
CTA
============================================================ -->
<section class="section section--lg" id="download">
<div class="container">
<div class="cta__box reveal">
<!-- KO -->
<div class="cta__content" data-i="ko">
<img class="cta__icon" src="https://is1-ssl.mzstatic.com/image/thumb/Purple211/v4/f5/9c/4f/f59c4f8f-fd87-7dd4-172a-165aba149ac1/AppIcon-0-0-1x_U007epad-0-1-85-220.png/1200x630wa.png" alt="Haru" width="72" height="72" loading="lazy">
<h2 class="cta__title">오늘부터 시작하세요</h2>
<p class="cta__desc">280일의 특별한 여정, 아기와 함께하는 첫 번째 이야기를 지금 만나보세요.</p>
<a href="https://apps.apple.com/kr/app/%ED%95%98%EB%A3%A8-%ED%83%9C%EA%B5%90-%EB%8F%99%ED%99%94-%ED%83%9C%EB%8B%B4-%EC%9D%BC%EA%B8%B0/id6760256673" class="btn btn--cta" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" fill="currentColor" aria-hidden="true"><path d="M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.8-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z"/></svg>
App Store에서 무료 다운로드
</a>
<p class="cta__note">iOS 17.0 이상 지원</p>
</div>
<!-- EN -->
<div class="cta__content" data-i="en">
<img class="cta__icon" src="https://is1-ssl.mzstatic.com/image/thumb/Purple211/v4/f5/9c/4f/f59c4f8f-fd87-7dd4-172a-165aba149ac1/AppIcon-0-0-1x_U007epad-0-1-85-220.png/1200x630wa.png" alt="Haru" width="72" height="72" loading="lazy">
<h2 class="cta__title">Start today</h2>
<p class="cta__desc">Begin your special 280-day journey. Meet the first story for you and your baby.</p>
<a href="https://apps.apple.com/kr/app/%ED%95%98%EB%A3%A8-%ED%83%9C%EA%B5%90-%EB%8F%99%ED%99%94-%ED%83%9C%EB%8B%B4-%EC%9D%BC%EA%B8%B0/id6760256673" class="btn btn--cta" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" fill="currentColor" aria-hidden="true"><path d="M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.8-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z"/></svg>
Free Download on App Store
</a>
<p class="cta__note">Requires iOS 17.0+</p>
</div>
<!-- JA -->
<div class="cta__content" data-i="ja">
<img class="cta__icon" src="https://is1-ssl.mzstatic.com/image/thumb/Purple211/v4/f5/9c/4f/f59c4f8f-fd87-7dd4-172a-165aba149ac1/AppIcon-0-0-1x_U007epad-0-1-85-220.png/1200x630wa.png" alt="Haru" width="72" height="72" loading="lazy">
<h2 class="cta__title">今日から始めましょう</h2>
<p class="cta__desc">280日の特別な旅、赤ちゃんと一緒の最初の物語に今すぐ出会いましょう。</p>
<a href="https://apps.apple.com/kr/app/%ED%95%98%EB%A3%A8-%ED%83%9C%EA%B5%90-%EB%8F%99%ED%99%94-%ED%83%9C%EB%8B%B4-%EC%9D%BC%EA%B8%B0/id6760256673" class="btn btn--cta" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" fill="currentColor" aria-hidden="true"><path d="M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.8-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z"/></svg>
App Storeで無料ダウンロード
</a>
<p class="cta__note">iOS 17.0以上対応</p>
</div>
</div>
</div>
</section>
<!-- ============================================================
FOOTER
============================================================ -->
<footer class="foot" id="footer">
<div class="container">
<!-- KO -->
<div class="foot__grid" data-i="ko">
<div>
<div class="nav__brand"><img class="nav__logo" src="https://is1-ssl.mzstatic.com/image/thumb/Purple211/v4/f5/9c/4f/f59c4f8f-fd87-7dd4-172a-165aba149ac1/AppIcon-0-0-1x_U007epad-0-1-85-220.png/1200x630wa.png" alt="Haru" width="36" height="36" loading="lazy"><span class="nav__name">하루</span></div>
<p class="foot__brand-desc">매일 한 편, 아기에게 들려주는 특별한 이야기. 280일의 태교 여정을 함께합니다.</p>
</div>
<div><h4 class="foot__heading">앱</h4><ul class="foot__links"><li><a href="https://apps.apple.com/kr/app/%ED%95%98%EB%A3%A8-%ED%83%9C%EA%B5%90-%EB%8F%99%ED%99%94-%ED%83%9C%EB%8B%B4-%EC%9D%BC%EA%B8%B0/id6760256673" target="_blank" rel="noopener">App Store 다운로드</a></li><li><a href="support.html">고객 지원</a></li></ul></div>
<div><h4 class="foot__heading">법적 고지</h4><ul class="foot__links"><li><a href="privacy-policy.html">개인정보 처리방침</a></li><li><a href="terms.html">이용약관</a></li></ul></div>
</div>
<!-- EN -->
<div class="foot__grid" data-i="en">
<div>
<div class="nav__brand"><img class="nav__logo" src="https://is1-ssl.mzstatic.com/image/thumb/Purple211/v4/f5/9c/4f/f59c4f8f-fd87-7dd4-172a-165aba149ac1/AppIcon-0-0-1x_U007epad-0-1-85-220.png/1200x630wa.png" alt="Haru" width="36" height="36" loading="lazy"><span class="nav__name">Haru</span></div>
<p class="foot__brand-desc">A story a day, a special gift for your little one. Together through your 280-day prenatal journey.</p>
</div>
<div><h4 class="foot__heading">App</h4><ul class="foot__links"><li><a href="https://apps.apple.com/kr/app/%ED%95%98%EB%A3%A8-%ED%83%9C%EA%B5%90-%EB%8F%99%ED%99%94-%ED%83%9C%EB%8B%B4-%EC%9D%BC%EA%B8%B0/id6760256673" target="_blank" rel="noopener">Download on App Store</a></li><li><a href="support.html">Customer Support</a></li></ul></div>
<div><h4 class="foot__heading">Legal</h4><ul class="foot__links"><li><a href="privacy-policy.html">Privacy Policy</a></li><li><a href="terms.html">Terms of Service</a></li></ul></div>
</div>
<!-- JA -->
<div class="foot__grid" data-i="ja">
<div>
<div class="nav__brand"><img class="nav__logo" src="https://is1-ssl.mzstatic.com/image/thumb/Purple211/v4/f5/9c/4f/f59c4f8f-fd87-7dd4-172a-165aba149ac1/AppIcon-0-0-1x_U007epad-0-1-85-220.png/1200x630wa.png" alt="Haru" width="36" height="36" loading="lazy"><span class="nav__name">はる</span></div>
<p class="foot__brand-desc">毎日一つ、赤ちゃんに届ける特別な物語。280日の胎教の旅を一緒に歩みます。</p>
</div>
<div><h4 class="foot__heading">アプリ</h4><ul class="foot__links"><li><a href="https://apps.apple.com/kr/app/%ED%95%98%EB%A3%A8-%ED%83%9C%EA%B5%90-%EB%8F%99%ED%99%94-%ED%83%9C%EB%8B%B4-%EC%9D%BC%EA%B8%B0/id6760256673" target="_blank" rel="noopener">App Storeでダウンロード</a></li><li><a href="support.html">カスタマーサポート</a></li></ul></div>
<div><h4 class="foot__heading">法的事項</h4><ul class="foot__links"><li><a href="privacy-policy.html">プライバシーポリシー</a></li><li><a href="terms.html">利用規約</a></li></ul></div>
</div>
<div class="foot__bottom">
<p class="foot__copy" data-i="ko">© 2026 하루(Haru). All rights reserved.</p>
<p class="foot__copy" data-i="en">© 2026 Haru. All rights reserved.</p>
<p class="foot__copy" data-i="ja">© 2026 はる(Haru). All rights reserved.</p>
<div class="foot__bottom-links" data-i="ko"><a href="privacy-policy.html">개인정보 처리방침</a><a href="terms.html">이용약관</a></div>
<div class="foot__bottom-links" data-i="en"><a href="privacy-policy.html">Privacy</a><a href="terms.html">Terms</a></div>
<div class="foot__bottom-links" data-i="ja"><a href="privacy-policy.html">プライバシー</a><a href="terms.html">利用規約</a></div>
</div>
</div>
</footer>
<!-- ============================================================
JAVASCRIPT
============================================================ -->
<script>
(function(){
// ---- Language Switcher ----
var LANGS = ['ko','en','ja'];
var cur = 'ko';
function setLang(lang) {
cur = lang;
document.documentElement.lang = lang;
// Hide all, show selected
var all = document.querySelectorAll('[data-i]');
for (var i = 0; i < all.length; i++) {
var el = all[i];
if (el.getAttribute('data-i') === lang) {
// Determine display type
var cl = el.className || '';
if (cl.indexOf('feat-grid') > -1 || cl.indexOf('trust-grid') > -1 || cl.indexOf('rev-grid') > -1 || cl.indexOf('foot__grid') > -1 || cl.indexOf('hl__grid') > -1) {
el.style.display = 'grid';
} else if (cl.indexOf('hero__actions') > -1 || cl.indexOf('hero__stats') > -1 || cl.indexOf('foot__bottom-links') > -1 || cl.indexOf('nav__brand') > -1 || cl.indexOf('hero__badge') > -1) {
el.style.display = 'flex';
} else if (cl.indexOf('btn') > -1) {
el.style.display = 'inline-flex';
} else if (el.tagName === 'SPAN') {
el.style.display = 'inline';
} else if (cl.indexOf('hero__float-txt') > -1 || cl.indexOf('hero__float-sub') > -1) {
el.style.display = 'block';
} else if (cl.indexOf('nav__cta-txt') > -1) {
el.style.display = window.innerWidth <= 767 ? 'none' : 'inline';
} else {
el.style.display = 'block';
}
} else {
el.style.display = 'none';
}
}
// Update switcher buttons
var btns = document.querySelectorAll('[data-lang]');
for (var j = 0; j < btns.length; j++) {
var b = btns[j];
var isActive = b.getAttribute('data-lang') === lang;
b.className = 'lang-sw__btn' + (isActive ? ' is-active' : '');
b.setAttribute('aria-checked', isActive ? 'true' : 'false');
}
try { localStorage.setItem('haru-lang', lang); } catch(e) {}
}
// Event listener
document.addEventListener('click', function(e) {
var btn = e.target.closest('[data-lang]');
if (btn && btn.classList.contains('lang-sw__btn')) {
setLang(btn.getAttribute('data-lang'));
}
});
// Init from storage or browser
var stored = null;
try { stored = localStorage.getItem('haru-lang'); } catch(e) {}
if (stored && LANGS.indexOf(stored) > -1) {
setLang(stored);
} else {
var bl = (navigator.language || '').substring(0, 2);
setLang(bl === 'ja' ? 'ja' : bl === 'en' ? 'en' : 'ko');
}
// ---- Nav Scroll ----
var nav = document.querySelector('.nav');
var scrolled = false;
window.addEventListener('scroll', function() {
var s = window.scrollY > 10;
if (s !== scrolled) {