-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconcepts.html
More file actions
788 lines (752 loc) · 37.1 KB
/
concepts.html
File metadata and controls
788 lines (752 loc) · 37.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Boundless Learning — 10 Landing Page Concepts</title>
<link href="https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Baloo 2', sans-serif; background: #f0ede8; color: #1a1a2a; }
.page-header {
text-align: center; padding: 60px 40px 20px;
}
.page-header h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 8px; }
.page-header p { color: #5a5a6a; font-size: 1rem; }
.filter-row {
display: flex; justify-content: center; gap: 10px; padding: 20px 40px 40px; flex-wrap: wrap;
}
.filter-btn {
padding: 8px 20px; border-radius: 20px; border: 1.5px solid #ddd;
background: #fff; font-family: inherit; font-size: 0.85rem; font-weight: 600;
cursor: pointer; transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
background: #1a1a2a; color: #fff; border-color: #1a1a2a;
}
.concepts-grid {
display: grid; grid-template-columns: 1fr; gap: 80px;
max-width: 1200px; margin: 0 auto; padding: 0 40px 80px;
}
.concept {
background: #fff; border-radius: 24px; overflow: hidden;
box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.concept-label {
display: flex; align-items: center; justify-content: space-between;
padding: 24px 32px; border-bottom: 1px solid #eee;
}
.concept-label h2 { font-size: 1.3rem; font-weight: 700; }
.concept-tags { display: flex; gap: 6px; }
.tag {
font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 10px;
text-transform: uppercase; letter-spacing: 0.5px;
}
.tag-parent { background: #e8f0e4; color: #4a6a40; }
.tag-playful { background: #e4e8f8; color: #4a5a8a; }
.tag-serious { background: #f0e8e4; color: #8a5a4a; }
.preview { position: relative; overflow: hidden; }
/* ── Shared elements ── */
.btn-sage {
display: inline-block; padding: 12px 28px; border-radius: 24px;
background: #7c9070; color: #fff; font-weight: 600; font-size: 0.9rem;
text-decoration: none; width: fit-content; font-family: inherit;
}
.btn-outline-dark {
display: inline-block; padding: 10px 24px; border-radius: 24px;
background: transparent; color: #1a1a2a; font-weight: 600; font-size: 0.85rem;
text-decoration: none; border: 1.5px solid #ccc; font-family: inherit;
}
/* CSS icons instead of emoji */
.icon {
width: 40px; height: 40px; border-radius: 10px; display: flex;
align-items: center; justify-content: center; flex-shrink: 0;
}
.icon svg { width: 20px; height: 20px; }
/* ═══════════════════════════════════════
CONCEPT 1 — The Journey Map
Parent + Playful
═══════════════════════════════════════ */
.c1 { background: linear-gradient(to bottom, #c0daf0 0%, #e8f0e4 30%, #fff 50%); }
.c1-hero { text-align: center; padding: 60px 40px 30px; }
.c1-hero h1 { font-size: 2.4rem; color: #1a3a5a; font-weight: 800; margin-bottom: 12px; }
.c1-hero p { color: #3a5a7a; max-width: 460px; margin: 0 auto 20px; font-size: 0.95rem; line-height: 1.6; }
.c1-mountains { width: 100%; height: 220px; background: url('hero-bg.png') center bottom / 100% auto no-repeat; }
.c1-path { padding: 40px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.c1-stop { width: 160px; text-align: center; position: relative; }
.c1-dot {
width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 10px;
display: flex; align-items: center; justify-content: center;
box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}
.c1-dot svg { width: 22px; height: 22px; }
.c1-stop h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; }
.c1-stop p { font-size: 0.72rem; color: #5a5a6a; line-height: 1.4; }
.c1-connector { position: absolute; top: 24px; right: -20px; width: 20px; height: 2px; background: #ddd; }
/* Full-width illustration card (Headspace style) */
.wide-card {
margin: 30px 40px; border-radius: 24px; overflow: hidden;
display: grid; grid-template-columns: 1fr 1fr; min-height: 420px;
}
.wide-card-img {
background-size: cover; background-position: center;
min-height: 420px;
}
.wide-card-text {
padding: 60px 48px; display: flex; flex-direction: column;
justify-content: center;
}
.wide-card-text h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.wide-card-text p { font-size: 0.92rem; color: #5a5a6a; line-height: 1.65; margin-bottom: 20px; }
/* ═══════════════════════════════════════
CONCEPT 2 — Split Screen Storyteller
Parent
═══════════════════════════════════════ */
.c2 { background: #fff; }
.c2-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.c2-left { background: url('hero-bg.png') center / cover no-repeat; min-height: 480px; }
.c2-right { padding: 60px 48px; display: flex; flex-direction: column; justify-content: center; }
.c2-right h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 14px; line-height: 1.15; }
.c2-right p { color: #5a5a6a; font-size: 0.92rem; line-height: 1.65; margin-bottom: 24px; }
.c2-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #f0ede8; }
.c2-feat { background: #fff; padding: 32px 24px; text-align: center; }
.c2-feat .icon { margin: 0 auto 10px; }
.c2-feat h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; }
.c2-feat p { font-size: 0.75rem; color: #7a7a8a; line-height: 1.4; }
/* ═══════════════════════════════════════
CONCEPT 3 — Dashboard Preview
Serious + Parent
═══════════════════════════════════════ */
.c3 { background: #fafaf8; }
.c3-hero { text-align: center; padding: 50px 40px 20px; }
.c3-hero h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 10px; }
.c3-hero p { color: #5a5a6a; font-size: 0.92rem; max-width: 500px; margin: 0 auto 24px; line-height: 1.6; }
.c3-mockup { max-width: 800px; margin: 0 auto; padding: 0 40px; }
.c3-browser { background: #fff; border-radius: 12px; box-shadow: 0 4px 32px rgba(0,0,0,0.08); overflow: hidden; }
.c3-bar { height: 32px; background: #f0ede8; display: flex; align-items: center; padding: 0 12px; gap: 6px; }
.c3-bar-dot { width: 8px; height: 8px; border-radius: 50%; background: #ddd; }
.c3-dash { padding: 24px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.c3-card { background: #f8f6f3; border-radius: 10px; padding: 16px; }
.c3-card h4 { font-size: 0.75rem; font-weight: 700; color: #7c9070; margin-bottom: 6px; }
.c3-card p { font-size: 0.65rem; color: #7a7a8a; }
.c3-trust { display: flex; justify-content: center; gap: 40px; padding: 30px 40px; }
.c3-trust-item { text-align: center; }
.c3-trust-item h3 { font-size: 1.6rem; font-weight: 800; color: #7c9070; }
.c3-trust-item p { font-size: 0.75rem; color: #7a7a8a; }
/* ═══════════════════════════════════════
CONCEPT 4 — Storybook Scroll
Playful — alternating full-width cards
═══════════════════════════════════════ */
.c4 { background: #fff; }
/* ═══════════════════════════════════════
CONCEPT 5 — Dark Mode Showcase
Serious
═══════════════════════════════════════ */
.c5 { background: #1a1a2a; color: #fff; }
.c5-hero { text-align: center; padding: 50px 40px 30px; }
.c5-hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 10px; }
.c5-hero p { color: #90a0b8; font-size: 0.92rem; max-width: 460px; margin: 0 auto 24px; line-height: 1.6; }
.c5-cards { display: flex; gap: 20px; padding: 0 40px 20px; overflow-x: auto; scrollbar-width: none; }
.c5-cards::-webkit-scrollbar { display: none; }
.c5-card { flex: 0 0 320px; border-radius: 18px; overflow: hidden; position: relative; min-height: 400px; }
.c5-card-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.c5-card-overlay {
position: absolute; bottom: 0; left: 0; right: 0;
padding: 24px; background: linear-gradient(transparent, rgba(0,0,0,0.6));
}
.c5-card-overlay h3 { font-size: 1.2rem; font-weight: 700; color: #fff; }
.c5-card-overlay p { font-size: 0.8rem; color: rgba(255,255,255,0.8); }
.c5-bottom {
display: flex; justify-content: center; gap: 40px; padding: 20px 40px 40px;
border-top: 1px solid rgba(255,255,255,0.08);
}
.c5-stat { text-align: center; }
.c5-stat h3 { font-size: 1.8rem; font-weight: 800; color: #7c9070; }
.c5-stat p { font-size: 0.75rem; color: #6a7a8a; }
/* ═══════════════════════════════════════
CONCEPT 6 — Full Bleed Immersive
Playful + Parent
═══════════════════════════════════════ */
.c6 { background: #000; }
.c6-section {
position: relative; min-height: 460px;
background-size: cover; background-position: center;
display: flex; align-items: flex-end;
}
.c6-overlay {
width: 100%; padding: 50px 60px;
background: linear-gradient(transparent 0%, rgba(0,0,0,0.65) 100%);
}
.c6-overlay h2 { font-size: 2.2rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.c6-overlay p { font-size: 0.92rem; color: rgba(255,255,255,0.8); max-width: 500px; line-height: 1.6; }
/* ═══════════════════════════════════════
CONCEPT 7 — Bento Grid
Parent + Serious
═══════════════════════════════════════ */
.c7 { background: #f8f6f3; padding: 40px; }
.c7-header { text-align: center; margin-bottom: 30px; }
.c7-header h1 { font-size: 2rem; font-weight: 800; }
.c7-header p { color: #5a5a6a; font-size: 0.9rem; }
.c7-grid {
display: grid; grid-template-columns: repeat(4, 1fr);
grid-template-rows: auto auto auto;
gap: 16px; max-width: 900px; margin: 0 auto;
}
.c7-cell {
background: #fff; border-radius: 16px; padding: 24px; overflow: hidden;
display: flex; flex-direction: column; justify-content: flex-end;
}
.c7-cell h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.c7-cell p { font-size: 0.75rem; color: #7a7a8a; line-height: 1.4; }
.c7-hero-cell {
grid-column: 1 / 3; grid-row: 1 / 3;
background: url('hero-bg.png') center / cover no-repeat;
min-height: 260px; color: #fff; position: relative;
}
.c7-hero-cell::after {
content: ''; position: absolute; inset: 0;
background: linear-gradient(transparent 40%, rgba(0,0,0,0.5)); border-radius: 16px;
}
.c7-hero-cell h3, .c7-hero-cell p { position: relative; z-index: 1; color: #fff; }
.c7-img-cell {
background-size: cover; background-position: center;
min-height: 120px; position: relative;
}
.c7-img-cell::after {
content: ''; position: absolute; inset: 0;
background: linear-gradient(transparent 30%, rgba(0,0,0,0.45)); border-radius: 16px;
}
.c7-img-cell h3, .c7-img-cell p { position: relative; z-index: 1; color: #fff; }
.c7-stat-cell { text-align: center; justify-content: center; align-items: center; }
.c7-stat-cell h3 { font-size: 2rem; color: #7c9070; margin-bottom: 2px; }
/* ═══════════════════════════════════════
CONCEPT 8 — Magazine Editorial
Serious + Parent
═══════════════════════════════════════ */
.c8 { background: #fff; }
.c8-masthead { text-align: center; padding: 40px 40px 10px; border-bottom: 2px solid #1a1a2a; }
.c8-masthead h1 { font-size: 1.2rem; font-weight: 800; letter-spacing: 6px; text-transform: uppercase; }
.c8-headline { text-align: center; padding: 40px 40px 20px; }
.c8-headline h2 { font-size: 2.6rem; font-weight: 800; line-height: 1.1; max-width: 600px; margin: 0 auto 12px; }
.c8-headline p { font-size: 0.95rem; color: #5a5a6a; max-width: 480px; margin: 0 auto; line-height: 1.6; }
.c8-img {
width: calc(100% - 80px); margin: 20px auto; height: 280px; border-radius: 8px;
background: url('hero-bg.png') center / cover no-repeat;
}
.c8-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; padding: 0 40px 40px; }
.c8-col { padding: 20px 20px 20px 0; }
.c8-col:nth-child(2) { padding: 20px 0 20px 20px; border-left: 1px solid #eee; }
.c8-col h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.c8-col p { font-size: 0.82rem; color: #5a5a6a; line-height: 1.6; }
/* ═══════════════════════════════════════
CONCEPT 9 — Warm & Scattered
Playful
═══════════════════════════════════════ */
.c9 { background: #fef8f0; }
.c9-hero { text-align: center; padding: 50px 40px 20px; position: relative; }
.c9-bubble { position: absolute; border-radius: 50%; opacity: 0.5; }
.c9-hero h1 { font-size: 2.6rem; font-weight: 800; color: #3a2a1a; margin-bottom: 12px; position: relative; }
.c9-hero p { color: #6a5a4a; font-size: 0.92rem; max-width: 440px; margin: 0 auto 20px; line-height: 1.6; position: relative; }
/* Full-width tilted photo cards */
.c9-photos {
display: flex; justify-content: center; gap: 24px; padding: 20px 40px 30px;
}
.c9-photo {
width: 240px; height: 320px; border-radius: 20px;
background-size: cover; background-position: center;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
transition: transform 0.3s;
}
.c9-photo:nth-child(1) { transform: rotate(-2deg); }
.c9-photo:nth-child(2) { transform: rotate(1deg); }
.c9-photo:nth-child(3) { transform: rotate(-1deg); }
.c9-photo:nth-child(4) { transform: rotate(2deg); }
.c9-photo:hover { transform: rotate(0deg) scale(1.03); }
.c9-features {
display: flex; gap: 16px; padding: 20px 40px 40px; justify-content: center; flex-wrap: wrap;
}
.c9-feat {
background: #fff; border-radius: 16px; padding: 20px; width: 160px;
text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.c9-feat .icon { margin: 0 auto 8px; }
.c9-feat h4 { font-size: 0.82rem; font-weight: 700; }
/* ═══════════════════════════════════════
CONCEPT 10 — Data-Driven Trust
Serious + Parent
═══════════════════════════════════════ */
.c10 { background: #fff; }
.c10-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.c10-left {
padding: 50px 48px; display: flex; flex-direction: column; justify-content: center;
background: #f8f6f3;
}
.c10-left h1 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; line-height: 1.15; }
.c10-left p { font-size: 0.88rem; color: #5a5a6a; line-height: 1.6; margin-bottom: 20px; }
.c10-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.c10-metric { background: #fff; border-radius: 12px; padding: 16px; box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
.c10-metric h3 { font-size: 1.4rem; font-weight: 800; color: #7c9070; margin-bottom: 2px; }
.c10-metric p { font-size: 0.7rem; color: #7a7a8a; }
.c10-right { position: relative; }
.c10-right-bg { position: absolute; inset: 0; background: url('hero-bg.png') center / cover no-repeat; }
.c10-evidence { padding: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.c10-ev-card { background: #f8f6f3; border-radius: 14px; padding: 24px; border-left: 3px solid #7c9070; }
.c10-ev-card h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; }
.c10-ev-card p { font-size: 0.78rem; color: #5a5a6a; line-height: 1.5; }
/* Responsive */
@media (max-width: 768px) {
.page-header { padding: 40px 20px 16px; }
.page-header h1 { font-size: 1.6rem; }
.filter-row { padding: 16px 20px 24px; }
.concepts-grid { padding: 0 20px 40px; gap: 40px; }
.concept-label { padding: 16px 20px; flex-direction: column; gap: 8px; align-items: flex-start; }
.c1-path { padding: 20px; gap: 12px; }
[class*="c"][class*="-split"],
.c2-split { grid-template-columns: 1fr; }
.c2-features { grid-template-columns: 1fr; }
.c3-dash { grid-template-columns: 1fr; }
.c3-trust { flex-direction: column; gap: 16px; padding: 20px; }
.c5-cards { padding: 0 20px 16px; }
.c7-grid { grid-template-columns: 1fr; }
.c8-columns { grid-template-columns: 1fr; padding: 0 20px 20px; }
.c10-evidence { grid-template-columns: 1fr; padding: 20px; }
}
</style>
</head>
<body>
<div class="page-header">
<h1>10 Landing Page Concepts</h1>
<p>For parent-focused, playful, and serious approaches</p>
</div>
<div class="filter-row">
<button class="filter-btn active">All</button>
<button class="filter-btn">Parent-Focused</button>
<button class="filter-btn">Playful</button>
<button class="filter-btn">Serious</button>
</div>
<div class="concepts-grid">
<!-- ═══ CONCEPT 1 — The Journey Map ═══ -->
<div class="concept">
<div class="concept-label">
<h2>1. The Journey Map</h2>
<div class="concept-tags">
<span class="tag tag-parent">Parent</span>
<span class="tag tag-playful">Playful</span>
</div>
</div>
<div class="preview c1">
<div class="c1-hero">
<h1>Learning is a journey,<br>not a destination</h1>
<p>Follow your child's path from first steps to confident mastery. Boundless adapts the route to their pace.</p>
<a href="#" class="btn-sage">Start the Journey</a>
</div>
<div class="c1-mountains"></div>
<div class="c1-path">
<div class="c1-stop">
<div class="c1-dot" style="background:#e8f0e4;">
<svg viewBox="0 0 24 24" fill="none" stroke="#4a6a40" stroke-width="2"><path d="M12 19V5M5 12l7-7 7 7"/></svg>
</div>
<h4>Discover</h4>
<p>Find their starting level</p>
<div class="c1-connector"></div>
</div>
<div class="c1-stop">
<div class="c1-dot" style="background:#e4e8f8;">
<svg viewBox="0 0 24 24" fill="none" stroke="#4a5a8a" stroke-width="2"><path d="M4 19.5A2.5 2.5 0 016.5 17H20"/><path d="M4 4.5A2.5 2.5 0 016.5 2H20v20H6.5A2.5 2.5 0 014 19.5v-15z"/></svg>
</div>
<h4>Practice</h4>
<p>Bite-sized daily sessions</p>
<div class="c1-connector"></div>
</div>
<div class="c1-stop">
<div class="c1-dot" style="background:#f8ece4;">
<svg viewBox="0 0 24 24" fill="none" stroke="#8a5a4a" stroke-width="2"><polyline points="22 12 18 12 15 21 9 3 6 12 2 12"/></svg>
</div>
<h4>Grow</h4>
<p>Difficulty adapts in real time</p>
<div class="c1-connector"></div>
</div>
<div class="c1-stop">
<div class="c1-dot" style="background:#f0e4f0;">
<svg viewBox="0 0 24 24" fill="none" stroke="#6a4a7a" stroke-width="2"><circle cx="12" cy="8" r="6"/><path d="M15.477 12.89L17 22l-5-3-5 3 1.523-9.11"/></svg>
</div>
<h4>Celebrate</h4>
<p>Earn trophies and streaks</p>
<div class="c1-connector"></div>
</div>
<div class="c1-stop">
<div class="c1-dot" style="background:#e4f0f0;">
<svg viewBox="0 0 24 24" fill="none" stroke="#3a6a6a" stroke-width="2"><path d="M12 2L2 22h20L12 2z"/></svg>
</div>
<h4>Summit</h4>
<p>Independent learning</p>
</div>
</div>
</div>
</div>
<!-- ═══ CONCEPT 2 — Split Screen Storyteller ═══ -->
<div class="concept">
<div class="concept-label">
<h2>2. Split Screen Storyteller</h2>
<div class="concept-tags"><span class="tag tag-parent">Parent</span></div>
</div>
<div class="preview c2">
<div class="c2-split">
<div class="c2-left"></div>
<div class="c2-right">
<h1>Structure without<br>the classroom walls</h1>
<p>Built for families who travel, homeschool, or simply want their children to keep growing — wherever they are. Real pedagogy, no AI shortcuts.</p>
<a href="#" class="btn-sage">Get Started Free</a>
</div>
</div>
<div class="c2-features">
<div class="c2-feat">
<div class="icon" style="background:#e8f0e4;">
<svg viewBox="0 0 24 24" fill="none" stroke="#4a6a40" stroke-width="2"><circle cx="12" cy="12" r="10"/><path d="M12 8v8M8 12h8"/></svg>
</div>
<h4>Adaptive Difficulty</h4>
<p>Levels up with your child</p>
</div>
<div class="c2-feat">
<div class="icon" style="background:#e4e8f8;">
<svg viewBox="0 0 24 24" fill="none" stroke="#4a5a8a" stroke-width="2"><rect x="3" y="3" width="18" height="18" rx="2"/><path d="M3 9h18M9 21V9"/></svg>
</div>
<h4>Parent Dashboard</h4>
<p>Real insight, not just grades</p>
</div>
<div class="c2-feat">
<div class="icon" style="background:#f8ece4;">
<svg viewBox="0 0 24 24" fill="none" stroke="#8a5a4a" stroke-width="2"><path d="M17 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 00-3-3.87M16 3.13a4 4 0 010 7.75"/></svg>
</div>
<h4>Tutor Connection</h4>
<p>Shared visibility for everyone</p>
</div>
</div>
</div>
</div>
<!-- ═══ CONCEPT 3 — Dashboard Preview ═══ -->
<div class="concept">
<div class="concept-label">
<h2>3. Dashboard Preview</h2>
<div class="concept-tags">
<span class="tag tag-serious">Serious</span>
<span class="tag tag-parent">Parent</span>
</div>
</div>
<div class="preview c3">
<div class="c3-hero">
<h1>See exactly how your<br>child is progressing</h1>
<p>Not just "completed" or "incomplete." Real data on where they excel, where they struggle, and how they improve over time.</p>
<a href="#" class="btn-sage" style="margin-bottom: 30px; display: inline-block;">Try It Free</a>
</div>
<div class="c3-mockup">
<div class="c3-browser">
<div class="c3-bar">
<div class="c3-bar-dot"></div>
<div class="c3-bar-dot"></div>
<div class="c3-bar-dot"></div>
</div>
<div class="c3-dash">
<div class="c3-card">
<h4>Maths</h4>
<div style="width: 78%; height: 6px; border-radius: 3px; background: #7c9070; margin-bottom: 4px;"></div>
<p>78% mastery — Level 3</p>
</div>
<div class="c3-card">
<h4>Reading</h4>
<div style="width: 65%; height: 6px; border-radius: 3px; background: #5b8aaa; margin-bottom: 4px;"></div>
<p>65% mastery — Level 2</p>
</div>
<div class="c3-card">
<h4>Streak</h4>
<div style="font-size: 1.4rem; font-weight: 800; color: #c4704b; margin: 4px 0;">12 days</div>
<p>Best: 18 days</p>
</div>
</div>
</div>
</div>
<div class="c3-trust">
<div class="c3-trust-item"><h3>939</h3><p>exercises</p></div>
<div class="c3-trust-item"><h3>5+</h3><p>methodologies</p></div>
<div class="c3-trust-item"><h3>0</h3><p>ads, ever</p></div>
</div>
</div>
</div>
<!-- ═══ CONCEPT 4 — Storybook Scroll ═══ -->
<div class="concept">
<div class="concept-label">
<h2>4. Storybook Scroll</h2>
<div class="concept-tags"><span class="tag tag-playful">Playful</span></div>
</div>
<div class="preview c4">
<!-- Chapter 1 — full-width card -->
<div class="wide-card" style="background: #e8f0e4;">
<div class="wide-card-img" style="background-image: url('hero-bg.png');"></div>
<div class="wide-card-text">
<div style="font-size:0.7rem; font-weight:700; color:#7c9070; text-transform:uppercase; letter-spacing:2px; margin-bottom:8px;">Chapter One</div>
<h2>Once upon a mountaintop...</h2>
<p>Two children set out to learn — not in a classroom, but wherever their family took them. They needed something that would travel with them.</p>
<a href="#" class="btn-sage">Begin the story</a>
</div>
</div>
<!-- Chapter 2 — reversed -->
<div class="wide-card" style="background: #e4e8f8; direction: rtl;">
<div class="wide-card-img" style="background-image: url('dive-bg.png'); direction: ltr;"></div>
<div class="wide-card-text" style="direction: ltr;">
<div style="font-size:0.7rem; font-weight:700; color:#5b8aaa; text-transform:uppercase; letter-spacing:2px; margin-bottom:8px;">Chapter Two</div>
<h2>They dove deeper</h2>
<p>Each exercise adapted to their level. When things got easy, the challenge grew. When they struggled, support appeared.</p>
</div>
</div>
<!-- Chapter 3 -->
<div class="wide-card" style="background: #1a1a2a; margin-bottom: 0; border-radius: 24px 24px 0 0;">
<div class="wide-card-img" style="background-image: url('night-bg.png');"></div>
<div class="wide-card-text" style="color: #fff;">
<div style="font-size:0.7rem; font-weight:700; color:#7c9070; text-transform:uppercase; letter-spacing:2px; margin-bottom:8px;">Chapter Three</div>
<h2 style="color:#fff;">Under the stars, they rested</h2>
<p style="color: #90a0b8;">Progress was celebrated. Streaks were earned. And every night, their parents could see exactly how far they'd come.</p>
</div>
</div>
</div>
</div>
<!-- ═══ CONCEPT 5 — Dark Mode Showcase ═══ -->
<div class="concept">
<div class="concept-label">
<h2>5. Dark Mode Showcase</h2>
<div class="concept-tags"><span class="tag tag-serious">Serious</span></div>
</div>
<div class="preview c5">
<div class="c5-hero">
<h1>Learning without<br>boundaries</h1>
<p>A focused learning environment built by parents, for parents. Proven methodologies. Adaptive difficulty. Real results.</p>
<a href="#" class="btn-sage" style="display: inline-block; margin-bottom: 10px;">Get Started</a>
</div>
<div class="c5-cards">
<div class="c5-card">
<div class="c5-card-img" style="background-image: url('hero-bg.png');"></div>
<div class="c5-card-overlay"><h3>Explore the Mountains</h3><p>Climb at your own pace</p></div>
</div>
<div class="c5-card">
<div class="c5-card-img" style="background-image: url('dive-bg.png');"></div>
<div class="c5-card-overlay"><h3>Deep Dive</h3><p>Go deeper into concepts</p></div>
</div>
<div class="c5-card">
<div class="c5-card-img" style="background-image: url('horizon-bg.png');"></div>
<div class="c5-card-overlay"><h3>Beyond the Horizon</h3><p>See what's ahead</p></div>
</div>
<div class="c5-card">
<div class="c5-card-img" style="background-image: url('night-bg.png');"></div>
<div class="c5-card-overlay"><h3>Under the Stars</h3><p>Reflect and celebrate</p></div>
</div>
</div>
<div class="c5-bottom">
<div class="c5-stat"><h3>939</h3><p>exercises</p></div>
<div class="c5-stat"><h3>5+</h3><p>methodologies</p></div>
<div class="c5-stat"><h3>3</h3><p>roles</p></div>
<div class="c5-stat"><h3>0</h3><p>ads</p></div>
</div>
</div>
</div>
<!-- ═══ CONCEPT 6 — Full Bleed Immersive ═══ -->
<div class="concept">
<div class="concept-label">
<h2>6. Full Bleed Immersive</h2>
<div class="concept-tags">
<span class="tag tag-playful">Playful</span>
<span class="tag tag-parent">Parent</span>
</div>
</div>
<div class="preview c6">
<div class="c6-section" style="background-image: url('hero-bg.png');">
<div class="c6-overlay">
<h2>Boundless Learning</h2>
<p>Structured learning without walls. Built for families who explore the world while their children explore knowledge.</p>
<a href="#" class="btn-sage" style="margin-top: 16px;">Get Started Free</a>
</div>
</div>
<div class="c6-section" style="background-image: url('dive-bg.png');">
<div class="c6-overlay">
<h2>Dive into practice</h2>
<p>939 exercises across proven teaching methods. Difficulty adapts in real time — no frustration, no boredom.</p>
</div>
</div>
</div>
</div>
<!-- ═══ CONCEPT 7 — Bento Grid ═══ -->
<div class="concept">
<div class="concept-label">
<h2>7. Bento Grid</h2>
<div class="concept-tags">
<span class="tag tag-parent">Parent</span>
<span class="tag tag-serious">Serious</span>
</div>
</div>
<div class="preview c7">
<div class="c7-header">
<h1>Boundless Learning</h1>
<p>Everything your child needs, at a glance</p>
</div>
<div class="c7-grid">
<div class="c7-cell c7-hero-cell">
<h3>Explore the Mountains</h3>
<p>Adaptive practice that grows with your child</p>
</div>
<div class="c7-cell c7-stat-cell">
<h3>939</h3>
<p>exercises</p>
</div>
<div class="c7-cell c7-img-cell" style="background-image: url('dive-bg.png');">
<h3>Deep Dive</h3>
<p>Into every subject</p>
</div>
<div class="c7-cell c7-stat-cell">
<h3>5+</h3>
<p>methodologies</p>
</div>
<div class="c7-cell c7-img-cell" style="background-image: url('horizon-bg.png');">
<h3>Horizon</h3>
<p>Track milestones</p>
</div>
<div class="c7-cell">
<div class="icon" style="background:#e8f0e4; margin-bottom: 8px;">
<svg viewBox="0 0 24 24" fill="none" stroke="#4a6a40" stroke-width="2"><circle cx="12" cy="8" r="6"/><path d="M15.477 12.89L17 22l-5-3-5 3 1.523-9.11"/></svg>
</div>
<h3>Trophies</h3>
<p>Built-in motivation</p>
</div>
<div class="c7-cell c7-img-cell" style="background-image: url('night-bg.png');">
<h3>Night Sky</h3>
<p>Reflect and celebrate</p>
</div>
</div>
</div>
</div>
<!-- ═══ CONCEPT 8 — Magazine Editorial ═══ -->
<div class="concept">
<div class="concept-label">
<h2>8. Magazine Editorial</h2>
<div class="concept-tags">
<span class="tag tag-serious">Serious</span>
<span class="tag tag-parent">Parent</span>
</div>
</div>
<div class="preview c8">
<div class="c8-masthead"><h1>Boundless Learning</h1></div>
<div class="c8-headline">
<h2>What if school could<br>travel with you?</h2>
<p>A structured learning platform built by parents who needed something better — for their own children first.</p>
</div>
<div class="c8-img"></div>
<div class="c8-columns">
<div class="c8-col">
<h3>The Problem</h3>
<p>Travelling families lose continuity. Homeschooling parents need structure without rigidity. Children need challenge without frustration. Existing tools are either too gamified or too rigid.</p>
</div>
<div class="c8-col">
<h3>The Solution</h3>
<p>939 exercises based on proven methodologies. Adaptive difficulty that responds to your child's demonstrated ability. A parent dashboard with real insight. A tutor connection for shared visibility.</p>
</div>
</div>
</div>
</div>
<!-- ═══ CONCEPT 9 — Warm & Scattered ═══ -->
<div class="concept">
<div class="concept-label">
<h2>9. Warm & Scattered</h2>
<div class="concept-tags"><span class="tag tag-playful">Playful</span></div>
</div>
<div class="preview c9">
<div class="c9-hero">
<div class="c9-bubble" style="width:80px;height:80px;background:#e8f0e4;top:30px;left:8%;"></div>
<div class="c9-bubble" style="width:50px;height:50px;background:#e4e8f8;top:20px;right:15%;"></div>
<div class="c9-bubble" style="width:60px;height:60px;background:#f8ece4;bottom:20px;left:18%;"></div>
<div class="c9-bubble" style="width:35px;height:35px;background:#f0e4f0;top:50px;right:28%;"></div>
<div class="c9-bubble" style="width:45px;height:45px;background:#e4f0f0;bottom:10px;right:10%;"></div>
<h1>Where curiosity<br>leads the way</h1>
<p>Learning that feels like play, with the structure parents trust. No pressure, all progress.</p>
<a href="#" class="btn-sage" style="position:relative;">Explore Boundless</a>
</div>
<div class="c9-photos">
<div class="c9-photo" style="background-image: url('hero-bg.png');"></div>
<div class="c9-photo" style="background-image: url('dive-bg.png');"></div>
<div class="c9-photo" style="background-image: url('horizon-bg.png');"></div>
<div class="c9-photo" style="background-image: url('night-bg.png');"></div>
</div>
<div class="c9-features">
<div class="c9-feat">
<div class="icon" style="background:#e8f0e4; margin: 0 auto 8px;">
<svg viewBox="0 0 24 24" fill="none" stroke="#4a6a40" stroke-width="2"><circle cx="12" cy="12" r="10"/><path d="M12 8v8M8 12h8"/></svg>
</div>
<h4>Adaptive</h4>
</div>
<div class="c9-feat">
<div class="icon" style="background:#f8ece4; margin: 0 auto 8px;">
<svg viewBox="0 0 24 24" fill="none" stroke="#8a5a4a" stroke-width="2"><circle cx="12" cy="8" r="6"/><path d="M15.477 12.89L17 22l-5-3-5 3 1.523-9.11"/></svg>
</div>
<h4>Rewards</h4>
</div>
<div class="c9-feat">
<div class="icon" style="background:#e4e8f8; margin: 0 auto 8px;">
<svg viewBox="0 0 24 24" fill="none" stroke="#4a5a8a" stroke-width="2"><rect x="3" y="3" width="18" height="18" rx="2"/><path d="M3 9h18M9 21V9"/></svg>
</div>
<h4>Insight</h4>
</div>
<div class="c9-feat">
<div class="icon" style="background:#f0e4f0; margin: 0 auto 8px;">
<svg viewBox="0 0 24 24" fill="none" stroke="#6a4a7a" stroke-width="2"><path d="M17 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 00-3-3.87"/></svg>
</div>
<h4>Tutors</h4>
</div>
<div class="c9-feat">
<div class="icon" style="background:#e4f0f0; margin: 0 auto 8px;">
<svg viewBox="0 0 24 24" fill="none" stroke="#3a6a6a" stroke-width="2"><rect x="2" y="3" width="20" height="14" rx="2"/><path d="M8 21h8M12 17v4"/></svg>
</div>
<h4>Cheat Cards</h4>
</div>
</div>
</div>
</div>
<!-- ═══ CONCEPT 10 — Data-Driven Trust ═══ -->
<div class="concept">
<div class="concept-label">
<h2>10. Data-Driven Trust</h2>
<div class="concept-tags">
<span class="tag tag-serious">Serious</span>
<span class="tag tag-parent">Parent</span>
</div>
</div>
<div class="preview c10">
<div class="c10-hero">
<div class="c10-left">
<h1>Real pedagogy.<br>Real results.<br>No gimmicks.</h1>
<p>Every exercise is based on established teaching methods — not generated by AI. See exactly how your child progresses with data that matters.</p>
<div class="c10-metrics">
<div class="c10-metric"><h3>939</h3><p>Exercise templates</p></div>
<div class="c10-metric"><h3>5+</h3><p>Teaching methods</p></div>
<div class="c10-metric"><h3>3</h3><p>Roles supported</p></div>
<div class="c10-metric"><h3>0</h3><p>Ads. Ever.</p></div>
</div>
</div>
<div class="c10-right">
<div class="c10-right-bg"></div>
</div>
</div>
<div class="c10-evidence">
<div class="c10-ev-card">
<h4>Proven Methods</h4>
<p>Montessori, Singapore Math, bar models, number lines, and more — not random worksheets.</p>
</div>
<div class="c10-ev-card">
<h4>Adaptive Engine</h4>
<p>Per-child, per-subject skill tracking. Promotes when ready, supports when struggling.</p>
</div>
<div class="c10-ev-card">
<h4>Built by Parents</h4>
<p>Made by a family that needed this for their own children. No investors. No bloat. Just learning.</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>