-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguardian.html
More file actions
1004 lines (860 loc) · 31.8 KB
/
guardian.html
File metadata and controls
1004 lines (860 loc) · 31.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en" data-theme="dark">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>NetDAG Guardian — AI That Guards Value</title>
<meta name="description" content="NetDAG Guardian is a living layer of protection - an AI neuron intelligence that learns, adapts, and defends digital assets in real time." />
<link rel="icon" href="images/favicon.ico" />
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" crossorigin="anonymous" />
<link rel="canonical" href="https://netdag.com/guardian.html"> https://netdag.com/guardian.html
<script src="js/main.js" defer></script>
<style>
/* HERO TITLE COLOR FIX */
.hero-title-highlight {
color: #ff9900 !important;
}
/* ---- Guardian upgrades (robot fullpage + image sizing + mobile header) ---- */
/* 4) Shrink the "whitepaper maths" image (images/ndg20.png) a bit */
.guardian-feature-img.guardian-img-tall.guardian-img-small {
max-width: 520px;
width: 100%;
height: auto;
}
/* 3) Full-page robot section before footer (uses images/ndg11.png) */
.guardian-robot-fullpage {
position: relative;
height: 100vh;
width: 100%;
overflow: hidden;
background: radial-gradient(1200px 700px at 50% 30%, rgba(255, 153, 0, 0.12), rgba(0,0,0,0) 60%),
linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.65));
}
.guardian-robot-fullpage img {
width: 100%;
height: 100%;
object-fit: cover;
/* keep the head visible; if cropping happens, crop bottom */
object-position: center top;
display: block;
}
.guardian-robot-overlay {
position: absolute;
inset: 0;
pointer-events: none;
display: grid;
place-items: end center;
padding: 42px 18px;
background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55) 100%);
}
.guardian-robot-overlay p {
max-width: 860px;
text-align: center;
font-size: clamp(1rem, 1.4vw, 1.15rem);
line-height: 1.55;
color: rgba(255,255,255,0.92);
margin: 0;
}
/* MOBILE HEADER FIX - Guardian Page */
@media (max-width: 900px) {
/* Hide desktop nav */
body.guardian-page .site-header .nav-links {
display: none !important;
}
/* Header container */
body.guardian-page .site-header .header-inner {
display: flex !important;
flex-direction: row !important;
justify-content: space-between !important;
align-items: center !important;
padding: 6px 12px !important;
flex-wrap: nowrap !important;
box-sizing: border-box !important;
min-height: 50px !important;
max-height: 50px !important;
}
/* Brand section */
body.guardian-page .site-header .brand {
display: flex !important;
align-items: center !important;
gap: 6px !important;
flex-shrink: 0 !important;
}
/* Logo smaller */
body.guardian-page .site-header .brand-logo {
height: 45px !important;
width: auto !important;
}
/* NetDAG text smaller */
body.guardian-page .site-header .brand-text {
font-size: 2.5rem !important;
white-space: nowrap !important;
line-height: 1 !important;
}
/* Nav right container */
body.guardian-page .site-header .nav-right {
display: flex !important;
align-items: center !important;
justify-content: flex-end !important;
flex-shrink: 0 !important;
margin-left: auto !important;
padding: 0 !important;
margin-right: 4px !important;
}
/* HAMBURGER MENU - CLEAN & VISIBLE */
body.guardian-page .site-header .menu-toggle {
display: flex !important;
visibility: visible !important;
opacity: 1 !important;
flex-direction: column !important;
justify-content: center !important;
align-items: center !important;
gap: 4px !important;
padding: 6px !important;
background: transparent !important;
border: none !important;
cursor: pointer !important;
width: 40px !important;
height: 40px !important;
margin: 0 !important;
position: relative !important;
z-index: 100 !important;
}
/* Hamburger lines */
body.guardian-page .site-header .menu-toggle .burger-line {
display: block !important;
visibility: visible !important;
opacity: 1 !important;
width: 24px !important;
height: 3px !important;
background: #ff9900 !important;
border-radius: 2px !important;
}
/* Hide CTA buttons */
body.guardian-page .site-header .header-ctas {
display: none !important;
}
/* HERO TITLE - Smaller on mobile */
body.guardian-page .hero-title.guardian-title {
font-size: 1.5rem !important;
line-height: 1.3 !important;
}
.guardian-feature-img.guardian-img-tall.guardian-img-small {
max-width: 360px;
}
}
/* Side-by-side wrap for ndg20.png + the self-defending economy text */
.guardian-side-by-side {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 22px;
align-items: center;
}
.guardian-side-figure { margin: 0; }
.guardian-side-text { min-width: 0; }
/* On smaller screens: stack image over text */
@media (max-width: 900px) {
.guardian-side-by-side {
grid-template-columns: 1fr;
gap: 14px;
}
}
/* Full-screen background image (alternate robot layout) */
.guardian-robot-fullpage {
position: relative;
height: 110vh;
width: 100%;
overflow: hidden;
margin: 0;
}
.guardian-robot-bg {
position: absolute;
inset: 0;
background-image: url("images/ndg11.png");
background-repeat: no-repeat;
/* Use smaller (e.g. 88%/82%) to zoom OUT and show more body */
background-size: 100% auto;
background-position: center top;
transform: translateY(-4%);
will-change: transform;
z-index: 0;
}
.guardian-robot-overlay {
position: absolute;
inset: 0;
z-index: 1;
display: grid;
align-items: end;
justify-items: center;
padding: 48px 18px;
background: linear-gradient(180deg,
rgba(0,0,0,0) 55%,
rgba(0,0,0,0.55) 90%);
}
.guardian-robot-overlay-inner {
max-width: 900px;
text-align: center;
}
.guardian-robot-overlay p {
margin: 0;
color: rgba(255,255,255,0.92);
font-size: clamp(1rem, 1.4vw, 1.15rem);
line-height: 1.55;
text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}
/* Mobile tuning */
@media (max-width: 900px) {
.guardian-robot-bg {
background-size: 98% auto;
transform: translateY(-10%);
}
}
/* Center captions / figures */
.guardian-caption{
text-align: center;
margin-left: auto;
margin-right: auto;
}
.guardian-figure{
text-align: center;
}
/* IMPORTANT: avoid horizontal overflow (105vw causes sideways scroll + hidden hamburger) */
img.guardian-feature-img.guardian-feature-img--xl{
width: min(1800px, 100%) !important;
max-width: 100% !important;
height: auto !important;
display: block;
margin: 0 auto;
}
.guardian-hero .hero-kicker{
text-align: center;
margin-left: auto;
margin-right: auto;
}
figure.guardian-figure{
text-align: center !important;
}
.curve-container{
display: flex;
justify-content: center;
}
/* =========================================================
SHIELD (the only shield code you need)
Your HTML uses:
<img class="guardian-shield guardian-shield-pulse" ...>
so we target that class (NOT #guardianShield).
========================================================= */
.guardian-hero .guardian-hero-image{
display: grid;
place-items: center;
text-align: center;
}
@media (max-width: 900px){
.guardian-hero .guardian-hero-image img.guardian-shield{
width: min(420px, 92vw);
}
}
/* Pump -> rest -> pump -> rest */
@keyframes guardianPumpStop{
0%, 22%{ transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,153,0,0)); }
30%{ transform: scale(1.05); filter: drop-shadow(0 0 18px rgba(255,153,0,.20)); }
36%{ transform: scale(1.085); filter: drop-shadow(0 0 30px rgba(255,153,0,.30)); }
44%{ transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,153,0,0)); }
44%, 66%{ transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,153,0,0)); }
74%{ transform: scale(1.04); filter: drop-shadow(0 0 16px rgba(255,153,0,.18)); }
80%{ transform: scale(1.075); filter: drop-shadow(0 0 26px rgba(255,153,0,.26)); }
88%{ transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,153,0,0)); }
88%, 100%{ transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,153,0,0)); }
}
/* Optional: respect reduced motion */
@media (prefers-reduced-motion: reduce){
.guardian-hero .guardian-hero-image img.guardian-shield{ animation: none; }
}
/* Make ONLY ndg-neuron-c.png (guardian-feature-img--xl) go full-screen */
img.guardian-feature-img.guardian-feature-img--xl{
width: 100vw !important;
height: 110vh !important;
max-width: none !important;
max-height: none !important;
display: block;
margin: 0 !important;
object-fit: cover; /* fills the screen, may crop edges */
background: #000; /* optional letterbox color */
}
/* If the image sits inside a figure/container with padding, remove it */
.guardian-figure,
.guardian-side-figure{
margin: 0;
padding: 0;
}
.footer-legal-note{
max-width: 980px;
margin: 16px auto 8px;
padding: 0 20px;
text-align: center;
font-size: 0.8rem;
line-height: 1.5;
color: rgba(255,255,255,0.72);
}
.site-ticker{
width: 100%;
overflow: hidden;
white-space: nowrap;
background: #f0a020;
color: #1a1a1a;
position: relative;
}
.ticker-track{
display: inline-flex;
align-items: center;
gap: 48px;
width: max-content;
white-space: nowrap;
will-change: transform;
animation: ndgTickerScroll 34s linear infinite;
}
.ticker-track span{
display: inline-flex;
align-items: center;
white-space: nowrap;
flex: 0 0 auto;
}
@keyframes ndgTickerScroll{
from{
transform: translateX(0);
}
to{
transform: translateX(-50%);
}
}
/* ===== MOBILE HEADER FIX ===== */
@media (max-width: 900px){
.header-inner{
display:flex;
align-items:center;
justify-content:space-between;
padding:12px 16px;
}
.nav-right{
display:flex;
align-items:center;
gap:10px;
}
.menu-toggle{
margin-right:8px;
}
}
.site-separator-top{
margin-top: -6px !important;
margin-bottom: 6px !important;
}
/* ===============================
GLOBAL TOP TICKER
=============================== */
.site-ticker{
position: fixed;
top: 0;
left: 0;
right: 0;
height: var(--ticker-height);
line-height: var(--ticker-height);
background: #f0a020;
color: #1a1a1a;
z-index: 1100;
overflow: hidden;
white-space: nowrap;
}
.ticker-track{
display: inline-flex;
align-items: center;
gap: 48px;
width: max-content;
white-space: nowrap;
will-change: transform;
animation: ndgTickerScroll 34s linear infinite;
}
.ticker-track span{
display: inline-flex;
align-items: center;
white-space: nowrap;
flex: 0 0 auto;
}
@keyframes ndgTickerScroll{
from{
transform: translateX(0);
}
to{
transform: translateX(-50%);
}
}
.site-separator-top{
margin-top: 0 !important;
margin-bottom: 4px !important;
}
.nav-links .nav-dropdown{
position:relative;
list-style:none;
}
.nav-links .nav-dropdown > a{
display:inline-flex;
align-items:center;
gap:6px;
}
.nav-links .nav-dropdown > a::after{
content:"▾";
font-size:12px;
line-height:1;
transform:translateY(1px);
}
.nav-links .nav-dropdown-menu{
display:none;
position:absolute;
top:calc(100%);
left:0;
min-width:240px;
margin:0;
padding:8px 0;
list-style:none;
background:rgba(15,15,20,.98);
border:1px solid rgba(255,153,0,.18);
border-radius:12px;
box-shadow:0 12px 28px rgba(0,0,0,.35);
z-index:9999;
}
.nav-links .nav-dropdown-menu li{
margin:0;
padding:0;
list-style:none;
}
.nav-links .nav-dropdown-menu a{
display:block;
padding:10px 16px;
color:#fff;
text-decoration:none;
white-space:nowrap;
}
.nav-links .nav-dropdown-menu a:hover{
background:rgba(255,153,0,.10);
color:#ff9900;
}
.nav-links .nav-dropdown:hover .nav-dropdown-menu{
display:block;
}
</style>
</head>
<body class="guardian-page" id="top">
<!-- INFO TICKER -->
<div class="site-ticker" role="region" aria-label="Presale info">
<div class="ticker-track">
<span>💧 Presale begins <strong>00.00.2026</strong> (00.00.2026).</span>
<span>🔥 Early participants access the earliest stage of the NetDAG token distribution.</span>
<span>🏦 <strong>22% protocol reserve mechanism</strong> supports ecosystem liquidity design.</span>
<span>🎯 NetDAG is built around utility, resilience, and long-term ecosystem design.</span>
<span>💧 Presale begins <strong>00.00.2026</strong> (00.00.2026).</span>
<span>🔥 Early participants access the earliest stage of the NetDAG token distribution.</span>
<span>🏦 <strong>22% protocol reserve mechanism</strong> supports ecosystem liquidity design.</span>
<span>🎯 NetDAG is built around utility, resilience, and long-term ecosystem design.</span>
</div>
</div>
<!-- HEADER -->
<header class="site-header" role="banner">
<div class="header-inner">
<a class="brand" href="index.html" title="NetDAG home">
<img src="images/ndg-logo.png" alt="NetDAG logo" class="brand-logo" />
<span class="brand-text">NetDAG</span>
</a>
<div class="nav-right">
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li class="has-dropdown">
<a href="provenance.html">Provenance App▽</a>
<div class="dropdown-menu">
<a href="provenance.html">Overview</a>
<a href="provenance.html#prov-mvp-demo">App Demo</a>
<a href="provenance-roadmap.html">Infrastructure Roadmap</a>
</div>
</li>
<li><a href="bonding-curve.html">Bonding Curve</a></li>
<li><a href="guardian.html">Guardian</a></li>
<li><a href="no-gas.html">Easy Access</a></li>
<li><a href="menu/whitepaper.html">Whitepaper</a></li>
</ul>
<button id="menu-toggle" class="menu-toggle" aria-expanded="false" aria-controls="site-menu" aria-label="Open menu">
<span class="burger-line" aria-hidden="true"></span>
<span class="burger-line" aria-hidden="true"></span>
<span class="burger-line" aria-hidden="true"></span>
</button>
</div>
<div class="header-ctas">
<a href="purchase-ndg.html" class="btn">Join Presale</a>
<a href="stake-ndg.html" class="btn btn-primary">Stake NDG</a>
</div>
</div>
</header>
<!-- MENU PANEL -->
<div id="site-menu" class="site-menu" hidden aria-hidden="true">
<div class="site-menu-inner" role="dialog" aria-modal="false" aria-label="Site menu">
<button id="site-menu-close" class="site-menu-close" aria-label="Close menu">×</button>
<ul class="menu-list">
<li><a href="index.html">Home</a></li>
<li><a href="provenance.html">Provenance</a></li>
<li><a href="bonding-curve.html">Bonding Curve</a></li>
<li><a href="guardian.html">Guardian</a></li>
<li><a href="no-gas.html">Easy Access</a></li>
<li><a href="menu/whitepaper.html">Whitepaper</a></li>
<li><a href="menu/blog.html">Blog</a></li>
<li><a href="menu/vision.html">Vision</a></li>
<li><a href="menu/tokenomics.html">Tokenomics</a></li>
<li><a href="menu/faq.html">FAQ</a></li>
<li><a href="menu/roadmap.html">Roadmap</a></li>
<li><a href="menu/ambassador.html">Ambassador</a></li>
<li><a href="menu/charity.html">Charity</a></li>
<li><a href="menu/blog.html">Blog</a></li>
<li><a href="menu/partners.html">Partners</a></li>
<li><a href="menu/legal.html">Legal</a></li>
</ul>
<div class="mobile-ctas">
<!-- Use this on pages inside /menu/ -->
<a href="purchase-ndg.html" class="btn btn-primary nav-cta">Buy NDG</a>
<a href="stake-ndg.html" class="btn btn-primary nav-cta">Stake NDG</a>
</div>
</div>
</div>
<main>
<!-- Top separator -->
<div class="site-separator site-separator-top" aria-hidden="true"></div>
<!-- GUARDIAN HERO SECTION -->
<section class="section guardian-hero" id="guardian">
<div class="section-overlay" aria-hidden="true"></div>
<div class="section-inner">
<div class="hero-inner">
<h1 class="hero-title guardian-title">
NetDAG Guardian — <span class="hero-title-highlight">AI That Guards Value</span>
</h1>
<p class="hero-kicker">
Financial intelligence with a human core — designed to think, predict, and protect.
</p>
<div class="guardian-hero-image">
<img src="images/ndg-neuron1.png" class="guardian-shield guardian-shield-pulse" alt="Guardian Shield">
</div>
</div>
</div>
</section>
<!-- Bottom separator -->
<div class="site-separator" aria-hidden="true"></div>
<!-- GUARDIAN SUMMARY -->
<section class="section section-content guardian-summary">
<div class="section-inner narrow">
<div class="content-block guardian-summary-card">
<p>
In today's volatile markets, passive security is no longer enough. The NetDAG Guardian is a
living layer of protection – an AI neuron intelligence that learns, adapts, and defends
digital assets in real time.
</p>
<p>
Instead of reacting after the damage is done, Guardian looks ahead: it monitors flows, spots
abnormal behaviour, and proposes parameter updates before instability turns into chaos. That
means fewer surprise crashes and more predictable liquidity for long-term holders.
</p>
<p>
Together with the bonding curve and reserve, Guardian turns NDG into a system that is designed
to stay usable and predictable – even when the wider market is noisy.
</p>
<p>
Think of the Bonding Curve as the <strong>engine</strong> of the NDG economy: it provides deterministic
pricing and always-on liquidity, so the market doesn’t depend on fragile order books.
The Guardian is the <strong>pilot</strong>: it continuously evaluates risk and conditions, then keeps the
system operating inside mathematically safe ranges.
</p>
<p>
The Guardian is coded to look beyond the NDG ecosystem and into the wider financial world. It tracks macro
and market signals (broad risk-on/risk-off moves, liquidity stress, abnormal correlation spikes, sudden volatility
events) and compares them with on-chain behavior (reserve inflows, buy/sell pressure, concentration, and trading anomalies).
That “outside + inside” view is what allows prevention rather than damage control.
</p>
<p>
When conditions become hostile, traditional tokens often fail the same way: liquidity dries up, slippage explodes,
and panic selling feeds on itself. NetDAG’s design breaks that feedback loop. The Bonding Curve keeps a continuous price path,
while the Guardian adds adaptive intelligence — identifying early warning patterns and recommending controlled parameter tuning
within predefined limits.
</p>
<p>
This is what turns Guardian + Bonding Curve into a next-gen winning team: <strong>the curve provides structure</strong>, and
<strong>the Guardian provides foresight</strong>. Together they guard and power the NDG ecosystem — keeping liquidity usable,
smoothing extremes, and defending the long-term price floor as adoption grows.
</p>
</div>
</div>
</section>
<div class="site-separator" aria-hidden="true"></div>
<!-- GUARDIAN IMAGE #1 -->
<section class="section curve-section" aria-label="Guardian monitoring network">
<div class="section-inner">
<div class="curve-container">
<figure class="guardian-figure">
<img
src="images/ndg-neuron-c.png"
alt="Guardian protecting the NDG ecosystem"
class="guardian-feature-img guardian-feature-img--xl" />
<p>
<figcaption class="guardian-caption">
The Guardian's neural intelligence constantly monitors NDG's global liquidity network.
</figcaption>
</p>
</figure>
</div>
</div>
</section>
<div class="site-separator" aria-hidden="true"></div>
<!-- NEURON AI & CORE DEFENSES -->
<section class="section section-content">
<div class="section-inner narrow">
<div class="content-block soft-card prose">
<h2>The Neuron AI</h2>
<p>
The Guardian is designed to think like an investor and act like a protector — 20% human intuition (the neuron part), 80% machine precision.
It studies market sentiment and liquidity with emotional intelligence, learning from behavior to maintain equilibrium.
</p>
<p>
Concretely, the Guardian layer continuously scores market conditions across multiple dimensions — volatility regime,
liquidity depth, abnormal flow patterns, and distribution risk. It then cross-checks those signals against the bonding-curve
state (current supply position, reserve strength, and recent curve movement).
</p>
<p>
This allows the Guardian to propose <strong>small, controlled</strong> adjustments (never chaotic switches) that keep the curve operating
as a shock-absorber: smoothing sell pressure, defending the reserve, and maintaining a predictable experience for holders and builders.
The result is an economy that can “brace” for impact instead of breaking.
</p>
<h2>The Guardian's Core Defenses</h2>
<ul class="tick">
<li><strong>Vigilant Scanning: </strong> Identifies hidden risk patterns before they manifest, reacting instantly to preserve value. </li>
<li><strong>Decisive Actions:</strong> Counters manipulation and volatility through automated rebalancing and reserve protection.</li>
<li><strong>Dynamic Bonding Curve Integration:</strong> Adjusts NDG's core price engine for smooth, predictable liquidity and stable growth.</li>
</ul>
<p>
Example: if the Guardian detects a rapid rise in sell concentration (few wallets driving most sells) while macro volatility spikes,
it can trigger protective posture — prioritizing reserve integrity and stability over short-term noise.
</p>
<p>
Example: if adoption accelerates (sustained buy demand + rising reserve inflows), the Guardian can keep growth smooth and fair by ensuring
curve movement remains predictable, preventing “hype gaps” and maintaining confidence for new entrants.
</p>
</div>
</div>
</section>
<div class="site-separator" aria-hidden="true"></div>
<!-- Replace the existing "GUARDIAN IMAGE #2" + "SELF-DEFENDING ECONOMY" blocks
with this combined side-by-side section (image ndg20.png + the provided text). -->
<section class="section section-content guardian-curve-sidebyside" aria-label="Guardian and Bonding Curve working together">
<div class="section-inner narrow">
<div class="content-block soft-card prose">
<div class="guardian-side-by-side">
<!-- Left: image (shrunk) -->
<figure class="guardian-side-figure">
<img
src="images/ndg20.png"
alt="Guardian and Bonding Curve technical overview"
class="guardian-feature-img guardian-img-tall guardian-img-small" />
<figcaption class="guardian-caption">
Guardian and the Bonding Curve — working together to build the world's first self-defending economy.
</figcaption>
</figure>
<!-- Right: text (your provided copy) -->
<div class="guardian-side-text">
<p class="guardian-highlight-text">
By investing in NetDAG, you're not just holding a quality token — you're owning part of the world's first self-defending economy.
In this new era, your wealth doesn't wait for protection. It is protected — by design.
</p>
<p>
Guardian doesn’t replace the Bonding Curve — it amplifies it. The curve supplies the rules of motion; the Guardian supplies the
intelligence to recognize when the environment changes. That’s how NDG can remain stable across cycles: the economy is not “set and forget,”
it is monitored, measured, and defended.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Keep your separator after this section as you already have -->
<div class="site-separator" aria-hidden="true"></div>
<!-- Replace your current robot section with this version.
It makes the image a full-screen background and keeps the text OVER the image. -->
<section class="guardian-robot-fullpage" aria-label="NetDAG metal robot">
<div class="guardian-robot-bg" aria-hidden="true"></div>
<div class="guardian-robot-overlay">
<div class="guardian-robot-overlay-inner">
<p>
Guardian is the watchtower. The Bonding Curve is the engine. Together they form a self-defending economy designed to
detect threats early, keep liquidity usable, and protect long-term value even under global market pressure.
</p>
</div>
</div>
</section>
</main>
<!-- FOOTER -->
<footer class="site-footer-gray" role="contentinfo">
<div class="footer-back-to-top">
<a href="#top" class="back-to-top-link">Back to top</a>
</div>
<div class="footer-banner">
<div class="footer-banner-inner">
<div class="banner-tagline">
<span class="banner-emphasis">BUILT FOR TRUST, NOT HYPE.</span>
NetDAG is not another short-term token. We build next-gen infrastructure for the real world — with math-backed stability and long-term commitment. Join the ecosystem and let your wealth grow with real utility.
</div>
<a href="menu/whitepaper.html" class="btn-explore-vision">Explore the Whitepaper</a>
</div>
</div>
<div class="footer-main">
<div class="footer-columns">
<div class="footer-col footer-brand-col">
<div class="footer-brand-logo">
<img src="images/ndg-logo.png" alt="NetDAG logo" class="footer-logo-img" />
<span class="footer-brand-name">NetDAG</span>
</div>
<p class="footer-brand-tagline">
<em>A stability-first crypto economy: DAG speed, bonding-curve liquidity, real world on-chain Provenance, Guardian AI, dVPN privacy.</em>
</p>
</div>
<div class="footer-col">
<h3>PRODUCTS</h3>
<ul>
<li><a href="provenance.html">Provenance dApp</a></li>
<li><a href="bonding-curve.html">Bonding Curve</a></li>
<li><a href="guardian.html">Guardian AI</a></li>
<li><a href="no-gas.html">Easy Access</a></li>
</ul>
</div>
<div class="footer-col">
<h3>TOKEN & DOCS</h3>
<ul>
<li><a href="menu/tokenomics.html">Tokenomics</a></li>
<li><a href="menu/whitepaper.html">Whitepaper</a></li>
<li><a href="menu/vision.html">Vision</a></li>
<li><a href="menu/faq.html">FAQ</a></li>
<li><a href="menu/roadmap.html">Roadmap</a></li>
</ul>
</div>
<div class="footer-col">
<h3>COMMUNITY</h3>
<ul>
<li><a href="menu/ambassador.html">Ambassador Program</a></li>
<li><a href="menu/charity.html">Charity</a></li>
<li><a href="menu/blog.html">Blog</a></li>
<li><a href="menu/partners.html">Partners</a></li>
<li><a href="menu/legal.html">Legal</a></li>
</ul>
</div>
</div>
<!-- Social Icons -->
<div class="footer-socials-blue">
<a href="https://www.youtube.com/@NetDAGOfficial"
class="social-icon-blue social-yt-blue"
aria-label="YouTube"
target="_blank"
rel="noopener">
<i class="fab fa-youtube"></i>
</a>
<a href="https://www.facebook.com/share/1B14RrcR9g/"
class="social-icon-blue social-fb-blue"
aria-label="NetDAG Facebook"
target="_blank"
rel="noopener">
<i class="fab fa-facebook-f"></i>
</a>
<a href="https://github.com/JoDa-NetDAG"
class="social-icon-blue social-gh-blue"
aria-label="GitHub"
target="_blank"
rel="noopener">
<i class="fab fa-github"></i>
</a>
<a href="https://instagram.com/netdagofficial"
class="social-icon-blue social-ig-blue"
aria-label="NetDAG Instagram"
target="_blank"
rel="noopener">
<i class="fab fa-instagram"></i>
</a>
<a href="https://x.com/NetDAGOfficial"
class="social-icon-blue social-x-blue"
aria-label="X (Twitter)"
target="_blank"
rel="noopener">
<i class="fab fa-x-twitter"></i>
</a>
<a href="https://t.me/NetDAG"
class="social-icon-blue social-tg-blue"
aria-label="Telegram"
target="_blank"
rel="noopener">
<i class="fab fa-telegram-plane"></i>
</a>
<a href="https://discord.gg/GycvtzBs"
class="social-icon-blue social-ds-blue"
aria-label="Discord"
target="_blank"
rel="noopener">
<i class="fab fa-discord"></i>
</a>
</div>
<p class="footer-legal-note">
NetDAG tokens are utility tokens intended for use within the NetDAG ecosystem.
They do not represent shares, securities, or financial instruments.
Nothing on this website constitutes financial, legal, or investment advice.
</p>
<div class="footer-bottom-blue">
<p class="footer-bottom-text">
<a href="#" data-contact-open class="footer-contact-link">📧 Join the NetDAG Community</a> |
Copyright: NetDAG 2026 | Built with care
</p>
</div>
</div>
</footer>
<script>
(() => {
const shield = document.querySelector('.guardian-hero-image img.guardian-shield-pulse');
if (!shield) return;
const beats = 500;
const beatWindowMs = 6000; // 6s beating
const restMs = 7000; // 7s rest
// Tweak these if you want stronger/weaker pumping:
const minScale = 1.2;
const maxScale = 1.085;
// Optional: respect reduced-motion users
const reduceMotion = window.matchMedia && window.matchMedia('(prefers-reduced-motion: reduce)').matches;
if (reduceMotion) return;
function runCycle() {
const start = performance.now();
const beatInterval = beatWindowMs / beats; // ~15ms/beat
function frame(now) {
const t = now - start;
if (t >= beatWindowMs) {
// REST: stop completely
shield.style.transform = `scale(${minScale})`;
shield.style.filter = `drop-shadow(0 0 0 rgba(255,153,0,0))`;
setTimeout(runCycle, restMs);
return;
}
// Beat index and position within the beat
const i = Math.floor(t / beatInterval);
const localT = (t - i * beatInterval) / beatInterval; // 0..1
// Triangle pulse per beat (0 -> 1 -> 0)
const pulse = localT < 0.5 ? localT * 2 : 2 - localT * 2;
const scale = minScale + (maxScale - minScale) * pulse;
shield.style.transform = `scale(${scale.toFixed(4)})`;
// Glow only while beating
const glow = 10 + 18 * pulse;
shield.style.filter = `drop-shadow(0 0 ${glow.toFixed(1)}px rgba(255,153,0,0.22))`;
requestAnimationFrame(frame);
}
requestAnimationFrame(frame);
}
runCycle();
})();
</script>