-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1002 lines (969 loc) · 38.9 KB
/
Copy pathindex.html
File metadata and controls
1002 lines (969 loc) · 38.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>
Sheeply 🐑 — Relaxing Mini-Games for Stress Relief & Better Sleep
</title>
<link
rel="icon"
type="image/png"
href="https://flagodna-developer.github.io/sheeply/images/sheeply.png"
/>
<meta
name="description"
content="Sheeply: calm mini-games for stress relief — sheep counting, breathing, memory & color match. Fully offline. Free. No pressure."
/>
<meta property="og:title" content="Sheeply 🐑 — Relaxing Mini-Games" />
<meta
property="og:description"
content="Calm mini games: sheep counting, breathing, memory & color match offline. Free on Android."
/>
<meta
property="og:image"
content="https://flagodna-developer.github.io/sheeply/images/seo.jpg"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@flagodna" />
<meta name="twitter:title" content="Sheeply 🐑 — Relaxing Mini-Games" />
<meta
name="twitter:description"
content="Calm mini games: sheep counting, breathing, memory & color match offline. Free on Android."
/>
<meta
name="twitter:image"
content="https://flagodna-developer.github.io/sheeply/images/seo.jpg"
/>
<!-- ── JSON-LD ── -->
<script type="application/ld+json">
[
{
"@context": "https://schema.org",
"@type": "MobileApplication",
"name": "Sheeply",
"alternateName": [
"Sheeply — Relaxing Mini-Games",
"Sheeply Calm Games"
],
"description": "Sheeply is a pocket collection of 4 relaxing mini-games designed to melt away stress, quiet your mind, and help you drift into peace. No timers. No pressure. No internet needed.",
"url": "https://flagodna.com/sheeply/",
"applicationCategory": "GameApplication",
"applicationSubCategory": "Casual Game",
"operatingSystem": "Android 5.0+",
"softwareVersion": "1.0.0",
"datePublished": "2025-01-01",
"dateModified": "2026-05-12",
"inLanguage": "en",
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "USD" },
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.8",
"ratingCount": "520",
"bestRating": "5",
"worstRating": "1"
},
"author": {
"@type": "Organization",
"name": "PT Flagodna Developer Labs",
"url": "https://flagodna.com",
"email": "flagodna.com@gmail.com"
},
"installUrl": "https://play.google.com/store/apps/details?id=com.flagodna.sheeply",
"featureList": [
"4 relaxing mini-games: Counting Sheep, Breathing Cycles, Memory Game, Color Match",
"50+ achievements to unlock",
"7 relaxation levels (Gentle → Satori)",
"Daily streaks & progress tracking",
"Monthly and yearly statistics",
"Friendly leaderboards",
"Fully offline — no internet required",
"11 languages supported",
"No timers, no fail states, no pressure",
"Lightweight & battery friendly",
"Free to play — no in-app purchases"
]
},
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "PT Flagodna Developer Labs",
"url": "https://flagodna.com",
"logo": "https://file.flagodna.com/images/flagodna.jpeg",
"email": "flagodna.com@gmail.com",
"slogan": "Mlampah Ing Tresno — Walk with ❤️",
"address": {
"@type": "PostalAddress",
"streetAddress": "Jl. Wora Wari No. 3, Kel. Sriwedari, Kec. Laweyan",
"addressLocality": "Surakarta",
"addressRegion": "Jawa Tengah",
"postalCode": "57141",
"addressCountry": "ID"
}
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is Sheeply?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Sheeply is a collection of 4 relaxing mini-games (Counting Sheep, Breathing Cycles, Memory Game, Color Match) designed to reduce stress, improve sleep, and promote mindfulness. No timers, no pressure, and fully offline."
}
},
{
"@type": "Question",
"name": "Is Sheeply really free?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes! Sheeply is completely free to play. No in-app purchases, no paywalls, no subscriptions. All 4 games, all achievements, and all features are 100% free."
}
},
{
"@type": "Question",
"name": "Does Sheeply need internet?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No — Sheeply works fully offline. You can play on a plane, in a park, or anywhere without Wi-Fi or mobile data."
}
},
{
"@type": "Question",
"name": "What games are included in Sheeply?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Sheeply includes 4 calming mini-games: Counting Sheep (classic sleep ritual), Breathing Cycles (guided breathing exercises), Memory Game (gentle emoji-based memory challenges), and Color Match (soothing color matching puzzles)."
}
},
{
"@type": "Question",
"name": "How do I download Sheeply?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Sheeply is available for free on Google Play Store: https://play.google.com/store/apps/details?id=com.flagodna.sheeply"
}
},
{
"@type": "Question",
"name": "What languages does Sheeply support?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Sheeply supports 11 languages: English, Indonesian, Spanish, Chinese, Hindi, Arabic, Portuguese, Russian, Japanese, German, and Malay."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Flagodna Developer",
"item": "https://flagodna.com"
},
{
"@type": "ListItem",
"position": 2,
"name": "Sheeply",
"item": "https://flagodna.com/sheeply/"
}
]
}
]
</script>
<meta name="theme-color" content="#1a1040" />
<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=Nunito:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<!-- ── NAV ── -->
<nav class="nav" id="nav">
<a href="#" class="nav-brand">
<span class="nav-sheep">🐑</span>
<span class="nav-wordmark">sheeply</span>
</a>
<div class="nav-links">
<a href="#games">Games</a>
<a href="#progress">Progress</a>
<a href="#features">Why Sheeply</a>
<a href="#levels">Levels</a>
</div>
<a
href="https://play.google.com/store/apps/details?id=com.flagodna.sheeply"
class="nav-cta"
target="_blank"
rel="noopener"
>
<svg width="13" height="13" viewBox="0 0 24 24" fill="currentColor">
<path
d="M3 18.5v-13c0-.83.94-1.3 1.6-.8l11 6.5c.6.36.6 1.24 0 1.6l-11 6.5c-.66.5-1.6.03-1.6-.8z"
/>
</svg>
Get it Free
</a>
<button
class="nav-burger"
id="burgerBtn"
aria-label="Menu"
aria-expanded="false"
>
<span></span><span></span><span></span>
</button>
</nav>
<div class="mobile-nav" id="mobileNav">
<a href="#games">🎮 Games</a>
<a href="#progress">📊 Progress</a>
<a href="#features">✨ Why Sheeply</a>
<a href="#levels">🌟 Levels</a>
<a
href="https://play.google.com/store/apps/details?id=com.flagodna.sheeply"
class="mnav-cta"
target="_blank"
rel="noopener"
>▶ Download Free</a
>
</div>
<main>
<!-- ═══════════ HERO ═══════════ -->
<section class="hero">
<!-- Background clouds SVG -->
<div class="hero-bg" aria-hidden="true">
<div class="cloud c1"></div>
<div class="cloud c2"></div>
<div class="cloud c3"></div>
<div class="cloud c4"></div>
<div class="star-field">
<div class="star s1"></div>
<div class="star s2"></div>
<div class="star s3"></div>
<div class="star s4"></div>
<div class="star s5"></div>
<div class="star s6"></div>
<div class="star s7"></div>
<div class="star s8"></div>
<div class="star s9"></div>
</div>
</div>
<div class="hero-inner">
<div class="hero-content">
<div class="hero-badge reveal">
<span class="badge-live"></span>
Free on Android · Fully Offline · Rated 3+
</div>
<h1 class="hero-h1 reveal">
Find your<br /><em>calm.</em><br />
<span class="sheep-emoji">🐑</span>
</h1>
<p class="hero-sub reveal">
Sheeply is a pocket collection of
<strong>4 relaxing mini-games</strong> designed to melt away
stress, quiet your mind, and help you drift into peace. No timers.
No pressure. No internet needed.
</p>
<div class="hero-actions reveal">
<a
href="https://play.google.com/store/apps/details?id=com.flagodna.sheeply"
class="btn-play"
target="_blank"
rel="noopener"
>
<svg
width="18"
height="18"
viewBox="0 0 24 24"
fill="currentColor"
>
<path
d="M3 18.5v-13c0-.83.94-1.3 1.6-.8l11 6.5c.6.36.6 1.24 0 1.6l-11 6.5c-.66.5-1.6.03-1.6-.8z"
/>
</svg>
Download on Google Play
</a>
<a
href="https://github.com/Flagodna-Developer/sheeply"
class="btn-ghost"
target="_blank"
rel="noopener"
>
<svg
width="15"
height="15"
viewBox="0 0 24 24"
fill="currentColor"
>
<path
d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z"
/>
</svg>
GitHub
</a>
</div>
<div class="hero-stats reveal">
<div class="hstat">
<span class="hstat-n">4</span>
<span class="hstat-l">Mini Games</span>
</div>
<div class="hstat-sep"></div>
<div class="hstat">
<span class="hstat-n">50+</span>
<span class="hstat-l">Achievements</span>
</div>
<div class="hstat-sep"></div>
<div class="hstat">
<span class="hstat-n">11</span>
<span class="hstat-l">Languages</span>
</div>
<div class="hstat-sep"></div>
<div class="hstat">
<span class="hstat-n">0</span>
<span class="hstat-l">Pressure</span>
</div>
</div>
</div>
<!-- Phone mockup -->
<div class="hero-phone reveal">
<div class="phone-glow"></div>
<div class="phone-wrap">
<div class="phone-notch"></div>
<div class="phone-screen">
<!-- app home screen -->
<div class="ps-topbar">
<div class="ps-greeting">Good evening 🌙</div>
<div class="ps-streak">🔥 7 days</div>
</div>
<div class="ps-hero-card">
<div class="ps-hc-sheep">🐑🐑🐑</div>
<div class="ps-hc-text">
<span class="ps-hc-title">Today's Calm</span>
<span class="ps-hc-sub">24 min relaxed</span>
</div>
<div class="ps-hc-ring">
<svg viewBox="0 0 44 44">
<circle
cx="22"
cy="22"
r="18"
fill="none"
stroke="rgba(255,255,255,.15)"
stroke-width="4"
/>
<circle
cx="22"
cy="22"
r="18"
fill="none"
stroke="white"
stroke-width="4"
stroke-dasharray="113"
stroke-dashoffset="42"
stroke-linecap="round"
transform="rotate(-90 22 22)"
/>
</svg>
<span>68%</span>
</div>
</div>
<p class="ps-section-label">Mini Games</p>
<div class="ps-games">
<div class="ps-game-card sheep">
<span class="ps-gc-emoji">🐑</span>
<span class="ps-gc-name">Counting<br />Sheep</span>
</div>
<div class="ps-game-card breath">
<span class="ps-gc-emoji">🌬️</span>
<span class="ps-gc-name">Breathing<br />Cycles</span>
</div>
<div class="ps-game-card memory">
<span class="ps-gc-emoji">🧠</span>
<span class="ps-gc-name">Memory<br />Game</span>
</div>
<div class="ps-game-card color">
<span class="ps-gc-emoji">🎨</span>
<span class="ps-gc-name">Color<br />Match</span>
</div>
</div>
<div class="ps-bottom">
<div class="ps-bnav">
<span class="ps-bni active">🏠</span>
<span class="ps-bni">📊</span>
<span class="ps-bni">🏆</span>
<span class="ps-bni">⚙️</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- scrolling sheep parade -->
<div class="sheep-parade" aria-hidden="true">
<div class="sp-track">
<span>🐑</span><span>🐑</span><span>🐑</span><span>🌙</span>
<span>🐑</span><span>🐑</span><span>⭐</span><span>🐑</span>
<span>🐑</span><span>🌿</span><span>🐑</span><span>🐑</span>
<span>🐑</span><span>🐑</span><span>🐑</span><span>🌙</span>
<span>🐑</span><span>🐑</span><span>⭐</span><span>🐑</span>
<span>🐑</span><span>🌿</span><span>🐑</span><span>🐑</span>
</div>
</div>
</section>
<!-- ═══════════ MINI GAMES ═══════════ -->
<section class="games section" id="games">
<div class="container">
<div class="section-head">
<span class="eyebrow">4 Relaxing Mini Games</span>
<h2 class="sh2">
Calm activities,<br /><em>crafted for your peace</em>
</h2>
<p class="s-sub">
Each game is a gentle escape — no fail states, no time limits,
just you and a moment of stillness.
</p>
</div>
<div class="games-grid">
<!-- Counting Sheep -->
<div class="game-card gc-sheep reveal">
<div class="gc-top">
<div class="gc-emoji-wrap">🐑</div>
<div class="gc-badge">Classic</div>
</div>
<h3>Counting Sheep</h3>
<p>
The timeless sleep ritual reimagined digitally. Let fluffy sheep
drift across your screen as your mind gently unwinds and drifts
toward peace.
</p>
<div class="gc-tags">
<span>Sleep</span><span>Zen</span><span>Mindful</span>
</div>
<!-- mini demo -->
<div class="gc-demo sheep-demo">
<span class="sd-sheep a1">🐑</span>
<span class="sd-sheep a2">🐑</span>
<span class="sd-sheep a3">🐑</span>
<div class="sd-count">247 🐑</div>
</div>
</div>
<!-- Breathing -->
<div class="game-card gc-breath reveal">
<div class="gc-top">
<div class="gc-emoji-wrap">🌬️</div>
<div class="gc-badge">Mindfulness</div>
</div>
<h3>Breathing Cycles</h3>
<p>
Guided breathing for instant calm. Inhale, hold, exhale — your
personal mindfulness coach in your pocket. Box breathing, 4-7-8,
and more.
</p>
<div class="gc-tags">
<span>Anxiety</span><span>Meditation</span
><span>Breathing</span>
</div>
<div class="gc-demo breath-demo">
<div class="bd-circle">
<div class="bd-ring"></div>
<span class="bd-text">Inhale…</span>
</div>
</div>
</div>
<!-- Memory -->
<div class="game-card gc-memory reveal">
<div class="gc-top">
<div class="gc-emoji-wrap">🧠</div>
<div class="gc-badge">Gentle</div>
</div>
<h3>Memory Game</h3>
<p>
Light and playful memory challenges using charming emojis. Easy
enough to relax with, engaging enough to keep your mind present
and clear.
</p>
<div class="gc-tags">
<span>Focus</span><span>Playful</span><span>Emojis</span>
</div>
<div class="gc-demo memory-demo">
<div class="md-grid">
<div class="md-card flipped">🌸</div>
<div class="md-card">?</div>
<div class="md-card flipped">🦋</div>
<div class="md-card flipped">🌸</div>
<div class="md-card">?</div>
<div class="md-card">?</div>
</div>
</div>
</div>
<!-- Color Match -->
<div class="game-card gc-color reveal">
<div class="gc-top">
<div class="gc-emoji-wrap">🎨</div>
<div class="gc-badge">Soothing</div>
</div>
<h3>Color Matching</h3>
<p>
Soothing color puzzles that gently calm your racing thoughts. No
stress, no rush — just satisfying, mindful matching in soft,
beautiful palettes.
</p>
<div class="gc-tags">
<span>Colors</span><span>Puzzle</span><span>Calm</span>
</div>
<div class="gc-demo color-demo">
<div class="cm-row">
<div class="cm-dot" style="background: #a78bfa"></div>
<div class="cm-dot" style="background: #34d399"></div>
<div class="cm-dot" style="background: #fbbf24"></div>
</div>
<div class="cm-row">
<div class="cm-dot" style="background: #34d399"></div>
<div class="cm-dot match" style="background: #a78bfa"></div>
<div class="cm-dot" style="background: #f472b6"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ═══════════ PROGRESS ═══════════ -->
<section class="progress-section section" id="progress">
<div class="container">
<div class="section-head light">
<span class="eyebrow">Progress & Achievements</span>
<h2 class="sh2 light">
Your calm journey,<br /><em>tracked & celebrated</em>
</h2>
</div>
<div class="progress-grid">
<div class="prog-card reveal">
<div class="prog-icon">🔥</div>
<h3>Daily Streaks</h3>
<p>
Build a consistent relaxation habit. Every day you play counts
toward your streak — watch it grow and feel proud of your
commitment to calm.
</p>
<div class="prog-visual streak-visual">
<div class="sv-days">
<div class="sv-day done">M</div>
<div class="sv-day done">T</div>
<div class="sv-day done">W</div>
<div class="sv-day done">T</div>
<div class="sv-day done">F</div>
<div class="sv-day done">S</div>
<div class="sv-day today">S</div>
</div>
<div class="sv-label">🔥 7-day streak!</div>
</div>
</div>
<div class="prog-card reveal">
<div class="prog-icon">🏆</div>
<h3>50+ Achievements</h3>
<p>
Count your 100th sheep, complete 500 breathing cycles, master
memory at impossible levels — every milestone is a cause to
celebrate.
</p>
<div class="prog-visual achiev-visual">
<div class="av-badges">
<div class="av-b earned">🐑<span>100</span></div>
<div class="av-b earned">💨<span>50</span></div>
<div class="av-b earned">🧠<span>10</span></div>
<div class="av-b">🎨<span>...</span></div>
</div>
</div>
</div>
<div class="prog-card reveal">
<div class="prog-icon">📊</div>
<h3>Monthly & Yearly Stats</h3>
<p>
See exactly how much time you've invested in your wellbeing.
Monthly charts, yearly overviews — your personal wellness story,
beautifully visualized.
</p>
<div class="prog-visual stats-visual">
<div class="stv-bars">
<div class="stv-bar" style="--h: 40%"><span>Jan</span></div>
<div class="stv-bar" style="--h: 65%"><span>Feb</span></div>
<div class="stv-bar" style="--h: 50%"><span>Mar</span></div>
<div class="stv-bar hi" style="--h: 85%">
<span>Apr</span>
</div>
<div class="stv-bar" style="--h: 72%"><span>May</span></div>
</div>
</div>
</div>
<div class="prog-card reveal">
<div class="prog-icon">🏅</div>
<h3>Friendly Leaderboards</h3>
<p>
Compare your calm with others. Sheep counted, breaths taken,
colors matched — friendly competition that motivates without
adding pressure.
</p>
<div class="prog-visual lb-visual">
<div class="lbv-row gold">
<span class="lbv-rank">🥇</span
><span class="lbv-name">sakura_calm</span
><span class="lbv-val">2,841 🐑</span>
</div>
<div class="lbv-row silver">
<span class="lbv-rank">🥈</span
><span class="lbv-name">zenmaster99</span
><span class="lbv-val">2,190 🐑</span>
</div>
<div class="lbv-row bronze">
<span class="lbv-rank">🥉</span
><span class="lbv-name">you ✨</span
><span class="lbv-val">1,247 🐑</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ═══════════ WHY SHEEPLY ═══════════ -->
<section class="why section" id="features">
<div class="container">
<div class="why-grid">
<div class="why-left">
<span class="eyebrow">Why Sheeply?</span>
<h2 class="sh2">
No rush.<br />No fail states.<br /><em>Just calm.</em>
</h2>
<p class="why-body">
Sheeply is designed from the ground up for one purpose: giving
you a genuine moment of peace. Every decision — from the absence
of timers to the offline-first design — exists to serve your
wellbeing.
</p>
<a
href="https://play.google.com/store/apps/details?id=com.flagodna.sheeply"
class="btn-play"
target="_blank"
rel="noopener"
>
<svg
width="16"
height="16"
viewBox="0 0 24 24"
fill="currentColor"
>
<path
d="M3 18.5v-13c0-.83.94-1.3 1.6-.8l11 6.5c.6.36.6 1.24 0 1.6l-11 6.5c-.66.5-1.6.03-1.6-.8z"
/>
</svg>
Start Your Journey
</a>
</div>
<div class="why-right">
<div class="why-list">
<div class="why-item reveal">
<div class="wi-icon">📵</div>
<div class="wi-body">
<strong>Fully Offline</strong>
<p>
Relax on a plane, in a park, anywhere — no internet, no
data, no connectivity required. Everything works
beautifully offline.
</p>
</div>
</div>
<div class="why-item reveal">
<div class="wi-icon">⚡</div>
<div class="wi-body">
<strong>Lightweight & Fast</strong>
<p>
Won't drain your battery or eat your storage. Sheeply is
lean and responsive — opens in a blink when you need calm
fast.
</p>
</div>
</div>
<div class="why-item reveal">
<div class="wi-icon">🌍</div>
<div class="wi-body">
<strong>11 Languages</strong>
<p>
English, Indonesian, Spanish, Chinese, Hindi, Arabic,
Portuguese, Russian, Japanese, German, and Malay — peace
in every tongue.
</p>
</div>
</div>
<div class="why-item reveal">
<div class="wi-icon">🆓</div>
<div class="wi-body">
<strong>Free to Play</strong>
<p>
All 4 games, all progress features, all 50+ achievements —
free. Relaxation shouldn't cost a thing.
</p>
</div>
</div>
<div class="why-item reveal">
<div class="wi-icon">🧘</div>
<div class="wi-body">
<strong>No Pressure Design</strong>
<p>
No fail states, no lives, no energy meters. Play at your
own pace. Sheeply adapts to you, not the other way around.
</p>
</div>
</div>
<div class="why-item reveal">
<div class="wi-icon">👶</div>
<div class="wi-body">
<strong>Rated for Everyone (3+)</strong>
<p>
Safe, gentle, and welcoming for all ages. Perfect for kids
winding down, adults de-stressing, or seniors seeking
gentle activity.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ═══════════ RELAX LEVELS ═══════════ -->
<section class="levels section" id="levels">
<div class="container">
<div class="section-head">
<span class="eyebrow">7 Relax Levels</span>
<h2 class="sh2">Your path to<br /><em>inner Satori</em></h2>
<p class="s-sub">
The more you relax, the deeper you go. Progress through 7 levels
of calm as you build your daily mindfulness habit.
</p>
</div>
<div class="levels-path">
<div class="lp-line"></div>
<div class="level-item reveal">
<div class="li-node">✨</div>
<div class="li-body">
<span class="li-num">Level 1</span>
<strong>Gentle</strong>
<span class="li-req">< 30 min / month</span>
<p>Starting your journey — every step counts.</p>
</div>
</div>
<div class="level-item reveal">
<div class="li-node">🍃</div>
<div class="li-body">
<span class="li-num">Level 2</span>
<strong>Calm</strong>
<span class="li-req">30–59 min / month</span>
<p>Mind feels refreshed and lighter.</p>
</div>
</div>
<div class="level-item reveal">
<div class="li-node">😊</div>
<div class="li-body">
<span class="li-num">Level 3</span>
<strong>Relaxed</strong>
<span class="li-req">5+ days · 60+ min</span>
<p>Steady progress toward lasting calmness.</p>
</div>
</div>
<div class="level-item reveal">
<div class="li-node">🌸</div>
<div class="li-body">
<span class="li-num">Level 4</span>
<strong>Peaceful</strong>
<span class="li-req">10+ days · 120+ min</span>
<p>Deeply relaxed and beautifully balanced.</p>
</div>
</div>
<div class="level-item reveal">
<div class="li-node">🌙</div>
<div class="li-body">
<span class="li-num">Level 5</span>
<strong>Tranquil</strong>
<span class="li-req">15+ days · 200+ min</span>
<p>Peaceful, centered, and grounded.</p>
</div>
</div>
<div class="level-item reveal">
<div class="li-node">🧘</div>
<div class="li-body">
<span class="li-num">Level 6</span>
<strong>Zen Master</strong>
<span class="li-req">20+ days · 300+ min</span>
<p>Deep meditation and inner harmony achieved.</p>
</div>
</div>
<div class="level-item reveal ultimate">
<div class="li-node">🌟</div>
<div class="li-body">
<span class="li-num">Level 7</span>
<strong>Satori</strong>
<span class="li-req">25+ days · 400+ min</span>
<p>Ultimate calm. The highest state of peaceful mastery.</p>
</div>
</div>
</div>
</div>
</section>
<!-- ═══════════ PERFECT FOR ═══════════ -->
<section class="perfect section">
<div class="container">
<div class="section-head">
<span class="eyebrow">Perfect for…</span>
<h2 class="sh2">Every moment<br /><em>needs a little calm</em></h2>
</div>
<div class="pf-grid">
<div class="pf-card reveal">
<span>😮💨</span><strong>Stress Relief</strong>
<p>After a long, draining day</p>
</div>
<div class="pf-card reveal">
<span>😴</span><strong>Better Sleep</strong>
<p>Wind down before bedtime</p>
</div>
<div class="pf-card reveal">
<span>🧘</span><strong>Meditation Breaks</strong>
<p>Short mindfulness pauses</p>
</div>
<div class="pf-card reveal">
<span>😰</span><strong>Anxiety Relief</strong>
<p>Quiet anxious thoughts</p>
</div>
<div class="pf-card reveal">
<span>📵</span><strong>Digital Detox</strong>
<p>A gentler screen moment</p>
</div>
<div class="pf-card reveal">
<span>🚌</span><strong>Commutes</strong>
<p>Calm during the chaos</p>
</div>
</div>
</div>
</section>
<!-- ═══════════ CTA ═══════════ -->
<section class="cta-section">
<div class="cta-clouds" aria-hidden="true">
<div class="ctacloud cc1"></div>
<div class="ctacloud cc2"></div>
</div>
<div class="cta-inner reveal">
<div class="cta-sheep">🐑🐑🐑</div>
<h2>Start counting sheep.<br /><em>Tonight.</em></h2>
<p>
Free. Offline. No pressure. Your pocket escape to calm is one tap
away.
</p>
<a
href="https://play.google.com/store/apps/details?id=com.flagodna.sheeply"
class="btn-play large"
target="_blank"
rel="noopener"
>
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
<path
d="M3 18.5v-13c0-.83.94-1.3 1.6-.8l11 6.5c.6.36.6 1.24 0 1.6l-11 6.5c-.66.5-1.6.03-1.6-.8z"
/>
</svg>
Download Free on Google Play
</a>
<div class="cta-note">
Android · Fully Offline · Rated 3+ · No In-App Purchases
</div>
</div>
</section>
</main>
<!-- FOOTER -->
<footer>
<div class="footer-inner">
<div class="footer-brand">
<span class="footer-sheep">🐑</span>
<div>
<div class="footer-name">Sheeply</div>
<div class="footer-by">by PT Flagodna Developer Labs</div>
</div>
</div>
<div class="footer-links">
<a
href="https://play.google.com/store/apps/details?id=com.flagodna.sheeply"
target="_blank"
rel="noopener"
>Google Play</a
>
<a
href="https://github.com/Flagodna-Developer/sheeply"
target="_blank"
rel="noopener"
>GitHub</a
>
<a
href="https://flagodna-developer.github.io/sheeply/docs/en/privacy-policy"
target="_blank"
rel="noopener"
>Privacy Policy</a
>
<a href="mailto:flagodna.com@gmail.com">Support</a>
<a href="https://flagodna.com" target="_blank" rel="noopener"
>flagodna.com</a
>
</div>
<div class="footer-bottom">
<p>
© 2025–2026 PT Flagodna Developer Labs · Made with ❤️ for a more
peaceful world 🌸
</p>
</div>
</div>
</footer>
<script>
// Reveal on scroll
const io = new IntersectionObserver(
(entries) => {
entries.forEach((e) => {
if (e.isIntersecting) {
e.target.classList.add("visible");
io.unobserve(e.target);
}
});
},
{ threshold: 0.08, rootMargin: "0px 0px -30px 0px" }
);
document.querySelectorAll(".reveal").forEach((el) => io.observe(el));
// Nav scroll
const nav = document.getElementById("nav");
window.addEventListener("scroll", () =>
nav.classList.toggle("scrolled", window.scrollY > 40)
);
// Burger
const burgerBtn = document.getElementById("burgerBtn");
const mobileNav = document.getElementById("mobileNav");
burgerBtn.addEventListener("click", () => {
const open = mobileNav.classList.toggle("open");
burgerBtn.setAttribute("aria-expanded", open);
});
mobileNav.querySelectorAll("a").forEach((a) =>
a.addEventListener("click", () => {
mobileNav.classList.remove("open");
burgerBtn.setAttribute("aria-expanded", false);
})
);
// Smooth scroll
document.querySelectorAll('a[href^="#"]').forEach((a) => {
a.addEventListener("click", (e) => {
const t = document.querySelector(a.getAttribute("href"));
if (t) {
e.preventDefault();
t.scrollIntoView({ behavior: "smooth", block: "start" });
}
});
});
</script>