-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvisual_design_system.html
More file actions
951 lines (870 loc) · 52.7 KB
/
Copy pathvisual_design_system.html
File metadata and controls
951 lines (870 loc) · 52.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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Essential Capacities | Visual Design System</title>
<!-- Tailwind (CDN) -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Fonts: Headings (Serif) + Body (Sans) -->
<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=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap"
rel="stylesheet"
/>
<!-- Icons -->
<script src="https://unpkg.com/feather-icons"></script>
<style>
:root {
/* Essential Capacities — “Grounded Clarity” */
--color-bg: #fcf9f3; /* parchment */
--color-surface: #ffffff; /* cards */
--color-ink: #1f2937; /* slate/ink */
--color-muted: #6b7280;
--color-border: #e7e0d3; /* warm border */
/* ANS map palette */
--color-primary: #3a4d7e; /* indigo/slate blue */
--color-primary-soft: #e7ecf6;
--color-primary-deep: #26355a;
--color-safe: #fdecb9; /* warm sunlight */
--color-safe-soft: #fff6db;
--color-safe-deep: #e7c56a;
--color-earth: #d97a5b; /* terracotta (sparing) */
--color-earth-soft: #f5d2c7;
--color-earth-deep: #b85f45;
--radius-card: 1rem;
--shadow-soft: 0 12px 30px rgba(31, 41, 55, 0.08);
}
body {
font-family: "Nunito Sans", sans-serif; /* Body is Sans */
background: var(--color-bg);
color: var(--color-ink);
font-size: 1.25rem; /* Increased to 20px base for better readability */
line-height: 1.7; /* Increased line height for larger text */
}
h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
font-family: "Lora", serif; /* Headings are Serif */
line-height: 1.3; /* Slightly looser heading line height */
letter-spacing: -0.01em;
}
.component-preview {
background: var(--color-surface);
border: 1px solid var(--color-border);
border-radius: var(--radius-card);
padding: 1.75rem;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
box-shadow: 0 1px 0 rgba(31, 41, 55, 0.04);
}
.ds-card {
background: var(--color-surface);
border: 1px solid var(--color-border);
border-radius: var(--radius-card);
box-shadow: 0 1px 0 rgba(31, 41, 55, 0.04);
}
.visual-element-card {
background: var(--color-surface);
border: 1px solid var(--color-border);
border-radius: var(--radius-card);
overflow: hidden;
transition: transform 220ms ease, box-shadow 220ms ease;
}
.visual-element-card:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-soft);
}
.color-swatch {
min-height: 128px;
border-radius: 0.75rem;
display: flex;
align-items: flex-end;
justify-content: space-between;
padding: 1rem;
gap: 1rem;
}
/* Typography Utilities for Live Example */
.prose-example p {
margin-bottom: 1.5em;
max-width: 65ch;
}
.prose-example ul {
margin-bottom: 1.5em;
padding-left: 1.5em;
list-style-type: disc;
}
.prose-example li {
margin-bottom: 0.5em;
}
</style>
<script>
// Tailwind semantic tokens
tailwind.config = {
theme: {
extend: {
colors: {
bg: "#FCF9F3",
surface: "#FFFFFF",
ink: "#1F2937",
muted: "#6B7280",
border: "#E7E0D3",
primary: "#3A4D7E",
"primary-soft": "#E7ECF6",
"primary-deep": "#26355A",
safe: "#FDECB9",
"safe-soft": "#FFF6DB",
"safe-deep": "#E7C56A",
earth: "#D97A5B",
"earth-soft": "#F5D2C7",
"earth-deep": "#B85F45",
},
fontFamily: {
heading: ["Lora", "serif"],
body: ["Nunito Sans", "sans-serif"],
},
boxShadow: {
soft: "0 12px 30px rgba(31, 41, 55, 0.08)",
},
},
},
};
</script>
</head>
<body class="bg-bg antialiased text-ink">
<!-- Mobile header (sidebar replacement) -->
<header class="lg:hidden sticky top-0 z-40 bg-bg/90 backdrop-blur border-b border-border">
<div class="mx-auto max-w-4xl px-5 py-4 flex items-center justify-between">
<div class="flex items-center gap-3">
<img src="assets/cilogoL.svg" alt="Context Institute" class="h-8 w-auto max-w-[140px]" />
<div class="leading-tight">
<p class="font-heading font-semibold text-ink">Essential Capacities</p>
<p class="text-sm text-ink/60 font-body">Design System</p>
</div>
</div>
<a href="#navigation" class="text-sm font-heading font-semibold text-primary underline underline-offset-4">Nav</a>
</div>
</header>
<!-- Sidebar Navigation (desktop) -->
<aside class="fixed top-0 left-0 h-screen w-72 bg-surface border-r border-border p-8 hidden lg:block overflow-y-auto" aria-label="Sidebar">
<div class="space-y-4">
<div class="flex items-center justify-between">
<img src="assets/cilogoL.svg" alt="Context Institute" class="h-9 w-auto max-w-[220px]" />
<!-- Use the actual CI mark (not a generic icon) as the sidebar accent -->
<div class="h-10 w-10 rounded-2xl bg-safe border border-border flex items-center justify-center" aria-hidden="true">
<img src="assets/cilogoL.svg" alt="" class="h-6 w-auto max-w-[28px] opacity-90" />
</div>
</div>
<div>
<h2 class="font-heading text-xl font-bold text-ink">Essential Capacities</h2>
<p class="text-sm text-ink/60 font-body">Visual Source of Truth</p>
</div>
</div>
<nav class="mt-10" aria-label="Design system navigation">
<ul class="space-y-4 text-[1.05rem] font-body">
<li><a href="#introduction" class="font-semibold text-ink hover:text-primary transition-colors">Introduction</a></li>
<li><a href="#principles" class="font-semibold text-ink hover:text-primary transition-colors">Design Principles</a></li>
<li><a href="#brand-essence" class="font-semibold text-ink hover:text-primary transition-colors">Brand Essence</a></li>
<li><a href="#typography" class="font-semibold text-ink hover:text-primary transition-colors">Typography & Formatting</a></li>
<li><a href="#readability" class="font-semibold text-ink hover:text-primary transition-colors">Readability & Accessibility</a></li>
<li><a href="#colors" class="font-semibold text-ink hover:text-primary transition-colors">Color Palette</a></li>
<li><a href="#spacing" class="font-semibold text-ink hover:text-primary transition-colors">Spacing System</a></li>
<li><a href="#assets" class="font-semibold text-ink hover:text-primary transition-colors">Visual Assets & Imagery</a></li>
<li><a href="#buttons" class="font-semibold text-ink hover:text-primary transition-colors">Buttons & CTAs</a></li>
<li><a href="#forms" class="font-semibold text-ink hover:text-primary transition-colors">Form Elements</a></li>
<li><a href="#components" class="font-semibold text-ink hover:text-primary transition-colors">Interactive Components</a></li>
<li><a href="#navigation" class="font-semibold text-ink hover:text-primary transition-colors">Navigation Examples</a></li>
</ul>
</nav>
<div class="mt-10 p-4 rounded-2xl bg-safe-soft border border-border">
<p class="font-heading text-sm font-semibold text-ink">North Star</p>
<p class="mt-1 text-sm text-ink/75 font-body">“Grounded Clarity” — a deep, calm breath; a clear, sunlit path through complexity.</p>
</div>
</aside>
<!-- Main Content -->
<main class="lg:ml-72 p-6 md:p-10" aria-label="Main content">
<div class="max-w-4xl mx-auto">
<!-- INTRODUCTION -->
<header id="introduction" class="mb-16">
<p class="font-heading text-sm tracking-wide text-ink/60 uppercase">Essential Capacities • Visual Design System</p>
<h1 class="mt-3 text-5xl md:text-6xl font-heading font-bold text-ink">Source of Truth</h1>
<p class="mt-5 text-xl md:text-2xl text-ink/80 font-body leading-relaxed">
A foundational system for the Essential Capacities landing page and future site, grounded in the aesthetic of
<strong class="font-heading text-primary">Grounded Clarity</strong>.
</p>
<div class="mt-8 p-6 rounded-2xl bg-primary-soft border border-border">
<p class="text-ink/90 font-body text-lg">
<strong class="font-heading">Purpose:</strong> Keep experiences spacious, trustworthy, and calm. The system is designed to help people move
from complexity and reactivity toward integration and capable calm.
</p>
<div class="mt-4 flex flex-wrap gap-2">
<span class="inline-flex items-center gap-2 px-3 py-1 rounded-full bg-surface border border-border text-sm font-heading font-semibold text-ink">
<i data-feather="wind" class="h-4 w-4 text-primary"></i>
No sudden movements
</span>
<span class="inline-flex items-center gap-2 px-3 py-1 rounded-full bg-surface border border-border text-sm font-heading font-semibold text-ink">
<i data-feather="layout" class="h-4 w-4 text-primary"></i>
Clear grid, soft edges
</span>
<span class="inline-flex items-center gap-2 px-3 py-1 rounded-full bg-surface border border-border text-sm font-heading font-semibold text-ink">
<i data-feather="sun" class="h-4 w-4 text-safe-deep"></i>
Warm, supportive space
</span>
</div>
</div>
</header>
<!-- PRINCIPLES -->
<section id="principles" class="mb-16">
<h2 class="text-4xl font-heading font-bold mb-6">Design Principles</h2>
<p class="text-ink/80 mb-8 font-body text-lg">Treat these as non-negotiable anchors for the Essential Capacities experience.</p>
<div class="grid md:grid-cols-3 gap-6">
<article class="ds-card p-6">
<i data-feather="map" class="h-8 w-8 text-primary"></i>
<h3 class="mt-4 font-heading font-bold text-xl">Clarity as Care</h3>
<p class="mt-2 text-ink/75 font-body">Hierarchy is compassionate. Remove noise, keep copy readable, and make orientation effortless.</p>
</article>
<article class="ds-card p-6">
<i data-feather="shield" class="h-8 w-8 text-primary"></i>
<h3 class="mt-4 font-heading font-bold text-xl">Safety by Default</h3>
<p class="mt-2 text-ink/75 font-body">Gentle transitions, calm validation, and predictable interaction patterns reduce nervous-system load.</p>
</article>
<article class="ds-card p-6">
<i data-feather="layers" class="h-8 w-8 text-earth"></i>
<h3 class="mt-4 font-heading font-bold text-xl">Breathing Room</h3>
<p class="mt-2 text-ink/75 font-body">Space is part of the design. Use generous padding and soft depth; avoid dense, urgent layouts.</p>
</article>
</div>
</section>
<!-- BRAND ESSENCE -->
<section id="brand-essence" class="mb-16">
<h2 class="text-4xl font-heading font-bold mb-6">Brand Essence</h2>
<div class="ds-card p-8 border-2 border-primary/20">
<h3 class="text-3xl font-heading font-bold text-primary">Grounded Clarity</h3>
<p class="mt-4 text-ink/85 text-lg font-body leading-relaxed">
The aesthetic should feel like a deep, calm breath: organic and structured, like a well-drawn map of a living ecosystem.
It invites discovery rather than demands compliance.
</p>
<div class="mt-6 p-5 rounded-2xl bg-safe-soft border border-border">
<p class="italic text-ink/90 font-heading text-lg">
<strong class="font-bold">Guiding metaphor:</strong> If the user’s mind is a tangled forest, this experience is a clear, sunlit path through it,
with quiet guideposts.
</p>
</div>
</div>
</section>
<!-- TYPOGRAPHY -->
<section id="typography" class="mb-16">
<h2 class="text-4xl font-heading font-bold mb-6">Typography & Formatting</h2>
<p class="text-ink/80 mb-8 font-body text-lg">
We use a classic pairing to evoke warmth and professionalism.
<strong class="text-ink">Lora (Serif)</strong> for headings brings a human, literary quality.
<strong class="text-ink">Nunito Sans (Sans-Serif)</strong> for body text ensures clean, modern readability.
</p>
<div class="grid md:grid-cols-2 gap-6 mb-12">
<div class="ds-card p-6">
<h3 class="font-heading font-bold text-2xl">Headings — Lora</h3>
<p class="mt-2 text-sm font-mono text-ink/60">font-heading (Serif)</p>
<div class="mt-5 p-5 rounded-2xl bg-bg border border-border space-y-4">
<div>
<p class="text-xs text-muted uppercase tracking-wider mb-1">Display (Hero)</p>
<p class="font-heading text-5xl md:text-6xl font-bold text-ink">Grounded Clarity</p>
</div>
<div>
<p class="text-xs text-muted uppercase tracking-wider mb-1">H1</p>
<p class="font-heading text-4xl md:text-5xl font-bold text-ink">Page Title</p>
</div>
<div>
<p class="text-xs text-muted uppercase tracking-wider mb-1">H2</p>
<p class="font-heading text-3xl md:text-4xl font-bold text-ink">Section Heading</p>
</div>
<div>
<p class="text-xs text-muted uppercase tracking-wider mb-1">H3</p>
<p class="font-heading text-2xl md:text-3xl font-bold text-ink">Subsection Title</p>
</div>
</div>
</div>
<div class="ds-card p-6">
<h3 class="font-heading font-bold text-2xl">Body — Nunito Sans</h3>
<p class="mt-2 text-sm font-mono text-ink/60">font-body (Sans)</p>
<div class="mt-5 p-5 rounded-2xl bg-bg border border-border">
<p class="text-xl text-ink/90 font-body leading-relaxed">
This paragraph demonstrates the default reading style. We use a base size of <strong>20px</strong> (1.25rem) with a line-height of <strong>1.7</strong> to ensure comfortable reading flow.
</p>
<p class="mt-4 text-lg font-body">
Formatting includes <strong>bold for emphasis</strong>, <em>italics for nuance</em>, and <a href="#" class="text-primary underline underline-offset-2">links for navigation</a>.
</p>
<p class="mt-4 text-base text-ink/70 font-body">
Small text (16px) is used sparingly for captions or secondary information.
</p>
</div>
</div>
</div>
<!-- Live Typography Example -->
<h3 class="text-2xl font-heading font-bold mb-4">Live Content Example</h3>
<div class="ds-card p-8 md:p-12 bg-surface border border-border">
<article class="prose-example">
<h1 class="font-heading text-5xl md:text-6xl font-bold text-ink mb-8">The Practice of Integration</h1>
<p class="text-2xl text-ink/80 font-body leading-relaxed mb-8">
In a world that often demands fragmentation, the act of integrating our experiences becomes a radical practice of wholeness.
</p>
<h2 class="font-heading text-4xl font-bold text-ink mb-6">Why We Need Grounding</h2>
<p class="text-xl text-ink font-body leading-relaxed">
Grounding is not about stopping movement; it is about finding a stable center from which movement can flow. When we are grounded, we can meet complexity without losing our sense of self. This capacity is essential for navigating the modern landscape.
</p>
<blockquote class="my-10 border-l-4 border-primary pl-8 py-4 italic text-2xl md:text-3xl text-ink/90 font-heading bg-primary-soft/30 rounded-r-xl leading-relaxed">
“To be grounded is to be in relationship with reality as it is, not as we fear it to be.”
</blockquote>
<h3 class="font-heading text-3xl font-bold text-ink mb-4">Core Benefits</h3>
<ul class="text-xl text-ink font-body leading-relaxed list-disc pl-6 space-y-3">
<li><strong>Reduced Reactivity:</strong> A pause between stimulus and response.</li>
<li><strong>Increased Clarity:</strong> Seeing the signal amidst the noise.</li>
<li><strong>Sustainable Energy:</strong> Moving from a place of rest rather than adrenaline.</li>
</ul>
</article>
</div>
</section>
<!-- READABILITY & ACCESSIBILITY -->
<section id="readability" class="mb-16">
<h2 class="text-4xl font-heading font-bold mb-6">Readability & Accessibility</h2>
<p class="text-ink/80 mb-8 font-body text-lg">
Our commitment to "Grounded Clarity" means ensuring content is accessible to all readers.
</p>
<div class="grid md:grid-cols-2 gap-6">
<div class="ds-card p-6">
<h3 class="font-heading font-bold text-xl mb-4">Minimum Sizes</h3>
<ul class="space-y-3 text-ink/80 font-body">
<li class="flex items-start gap-3">
<i data-feather="check-circle" class="h-5 w-5 text-emerald-600 mt-0.5 shrink-0"></i>
<span><strong>Body Text:</strong> Minimum 20px (1.25rem) for main content.</span>
</li>
<li class="flex items-start gap-3">
<i data-feather="check-circle" class="h-5 w-5 text-emerald-600 mt-0.5 shrink-0"></i>
<span><strong>Secondary Text:</strong> Minimum 16px (1rem). Avoid 14px except for very minor labels.</span>
</li>
<li class="flex items-start gap-3">
<i data-feather="check-circle" class="h-5 w-5 text-emerald-600 mt-0.5 shrink-0"></i>
<span><strong>Line Height:</strong> 1.6 to 1.7 for body text to prevent crowding.</span>
</li>
</ul>
</div>
<div class="ds-card p-6">
<h3 class="font-heading font-bold text-xl mb-4">Contrast & Spacing</h3>
<ul class="space-y-3 text-ink/80 font-body">
<li class="flex items-start gap-3">
<i data-feather="check-circle" class="h-5 w-5 text-emerald-600 mt-0.5 shrink-0"></i>
<span><strong>Contrast:</strong> All text meets WCAG AA standards (4.5:1 ratio).</span>
</li>
<li class="flex items-start gap-3">
<i data-feather="check-circle" class="h-5 w-5 text-emerald-600 mt-0.5 shrink-0"></i>
<span><strong>Line Length:</strong> Max 65-75 characters per line for comfortable scanning.</span>
</li>
<li class="flex items-start gap-3">
<i data-feather="check-circle" class="h-5 w-5 text-emerald-600 mt-0.5 shrink-0"></i>
<span><strong>Paragraph Spacing:</strong> Generous margins (1.5em) to separate ideas.</span>
</li>
</ul>
</div>
</div>
</section>
<!-- COLORS -->
<section id="colors" class="mb-16">
<h2 class="text-4xl font-heading font-bold mb-6">Color Palette (ANS Map)</h2>
<p class="text-ink/80 mb-8 font-body text-lg">
Muted, natural, sophisticated. Displayed with hex and Tailwind token classes to keep implementation consistent.
<br><span class="text-sm text-ink/60">Note: All text combinations shown meet WCAG AA contrast standards.</span>
</p>
<div class="grid md:grid-cols-2 gap-6">
<div class="ds-card p-5">
<div class="color-swatch border border-border" style="background: #FCF9F3; color: #1F2937;">
<span class="font-heading font-semibold">Background (Parchment)</span>
<span class="font-mono text-sm">#FCF9F3</span>
</div>
<p class="mt-4 font-heading font-semibold">Tailwind: <span class="font-mono">bg-bg</span></p>
<p class="mt-2 text-sm text-ink/70 font-body">Primary canvas. Keeps the interface warm and human.</p>
</div>
<div class="ds-card p-5">
<div class="color-swatch" style="background: #3A4D7E; color: #FFFFFF;">
<span class="font-heading font-semibold">Primary / Action (Indigo)</span>
<span class="font-mono text-sm">#3A4D7E</span>
</div>
<p class="mt-4 font-heading font-semibold">Tailwind: <span class="font-mono">bg-primary</span>, <span class="font-mono">text-primary</span></p>
<p class="mt-2 text-sm text-ink/70 font-body">Buttons, links, key headings, and active navigation.</p>
</div>
<div class="ds-card p-5">
<div class="color-swatch" style="background: #FDECB9; color: #1F2937;">
<span class="font-heading font-semibold">Safe State (Sunlight)</span>
<span class="font-mono text-sm">#FDECB9</span>
</div>
<p class="mt-4 font-heading font-semibold">Tailwind: <span class="font-mono">bg-safe</span></p>
<p class="mt-2 text-sm text-ink/70 font-body">Gentle section backgrounds, highlights, supportive callouts.</p>
</div>
<div class="ds-card p-5">
<div class="color-swatch" style="background: #D97A5B; color: #FFFFFF;">
<span class="font-heading font-semibold">Threat / Earth (Terracotta)</span>
<span class="font-mono text-sm">#D97A5B</span>
</div>
<p class="mt-4 font-heading font-semibold">Tailwind: <span class="font-mono">bg-earth</span>, <span class="font-mono">text-earth</span></p>
<p class="mt-2 text-sm text-ink/70 font-body">Use sparingly: diagrams and rare caution moments (not “error red”).</p>
</div>
</div>
<h3 class="mt-10 text-2xl font-heading font-bold">Neutrals</h3>
<div class="mt-6 grid grid-cols-1 md:grid-cols-4 gap-6">
<div class="ds-card p-4">
<div class="color-swatch border border-border" style="background: #FFFFFF; color: #1F2937;">
<span class="font-heading font-semibold">Surface</span>
<span class="font-mono text-sm">#FFFFFF</span>
</div>
<p class="mt-3 font-heading font-semibold">Tailwind: <span class="font-mono">bg-surface</span></p>
</div>
<div class="ds-card p-4">
<div class="color-swatch" style="background: #1F2937; color: #FFFFFF;">
<span class="font-heading font-semibold">Ink</span>
<span class="font-mono text-sm">#1F2937</span>
</div>
<p class="mt-3 font-heading font-semibold">Tailwind: <span class="font-mono">text-ink</span></p>
</div>
<div class="ds-card p-4">
<div class="color-swatch" style="background: #6B7280; color: #FFFFFF;">
<span class="font-heading font-semibold">Muted</span>
<span class="font-mono text-sm">#6B7280</span>
</div>
<p class="mt-3 font-heading font-semibold">Tailwind: <span class="font-mono">text-muted</span></p>
</div>
<div class="ds-card p-4">
<div class="color-swatch" style="background: #E7E0D3; color: #1F2937;">
<span class="font-heading font-semibold">Border</span>
<span class="font-mono text-sm">#E7E0D3</span>
</div>
<p class="mt-3 font-heading font-semibold">Tailwind: <span class="font-mono">border-border</span></p>
</div>
</div>
</section>
<!-- SPACING SYSTEM -->
<section id="spacing" class="mb-16">
<h2 class="text-4xl font-heading font-bold mb-6">Spacing System</h2>
<p class="text-ink/80 mb-8 font-body text-lg">
Consistent spacing creates rhythm and calm. We use a 4px baseline grid.
</p>
<div class="ds-card p-6 overflow-hidden">
<div class="space-y-6">
<div class="flex items-center gap-4">
<div class="w-16 text-sm font-mono text-muted">4px</div>
<div class="h-4 w-1 bg-primary rounded"></div>
<span class="text-sm text-ink/60">xs (gap-1)</span>
</div>
<div class="flex items-center gap-4">
<div class="w-16 text-sm font-mono text-muted">8px</div>
<div class="h-4 w-2 bg-primary rounded"></div>
<span class="text-sm text-ink/60">sm (gap-2)</span>
</div>
<div class="flex items-center gap-4">
<div class="w-16 text-sm font-mono text-muted">16px</div>
<div class="h-4 w-4 bg-primary rounded"></div>
<span class="text-sm text-ink/60">md (gap-4, p-4) - Default component padding</span>
</div>
<div class="flex items-center gap-4">
<div class="w-16 text-sm font-mono text-muted">24px</div>
<div class="h-4 w-6 bg-primary rounded"></div>
<span class="text-sm text-ink/60">lg (gap-6, p-6) - Card padding</span>
</div>
<div class="flex items-center gap-4">
<div class="w-16 text-sm font-mono text-muted">32px</div>
<div class="h-4 w-8 bg-primary rounded"></div>
<span class="text-sm text-ink/60">xl (gap-8, my-8) - Section subsection spacing</span>
</div>
<div class="flex items-center gap-4">
<div class="w-16 text-sm font-mono text-muted">48px</div>
<div class="h-4 w-12 bg-primary rounded"></div>
<span class="text-sm text-ink/60">2xl (my-12) - Major section spacing</span>
</div>
<div class="flex items-center gap-4">
<div class="w-16 text-sm font-mono text-muted">64px</div>
<div class="h-4 w-16 bg-primary rounded"></div>
<span class="text-sm text-ink/60">3xl (my-16) - Page section spacing</span>
</div>
</div>
</div>
</section>
<!-- VISUAL ASSETS & IMAGERY -->
<section id="assets" class="mb-16">
<h2 class="text-4xl font-heading font-bold mb-6">Visual Assets & Imagery</h2>
<p class="text-ink/80 mb-8 font-body text-lg">Evocative, metaphorical nature imagery + clean, single-weight line icons. Soft corners, subtle depth.</p>
<h3 class="text-2xl font-heading font-bold">Logo</h3>
<div class="mt-4 grid md:grid-cols-2 gap-6">
<div class="visual-element-card">
<div class="p-8 bg-bg flex items-center justify-center">
<div class="w-full max-w-sm bg-surface border border-border rounded-2xl p-6 flex items-center justify-center">
<img src="assets/cilogoL.svg" alt="Context Institute" class="h-10 md:h-12 w-auto max-w-[260px]" />
</div>
</div>
<div class="p-6">
<h4 class="font-heading font-bold text-xl">Context Institute (Primary Lockup)</h4>
<p class="mt-2 text-ink/75 font-body">Use in header/footer and official communications.</p>
</div>
</div>
<div class="visual-element-card">
<div class="p-8 bg-bg flex items-center justify-center">
<div class="h-28 w-28 rounded-3xl bg-safe border border-border flex items-center justify-center">
<span class="font-heading font-semibold text-primary text-2xl">EC</span>
</div>
</div>
<div class="p-6">
<h4 class="font-heading font-bold text-xl">Essential Capacities Mark (Placeholder)</h4>
<p class="mt-2 text-ink/75 font-body">A simplified icon for favicons, social avatars, and small UI moments.</p>
</div>
</div>
</div>
<h3 class="mt-12 text-2xl font-heading font-bold">Approved Photography Examples</h3>
<p class="mt-2 text-ink/80 font-body">Use these as reference for tone: metaphorical, nature-based, not literal “course” imagery.</p>
<div class="mt-6 grid md:grid-cols-3 gap-6">
<figure class="visual-element-card">
<img src="assets/seedling-on-stump2.jpg" alt="Seedling on stump" class="w-full aspect-[3/2] object-cover" />
<figcaption class="p-4 text-sm text-ink/70 font-body">Metaphor: growth, history, unseen connections.</figcaption>
</figure>
<figure class="visual-element-card">
<img src="assets/water-boys2.jpg" alt="Water ripples" class="w-full aspect-[3/2] object-cover" />
<figcaption class="p-4 text-sm text-ink/70 font-body">Metaphor: influence and feedback loops.</figcaption>
</figure>
<figure class="visual-element-card">
<img src="assets/spiral-stained-glass2.jpg" alt="Spiral stained glass" class="w-full aspect-[3/2] object-cover" />
<figcaption class="p-4 text-sm text-ink/70 font-body">Metaphor: layers, integration, pattern.</figcaption>
</figure>
</div>
<h3 class="mt-12 text-2xl font-heading font-bold">Image Styles</h3>
<div class="mt-4 grid md:grid-cols-2 gap-6">
<div class="ds-card p-6">
<h4 class="font-heading font-bold text-xl">Standard Card Image</h4>
<div class="mt-4 overflow-hidden rounded-3xl border border-border shadow-soft">
<img src="https://placehold.co/600x400" alt="Placeholder (600x400)" class="w-full object-cover" />
</div>
<ul class="mt-4 space-y-2 text-ink/80 font-body">
<li><strong class="font-heading">Radius:</strong> rounded-3xl (soft/organic).</li>
<li><strong class="font-heading">Shadow:</strong> subtle, diffused.</li>
<li><strong class="font-heading">Usage:</strong> hero, feature cards, section imagery.</li>
</ul>
</div>
<div class="ds-card p-6">
<h4 class="font-heading font-bold text-xl">Full-bleed Hero Crop</h4>
<div class="mt-4 overflow-hidden rounded-3xl border border-border">
<img src="https://placehold.co/600x400" alt="Placeholder hero crop" class="w-full object-cover aspect-[16/9]" />
</div>
<p class="mt-4 text-ink/80 font-body">Prefer calm compositions with negative space for overlaid text (avoid busy backgrounds).</p>
</div>
</div>
<h3 class="mt-12 text-2xl font-heading font-bold">Iconography</h3>
<p class="mt-2 text-ink/80 font-body">Feather Icons — consistent, single-weight line art.</p>
<div class="mt-6 component-preview">
<div class="grid grid-cols-4 sm:grid-cols-6 gap-6">
<div class="flex flex-col items-center gap-2"><i data-feather="map" class="h-7 w-7 text-primary"></i><span class="text-xs text-ink/60 font-heading">Map</span></div>
<div class="flex flex-col items-center gap-2"><i data-feather="compass" class="h-7 w-7 text-primary"></i><span class="text-xs text-ink/60 font-heading">Compass</span></div>
<div class="flex flex-col items-center gap-2"><i data-feather="layers" class="h-7 w-7 text-primary"></i><span class="text-xs text-ink/60 font-heading">Layers</span></div>
<div class="flex flex-col items-center gap-2"><i data-feather="sliders" class="h-7 w-7 text-primary"></i><span class="text-xs text-ink/60 font-heading">Sliders</span></div>
<div class="flex flex-col items-center gap-2"><i data-feather="git-branch" class="h-7 w-7 text-primary"></i><span class="text-xs text-ink/60 font-heading">Systems</span></div>
<div class="flex flex-col items-center gap-2"><i data-feather="book-open" class="h-7 w-7 text-primary"></i><span class="text-xs text-ink/60 font-heading">Learning</span></div>
<div class="flex flex-col items-center gap-2"><i data-feather="shield" class="h-7 w-7 text-primary"></i><span class="text-xs text-ink/60 font-heading">Safety</span></div>
<div class="flex flex-col items-center gap-2"><i data-feather="heart" class="h-7 w-7 text-earth"></i><span class="text-xs text-ink/60 font-heading">Care</span></div>
<div class="flex flex-col items-center gap-2"><i data-feather="users" class="h-7 w-7 text-primary"></i><span class="text-xs text-ink/60 font-heading">Community</span></div>
<div class="flex flex-col items-center gap-2"><i data-feather="message-circle" class="h-7 w-7 text-primary"></i><span class="text-xs text-ink/60 font-heading">Dialogue</span></div>
<div class="flex flex-col items-center gap-2"><i data-feather="sun" class="h-7 w-7 text-safe-deep"></i><span class="text-xs text-ink/60 font-heading">Clarity</span></div>
<div class="flex flex-col items-center gap-2"><i data-feather="wind" class="h-7 w-7 text-primary"></i><span class="text-xs text-ink/60 font-heading">Breath</span></div>
</div>
</div>
</section>
<!-- BUTTONS & CTAS -->
<section id="buttons" class="mb-16">
<h2 class="text-4xl font-heading font-bold mb-6">Buttons & CTAs</h2>
<p class="text-ink/80 mb-8 font-body text-lg">CTAs should feel invitational. Smooth transitions; no jarring hover effects.</p>
<h3 class="text-2xl font-heading font-bold">Variants</h3>
<div class="mt-4 component-preview">
<button class="font-heading font-semibold px-6 py-3 rounded-xl bg-primary text-white shadow-sm hover:bg-primary-deep transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary focus-visible:ring-offset-2 focus-visible:ring-offset-bg">
Primary (Solid)
</button>
<button class="font-heading font-semibold px-6 py-3 rounded-xl border border-primary text-primary bg-transparent hover:bg-primary-soft transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary focus-visible:ring-offset-2 focus-visible:ring-offset-bg">
Secondary (Outline)
</button>
<button class="font-heading font-semibold px-6 py-3 rounded-xl text-primary bg-transparent hover:bg-primary-soft transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary focus-visible:ring-offset-2 focus-visible:ring-offset-bg">
Ghost
</button>
</div>
<h3 class="mt-10 text-2xl font-heading font-bold">States</h3>
<div class="mt-4 ds-card p-6">
<div class="grid md:grid-cols-3 gap-6">
<div>
<p class="font-heading font-semibold text-ink">Normal</p>
<div class="mt-3 flex flex-wrap gap-3">
<button class="font-heading font-semibold px-5 py-2.5 rounded-xl bg-primary text-white">Primary</button>
<button class="font-heading font-semibold px-5 py-2.5 rounded-xl border border-primary text-primary">Outline</button>
<button class="font-heading font-semibold px-5 py-2.5 rounded-xl text-primary">Ghost</button>
</div>
</div>
<div>
<p class="font-heading font-semibold text-ink">Hover (static example)</p>
<div class="mt-3 flex flex-wrap gap-3">
<button class="font-heading font-semibold px-5 py-2.5 rounded-xl bg-primary-deep text-white">Primary Hover</button>
<button class="font-heading font-semibold px-5 py-2.5 rounded-xl border border-primary text-primary bg-primary-soft">Outline Hover</button>
<button class="font-heading font-semibold px-5 py-2.5 rounded-xl text-primary bg-primary-soft">Ghost Hover</button>
</div>
</div>
<div>
<p class="font-heading font-semibold text-ink">Disabled</p>
<div class="mt-3 flex flex-wrap gap-3">
<button disabled class="font-heading font-semibold px-5 py-2.5 rounded-xl bg-ink/10 text-ink/40 cursor-not-allowed">Primary Disabled</button>
<button disabled class="font-heading font-semibold px-5 py-2.5 rounded-xl border border-border text-ink/40 bg-transparent cursor-not-allowed">Outline Disabled</button>
<button disabled class="font-heading font-semibold px-5 py-2.5 rounded-xl text-ink/40 bg-transparent cursor-not-allowed">Ghost Disabled</button>
</div>
</div>
</div>
</div>
</section>
<!-- FORMS -->
<section id="forms" class="mb-16">
<h2 class="text-4xl font-heading font-bold mb-6">Form Elements</h2>
<p class="text-ink/80 mb-8 font-body text-lg">Supportive, calm, and explicit. Validation should inform without alarming.</p>
<div class="component-preview">
<form class="w-full max-w-xl space-y-5" aria-label="Form components preview">
<div>
<label class="block font-heading font-semibold text-sm text-ink" for="ds-name">Full name</label>
<input
id="ds-name"
type="text"
placeholder="e.g., Alex Example"
class="mt-2 w-full rounded-xl border border-border bg-surface px-4 py-3 text-ink placeholder:text-ink/40 focus:outline-none focus:ring-2 focus:ring-primary focus:border-primary font-body"
/>
<p class="mt-2 text-sm text-ink/60 font-body">Use a friendly example and keep helper text short.</p>
</div>
<div>
<label class="block font-heading font-semibold text-sm text-ink" for="ds-success">Email (success)</label>
<div class="mt-2 relative">
<input
id="ds-success"
type="email"
value="name@example.com"
class="w-full rounded-xl border border-emerald-500/60 bg-surface px-4 py-3 pr-10 text-ink focus:outline-none focus:ring-2 focus:ring-emerald-500 focus:border-emerald-500 font-body"
/>
<i data-feather="check" class="h-5 w-5 text-emerald-600 absolute right-3 top-1/2 -translate-y-1/2"></i>
</div>
<p class="mt-2 text-sm text-emerald-700 font-heading">Looks good.</p>
</div>
<div>
<label class="block font-heading font-semibold text-sm text-ink" for="ds-error">Email (error)</label>
<div class="mt-2 relative">
<input
id="ds-error"
type="email"
value="name@"
class="w-full rounded-xl border border-earth/70 bg-surface px-4 py-3 pr-10 text-ink focus:outline-none focus:ring-2 focus:ring-earth focus:border-earth font-body"
/>
<i data-feather="alert-circle" class="h-5 w-5 text-earth absolute right-3 top-1/2 -translate-y-1/2"></i>
</div>
<p class="mt-2 text-sm text-earth font-heading">Please enter a valid email address.</p>
</div>
<div>
<label class="block font-heading font-semibold text-sm text-ink" for="ds-message">Message</label>
<textarea
id="ds-message"
rows="4"
placeholder="Write a short message…"
class="mt-2 w-full rounded-xl border border-border bg-surface px-4 py-3 text-ink placeholder:text-ink/40 focus:outline-none focus:ring-2 focus:ring-primary focus:border-primary font-body"
></textarea>
</div>
<div class="flex flex-wrap items-center gap-6">
<label class="inline-flex items-center gap-3">
<input type="checkbox" class="h-5 w-5 rounded border-border text-primary focus:ring-primary" checked />
<span class="text-ink/80 font-body">Checkbox</span>
</label>
<label class="inline-flex items-center gap-3">
<span class="text-ink/80 font-body">Toggle</span>
<span class="relative inline-flex h-7 w-12 items-center rounded-full bg-primary/25 border border-border" aria-hidden="true">
<span class="inline-block h-6 w-6 translate-x-5 rounded-full bg-primary shadow-sm"></span>
</span>
</label>
</div>
</form>
</div>
</section>
<!-- INTERACTIVE COMPONENTS -->
<section id="components" class="mb-16">
<h2 class="text-4xl font-heading font-bold mb-6">Interactive Components</h2>
<p class="text-ink/80 mb-8 font-body text-lg">Soft, breathable, trustworthy components for landing-page sections and beyond.</p>
<h3 class="text-2xl font-heading font-bold">Cards</h3>
<div class="mt-4 component-preview">
<article class="max-w-sm rounded-2xl bg-surface border border-border p-6 shadow-sm">
<div class="flex items-center gap-3">
<div class="h-10 w-10 rounded-2xl bg-safe border border-border flex items-center justify-center">
<i data-feather="layers" class="h-5 w-5 text-primary"></i>
</div>
<h4 class="font-heading font-bold text-lg">A capability, not a checkbox</h4>
</div>
<p class="mt-3 text-ink/75 font-body">Cards hold small, meaningful chunks. Keep copy short, warm, and specific.</p>
<div class="mt-5 flex items-center gap-3">
<button class="font-heading font-semibold px-4 py-2 rounded-xl bg-primary text-white hover:bg-primary-deep transition-colors">Learn more</button>
<button class="font-heading font-semibold px-4 py-2 rounded-xl text-primary hover:bg-primary-soft transition-colors">Secondary</button>
</div>
</article>
</div>
<h3 class="mt-10 text-2xl font-heading font-bold">Alerts / Banners</h3>
<div class="mt-4 ds-card p-6 space-y-4">
<div class="rounded-2xl border border-border bg-safe-soft p-5 flex gap-3">
<i data-feather="info" class="h-5 w-5 text-primary mt-0.5"></i>
<div>
<p class="font-heading font-semibold">Supportive info</p>
<p class="text-ink/75 font-body">Use for gentle guidance, reminders, and clarifications.</p>
</div>
</div>
<div class="rounded-2xl border border-earth/40 bg-earth-soft/40 p-5 flex gap-3">
<i data-feather="alert-triangle" class="h-5 w-5 text-earth mt-0.5"></i>
<div>
<p class="font-heading font-semibold">Caution (rare)</p>
<p class="text-ink/75 font-body">Keep language calm. Prefer solutions over warnings.</p>
</div>
</div>
</div>
<h3 class="mt-10 text-2xl font-heading font-bold">Badges / Pills</h3>
<div class="mt-4 component-preview">
<span class="inline-flex items-center gap-2 px-3 py-1 rounded-full bg-primary-soft border border-border text-sm font-heading font-semibold text-ink">
<i data-feather="clock" class="h-4 w-4 text-primary"></i> 6 weeks
</span>
<span class="inline-flex items-center gap-2 px-3 py-1 rounded-full bg-safe-soft border border-border text-sm font-heading font-semibold text-ink">
<i data-feather="users" class="h-4 w-4 text-primary"></i> Community
</span>
<span class="inline-flex items-center gap-2 px-3 py-1 rounded-full bg-surface border border-border text-sm font-heading font-semibold text-ink">
<i data-feather="map" class="h-4 w-4 text-primary"></i> Practical maps
</span>
</div>
<h3 class="mt-10 text-2xl font-heading font-bold">Testimonial / Avatar</h3>
<p class="mt-2 text-ink/80 font-body">Use real people, treated respectfully: soft edges, subtle shadow, clear attribution.</p>
<div class="mt-4 ds-card p-6">
<div class="flex flex-col md:flex-row gap-6 md:items-center">
<div class="flex items-center gap-4">
<img
src="assets/robert_gilman.jpg"
alt="Robert Gilman"
class="h-16 w-16 rounded-2xl object-cover border border-border shadow-soft"
/>
<div>
<p class="font-heading font-bold text-ink">Robert Gilman</p>
<p class="text-sm text-ink/60 font-body">Faculty / Guide</p>
</div>
</div>
<blockquote class="md:pl-6 md:border-l md:border-border text-ink/85 italic text-lg font-heading">
“The work is a gentle guide—supportive, clear, and grounded. You can feel your own capacity return.”
</blockquote>
</div>
</div>
</section>
<!-- NAVIGATION EXAMPLES -->
<section id="navigation" class="mb-16">
<h2 class="text-4xl font-heading font-bold mb-6">Navigation & Mobile Examples</h2>
<p class="text-ink/80 mb-8 font-body text-lg">Static visuals to align on header structure and mobile menu behavior (open state).</p>
<h3 class="text-2xl font-heading font-bold">Desktop Navbar</h3>
<div class="mt-4 ds-card overflow-hidden">
<div class="bg-surface border-b border-border">
<div class="px-6 py-4 flex items-center justify-between">
<div class="flex items-center gap-3">
<img src="assets/cilogoL.svg" alt="Context Institute" class="h-8 w-auto max-w-[180px]" />
<span class="font-heading font-semibold text-ink">Essential Capacities</span>
</div>
<nav class="hidden md:flex items-center gap-6" aria-label="Primary">
<a class="font-heading text-sm font-semibold text-ink/70 hover:text-primary transition-colors" href="#">Program</a>
<a class="font-heading text-sm font-semibold text-ink/70 hover:text-primary transition-colors" href="#">Curriculum</a>
<a class="font-heading text-sm font-semibold text-ink/70 hover:text-primary transition-colors" href="#">Faculty</a>
<a class="font-heading text-sm font-semibold text-ink/70 hover:text-primary transition-colors" href="#">FAQ</a>
</nav>
<div class="flex items-center gap-3">
<a class="font-heading text-sm font-semibold text-primary hover:underline underline-offset-4" href="#">Sign in</a>
<button class="font-heading font-semibold px-4 py-2 rounded-xl bg-primary text-white hover:bg-primary-deep transition-colors">Join</button>
</div>
</div>
</div>
<div class="p-6 bg-bg">
<p class="text-sm text-ink/70 font-body">Guideline: Keep nav minimal (4–5 items). Use one clear primary CTA.</p>
</div>
</div>
<h3 class="mt-10 text-2xl font-heading font-bold">Mobile Menu (Drawer — Open)</h3>
<div class="mt-4 ds-card overflow-hidden">
<div class="relative bg-bg p-6">
<div class="absolute inset-0 bg-ink/20" aria-hidden="true"></div>
<div class="relative max-w-sm bg-surface border border-border rounded-3xl shadow-soft overflow-hidden ml-auto">
<div class="p-5 border-b border-border flex items-center justify-between">
<div class="flex items-center gap-3">
<div class="h-9 w-9 rounded-xl bg-safe border border-border flex items-center justify-center">
<i data-feather="compass" class="h-5 w-5 text-primary"></i>
</div>
<p class="font-heading font-semibold">Menu</p>
</div>
<button class="h-9 w-9 rounded-xl border border-border bg-bg flex items-center justify-center" aria-label="Close">
<i data-feather="x" class="h-5 w-5 text-ink"></i>
</button>
</div>
<nav class="p-5" aria-label="Mobile">
<ul class="space-y-3">
<li><a class="block font-heading font-semibold text-ink hover:text-primary text-lg" href="#">Program</a></li>
<li><a class="block font-heading font-semibold text-ink hover:text-primary text-lg" href="#">Curriculum</a></li>
<li><a class="block font-heading font-semibold text-ink hover:text-primary text-lg" href="#">Faculty</a></li>
<li><a class="block font-heading font-semibold text-ink hover:text-primary text-lg" href="#">FAQ</a></li>
</ul>
<div class="mt-8 grid gap-3">
<button class="w-full font-heading font-semibold px-4 py-3 rounded-xl bg-primary text-white hover:bg-primary-deep transition-colors">Join the program</button>
<button class="w-full font-heading font-semibold px-4 py-3 rounded-xl border border-primary text-primary hover:bg-primary-soft transition-colors">Sign in</button>
</div>
</nav>
</div>
</div>
</div>
</section>
<!-- APPLICATIONS -->
<section id="applications" class="mb-16">
<h2 class="text-4xl font-heading font-bold mb-6">Applications</h2>
<p class="text-ink/80 mb-8 font-body text-lg">How this visual language should show up across deliverables (web, PDF, email).</p>
<div class="grid md:grid-cols-3 gap-6">
<div class="ds-card p-6">
<h3 class="font-heading font-bold text-xl">Landing Page</h3>
<ul class="mt-3 space-y-2 text-ink/80 text-base font-body">
<li>• Hero: metaphorical image + calm headline</li>
<li>• One primary CTA; secondary as outline/ghost</li>
<li>• Sections feel like “chapters” with breathing room</li>
</ul>
</div>
<div class="ds-card p-6">
<h3 class="font-heading font-bold text-xl">Email</h3>
<ul class="mt-3 space-y-2 text-ink/80 text-base font-body">
<li>• Single column, generous padding</li>
<li>• Keep imagery minimal; prioritize readability</li>
<li>• Same CTA hierarchy as web</li>
</ul>
</div>
<div class="ds-card p-6">
<h3 class="font-heading font-bold text-xl">PDF / Program Overview</h3>
<ul class="mt-3 space-y-2 text-ink/80 text-base font-body">
<li>• Serif body supports long reading</li>
<li>• Use safe backgrounds for callouts</li>
<li>• Maintain margins and calm rhythm</li>
</ul>
</div>
</div>
</section>
<footer class="mt-16 pt-8 border-t border-border">
<div class="text-center">
<div class="h-16 w-16 mx-auto rounded-3xl bg-safe border border-border flex items-center justify-center">
<img src="assets/cilogoL.svg" alt="Context Institute" class="h-8 w-auto max-w-[56px]" />
</div>
<p class="mt-5 font-heading font-semibold text-ink">This design system is a living document.</p>
<p class="mt-2 text-ink/70 font-body">Update examples as the landing page evolves; keep principles stable.</p>
<p class="mt-6 text-sm text-ink/50 font-body">Essential Capacities — Visual Design System • v0.2 • Feb 2026</p>
</div>
</footer>
</div>
</main>
<script>
feather.replace();
</script>
</body>
</html>