-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1267 lines (1095 loc) · 49.1 KB
/
index.html
File metadata and controls
1267 lines (1095 loc) · 49.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
**---<!DOCTYPE html>
<!--
═══════════════════════════════════════════════════════════════════════════
VeritasCore™ Official Website with Integrated AI
Copyright © 2026 DAPR (Dale Associate Public Relations). All Rights Reserved.
PROPRIETARY AND CONFIDENTIAL
Contact: dapr.team@gmail.com
═══════════════════════════════════════════════════════════════════════════
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VeritasCore™ - Autonomous Self-Modifying AI Agent</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Rajdhani:wght@400;500;600;700&family=Exo+2:wght@300;400;600;800&display=swap');
:root {
--navy: #050e1a;
--navy2: #0a1628;
--navy3: #0f1f38;
--card: #0d1b2e;
--teal: #00d4c8;
--teal2: #00a89e;
--teal3: rgba(0,212,200,0.12);
--gold: #f0b429;
--gold2: rgba(240,180,41,0.15);
--text: #c8d8e8;
-3.
.-mono: 'Share Tech Mono', monospace;
--head: 'Rajdhani', sans-serif;
--body: 'Exo 2', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: var(--navy);
color: var(--text);
font-family: var(--body);
line-height: 1.6;
overflow-x: hidden;
}
/* Scanlines effect */
body::before {
content: '';
position: fixed;
inset: 0;
background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
pointer-events: none;
z-index: 1000;
}
/* Grid background */
body::after {
content: '';
position: fixed;
inset: 0;
background-image:
linear-gradient(rgba(0,212,200,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,212,200,0.03) 1px, transparent 1px);
background-size: 40px 40px;
pointer-events: none;
z-index: 0;
}
/* Header */
header {
position: sticky;
top: 0;
z-index: 100;
background: rgba(10,22,40,0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(0,212,200,0.2);
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
gap: 12px;
}
.logo-icon {
width: 40px;
height: 40px;
border: 2px solid var(--teal);
display: flex;
align-items: center;
justify-content: center;
clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
background: var(--teal3);
animation: hexPulse 3s ease-in-out infinite;
}
@keyframes hexPulse {
0%, 100% { box-shadow: 0 0 10px var(--teal); }
50% { box-shadow: 0 0 25px var(--teal), 0 0 50px rgba(0,212,200,0.3); }
}
.logo-text {
font-family: var(--head);
font-size: 24px;
font-weight: 700;
color: #fff;
letter-spacing: 2px;
}
.logo-sub {
font-family: var(--mono);
font-size: 10px;
color: var(--teal);
letter-spacing: 3px;
}
nav {
display: flex;
gap: 2rem;
}
nav a {
color: var(--text);
text-decoration: none;
font-family: var(--head);
font-weight: 500;
transition: color 0.3s;
position: relative;
}
nav a:hover {
color: var(--teal);
}
nav a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--teal);
transition: width 0.3s;
}
nav a:hover::after {
width: 100%;
}
/* Hero Section */
.hero {
position: relative;
z-index: 1;
padding: 6rem 2rem 4rem;
text-align: center;
max-width: 1200px;
margin: 0 auto;
}
.hero h1 {
font-family: var(--head);
font-size: 4rem;
font-weight: 800;
color: #fff;
margin-bottom: 1rem;
text-transform: uppercase;
letter-spacing: 4px;
}
.hero h1 .tm {
font-size: 2rem;
vertical-align: super;
color: var(--teal);
}
.hero .tagline {
font-size: 1.5rem;
color: var(--teal);
margin-bottom: 2rem;
font-weight: 300;
}
.hero p {
font-size: 1.1rem;
max-width: 800px;
margin: 0 auto 3rem;
opacity: 0.9;
}
.cta-buttons {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
}
.btn {
padding: 1rem 2.5rem;
font-family: var(--head);
font-size: 1.1rem;
font-weight: 600;
text-decoration: none;
border: none;
cursor: pointer;
transition: all 0.3s;
text-transform: uppercase;
letter-spacing: 1px;
}
.btn-primary {
background: var(--teal);
color: var(--navy);
box-shadow: 0 0 20px rgba(0,212,200,0.4);
}
.btn-primary:hover {
background: var(--teal2);
box-shadow: 0 0 30px rgba(0,212,200,0.6);
transform: translateY(-2px);
}
.btn-secondary {
background: transparent;
color: var(--teal);
border: 2px solid var(--teal);
}
.btn-secondary:hover {
background: var(--teal3);
transform: translateY(-2px);
}
/* Features Section */
.features {
position: relative;
z-index: 1;
max-width: 1200px;
margin: 4rem auto;
padding: 2rem;
}
.features h2 {
font-family: var(--head);
font-size: 2.5rem;
text-align: center;
margin-bottom: 3rem;
color: #fff;
text-transform: uppercase;
letter-spacing: 3px;
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.feature-card {
background: var(--card);
border: 1px solid rgba(0,212,200,0.2);
padding: 2rem;
border-radius: 8px;
transition: all 0.3s;
}
.feature-card:hover {
border-color: var(--teal);
box-shadow: 0 0 30px rgba(0,212,200,0.2);
transform: translateY(-5px);
}
.feature-card h3 {
font-family: var(--head);
font-size: 1.5rem;
color: var(--teal);
margin-bottom: 1rem;
}
.feature-card p {
opacity: 0.9;
}
/* AI Chat Section */
.ai-chat-section {
position: relative;
z-index: 1;
max-width: 1000px;
margin: 4rem auto;
padding: 2rem;
}
.ai-chat-section h2 {
font-family: var(--head);
font-size: 2.5rem;
text-align: center;
margin-bottom: 1rem;
color: #fff;
text-transform: uppercase;
letter-spacing: 3px;
}
.ai-chat-section .subtitle {
text-align: center;
color: var(--teal);
margin-bottom: 2rem;
font-size: 1.1rem;
}
.chat-container {
background: var(--card);
border: 1px solid rgba(0,212,200,0.3);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 0 40px rgba(0,212,200,0.1);
}
.chat-header {
background: var(--navy2);
padding: 1rem 1.5rem;
border-bottom: 1px solid rgba(0,212,200,0.2);
display: flex;
justify-content: space-between;
align-items: center;
}
.chat-status {
display: flex;
align-items: center;
gap: 0.5rem;
font-family: var(--mono);
font-size: 0.9rem;
}
.status-dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: var(--teal);
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.chat-config {
font-family: var(--mono);
font-size: 0.85rem;
color: var(--teal);
}
.chat-messages {
height: 400px;
overflow-y: auto;
padding: 1.5rem;
display: flex;
flex-direction: column;
gap: 1rem;
}
.message {
display: flex;
gap: 1rem;
animation: fadeIn 0.3s;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.message.user {
flex-direction: row-reverse;
}
.message-avatar {
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
flex-shrink: 0;
}
.message.ai .message-avatar {
background: var(--teal3);
border: 2px solid var(--teal);
color: var(--teal);
}
.message.user .message-avatar {
background: var(--gold2);
border: 2px solid var(--gold);
color: var(--gold);
}
.message-content {
background: var(--navy2);
padding: 1rem;
border-radius: 8px;
max-width: 70%;
border: 1px solid rgba(0,212,200,0.1);
}
.message.user .message-content {
background: var(--navy3);
border-color: rgba(240,180,41,0.2);
}
.message-content p {
margin: 0;
}
.message-time {
font-family: var(--mono);
font-size: 0.75rem;
opacity: 0.5;
margin-top: 0.5rem;
}
.chat-input-area {
padding: 1.5rem;
border-top: 1px solid rgba(0,212,200,0.2);
background: var(--navy2);
}
.chat-input-container {
display: flex;
gap: 1rem;
}
#chatInput {
flex: 1;
background: var(--navy3);
border: 1px solid rgba(0,212,200,0.3);
color: var(--text);
padding: 1rem;
border-radius: 8px;
font-family: var(--body);
font-size: 1rem;
}
#chatInput:focus {
outline: none;
border-color: var(--teal);
box-shadow: 0 0 10px rgba(0,212,200,0.2);
}
#sendBtn {
padding: 1rem 2rem;
background: var(--teal);
color: var(--navy);
border: none;
border-radius: 8px;
font-family: var(--head);
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
}
#sendBtn:hover {
background: var(--teal2);
box-shadow: 0 0 20px rgba(0,212,200,0.4);
}
#sendBtn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.ai-config-panel {
margin-top: 1rem;
padding: 1rem;
background: var(--navy3);
border-radius: 8px;
border: 1px solid rgba(0,212,200,0.2);
}
.config-row {
display: flex;
gap: 1rem;
margin-bottom: 1rem;
flex-wrap: wrap;
}
.config-item {
flex: 1;
min-width: 200px;
}
.config-item label {
display: block;
font-family: var(--mono);
font-size: 0.85rem;
color: var(--teal);
margin-bottom: 0.5rem;
}
.config-item input,
.config-item select {
width: 100%;
background: var(--navy2);
border: 1px solid rgba(0,212,200,0.3);
color: var(--text);
padding: 0.5rem;
border-radius: 4px;
font-family: var(--mono);
}
/* Footer */
footer {
position: relative;
z-index: 1;
text-align: center;
padding: 3rem 2rem;
margin-top: 4rem;
border-top: 1px solid rgba(0,212,200,0.2);
}
footer p {
font-family: var(--mono);
font-size: 0.9rem;
opacity: 0.7;
}
.copyright {
margin-top: 1rem;
font-size: 0.85rem;
}
/* Scrollbar */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: var(--navy2);
}
::-webkit-scrollbar-thumb {
background: var(--teal);
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--teal2);
}
</style>
<!-- SEO Meta Tags -->
<meta name="description" content="VeritasCore - First-to-market cryptographically verified autonomous AI agent. Air-gapped deployment for defense, finance, healthcare. 6.8MB footprint, BYOLLM architecture.">
<meta name="keywords" content="autonomous AI, self-modifying AI, cryptographic verification, air-gapped AI, compliance AI, FedRAMP, HIPAA, FINRA, defense AI, edge AI">
<meta name="author" content="DAPR (Dale Associate Public Relations)">
<meta name="robots" content="index, follow">
<!-- Open Graph / Social Media -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://dapr85.github.io/Dapr.Team/">
<meta property="og:title" content="VeritasCore™ - Autonomous Self-Modifying AI Agent">
<meta property="og:description" content="First-to-market cryptographically verified autonomous AI with self-modification capability. Designed for air-gapped deployment and regulated industries.">
<meta property="og:image" content="https://dapr85.github.io/Dapr.Team/social-preview.png">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://dapr85.github.io/Dapr.Team/">
<meta name="twitter:title" content="VeritasCore™ - Autonomous Self-Modifying AI Agent">
<meta name="twitter:description" content="First-to-market cryptographically verified autonomous AI with self-modification capability.">
<meta name="twitter:image" content="https://dapr85.github.io/Dapr.Team/social-preview.png">
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300d4c8'><path d='M12 2L2 7v10c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V7l-10-5z'/></svg>">
<body>
<header>
<div class="logo">
<div class="logo-icon">
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
<path d="M12 2L2 7v10c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V7l-10-5z"/>
</svg>
</div>
<div>
<div class="logo-text">VERITASCORE<span class="tm">™</span></div>
<div class="logo-sub">AUTONOMOUS AI AGENT</div>
</div>
</div>
<nav>
<a href="#features">Features</a>
<a href="control-panel.html">Industries</a>
<a href="#pricing">Pricing</a>
<a href="#faq">FAQ</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section class="hero">
<h1>VERITASCORE<span class="tm">™</span></h1>
<div class="tagline">Autonomous Self-Modifying AI Agent</div>
<p>
The world's first cryptographically verified autonomous AI agent with self-modification capability.
Designed for air-gapped deployment, edge computing, and regulated industries requiring provable integrity.
</p>
<div class="cta-buttons">
<a href="#ai-demo" class="btn btn-primary">Try AI Demo</a>
<a href="control-panel.html" class="btn btn-secondary">View Control Panel</a>
<a href="#features" class="btn btn-secondary">Learn More</a>
</div>
</section>
<section id="features" class="features">
<h2>Unique Capabilities</h2>
<div class="feature-grid">
<div class="feature-card" onclick="window.location.href='cryptographic-integrity.html'" style="cursor: pointer;">
<h3>🔐 Cryptographic Integrity</h3>
<p>First-to-market cryptographically verified self-modification...</p>
<div style="margin-top: 1rem; color: var(--teal); font-weight: 600;">→ Learn How It Works</div>
</div>
<div class="feature-card" onclick="window.location.href='ultra-lightweight.html'" style="cursor: pointer;">
<h3>⚡ Ultra-Lightweight</h3>
<p>6.8MB RAM footprint, edge deployment,PLC compattibility.</p>
<div style="margin-top: 1rem; color: var(--teal); font-weight: 600;">→ See Technical Details</div>
</div>
<div class="feature-card" onclick="window.location.href='air-gapped.html'" style="cursor: pointer;">
<h3>🛡️ Air-Gapped Operation</h3>
<p>Offline operation, zero dependencies, data sovereignty.</p>
<div style="margin-top: 1rem; color: var(--teal); font-weight: 600;">→ See Sovereign AI </div>
</div>
<div class="feature-card" onclick="window.location.href='versioned-rollback.html'" style="cursor: pointer;">
<h3>🔄 Versioned Rollback</h3>
<p>Every modification is instantly reversible.</p>
<div style="margin-top: 1rem; color: var(--teal); font-weight: 600;">→ See Self-healing </div>
</div>
<div class="feature-card" onclick="window.location.href='byollm-architecture.html'" style="cursor: pointer;">
<h3>🎯 BYOLLM Architecture</h3>
<p>Bring Your Own LLM, 90% margins, vender independence.</p>
<div style="margin-top: 1rem; color: var(--teal); font-weight: 600;">→ See 90%+ Gross margins</div>
</div>
<div class="feature-card" onclick="window.location.href='enterprise-ready.html'" style="cursor: pointer;">
<h3>📊 Enterprise Ready</h3>
<p>Compliance, security, scalability.</p>
<div style="margin-top: 1rem; color: var(--teal); font-weight: 600;">→ See Critical infrastructure</div>
</div>
</div>
</section>
<section id="pricing" class="features">
<h2>Pricing & Licensing</h2>
<p style="text-align: center; max-width: 800px; margin: 0 auto 3rem; opacity: 0.9;">
Flexible pricing from free community edition to enterprise deployment. BYOLLM architecture means 90%+ gross margins - no inference costs.
</p>
<div class="pricing-grid" style="display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1400px; margin: 0 auto;">
<!-- Community Tier -->
<div class="pricing-card" style="background: var(--card); border: 1px solid rgba(0,212,200,0.2); padding: 2rem; border-radius: 8px; text-align: center;">
<h3 style="font-family: var(--head); font-size: 1.8rem; color: var(--teal); margin-bottom: 1rem;">Community</h3>
<div style="font-family: var(--mono); font-size: 3rem; color: #fff; margin: 1rem 0;">FREE</div>
<p style="opacity: 0.8; margin-bottom: 2rem;">Open-source core for developers and experimenters</p>
<ul style="list-style: none; text-align: left; margin-bottom: 2rem;">
<li style="margin: 0.5rem 0;">✓ Core agent framework</li>
<li style="margin: 0.5rem 0;">✓ Community support</li>
<li style="margin: 0.5rem 0;">✓ 6.8MB footprint</li>
<li style="margin: 0.5rem 0;">✓ Local AI integration</li>
</ul>
<a href="https://github.com/dapr85/Dapr.Team" class="btn btn-secondary" style="display: inline-block; padding: 0.8rem 2rem; background: transparent; color: var(--teal); border: 2px solid var(--teal); text-decoration: none; border-radius: 4px;">Get Started</a>
</div>
<!-- Pro Tier -->
<div class="pricing-card" style="background: var(--card); border: 1px solid rgba(0,212,200,0.2); padding: 2rem; border-radius: 8px; text-align: center;">
<h3 style="font-family: var(--head); font-size: 1.8rem; color: var(--teal); margin-bottom: 1rem;">Pro</h3>
<div style="font-family: var(--mono); font-size: 3rem; color: #fff; margin: 1rem 0;">$39-49<span style="font-size: 1.2rem; opacity: 0.6;">/mo</span></div>
<p style="opacity: 0.8; margin-bottom: 2rem;">For individual developers</p>
<ul style="list-style: none; text-align: left; margin-bottom: 2rem;">
<li style="margin: 0.5rem 0;">✓ Everything in Community</li>
<li style="margin: 0.5rem 0;">✓ Dashboard hosting</li>
<li style="margin: 0.5rem 0;">✓ Automatic updates</li>
<li style="margin: 0.5rem 0;">✓ Managed backup</li>
<li style="margin: 0.5rem 0;">✓ Email support (48hr)</li>
</ul>
<a href="mailto:dapr.team@gmail.com?subject=Pro License Inquiry" class="btn btn-primary" style="display: inline-block; padding: 0.8rem 2rem; background: var(--teal); color: var(--navy); text-decoration: none; border-radius: 4px;">Contact Sales</a>
</div>
<!-- Team Tier -->
<div class="pricing-card" style="background: var(--card); border: 1px solid rgba(0,212,200,0.2); padding: 2rem; border-radius: 8px; text-align: center;">
<h3 style="font-family: var(--head); font-size: 1.8rem; color: var(--teal); margin-bottom: 1rem;">Team</h3>
<div style="font-family: var(--mono); font-size: 3rem; color: #fff; margin: 1rem 0;">$199-399<span style="font-size: 1.2rem; opacity: 0.6;">/mo</span></div>
<p style="opacity: 0.8; margin-bottom: 2rem;">For engineering teams</p>
<ul style="list-style: none; text-align: left; margin-bottom: 2rem;">
<li style="margin: 0.5rem 0;">✓ Everything in Pro</li>
<li style="margin: 0.5rem 0;">✓ Multi-agent orchestration</li>
<li style="margin: 0.5rem 0;">✓ Shared configurations</li>
<li style="margin: 0.5rem 0;">✓ Priority support (24hr)</li>
<li style="margin: 0.5rem 0;">✓ Dedicated account manager</li>
</ul>
<a href="mailto:dapr.team@gmail.com?subject=Team License Inquiry" class="btn btn-primary" style="display: inline-block; padding: 0.8rem 2rem; background: var(--teal); color: var(--navy); text-decoration: none; border-radius: 4px;">Contact Sales</a>
</div>
<!-- Enterprise Tier -->
<div class="pricing-card" style="background: var(--card); border: 2px solid var(--teal); padding: 2rem; border-radius: 8px; text-align: center; position: relative;">
<div style="position: absolute; top: -15px; right: 20px; background: var(--gold); color: var(--navy); padding: 0.3rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 700;">POPULAR</div>
<h3 style="font-family: var(--head); font-size: 1.8rem; color: var(--teal); margin-bottom: 1rem;">Enterprise</h3>
<div style="font-family: var(--mono); font-size: 3rem; color: #fff; margin: 1rem 0;">$2K-10K<span style="font-size: 1.2rem; opacity: 0.6;">/mo</span></div>
<p style="opacity: 0.8; margin-bottom: 2rem;">For regulated organizations</p>
<ul style="list-style: none; text-align: left; margin-bottom: 2rem;">
<li style="margin: 0.5rem 0;">✓ Everything in Team</li>
<li style="margin: 0.5rem 0;">✓ On-premise/VPC deployment</li>
<li style="margin: 0.5rem 0;">✓ SSO/RBAC integration</li>
<li style="margin: 0.5rem 0;">✓ Service Level Agreement</li>
<li style="margin: 0.5rem 0;">✓ Audit logging & compliance</li>
<li style="margin: 0.5rem 0;">✓ Custom integrations</li>
<li style="margin: 0.5rem 0;">✓ 24/7 support (4hr response)</li>
</ul>
<a href="mailto:dapr.team@gmail.com?subject=Enterprise License Inquiry" class="btn btn-primary" style="display: inline-block; padding: 0.8rem 2rem; background: var(--teal); color: var(--navy); text-decoration: none; border-radius: 4px;">Contact Sales</a>
</div>
<!-- Government Tier -->
<div class="pricing-card" style="background: var(--card); border: 1px solid rgba(240,180,41,0.3); padding: 2rem; border-radius: 8px; text-align: center;">
<h3 style="font-family: var(--head); font-size: 1.8rem; color: var(--gold); margin-bottom: 1rem;">Government/Defense</h3>
<div style="font-family: var(--mono); font-size: 2.5rem; color: #fff; margin: 1rem 0;">$200K-2M+<span style="font-size: 1.2rem; opacity: 0.6;">/yr</span></div>
<p style="opacity: 0.8; margin-bottom: 2rem;">For federal agencies & defense contractors</p>
<ul style="list-style: none; text-align: left; margin-bottom: 2rem;">
<li style="margin: 0.5rem 0;">✓ Air-gapped certified deployment</li>
<li style="margin: 0.5rem 0;">✓ FedRAMP/CMMC compliance</li>
<li style="margin: 0.5rem 0;">✓ Dedicated support team</li>
<li style="margin: 0.5rem 0;">✓ Custom security hardening</li>
<li style="margin: 0.5rem 0;">✓ Source code escrow</li>
<li style="margin: 0.5rem 0;">✓ On-site training</li>
</ul>
<a href="mailto:dapr.team@gmail.com?subject=Government License Inquiry" class="btn btn-primary" style="display: inline-block; padding: 0.8rem 2rem; background: var(--gold); color: var(--navy); text-decoration: none; border-radius: 4px;">Request Quote</a>
</div>
<!-- Edge/IoT Tier -->
<div class="pricing-card" style="background: var(--card); border: 1px solid rgba(0,212,200,0.2); padding: 2rem; border-radius: 8px; text-align: center;">
<h3 style="font-family: var(--head); font-size: 1.8rem; color: var(--teal); margin-bottom: 1rem;">Edge/IoT Volume</h3>
<div style="font-family: var(--mono); font-size: 3rem; color: #fff; margin: 1rem 0;">$5-50<span style="font-size: 1.2rem; opacity: 0.6;">/device/yr</span></div>
<p style="opacity: 0.8; margin-bottom: 2rem;">For mass deployments</p>
<ul style="list-style: none; text-align: left; margin-bottom: 2rem;">
<li style="margin: 0.5rem 0;">✓ Per-device licensing</li>
<li style="margin: 0.5rem 0;">✓ Industrial, agricultural, infra</li>
<li style="margin: 0.5rem 0;">✓ Annual volume discounts</li>
<li style="margin: 0.5rem 0;">✓ Deployment management tools</li>
<li style="margin: 0.5rem 0;">✓ Technical support</li>
</ul>
<a href="mailto:dapr.team@gmail.com?subject=Volume License Inquiry" class="btn btn-secondary" style="display: inline-block; padding: 0.8rem 2rem; background: transparent; color: var(--teal); border: 2px solid var(--teal); text-decoration: none; border-radius: 4px;">Contact Sales</a>
</div>
</div>
</section>
<section id="contact" class="features">
<h2>Get In Touch</h2>
<p style="text-align: center; max-width: 800px; margin: 0 auto 3rem; opacity: 0.9;">
Ready to deploy VeritasCore in your organization? Have questions about compliance, pricing, or technical capabilities? We're here to help.
</p>
<div style="max-width: 800px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;">
<!-- Contact Info -->
<div>
<h3 style="font-family: var(--head); font-size: 1.5rem; color: var(--teal); margin-bottom: 1.5rem;">Contact Information</h3>
<div style="margin-bottom: 1.5rem;">
<div style="font-family: var(--mono); font-size: 0.9rem; color: var(--teal); margin-bottom: 0.5rem;">EMAIL</div>
<a href="mailto:dapr.team@gmail.com" style="color: #fff; text-decoration: none; font-size: 1.1rem;">dapr.team@gmail.com</a>
</div>
<div style="margin-bottom: 1.5rem;">
<div style="font-family: var(--mono); font-size: 0.9rem; color: var(--teal); margin-bottom: 0.5rem;">LOCATION</div>
<div style="font-size: 1.1rem;">Calgary, Alberta, Canada</div>
</div>
<div style="margin-bottom: 1.5rem;">
<div style="font-family: var(--mono); font-size: 0.9rem; color: var(--teal); margin-bottom: 0.5rem;">GITHUB</div>
<a href="https://github.com/dapr85/Dapr.Team" style="color: #fff; text-decoration: none; font-size: 1.1rem;">github.com/dapr85/Dapr.Team</a>
</div>
<div style="margin-top: 2rem;">
<h4 style="font-family: var(--head); font-size: 1.2rem; color: var(--teal); margin-bottom: 1rem;">Business Inquiries</h4>
<ul style="list-style: none; padding: 0;">
<li style="margin: 0.5rem 0;">• Enterprise licensing</li>
<li style="margin: 0.5rem 0;">• Government contracts</li>
<li style="margin: 0.5rem 0;">• Partnership opportunities</li>
<li style="margin: 0.5rem 0;">• Investment discussions</li>
</ul>
</div>
</div>
<!-- Quick Contact Form -->
<div>
<h3 style="font-family: var(--head); font-size: 1.5rem; color: var(--teal); margin-bottom: 1.5rem;">Quick Message</h3>
<form action='https://formspree.io/f/xvzwbqay' method="POST" style="display: flex; flex-direction: column; gap: 1rem;">
<input type="text" name="name" placeholder="Your Name" required style="background: var(--navy3); border: 1px solid rgba(0,212,200,0.3); color: var(--text); padding: 1rem; border-radius: 4px; font-family: var(--body);">
<input type="email" name="email" placeholder="Your Email" required style="background: var(--navy3); border: 1px solid rgba(0,212,200,0.3); color: var(--text); padding: 1rem; border-radius: 4px; font-family: var(--body);">
<select name="inquiry-type" required style="background: var(--navy3); border: 1px solid rgba(0,212,200,0.3); color: var(--text); padding: 1rem; border-radius: 4px; font-family: var(--body);">
<option value="">Select Inquiry Type</option>
<option value="enterprise">Enterprise Licensing</option>
<option value="government">Government/Defense</option>
<option value="technical">Technical Questions</option>
<option value="partnership">Partnership</option>
<option value="other">Other</option>
</select>
<textarea name="message" placeholder="Your Message" rows="5" required style="background: var(--navy3); border: 1px solid rgba(0,212,200,0.3); color: var(--text); padding: 1rem; border-radius: 4px; font-family: var(--body); resize: vertical;"></textarea>
<button type="submit" style="background: var(--teal); color: var(--navy); border: none; padding: 1rem 2rem; border-radius: 4px; font-family: var(--head); font-size: 1.1rem; font-weight: 600; cursor: pointer;">Send Message</button>
</form>
<p style="font-size: 0.85rem; opacity: 0.6; margin-top: 1rem;">
For immediate assistance, email us directly at dapr.team@gmail.com
</p>
</div>
</div>
</section>
<section id="about" class="features">
<h2>About DAPR</h2>
<div style="max-width: 900px; margin: 0 auto;">
<p style="font-size: 1.2rem; line-height: 1.8; margin-bottom: 2rem; text-align: center;">
DAPR (Dale Associate Public Relations) is a technology firm specializing in autonomous AI systems for regulated industries. We're building the future of verifiable AI — systems that don't just work, but prove they work.
</p>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem;">
<div style="text-align: center;">
<div style="font-family: var(--mono); font-size: 3rem; color: var(--teal); margin-bottom: 0.5rem;">2026</div>
<div style="opacity: 0.8;">Founded</div>
</div>
<div style="text-align: center;">
<div style="font-family: var(--mono); font-size: 3rem; color: var(--teal); margin-bottom: 0.5rem;">$50B+</div>
<div style="opacity: 0.8;">Target Market by 2030</div>
</div>
<div style="text-align: center;">
<div style="font-family: var(--mono); font-size: 3rem; color: var(--teal); margin-bottom: 0.5rem;">6.8MB</div>
<div style="opacity: 0.8;">Ultra-Lightweight Footprint</div>
</div>
<div style="text-align: center;">
<div style="font-family: var(--mono); font-size: 3rem; color: var(--teal); margin-bottom: 0.5rem;">FIRST</div>
<div style="opacity: 0.8;">Cryptographically Verified AI</div>
</div>
</div>
<div style="margin-top: 4rem; padding: 2rem; background: var(--card); border: 1px solid rgba(0,212,200,0.2); border-radius: 8px;">
<h3 style="font-family: var(--head); font-size: 1.8rem; color: var(--teal); margin-bottom: 1rem; text-align: center;">Our Mission</h3>
<p style="font-size: 1.1rem; line-height: 1.8; text-align: center;">
To deliver autonomous AI systems with provable integrity for the world's most demanding environments — where lives, money, and critical infrastructure depend on verifiable correctness.
</p>
</div>
</div>
</section>
<section id="faq" class="features">
<h2>Frequently Asked Questions</h2>
<div style="max-width: 900px; margin: 0 auto;">
<div class="faq-item" style="margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(0,212,200,0.1);">
<h3 style="font-family: var(--head); font-size: 1.3rem; color: var(--teal); margin-bottom: 1rem;">What makes VeritasCore different from other AI agents?</h3>
<p style="line-height: 1.8; opacity: 0.9;">
VeritasCore is the first commercial AI agent with cryptographically verified self-modification. Every code change is mathematically signed and versioned, with instant rollback capability. This isn't just a feature — it's the foundation that enables deployment in regulated industries like defense, finance, and healthcare where provable integrity is mandatory.
</p>
</div>
<div class="faq-item" style="margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(0,212,200,0.1);">
<h3 style="font-family: var(--head); font-size: 1.3rem; color: var(--teal); margin-bottom: 1rem;">Can it really run on 6.8MB of RAM?</h3>
<p style="line-height: 1.8; opacity: 0.9;">
Yes. VeritasCore's ultra-lightweight architecture enables deployment on edge devices, industrial PLCs, and tactical field equipment where competitors requiring 2-8GB cannot operate. This is crucial for edge AI in manufacturing, critical infrastructure, and defense applications.
</p>
</div>
<div class="faq-item" style="margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(0,212,200,0.1);">
<h3 style="font-family: var(--head); font-size: 1.3rem; color: var(--teal); margin-bottom: 1rem;">What does air-gapped deployment mean?</h3>
<p style="line-height: 1.8; opacity: 0.9;">
Air-gapped means complete offline operation with zero external network dependencies. VeritasCore can run in classified SCIFs, financial institution vaults, medical facilities, and critical infrastructure where internet connectivity is prohibited or unavailable. The BYOLLM architecture means you bring your own local AI model — no cloud API required.
</p>
</div>
<div class="faq-item" style="margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(0,212,200,0.1);">
<h3 style="font-family: var(--head); font-size: 1.3rem; color: var(--teal); margin-bottom: 1rem;">What compliance frameworks does VeritasCore support?</h3>
<p style="line-height: 1.8; opacity: 0.9;">
VeritasCore natively satisfies: EU AI Act Article 12 (automatic logging), FINRA Rule 4511 (reconstructable activity chains), HIPAA Security Rule (audit and integrity controls), SOC 2 Type II, FedRAMP requirements, FDA PCCP (Predetermined Change Control Plan), and CMMC Level 2+ (with RBAC module). The cryptographic audit trail is designed to meet regulatory requirements across all major frameworks.
</p>
</div>
<div class="faq-item" style="margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(0,212,200,0.1);">
<h3 style="font-family: var(--head); font-size: 1.3rem; color: var(--teal); margin-bottom: 1rem;">What is BYOLLM and why does it matter?</h3>
<p style="line-height: 1.8; opacity: 0.9;">
BYOLLM (Bring Your Own LLM) means you control which AI model runs — whether that's Ollama locally, Claude API, OpenAI, or any other provider. This eliminates vendor lock-in, keeps inference costs under your control, and achieves 90%+ gross margins since we're not paying for AI API calls on your behalf. You own your AI stack completely.
</p>
</div>
<div class="faq-item" style="margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(0,212,200,0.1);">
<h3 style="font-family: var(--head); font-size: 1.3rem; color: var(--teal); margin-bottom: 1rem;">How do I get started?</h3>
<p style="line-height: 1.8; opacity: 0.9;">
For developers: Start with our free Community Edition on GitHub. For organizations: Contact us for a demo and compliance assessment. We'll help you understand how VeritasCore maps to your specific regulatory requirements and deployment environment.
</p>
</div>
<div class="faq-item" style="margin-bottom: 2rem;">
<h3 style="font-family: var(--head); font-size: 1.3rem; color: var(--teal); margin-bottom: 1rem;">What support options are available?</h3>
<p style="line-height: 1.8; opacity: 0.9;">
Community Edition: Community support via GitHub. Pro: Email support with 48-hour response. Team: Priority support with 24-hour response and dedicated account manager. Enterprise: 24/7 support with 4-hour response SLA. Government/Defense: Dedicated support team with custom SLA.
</p>
</div>
</div>
</section>
<section id="ai-demo" class="ai-chat-section">
<h2>AI Assistant Demo</h2>
<p class="subtitle">Experience VeritasCore's AI capabilities - completely running in your browser</p>
<div class="chat-container">
<div class="chat-header">
<div class="chat-status">
<div class="status-dot"></div>
<span id="statusText">Local AI Ready</span>
</div>
<div class="chat-config">
<span id="modelInfo">Browser-Based AI</span>
</div>
</div>
<div class="chat-messages" id="chatMessages">
<div class="message ai">
<div class="message-avatar">AI</div>
<div class="message-content">
<p>👋 Hello! I'm VeritasCore AI Assistant. I'm running entirely in your browser - no external servers, complete privacy.</p>
<p style="margin-top: 0.5rem;">Ask me about:</p>
<p>• VeritasCore's capabilities<br>
• Deployment options<br>
• Pricing and licensing<br>
• Technical architecture<br>
• Compliance features</p>
<div class="message-time" id="initialTime"></div>
</div>
</div>
</div>
<div class="chat-input-area">
<div class="ai-config-panel">
<div class="config-row">
<div class="config-item">
<label>AI Backend:</label>
<select id="aiBackend">
<option value="local">Local (Browser-Based)</option>
<option value="ollama">Ollama (http://localhost:11434)</option>
<option value="custom">Custom API Endpoint</option>
</select>
</div>
<div class="config-item">
<label>Model:</label>
<input type="text" id="modelName" value="Browser AI" placeholder="e.g., llama3, mistral">
</div>
<div class="config-item" style="display: none;" id="customEndpointContainer">
<label>API Endpoint:</label>
<input type="text" id="customEndpoint" placeholder="http://localhost:8000/api">
</div>
</div>
</div>
<div class="chat-input-container">
<input
type="text"
id="chatInput"
placeholder="Type your message..."
onkeypress="if(event.key === 'Enter') sendMessage()"
>
<button id="sendBtn" onclick="sendMessage()">SEND</button>
</div>
</div>
</div>
</section>
<footer>
<div style="max-width: 1200px; margin: 0 auto; padding: 4rem 2rem;">
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem;">
<!-- Company Info -->
<div>
<div style="display: flex; align-items: center; gap: 12px; margin-bottom: 1rem;">
<div style="width: 40px; height: 40px; border: 2px solid var(--teal); display: flex; align-items: center; justify-content: center; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); background: rgba(0,212,200,0.1);">
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor" style="fill: var(--teal);">
<path d="M12 2L2 7v10c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V7l-10-5z"/>
</svg>
</div>