-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiff.txt
More file actions
2402 lines (2334 loc) · 124 KB
/
diff.txt
File metadata and controls
2402 lines (2334 loc) · 124 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
diff --git a/CLAUDE.md b/CLAUDE.md
new file mode 100644
index 0000000..751448d
--- /dev/null
+++ b/CLAUDE.md
@@ -0,0 +1,52 @@
+# Memory
+
+## Me
+Chu, Founder/Owner of Ajared Research Inc. Running an AI research and product studio based in Toronto (also Abuja).
+
+## Company
+| Field | Value |
+|-------|-------|
+| **Name** | Ajared Research Inc. |
+| **Website** | ajared.ca (also ajared.ng) |
+| **Email** | innovation@ajared.ca |
+| **Phone** | +1 613 661 3550 |
+| **Toronto** | 68 Abell St, M6J 0B1, Ontario, Canada |
+| **Abuja** | Nigeria |
+| **Tagline** | Applied AI for Enterprises |
+| **Mission** | Help enterprises move from AI proof-of-concept to production-ready solutions |
+
+## Capabilities (Services)
+| # | Name | What |
+|---|------|------|
+| 001 | **Applied Research** | UX research, market research, testing business ideas |
+| 002 | **AI Product Development** | Concept → design → build → launch, full-stack AI engineering |
+| 003 | **Enterprise AI Agents** | Production agents, Graph RAG, task automation |
+| 004 | **Data & AI Strategy** | Audits, readiness assessments, governance, GEO, exec coaching |
+→ Details: memory/context/company.md
+
+## Products / Offers
+| Tag | Name | Link |
+|-----|------|------|
+| Advisory | Talk to a Human about AI | cal.com/ajared/talk-to-a-human-about-ai |
+| Build | 1 Month AI Development Sprint | ajared.ca/ai-sprint/ |
+| Learn | Get Started with AI | cal.com/ajared/get-started-with-ai |
+| AI Search | Help AI Agents find your brand | ajared.ca/contact/ |
+
+## Terms
+| Term | Meaning |
+|------|---------|
+| sprint | 1 Month AI Development Sprint — 4-week scoped build |
+| GEO | Generative Engine Optimization — making brand visible to AI agents |
+| Graph RAG | Knowledge graph-augmented retrieval (reduces hallucination) |
+| the site | ajared.ca — the company website |
+| ai-readiness | Free 3-minute AI readiness assessment at ajared.ca/ai-readiness/ |
+→ Full glossary: memory/glossary.md
+
+## Site Architecture (CRITICAL)
+- **NEVER edit .html files** — they are auto-generated
+- **Edit .xml files** instead (e.g. index.xml, capabilities/001-applied-research.xml)
+- **Preview**: Open .xml in browser (XSLT renders live)
+- **Deploy**: `git commit` → pre-commit hook auto-runs build.sh → compiles .xml → .html
+- **Push**: `git push origin main` (must be done from own machine — sandbox has no internet)
+- Stack: XML + XSLT 1.0, Vanilla CSS/JS, GitHub Pages, Formspree (forms), iA Writer Quattro S (font)
+→ Full details: memory/context/site-architecture.md
diff --git a/ai-readiness/assessment.css b/ai-readiness/assessment.css
index 57bd2c4..cb1f07d 100644
--- a/ai-readiness/assessment.css
+++ b/ai-readiness/assessment.css
@@ -43,7 +43,7 @@
--serif: 'iA Writer Quattro S', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
- * { margin: 0; padding: 0; box-sizing: border-box; cursor: crosshair; }
+ * { margin: 0; padding: 0; box-sizing: border-box; cursor: pointer; }
body {
font-family: var(--sans);
@@ -193,7 +193,7 @@
border: 1.5px solid var(--light);
border-radius: 2px;
background: var(--white);
- cursor: pointer;
+ cursor: crosshair;
font-family: var(--sans);
font-size: 14px;
color: var(--dark);
@@ -253,7 +253,7 @@
font-family: var(--serif);
font-size: 16px;
border: none;
- cursor: pointer;
+ cursor: crosshair;
letter-spacing: 0.3px;
transition: all 0.2s;
}
@@ -566,7 +566,7 @@
font-family: var(--mono);
font-size: 11px;
letter-spacing: 0.5px;
- cursor: pointer;
+ cursor: crosshair;
text-decoration: none;
border: 1px solid transparent;
transition: all 0.15s;
@@ -646,7 +646,7 @@
text-transform: uppercase;
letter-spacing: 1px;
color: var(--mid);
- cursor: pointer;
+ cursor: crosshair;
transition: all 0.2s;
}
.btn-retake:hover { border-color: var(--mid); color: var(--dark); }
diff --git a/ai-readiness/index.html b/ai-readiness/index.html
index 04871bb..a2fefec 100644
--- a/ai-readiness/index.html
+++ b/ai-readiness/index.html
@@ -1,9 +1,10 @@
-<!DOCTYPE html SYSTEM "about:legacy-compat">
+<!DOCTYPE html>
<html lang="en">
<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
-<title>AI Readiness Navigator — Ajared Research Inc</title>
+<title>AI Readiness Navigator — Ajared Research Inc</title>
<meta name="description" content="Discover where you are in your AI journey, set your goals, and get a personalized action plan. Assessment by Ajared Research Inc.">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
@@ -11,20 +12,20 @@
<link rel="apple-touch-icon" sizes="180x180" href="/favicon-32x32.png">
<meta property="og:type" content="website">
<meta property="og:url" content="https://ajared.ca/ai-readiness/">
-<meta property="og:title" content="AI Readiness Navigator — Ajared Research Inc">
-<meta property="og:description" content="Find out your AI readiness level — Explorer, Activator, Builder, or Catalyst. 3-minute assessment with a personalized action plan.">
+<meta property="og:title" content="AI Readiness Navigator — Ajared Research Inc">
+<meta property="og:description" content="Find out your AI readiness level — Explorer, Activator, Builder, or Catalyst. 3-minute assessment with a personalized action plan.">
<meta property="og:image" content="https://ajared.ca/ai-readiness/og-card.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="628">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@ajared">
-<meta name="twitter:title" content="AI Readiness Navigator — Ajared Research Inc">
-<meta name="twitter:description" content="Find out your AI readiness level in 3 minutes. Explorer, Activator, Builder, or Catalyst — with a personalized action plan.">
+<meta name="twitter:title" content="AI Readiness Navigator — Ajared Research Inc">
+<meta name="twitter:description" content="Find out your AI readiness level in 3 minutes. Explorer, Activator, Builder, or Catalyst — with a personalized action plan.">
<meta name="twitter:image" content="https://ajared.ca/ai-readiness/og-card.png">
<link rel="stylesheet" href="/ai-readiness/assessment.css">
</head>
<body>
-<header class="site-header"><a href="/"><img src="/logo.png" alt="Ajared Research Inc"><span class="wordmark">Research Inc.</span></a><nav class="header-nav"><a href="/">← Back to site</a></nav></header><div id="quiz-section">
+<header class="site-header"><a href="/"><img src="/logo.png" alt="Ajared Research Inc"><span class="wordmark">Research Inc.</span></a><nav class="header-nav"><a href="/">← Back to site</a></nav></header><div id="quiz-section">
<section class="hero"><div class="hero-label">Assessment</div>
<h1>AI Readiness Navigator</h1>
<p>Discover where you are in your AI journey, understand your goals, and get a personalized action plan. Takes about 3 minutes.</p></section><div class="progress-bar" id="progress-bar"></div>
@@ -46,7 +47,7 @@
<label for="lead-email">Email</label><input type="email" id="lead-email" name="email" placeholder="you@example.com" required="required">
</div>
<div class="form-error" id="form-error"></div>
-<button type="submit" class="btn-primary">Show My Results →</button>
+<button type="submit" class="btn-primary">Show My Results →</button>
</form>
</div>
</div>
@@ -74,7 +75,7 @@
<div class="result-card-title">Share Your Results</div>
<div class="share-card-wrap"><canvas id="share-canvas" width="1200" height="628"></canvas></div>
<div class="share-actions">
-<span class="share-actions-label">Share →</span><button class="btn-share btn-share-linkedin" onclick="shareLinkedIn()"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 0 1-2.063-2.065 2.064 2.064 0 1 1 2.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"></path></svg>
+<span class="share-actions-label">Share →</span><button class="btn-share btn-share-linkedin" onclick="shareLinkedIn()"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 0 1-2.063-2.065 2.064 2.064 0 1 1 2.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"></path></svg>
LinkedIn
</button><button class="btn-share btn-share-x" onclick="shareX()"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-4.714-6.231-5.401 6.231H2.746l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"></path></svg>
Post on X
@@ -91,9 +92,9 @@
<p>Book a 30-minute consultation to build your personalized AI roadmap.</p>
<a href="https://cal.com/ajared" target="_blank" rel="noopener noreferrer" class="btn-cta">Book a Consultation</a>
</div>
-<div class="retake-area"><button class="btn-retake" onclick="retake()">↻ Retake Assessment</button></div>
+<div class="retake-area"><button class="btn-retake" onclick="retake()">↻ Retake Assessment</button></div>
</div>
-<footer class="site-footer"><p>© 2026 <a href="/">Ajared Research Inc.</a></p>
+<footer class="site-footer"><p>© 2026 <a href="/">Ajared Research Inc.</a></p>
<span class="footer-label">R<span style="color:#a1665e">e</span>s<span style="color:#a1665e">ea</span>rch,
<span style="color:#a1665e">e</span>d<span style="color:#a1665e">u</span>c<span style="color:#a1665e">a</span>t<span style="color:#a1665e">e</span>, d<span style="color:#a1665e">e</span>s<span style="color:#a1665e">i</span>gn.</span></footer><script src="/ai-readiness/assessment.js" defer></script>
</body>
diff --git a/ai-sprint/index.html b/ai-sprint/index.html
index 10952df..0d0d87a 100644
--- a/ai-sprint/index.html
+++ b/ai-sprint/index.html
@@ -1,6 +1,7 @@
-<!DOCTYPE html SYSTEM "about:legacy-compat">
+<!DOCTYPE html>
<html lang="en">
<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -8,7 +9,7 @@
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon-32x32.png">
-<title>1 Month AI Development Sprint — Readiness Assessment — Ajared Research Inc</title>
+<title>1 Month AI Development Sprint — Readiness Assessment — Ajared Research Inc</title>
<style>
/* iA Writer Quattro S Font */
@font-face {
@@ -58,7 +59,7 @@
box-sizing: border-box;
margin: 0;
padding: 0;
- cursor: crosshair;
+ cursor: pointer;
}
body {
@@ -235,7 +236,7 @@
font-size: 1rem;
}
- /* Change 11: Nav hover — terra cotta */
+ /* Change 11: Nav hover — terra cotta */
nav a:hover {
text-decoration: underline;
color: var(--color-terra);
@@ -291,7 +292,7 @@
pointer-events: none;
}
- /* Change 10: Secondary ripple rings — subtle terra cotta tint */
+ /* Change 10: Secondary ripple rings — subtle terra cotta tint */
.ripple-secondary {
position: absolute;
border-radius: 50%;
@@ -351,7 +352,7 @@
margin-bottom: 0.5rem;
}
- /* Arrow — Change 3: terra cotta by default */
+ /* Arrow — Change 3: terra cotta by default */
.arrow-icon {
width: 40px;
height: 1px;
@@ -384,7 +385,7 @@
border-right-color: var(--color-bg);
}
- /* Stretched link — entire card is clickable */
+ /* Stretched link — entire card is clickable */
.service-card > a {
position: static;
}
@@ -394,7 +395,7 @@
inset: 0;
}
- /* Button — Change 1: terra cotta border + text, fills on hover */
+ /* Button — Change 1: terra cotta border + text, fills on hover */
.btn {
display: inline-block;
margin-top: 2rem;
@@ -459,7 +460,7 @@
max-width: none;
}
- /* Offer card tracks (card 03 — Get Started with AI) */
+ /* Offer card tracks (card 03 — Get Started with AI) */
.track-list {
margin-top: 1rem;
display: flex;
@@ -619,7 +620,7 @@
.capability-row[data-cap="004"] { --cap-accent: #7a6050; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.capability-row { display: grid; grid-template-columns: 80px 2fr 1fr 60px; border-bottom: var(--grid-line); align-items: center; padding: 0; transition: background 0.3s, color 0.3s; overflow: hidden; }
- .capability-header { display: grid; grid-template-columns: 80px 2fr 1fr 60px; grid-column: 1 / -1; padding: 2rem; align-items: center; transition: background 0.3s, color 0.3s; cursor: pointer; color: inherit; }
+ .capability-header { display: grid; grid-template-columns: 80px 2fr 1fr 60px; grid-column: 1 / -1; padding: 2rem; align-items: center; transition: background 0.3s, color 0.3s; cursor: crosshair; color: inherit; }
.capability-header:hover { background: var(--color-ink); }
.capability-header:hover .cap-number, .capability-header:hover .cap-title, .capability-header:hover .cap-subtitle, .capability-header:hover .cap-toggle { color: var(--color-bg); }
.header-peek { grid-column: 1 / -1; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.2s ease, opacity 0.2s ease, padding 0.2s ease; padding: 0 2rem; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.05em; color: var(--color-ink-light); border-left: 3px solid var(--cap-accent, var(--color-terra)); pointer-events: none; }
@@ -744,9 +745,9 @@
<p><a href="/case-studies/">Case Studies</a></p>
<p><a href="/capabilities/">Capabilities</a></p>
<p><a href="/contact/" style="text-decoration:underline; font-weight:600; color: var(--color-terra);">Contact</a></p>
-<p><a href="https://www.ajared.ng">Read</a></p></nav><div style="margin-top: auto; font-size: 2rem; line-height: 1; color: var(--color-terra);">↗</div>
+<p><a href="https://www.ajared.ng">Read</a></p></nav><div style="margin-top: auto; font-size: 2rem; line-height: 1; color: var(--color-terra);">↗</div>
</div></header><style>
- /* ── Sprint Assessment ── */
+ /* ── Sprint Assessment ── */
.sprint-hero {
padding: 3rem 2rem;
border-bottom: var(--grid-line);
@@ -835,7 +836,7 @@
font-size: 0.95rem;
color: var(--color-ink-dark);
text-align: left;
- cursor: pointer;
+ cursor: crosshair;
transition: background 0.15s, color 0.15s, border-color 0.15s;
display: flex;
align-items: flex-start;
@@ -895,7 +896,7 @@
background: var(--color-ink-darkest);
color: var(--color-bg);
border: none;
- cursor: pointer;
+ cursor: crosshair;
transition: background 0.2s;
border-radius: 0;
}
@@ -1031,7 +1032,7 @@
color: var(--color-ink-light);
background: none;
border: none;
- cursor: pointer;
+ cursor: crosshair;
}
.sprint-retake:hover { color: var(--color-ink); }
@@ -1055,7 +1056,7 @@
</div>
<div id="sprint-questions"></div>
<div class="sprint-submit-row">
-<button class="sprint-btn" id="sprint-submit" disabled>See Readiness Report ↗</button><span class="sprint-submit-hint" id="sprint-submit-hint">Answer all questions to continue</span>
+<button class="sprint-btn" id="sprint-submit" disabled>See Readiness Report ↗</button><span class="sprint-submit-hint" id="sprint-submit-hint">Answer all questions to continue</span>
</div>
</div>
<div id="sprint-lead" style="display:none"><div class="sprint-lead-inner">
@@ -1064,14 +1065,14 @@
<p>Enter your details to unlock your sprint readiness profile and personalized preparation plan.</p>
</div>
<div class="sprint-lead-right"><form id="sprint-lead-form" action="https://formspree.io/f/mwvrkwll" method="POST">
-<input type="hidden" name="_subject" value="1 Month AI Development Sprint — Assessment"><input type="hidden" name="assessment_level" id="sprint-hidden-level"><input type="hidden" name="assessment_score" id="sprint-hidden-score"><input type="hidden" name="assessment_answers" id="sprint-hidden-answers"><div class="instrument-field">
+<input type="hidden" name="_subject" value="1 Month AI Development Sprint — Assessment"><input type="hidden" name="assessment_level" id="sprint-hidden-level"><input type="hidden" name="assessment_score" id="sprint-hidden-score"><input type="hidden" name="assessment_answers" id="sprint-hidden-answers"><div class="instrument-field">
<span class="label">Name</span><input type="text" name="name" id="sprint-lead-name" class="instrument-input" placeholder="Your name">
</div>
<div class="instrument-field" style="margin-top: 1rem;">
<span class="label">Email</span><input type="email" name="email" id="sprint-lead-email" class="instrument-input" placeholder="you@example.com" required="required">
</div>
<div id="sprint-lead-error" style="display:none; color:var(--color-terra); font-family:var(--font-mono); font-size:0.8rem; text-transform:uppercase; letter-spacing:0.06em; margin-top:1rem;"></div>
-<button type="submit" class="sprint-btn" style="margin-top:1.5rem; width:100%;">Show My Report ↗</button>
+<button type="submit" class="sprint-btn" style="margin-top:1.5rem; width:100%;">Show My Report ↗</button>
</form></div>
</div></div>
<div id="sprint-results" style="display:none"><div class="sprint-results-inner">
@@ -1089,16 +1090,16 @@
<div>
<span class="label">Ready to apply?</span><p style="margin-top:0.5rem;">Book a 20-minute discovery call to confirm your spot and align on sprint goals.</p>
</div>
-<a href="https://cal.com/ajared" target="_blank" rel="noopener noreferrer" class="sprint-btn" style="white-space:nowrap; display:inline-block;">Book a Discovery Call ↗</a>
+<a href="https://cal.com/ajared" target="_blank" rel="noopener noreferrer" class="sprint-btn" style="white-space:nowrap; display:inline-block;">Book a Discovery Call ↗</a>
</div>
-<div style="text-align:center;"><button class="sprint-retake" id="sprint-retake">↻ Retake Assessment</button></div>
+<div style="text-align:center;"><button class="sprint-retake" id="sprint-retake">↻ Retake Assessment</button></div>
</div></div>
<div class="footer">
<div>
<span class="label" style="color: var(--color-terra);">Inquiries</span><h2><a href="mailto:innovation@ajared.ca">innovation@<span style="color: #a1665e;">aja</span>red.ca</a></h2>
</div>
<div style="text-align:right; display:flex; flex-direction:column; justify-content:center; align-items:flex-end; gap:0.5rem;">
-<p>© 2026 Ajared Research Inc.</p>
+<p>© 2026 Ajared Research Inc.</p>
<span class="label">R<span style="color:#a1665e">e</span>s<span style="color:#a1665e">ea</span>rch,
<span style="color:#a1665e">e</span>d<span style="color:#a1665e">u</span>c<span style="color:#a1665e">a</span>t<span style="color:#a1665e">e</span>, d<span style="color:#a1665e">e</span>s<span style="color:#a1665e">i</span>gn.</span>
</div>
diff --git a/capabilities/001-applied-research.html b/capabilities/001-applied-research.html
index 589f1e8..2f3978f 100644
--- a/capabilities/001-applied-research.html
+++ b/capabilities/001-applied-research.html
@@ -1,6 +1,7 @@
-<!DOCTYPE html SYSTEM "about:legacy-compat">
+<!DOCTYPE html>
<html lang="en">
<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -8,7 +9,7 @@
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon-32x32.png">
-<title>Applied Research — Ajared Research Inc</title>
+<title>Applied Research — Ajared Research Inc</title>
<style>
/* iA Writer Quattro S Font */
@font-face {
@@ -58,7 +59,7 @@
box-sizing: border-box;
margin: 0;
padding: 0;
- cursor: crosshair;
+ cursor: pointer;
}
body {
@@ -235,7 +236,7 @@
font-size: 1rem;
}
- /* Change 11: Nav hover — terra cotta */
+ /* Change 11: Nav hover — terra cotta */
nav a:hover {
text-decoration: underline;
color: var(--color-terra);
@@ -291,7 +292,7 @@
pointer-events: none;
}
- /* Change 10: Secondary ripple rings — subtle terra cotta tint */
+ /* Change 10: Secondary ripple rings — subtle terra cotta tint */
.ripple-secondary {
position: absolute;
border-radius: 50%;
@@ -351,7 +352,7 @@
margin-bottom: 0.5rem;
}
- /* Arrow — Change 3: terra cotta by default */
+ /* Arrow — Change 3: terra cotta by default */
.arrow-icon {
width: 40px;
height: 1px;
@@ -384,7 +385,7 @@
border-right-color: var(--color-bg);
}
- /* Stretched link — entire card is clickable */
+ /* Stretched link — entire card is clickable */
.service-card > a {
position: static;
}
@@ -394,7 +395,7 @@
inset: 0;
}
- /* Button — Change 1: terra cotta border + text, fills on hover */
+ /* Button — Change 1: terra cotta border + text, fills on hover */
.btn {
display: inline-block;
margin-top: 2rem;
@@ -459,7 +460,7 @@
max-width: none;
}
- /* Offer card tracks (card 03 — Get Started with AI) */
+ /* Offer card tracks (card 03 — Get Started with AI) */
.track-list {
margin-top: 1rem;
display: flex;
@@ -619,7 +620,7 @@
.capability-row[data-cap="004"] { --cap-accent: #7a6050; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.capability-row { display: grid; grid-template-columns: 80px 2fr 1fr 60px; border-bottom: var(--grid-line); align-items: center; padding: 0; transition: background 0.3s, color 0.3s; overflow: hidden; }
- .capability-header { display: grid; grid-template-columns: 80px 2fr 1fr 60px; grid-column: 1 / -1; padding: 2rem; align-items: center; transition: background 0.3s, color 0.3s; cursor: pointer; color: inherit; }
+ .capability-header { display: grid; grid-template-columns: 80px 2fr 1fr 60px; grid-column: 1 / -1; padding: 2rem; align-items: center; transition: background 0.3s, color 0.3s; cursor: crosshair; color: inherit; }
.capability-header:hover { background: var(--color-ink); }
.capability-header:hover .cap-number, .capability-header:hover .cap-title, .capability-header:hover .cap-subtitle, .capability-header:hover .cap-toggle { color: var(--color-bg); }
.header-peek { grid-column: 1 / -1; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.2s ease, opacity 0.2s ease, padding 0.2s ease; padding: 0 2rem; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.05em; color: var(--color-ink-light); border-left: 3px solid var(--cap-accent, var(--color-terra)); pointer-events: none; }
@@ -783,19 +784,19 @@
<div class="section">
<div class="section-bar"><span class="section-title">What We Do</span></div>
<div class="section-body">
- <p>We figure out what’s actually going on before anyone starts building. That means talking to users, studying the market, and testing ideas against reality. We draw on behavioural science, statistics, and deep domain knowledge to produce findings your team can act on with confidence.</p>
+ <p>We figure out what’s actually going on before anyone starts building. That means talking to users, studying the market, and testing ideas against reality. We draw on behavioural science, statistics, and deep domain knowledge to produce findings your team can act on with confidence.</p>
<div class="offerings">
<div class="offering">
<h4>UX Research</h4>
-<p>We go to where your users are — interviews, diary studies, usability tests, in-context observation. The goal is understanding what people actually do, not just what they say, so the product decisions that follow are grounded in reality.</p>
+<p>We go to where your users are — interviews, diary studies, usability tests, in-context observation. The goal is understanding what people actually do, not just what they say, so the product decisions that follow are grounded in reality.</p>
</div>
<div class="offering">
<h4>Market Research</h4>
-<p>A clear picture of the landscape before you move. Competitive analysis, market sizing, audience segmentation, and trend mapping — so you know exactly where the opportunity is, what you’re up against, and what the data won’t yet tell you.</p>
+<p>A clear picture of the landscape before you move. Competitive analysis, market sizing, audience segmentation, and trend mapping — so you know exactly where the opportunity is, what you’re up against, and what the data won’t yet tell you.</p>
</div>
<div class="offering">
<h4>Testing Business Ideas</h4>
-<p>Most assumptions are wrong. We design lean experiments — demand tests, concierge MVPs, assumption mapping, causal inference — that expose which ones to kill early and which ones to build around. Early failure is cheap. Late failure is not.</p>
+<p>Most assumptions are wrong. We design lean experiments — demand tests, concierge MVPs, assumption mapping, causal inference — that expose which ones to kill early and which ones to build around. Early failure is cheap. Late failure is not.</p>
</div>
</div>
</div>
@@ -828,7 +829,7 @@
<div class="step-num">04</div>
<div class="step-body">
<h4>Delivery</h4>
-<p>Findings land in a plain-language report, an executive presentation deck, and a documented methodology archive — built for the people who need to act on them, not for the people who already know the answer.</p>
+<p>Findings land in a plain-language report, an executive presentation deck, and a documented methodology archive — built for the people who need to act on them, not for the people who already know the answer.</p>
</div>
</div>
</div></div>
@@ -837,31 +838,31 @@
<div class="section-bar"><span class="section-title">Deliverables</span></div>
<div class="section-body"><div class="deliverables">
<div class="deliverable-row">
-<span class="check done">✓</span>Research brief + scope alignment document</div>
+<span class="check done">✓</span>Research brief + scope alignment document</div>
<div class="deliverable-row">
-<span class="check done">✓</span>Structured findings report (plain language)</div>
+<span class="check done">✓</span>Structured findings report (plain language)</div>
<div class="deliverable-row">
-<span class="check done">✓</span>Executive presentation deck</div>
+<span class="check done">✓</span>Executive presentation deck</div>
<div class="deliverable-row">
-<span class="check done">✓</span>Evidence archive + methodology notes</div>
+<span class="check done">✓</span>Evidence archive + methodology notes</div>
<div class="deliverable-row">
-<span class="check">○</span>Optional: Ongoing research retainer</div>
+<span class="check">○</span>Optional: Ongoing research retainer</div>
</div></div>
</div>
</div>
<div class="cap-nav">
-<a href="/capabilities/004-data-strategy.html" class="cap-nav-prev">← Data & AI Strategy</a><a href="/capabilities/" class="cap-nav-center">All Capabilities</a><a href="/capabilities/002-ai-product.html" class="cap-nav-next">Product Development →</a>
+<a href="/capabilities/004-data-strategy.html" class="cap-nav-prev">← Data & AI Strategy</a><a href="/capabilities/" class="cap-nav-center">All Capabilities</a><a href="/capabilities/002-ai-product.html" class="cap-nav-next">Product Development →</a>
</div>
<div class="cta-block">
-<div><h3>Ready to find out what’s true?</h3></div>
-<a href="/contact/" style="text-decoration:none;"><div class="cta-btn">Get in touch →</div></a>
+<div><h3>Ready to find out what’s true?</h3></div>
+<a href="/contact/" style="text-decoration:none;"><div class="cta-btn">Get in touch →</div></a>
</div>
<div class="footer">
<div>
<span class="label" style="color: var(--color-terra);">Inquiries</span><h2><a href="mailto:innovation@ajared.ca">innovation@<span style="color: #a1665e;">aja</span>red.ca</a></h2>
</div>
<div style="text-align:right; display:flex; flex-direction:column; justify-content:center; align-items:flex-end; gap:0.5rem;">
-<p>© 2026 Ajared Research Inc.</p>
+<p>© 2026 Ajared Research Inc.</p>
<span class="label">R<span style="color:#a1665e">e</span>s<span style="color:#a1665e">ea</span>rch,
<span style="color:#a1665e">e</span>d<span style="color:#a1665e">u</span>c<span style="color:#a1665e">a</span>t<span style="color:#a1665e">e</span>, d<span style="color:#a1665e">e</span>s<span style="color:#a1665e">i</span>gn.</span>
</div>
diff --git a/capabilities/002-ai-product.html b/capabilities/002-ai-product.html
index a1dacc6..04f69d5 100644
--- a/capabilities/002-ai-product.html
+++ b/capabilities/002-ai-product.html
@@ -1,6 +1,7 @@
-<!DOCTYPE html SYSTEM "about:legacy-compat">
+<!DOCTYPE html>
<html lang="en">
<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -8,7 +9,7 @@
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon-32x32.png">
-<title>Product Development — Ajared Research Inc</title>
+<title>Product Development — Ajared Research Inc</title>
<style>
/* iA Writer Quattro S Font */
@font-face {
@@ -58,7 +59,7 @@
box-sizing: border-box;
margin: 0;
padding: 0;
- cursor: crosshair;
+ cursor: pointer;
}
body {
@@ -235,7 +236,7 @@
font-size: 1rem;
}
- /* Change 11: Nav hover — terra cotta */
+ /* Change 11: Nav hover — terra cotta */
nav a:hover {
text-decoration: underline;
color: var(--color-terra);
@@ -291,7 +292,7 @@
pointer-events: none;
}
- /* Change 10: Secondary ripple rings — subtle terra cotta tint */
+ /* Change 10: Secondary ripple rings — subtle terra cotta tint */
.ripple-secondary {
position: absolute;
border-radius: 50%;
@@ -351,7 +352,7 @@
margin-bottom: 0.5rem;
}
- /* Arrow — Change 3: terra cotta by default */
+ /* Arrow — Change 3: terra cotta by default */
.arrow-icon {
width: 40px;
height: 1px;
@@ -384,7 +385,7 @@
border-right-color: var(--color-bg);
}
- /* Stretched link — entire card is clickable */
+ /* Stretched link — entire card is clickable */
.service-card > a {
position: static;
}
@@ -394,7 +395,7 @@
inset: 0;
}
- /* Button — Change 1: terra cotta border + text, fills on hover */
+ /* Button — Change 1: terra cotta border + text, fills on hover */
.btn {
display: inline-block;
margin-top: 2rem;
@@ -459,7 +460,7 @@
max-width: none;
}
- /* Offer card tracks (card 03 — Get Started with AI) */
+ /* Offer card tracks (card 03 — Get Started with AI) */
.track-list {
margin-top: 1rem;
display: flex;
@@ -619,7 +620,7 @@
.capability-row[data-cap="004"] { --cap-accent: #7a6050; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.capability-row { display: grid; grid-template-columns: 80px 2fr 1fr 60px; border-bottom: var(--grid-line); align-items: center; padding: 0; transition: background 0.3s, color 0.3s; overflow: hidden; }
- .capability-header { display: grid; grid-template-columns: 80px 2fr 1fr 60px; grid-column: 1 / -1; padding: 2rem; align-items: center; transition: background 0.3s, color 0.3s; cursor: pointer; color: inherit; }
+ .capability-header { display: grid; grid-template-columns: 80px 2fr 1fr 60px; grid-column: 1 / -1; padding: 2rem; align-items: center; transition: background 0.3s, color 0.3s; cursor: crosshair; color: inherit; }
.capability-header:hover { background: var(--color-ink); }
.capability-header:hover .cap-number, .capability-header:hover .cap-title, .capability-header:hover .cap-subtitle, .capability-header:hover .cap-toggle { color: var(--color-bg); }
.header-peek { grid-column: 1 / -1; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.2s ease, opacity 0.2s ease, padding 0.2s ease; padding: 0 2rem; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.05em; color: var(--color-ink-light); border-left: 3px solid var(--cap-accent, var(--color-terra)); pointer-events: none; }
@@ -779,31 +780,31 @@
<div class="section-bar"><span class="section-title">What We Do</span></div>
<div class="section-body">
<p>We help you build products and keep them running. That covers everything from the first idea through
- launch, growth, and the ongoing work of making them better — concept development, UX design, product
+ launch, growth, and the ongoing work of making them better — concept development, UX design, product
management, and full-stack engineering under one roof.</p>
<div class="offerings">
<div class="offering">
<h4>Concept Development</h4>
<p>From rough idea to defined product. We run structured workshops to frame the opportunity,
- pressure-test the underlying assumptions, assess feasibility, and set the strategic positioning — so
+ pressure-test the underlying assumptions, assess feasibility, and set the strategic positioning — so
design and engineering start with a foundation that holds up.</p>
</div>
<div class="offering">
<h4>Design Thinking</h4>
<p>Research-led UX built from first principles. We map information architecture, design interaction
- flows, prototype at the right fidelity, and test with real users iteratively — so the product feels
+ flows, prototype at the right fidelity, and test with real users iteratively — so the product feels
right before production engineering begins.</p>
</div>
<div class="offering">
<h4>Product Management</h4>
<p>The connective tissue between vision and execution. We set the roadmap, define OKRs, manage
- prioritisation trade-offs, align stakeholders, and coordinate go-to-market — so the team stays pointed
+ prioritisation trade-offs, align stakeholders, and coordinate go-to-market — so the team stays pointed
at the right problem at the right time.</p>
</div>
<div class="offering">
<h4>AI-Powered Engineering</h4>
<p>Full-stack development augmented by AI tooling. API integration, backend services, front-end
- interfaces, QA, and deployment — built for production and long-term operability, not for demos that
+ interfaces, QA, and deployment — built for production and long-term operability, not for demos that
work once under ideal conditions.</p>
</div>
</div>
@@ -825,7 +826,7 @@
<div class="step-body">
<h4>Design</h4>
<p>Concept development feeds directly into UX design, prototyping, and user validation. We test with
- real people before writing a line of production code — catching misaligned assumptions when they’re
+ real people before writing a line of production code — catching misaligned assumptions when they’re
still cheap to fix.</p>
</div>
</div>
@@ -841,7 +842,7 @@
<div class="step-num">04</div>
<div class="step-body">
<h4>Launch</h4>
-<p>Staged rollout with monitoring instrumentation in place from the start — not added after something
+<p>Staged rollout with monitoring instrumentation in place from the start — not added after something
breaks. Analytics, alerting, and a structured feedback loop that feeds the next iteration.</p>
</div>
</div>
@@ -851,33 +852,33 @@
<div class="section-bar"><span class="section-title">Deliverables</span></div>
<div class="section-body"><div class="deliverables">
<div class="deliverable-row">
-<span class="check done">✓</span>Concept brief + product strategy + roadmap</div>
+<span class="check done">✓</span>Concept brief + product strategy + roadmap</div>
<div class="deliverable-row">
-<span class="check done">✓</span>UX design system + tested prototypes</div>
+<span class="check done">✓</span>UX design system + tested prototypes</div>
<div class="deliverable-row">
-<span class="check done">✓</span>Working product — production-ready</div>
+<span class="check done">✓</span>Working product — production-ready</div>
<div class="deliverable-row">
-<span class="check done">✓</span>Launch plan + analytics instrumentation</div>
+<span class="check done">✓</span>Launch plan + analytics instrumentation</div>
<div class="deliverable-row">
-<span class="check done">✓</span>1 Month MVP Development Sprint</div>
+<span class="check done">✓</span>1 Month MVP Development Sprint</div>
<div class="deliverable-row">
-<span class="check">○</span>Optional: Fractional product management retainer</div>
+<span class="check">○</span>Optional: Fractional product management retainer</div>
</div></div>
</div>
</div>
<div class="cap-nav">
-<a href="/capabilities/001-applied-research.html" class="cap-nav-prev">← Applied Research</a><a href="/capabilities/" class="cap-nav-center">All Capabilities</a><a href="/capabilities/003-enterprise-agents.html" class="cap-nav-next">Enterprise AI Agents →</a>
+<a href="/capabilities/001-applied-research.html" class="cap-nav-prev">← Applied Research</a><a href="/capabilities/" class="cap-nav-center">All Capabilities</a><a href="/capabilities/003-enterprise-agents.html" class="cap-nav-next">Enterprise AI Agents →</a>
</div>
<div class="cta-block">
<div><h3>Ready to build something that works?</h3></div>
-<a href="/contact/" style="text-decoration:none;"><div class="cta-btn">Get in touch →</div></a>
+<a href="/contact/" style="text-decoration:none;"><div class="cta-btn">Get in touch →</div></a>
</div>
<div class="footer">
<div>
<span class="label" style="color: var(--color-terra);">Inquiries</span><h2><a href="mailto:innovation@ajared.ca">innovation@<span style="color: #a1665e;">aja</span>red.ca</a></h2>
</div>
<div style="text-align:right; display:flex; flex-direction:column; justify-content:center; align-items:flex-end; gap:0.5rem;">
-<p>© 2026 Ajared Research Inc.</p>
+<p>© 2026 Ajared Research Inc.</p>
<span class="label">R<span style="color:#a1665e">e</span>s<span style="color:#a1665e">ea</span>rch,
<span style="color:#a1665e">e</span>d<span style="color:#a1665e">u</span>c<span style="color:#a1665e">a</span>t<span style="color:#a1665e">e</span>, d<span style="color:#a1665e">e</span>s<span style="color:#a1665e">i</span>gn.</span>
</div>
diff --git a/capabilities/003-enterprise-agents.html b/capabilities/003-enterprise-agents.html
index b323c9d..9eb4121 100644
--- a/capabilities/003-enterprise-agents.html
+++ b/capabilities/003-enterprise-agents.html
@@ -1,6 +1,7 @@
-<!DOCTYPE html SYSTEM "about:legacy-compat">
+<!DOCTYPE html>
<html lang="en">
<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -8,7 +9,7 @@
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon-32x32.png">
-<title>Enterprise AI Agents — Ajared Research Inc</title>
+<title>Enterprise AI Agents — Ajared Research Inc</title>
<style>
/* iA Writer Quattro S Font */
@font-face {
@@ -58,7 +59,7 @@
box-sizing: border-box;
margin: 0;
padding: 0;
- cursor: crosshair;
+ cursor: pointer;
}
body {
@@ -235,7 +236,7 @@
font-size: 1rem;
}
- /* Change 11: Nav hover — terra cotta */
+ /* Change 11: Nav hover — terra cotta */
nav a:hover {
text-decoration: underline;
color: var(--color-terra);
@@ -291,7 +292,7 @@
pointer-events: none;
}
- /* Change 10: Secondary ripple rings — subtle terra cotta tint */
+ /* Change 10: Secondary ripple rings — subtle terra cotta tint */
.ripple-secondary {
position: absolute;
border-radius: 50%;
@@ -351,7 +352,7 @@
margin-bottom: 0.5rem;
}
- /* Arrow — Change 3: terra cotta by default */
+ /* Arrow — Change 3: terra cotta by default */
.arrow-icon {
width: 40px;
height: 1px;
@@ -384,7 +385,7 @@
border-right-color: var(--color-bg);
}
- /* Stretched link — entire card is clickable */
+ /* Stretched link — entire card is clickable */
.service-card > a {
position: static;
}
@@ -394,7 +395,7 @@
inset: 0;
}
- /* Button — Change 1: terra cotta border + text, fills on hover */
+ /* Button — Change 1: terra cotta border + text, fills on hover */
.btn {
display: inline-block;
margin-top: 2rem;
@@ -459,7 +460,7 @@
max-width: none;
}
- /* Offer card tracks (card 03 — Get Started with AI) */
+ /* Offer card tracks (card 03 — Get Started with AI) */
.track-list {
margin-top: 1rem;
display: flex;
@@ -619,7 +620,7 @@
.capability-row[data-cap="004"] { --cap-accent: #7a6050; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.capability-row { display: grid; grid-template-columns: 80px 2fr 1fr 60px; border-bottom: var(--grid-line); align-items: center; padding: 0; transition: background 0.3s, color 0.3s; overflow: hidden; }
- .capability-header { display: grid; grid-template-columns: 80px 2fr 1fr 60px; grid-column: 1 / -1; padding: 2rem; align-items: center; transition: background 0.3s, color 0.3s; cursor: pointer; color: inherit; }
+ .capability-header { display: grid; grid-template-columns: 80px 2fr 1fr 60px; grid-column: 1 / -1; padding: 2rem; align-items: center; transition: background 0.3s, color 0.3s; cursor: crosshair; color: inherit; }
.capability-header:hover { background: var(--color-ink); }
.capability-header:hover .cap-number, .capability-header:hover .cap-title, .capability-header:hover .cap-subtitle, .capability-header:hover .cap-toggle { color: var(--color-bg); }
.header-peek { grid-column: 1 / -1; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.2s ease, opacity 0.2s ease, padding 0.2s ease; padding: 0 2rem; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.05em; color: var(--color-ink-light); border-left: 3px solid var(--cap-accent, var(--color-terra)); pointer-events: none; }
@@ -778,14 +779,14 @@
<div class="section">
<div class="section-bar"><span class="section-title">What We Do</span></div>
<div class="section-body">
- <p>We build AI agents that handle real tasks — processing documents, coordinating between systems, making
+ <p>We build AI agents that handle real tasks — processing documents, coordinating between systems, making
routine decisions at scale. Built for production, not for demos. So your team can focus on the work that
actually needs a human.</p>
<div class="offerings">
<div class="offering">
<h4>AI Agents</h4>
<p>Task-specific agents built for production. We design agents with the right tools, memory
- architecture, and decision logic to handle real workflows reliably at scale — with human oversight
+ architecture, and decision logic to handle real workflows reliably at scale — with human oversight
integrated where it matters, not added as an afterthought.</p>
</div>
<div class="offering">
@@ -797,7 +798,7 @@
<div class="offering">
<h4>Task Automation</h4>
<p>End-to-end workflow automation across your existing systems. Document ingestion, routing decisions,
- multi-system coordination — designed to handle volume and edge cases without requiring constant human
+ multi-system coordination — designed to handle volume and edge cases without requiring constant human
intervention to stay on track.</p>
</div>
</div>
@@ -820,7 +821,7 @@
<div class="step-body">
<h4>Design</h4>
<p>Agent architecture, tool selection, memory design, and constraint definition. We specify the system
- completely before building — including how it fails gracefully and what happens when it encounters
+ completely before building — including how it fails gracefully and what happens when it encounters
something outside its operating envelope.</p>
</div>
</div>
@@ -829,7 +830,7 @@
<div class="step-body">
<h4>Build & Test</h4>
<p>Development, integration with your systems, red-team evaluation, and adversarial testing. We
- deliberately try to break agents before deployment. An agent we haven’t stress-tested doesn’t go to
+ deliberately try to break agents before deployment. An agent we haven’t stress-tested doesn’t go to
production.</p>
</div>
</div>
@@ -838,7 +839,7 @@
<div class="step-body">
<h4>Deploy</h4>
<p>Production rollout with monitoring dashboards, alert configuration, and human-in-the-loop controls
- designed from the start — not bolted on after. Ongoing visibility into what the agent is doing and
+ designed from the start — not bolted on after. Ongoing visibility into what the agent is doing and
why.</p>
</div>
</div>
@@ -848,32 +849,32 @@
<div class="section-bar"><span class="section-title">Deliverables</span></div>
<div class="section-body"><div class="deliverables">
<div class="deliverable-row">
-<span class="check done">✓</span>Agent architecture document + system design</div>
+<span class="check done">✓</span>Agent architecture document + system design</div>
<div class="deliverable-row">
-<span class="check done">✓</span>Production-ready agent system with
+<span class="check done">✓</span>Production-ready agent system with
evaluation suite</div>
<div class="deliverable-row">
-<span class="check done">✓</span>Integration layer + API documentation</div>
+<span class="check done">✓</span>Integration layer + API documentation</div>
<div class="deliverable-row">
-<span class="check done">✓</span>Monitoring dashboard + alert configuration</div>
+<span class="check done">✓</span>Monitoring dashboard + alert configuration</div>
<div class="deliverable-row">
-<span class="check">○</span>Optional: Ongoing operations retainer</div>
+<span class="check">○</span>Optional: Ongoing operations retainer</div>
</div></div>
</div>
</div>
<div class="cap-nav">
-<a href="/capabilities/002-ai-product.html" class="cap-nav-prev">← Product Development</a><a href="/capabilities/" class="cap-nav-center">All Capabilities</a><a href="/capabilities/004-data-strategy.html" class="cap-nav-next">Data &amp; AI Strategy →</a>
+<a href="/capabilities/002-ai-product.html" class="cap-nav-prev">← Product Development</a><a href="/capabilities/" class="cap-nav-center">All Capabilities</a><a href="/capabilities/004-data-strategy.html" class="cap-nav-next">Data &amp; AI Strategy →</a>
</div>
<div class="cta-block">
<div><h3>Ready to automate the right things?</h3></div>
-<a href="/contact/" style="text-decoration:none;"><div class="cta-btn">Get in touch →</div></a>
+<a href="/contact/" style="text-decoration:none;"><div class="cta-btn">Get in touch →</div></a>
</div>
<div class="footer">
<div>
<span class="label" style="color: var(--color-terra);">Inquiries</span><h2><a href="mailto:innovation@ajared.ca">innovation@<span style="color: #a1665e;">aja</span>red.ca</a></h2>
</div>
<div style="text-align:right; display:flex; flex-direction:column; justify-content:center; align-items:flex-end; gap:0.5rem;">
-<p>© 2026 Ajared Research Inc.</p>
+<p>© 2026 Ajared Research Inc.</p>
<span class="label">R<span style="color:#a1665e">e</span>s<span style="color:#a1665e">ea</span>rch,
<span style="color:#a1665e">e</span>d<span style="color:#a1665e">u</span>c<span style="color:#a1665e">a</span>t<span style="color:#a1665e">e</span>, d<span style="color:#a1665e">e</span>s<span style="color:#a1665e">i</span>gn.</span>
</div>
diff --git a/capabilities/004-data-strategy.html b/capabilities/004-data-strategy.html
index c55e5d4..ca22d4f 100644
--- a/capabilities/004-data-strategy.html
+++ b/capabilities/004-data-strategy.html
@@ -1,6 +1,7 @@
-<!DOCTYPE html SYSTEM "about:legacy-compat">
+<!DOCTYPE html>
<html lang="en">
<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -8,7 +9,7 @@
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon-32x32.png">
-<title>Data &amp; AI Strategy — Ajared Research Inc</title>
+<title>Data &amp; AI Strategy — Ajared Research Inc</title>
<style>
/* iA Writer Quattro S Font */
@font-face {
@@ -58,7 +59,7 @@
box-sizing: border-box;
margin: 0;
padding: 0;
- cursor: crosshair;
+ cursor: pointer;
}
body {
@@ -235,7 +236,7 @@
font-size: 1rem;
}
- /* Change 11: Nav hover — terra cotta */
+ /* Change 11: Nav hover — terra cotta */
nav a:hover {
text-decoration: underline;
color: var(--color-terra);
@@ -291,7 +292,7 @@
pointer-events: none;
}
- /* Change 10: Secondary ripple rings — subtle terra cotta tint */
+ /* Change 10: Secondary ripple rings — subtle terra cotta tint */
.ripple-secondary {
position: absolute;
border-radius: 50%;
@@ -351,7 +352,7 @@
margin-bottom: 0.5rem;
}
- /* Arrow — Change 3: terra cotta by default */
+ /* Arrow — Change 3: terra cotta by default */
.arrow-icon {
width: 40px;
height: 1px;
@@ -384,7 +385,7 @@
border-right-color: var(--color-bg);
}
- /* Stretched link — entire card is clickable */
+ /* Stretched link — entire card is clickable */
.service-card > a {
position: static;
}
@@ -394,7 +395,7 @@
inset: 0;
}
- /* Button — Change 1: terra cotta border + text, fills on hover */
+ /* Button — Change 1: terra cotta border + text, fills on hover */
.btn {
display: inline-block;
margin-top: 2rem;
@@ -459,7 +460,7 @@
max-width: none;
}
- /* Offer card tracks (card 03 — Get Started with AI) */
+ /* Offer card tracks (card 03 — Get Started with AI) */
.track-list {
margin-top: 1rem;
display: flex;
@@ -619,7 +620,7 @@
.capability-row[data-cap="004"] { --cap-accent: #7a6050; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.capability-row { display: grid; grid-template-columns: 80px 2fr 1fr 60px; border-bottom: var(--grid-line); align-items: center; padding: 0; transition: background 0.3s, color 0.3s; overflow: hidden; }
- .capability-header { display: grid; grid-template-columns: 80px 2fr 1fr 60px; grid-column: 1 / -1; padding: 2rem; align-items: center; transition: background 0.3s, color 0.3s; cursor: pointer; color: inherit; }
+ .capability-header { display: grid; grid-template-columns: 80px 2fr 1fr 60px; grid-column: 1 / -1; padding: 2rem; align-items: center; transition: background 0.3s, color 0.3s; cursor: crosshair; color: inherit; }
.capability-header:hover { background: var(--color-ink); }
.capability-header:hover .cap-number, .capability-header:hover .cap-title, .capability-header:hover .cap-subtitle, .capability-header:hover .cap-toggle { color: var(--color-bg); }