-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1211 lines (1024 loc) · 41.7 KB
/
index.html
File metadata and controls
1211 lines (1024 loc) · 41.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
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>
<!--
index.html — merged version, edited to:
- show site separators around the hero
- add presale subline + Buy NDG button
- show "Amount Raised" label
- remove "Total Supply" from presale meta
-->
<meta name="google-site-verification" content="L5EJR2nd4NuK4bTOEkT20rNSyJ_6Ko-RLzP-cmprKEY" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "NetDAG",
"url": "https://netdag.com",
"logo": "https://netdag.com/images/netdag-logo.png",
"sameAs": [
"https://x.com/NetDAGOfficial",
"https://discord.gg/GycvtzBs",
"https://t.me/NetDAG",
"https://github.com/JoDa-NetDAG"
]
}
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>NetDAG - Digital Asset with Real-World Utility</title>
<meta name="description"
content="NetDAG — DAG speed, bonding-curve liquidity, Guardian AI, dVPN privacy and on-chain provenance. Presale begins 14 Feb 2026." />
<link rel="icon" href="images/favicon.ico" />
<link rel="alternate" hreflang="en" href="https://netdag.com/">
<!-- Main stylesheet -->
<link rel="stylesheet" href="css/styles.css" />
<!-- Font Awesome for icons -->
<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/">
<style>
/* ========================================
HERO & PREVIEW SECTIONS - 2.5rem STANDARD
======================================== */
/* Main Hero - Rotating headlines */
.rotating-headlines .headline {
font-size: 2.5rem !important;
line-height: 1.3 !important;
}
/* Hero subtitle */
.hero-subtitle {
font-size: 1rem !important;
line-height: 1.5 !important;
}
/* Gasless Crypto Section */
.gasless-title-white,
.gasless-title-orange {
font-size: 2.5rem !important;
line-height: 1.3 !important;
}
.gasless-description {
font-size: 1rem !important;
line-height: 1.5 !important;
}
/* Provenance Section */
.provenance-title {
font-size: 2.5rem !important;
line-height: 1.3 !important;
}
.provenance-subtitle {
font-size: 1.8rem !important;
line-height: 1.3 !important;
}
.provenance-description {
font-size: 0.95rem !important;
line-height: 1.5 !important;
}
/* Bonding Curve Section */
.bonding-curve-title {
font-size: 2.5rem !important;
line-height: 1.3 !important;
}
.bonding-curve-title-accent {
font-size: 1.8rem !important;
line-height: 1.3 !important;
}
.bonding-curve-description {
font-size: 0.95rem !important;
line-height: 1.5 !important;
}
/* Guardian Preview Section */
.guardian-title {
font-size: 2.5rem !important;
line-height: 1.3 !important;
}
.guardian-title .accent-orange {
font-size: 1.8rem !important;
}
/* Tokenomics Preview Section */
.tokenomics-title {
font-size: 2.5rem !important;
line-height: 1.3 !important;
}
.tokenomics-title .accent-orange {
font-size: 1.8rem !important;
}
.tokenomics-lead,
.tokenomics-description {
font-size: 0.95rem !important;
line-height: 1.5 !important;
}
/* Blog Preview Heading */
.blog-preview-heading {
font-size: 2.5rem !important;
line-height: 1.3 !important;
}
.blog-preview-subheading {
font-size: 1rem !important;
line-height: 1.5 !important;
}
.contract-address{
word-break: break-all;
overflow-wrap: anywhere;
}
.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);
}
/* ===============================
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%);
}
}
.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>
<link rel="canonical" href="https://netdag.com/">
<title>NetDAG – Trusted Gasless Borderless Payments</title>
<meta name="description" content="NetDAG is a next-generation blockchain ecosystem combining DAG speed, gasless transactions, AI security and product authenticity-check (provenance) to create trusted borderless payments.">
<meta name="keywords" content="NetDAG, DAG crypto, gasless blockchain, crypto presale, blockchain provenance, DAG payments, blockchain authenticity-check, counterfeit-check, NetDAG economy, Crypto-economy, No-gas Crypto, Crypto Switzerland">
<meta name="robots" content="index, follow">
<meta property="og:title" content="NetDAG – Trusted Gasless Blockchain Payments">
<meta property="og:description" content="NetDAG combines DAG architecture, AI risk intelligence and real-world product provenance to power gasless blockchain payments.">
<meta property="og:url" content="https://netdag.com">
<meta property="og:type" content="website">
<meta property="og:image" content="https://netdag.com/images/netdag-preview.png">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "NetDAG",
"url": "https://netdag.com",
"logo": "https://netdag.com/images/netdag-logo.png",
"sameAs": [
"https://twitter.com/netdag",
"https://t.me/netdag",
"https://discord.gg/netdag"
]
}
</script>
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="NetDAG – Trusted Gasless Blockchain Payments">
<meta name="twitter:description" content="NetDAG combines DAG architecture, AI risk intelligence and real-world product provenance to power gasless blockchain payments.">
<meta name="twitter:image" content="https://netdag.com/images/netdag-preview.png">
</head>
<body class="home-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 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">Access NDG</a>
<a href="stake-ndg.html" class="btn btn-ghost">NDG Staking</a>
</div>
</div>
</header>
<!-- MENU PANEL (mobile drawer) -->
<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/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">Access NDG</a>
<a href="stake-ndg.html" class="btn btn-primary nav-cta">NDG Staking</a>
</div>
</div>
</div>
<main>
<!-- top separator before hero (site separator) -->
<div class="site-separator" aria-hidden="true"></div>
<!-- HERO -->
<section class="section section-hero">
<img src="images/ndg21b.png" alt="NetDAG Ecosystem hero image" class="hero-bg-image">
<div class="hero-content">
</h1>
<div class="rotating-headlines">
<h1 class="headline">Blockchain into your real-world activities. End Counterfeits with NetDAG scan dApp</h1>
<h1 class="headline">No Wallet. No Gas Fees. No Seed Phrases. Just Crypto</h1>
<h1 class="headline">Built-In Stability Design (Shock-absorber) with a 22% Reserve Mechanism</h1>
<h1 class="headline">AI Security agent + DAG lightning speed Transactions</h1>
<h1 class="headline">Stake NDG and participate in protocol-based network rewards</h1>
<!-- Navigation dots -->
<div class="headline-dots">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span> <!-- 👈 ADD THIS 5TH DOT -->
</div>
</div>
<div>
<p class="hero-subtitle">
Real-World Solutions. Zero Fees. Math-Backed Stability.
</p>
</div>
<!-- PRESALE BLOCK (counter) — extra vertical space added below subtitle -->
<div class="presale-block">
<p class="presale-line">Presale begins <strong>00.00.2026</strong></p>
<div class="presale-countdown" aria-label="Presale countdown">
<div class="presale-box glow-box"><span id="days" class="presale-num">00</span><span
class="presale-lbl">DAYS</span></div>
<div class="presale-box glow-box"><span id="hours" class="presale-num">00</span><span
class="presale-lbl">HOURS</span></div>
<div class="presale-box glow-box"><span id="mins" class="presale-num">00</span><span
class="presale-lbl">MINS</span></div>
<div class="presale-box glow-box"><span id="secs" class="presale-num">00</span><span
class="presale-lbl">SECS</span></div>
</div>
<!-- Early bird message -->
<p class="presale-early-message">
🔥 Early participants access the earliest stage of the NetDAG token distribution.
</p>
<p class="presale-tagline">Empowering a Decentralized Future - NetDAG</p>
<!-- Action buttons -->
</div>
</div>
</div>
</section>
<!-- bottom separator after hero (site separator) -->
<div class="site-separator" aria-hidden="true"></div>
<!-- PRESALE PROGRESS - Modern, Bright, Wide, Compact -->
<section class="section-presale-modern" aria-labelledby="presale-heading">
<div class="presale-container">
<h2 id="presale-heading" class="presale-title">Presale Progress</h2>
<!-- Progress Bar -->
<div class="presale-bar-container">
<div class="presale-bar-track-modern">
<div class="presale-bar-fill-modern" id="presaleBarFill"></div>
</div>
</div>
<p class="presale-tokens-sold"><span id="progressPercent">1.2</span>% of tokens distributed</p>
<!-- Info Grid -->
<div class="presale-info-grid">
<div class="presale-info-item">
<div class="info-label">Current Stage</div>
<div class="info-value">Stage 1</div>
</div>
<div class="presale-info-item">
<div class="info-label">Current Distribution Stage</div>
<div class="info-value">Stage 1</div>
</div>
<div class="presale-info-item">
<div class="info-label">Community Participation</div>
<div class="info-value" id="presaleRaised">Stage 1 Active</div>
</div>
<div class="presale-info-item">
<div class="info-label">Accepted</div>
<div class="info-value">BNB • USDT • USDC</div>
</div>
</div>
<!-- Contract & Minimum Buy -->
<div class="presale-footer-info">
<div class="contract-box">
<strong>Treasury Contract:</strong>
<span class="contract-address">
0x8834aa98987c170c0f36e087a7ffa08070c1ad4b
</span>
<button class="copy-contract"
onclick="navigator.clipboard.writeText('0x8834aa98987c170c0f36e087a7ffa08070c1ad4b')">
Copy
</button>
</div>
<div class="minimum-buy">
Minimum buy $50
</div>
</div>
<!-- Presale Early CTA (ADD right after Presale Progress in the same section!) -->
<div class="early-curve-cta-block">
<h2 class="early-curve-title">
<h2 class="early-curve-title">
Join the ecosystem in its earliest phase.
</h2>
</h2>
<p class="early-curve-subtitle">
🔥 Early participants access the earliest stage of the NetDAG protocol rollout.<br>
</p>
<a href="purchase-ndg.html" class="btn-curve-buy">Get NDG Access</a>
<div class="presale-info-announcement">
Presale begins on 00.00.2026.
</div>
</div>
</div>
</section>
<div class="site-separator" aria-hidden="true"></div>
<!-- ============================================
GASLESS CRYPTO HERO SECTION
============================================ -->
<section class="gasless-hero-section">
<div class="gasless-overlay"></div>
<div class="gasless-hero-content">
<h2 class="gasless-title-white">Crypto Without Complexity:</h2>
<h1 class="gasless-title-orange">No Wallet. No Fees. Just Freedom.</h1>
<p class="gasless-description">
NetDAG eliminates wallets, seed phrases, and gas fees—making blockchain
as easy as using email. Sign up in seconds, transact for free, forever.
</p>
<div class="preview-buttons">
<a href="no-gas.html" class="gasless-learn-btn">Learn More</a>
<a href="purchase-ndg.html" class="gasless-learn-btn">Get NDG Access</a>
</div>
</div>
</section>
<!-- bottom separator after hero (site separator) -->
<div class="site-separator" aria-hidden="true"></div>
<!-- PROVENANCE SECTION -->
<section class="section section-provenance" id="provenance">
<!-- Full-screen background image -->
<div class="provenance-bg-image">
<img src="images/ndg54.png" alt="" class="provenance-fullscreen-bg" />
</div>
<!-- Content -->
<div class="section-inner provenance-content">
<h2 class="provenance-title">
Trust Written in Code: <br>
<span class="provenance-subtitle">Provenance Anti-Counterfeit dAPP</span>
</h2>
<div class="provenance-text-block">
<p class="provenance-intro">
<strong>Solving the problem of commercial trust..</strong> We bring Blockchain into your real-life
activities.
</p>
<div class="prov-demo-guide">
<div class="prov-demo-guide-kicker">How it works</div>
<h3 class="prov-demo-guide-title">Try the NetDAG Provenance Demo in 3 steps</h3>
<div class="prov-demo-guide-steps">
<div class="prov-demo-guide-step">
<span class="prov-demo-step-num">1</span>
<span>Generate a product record</span>
</div>
<div class="prov-demo-guide-step">
<span class="prov-demo-step-num">2</span>
<span>Anchor it on BNB Smart Chain Testnet</span>
</div>
<div class="prov-demo-guide-step">
<span class="prov-demo-step-num">3</span>
<span>Verify authenticity instantly</span>
</div>
</div>
<div class="prov-demo-guide-actions">
<a href="provenance.html#prov-mvp-demo" class="gasless-learn-btn">
Generate a Product Record
</a>
<a href="provenance.html?id=NDG-PROV-M04EMD23-JGP7PI#prov-mvp-demo" class="gasless-learn-btn">
Verify Existing Record
</a>
</div>
<p class="prov-demo-guide-note">
You can create a fresh demo record, anchor it on-chain, and then verify it through the NetDAG Provenance certificate flow.
</p>
</div>
<div class="provenance-demo-teaser">
<div class="prov-demo-kicker">
Live Feature Preview
</div>
<h3 class="prov-demo-title">
Verify a sample record in seconds
</h3>
<p class="prov-demo-text">
See how NetDAG Provenance confirms authenticity through an on-chain anchored record and certificate-style verification output.
</p>
<div class="prov-demo-row">
<span class="prov-demo-id-label">Demo Record ID</span>
<span class="prov-demo-id">NDG-PROV-M04EMD23-JGP7PI</span>
</div>
<div class="prov-demo-points">
<span class="prov-demo-pill">On-chain anchored</span>
<span class="prov-demo-pill">Certificate output</span>
<span class="prov-demo-pill">Instant verification</span>
</div>
<div class="prov-demo-actions">
<a
href="provenance.html?id=NDG-PROV-M04EMD23-JGP7PI#prov-mvp-demo"
class="gasless-learn-btn"
>
Verify Demo Record
</a>
</div>
</div>
<p class="provenance-description">
NetDAG Provenance is a <em>proof-of-origin system. </em> When buyers scan a product's QR code with the
NetDAG Provenance dApp, instantly -
they see immutable data from the blockchain — where it was made, when it shipped, and who certified it — not
a marketing page.
</p>
<p class="provenance-description">
NetDAG anchors <em>real life authenticity directly on-chain</em> — giving brands proof and users confidence.
</p>
</div>
<div class="preview-buttons">
<a href="provenance.html" class="gasless-learn-btn">Learn More</a>
<a href="purchase-ndg.html" class="gasless-learn-btn">Get NDG Access</a>
</div>
</div>
<div class="prov-phone-overlay">
<img src="images/ndg80transparent1.png" alt="NetDAG Scan App phone preview" class="prov-phone-zoom"
loading="lazy" decoding="async" />
</div>
</section>
<!-- bottom separator after provenance -->
<div class="site-separator" aria-hidden="true"></div>
<!-- BONDING CURVE SECTION -->
<section class="section section-bonding-curve" id="bonding-curve">
<!-- Full-screen background image -->
<div class="bonding-curve-bg-image">
<img src="images/ndg75.png" alt="Bonding Curve Preview" class="bonding-curve-fullscreen-bg" />
</div>
<!-- Overlay -->
<div class="section-overlay"></div>
<!-- Content -->
<div class="bonding-curve-content"> <!-- ✅ ONLY this class -->
<h2 class="bonding-curve-title">
Stability by Design: <br>
<span class="bonding-curve-title-accent">The NetDAG Shock-Absorber</span>
</h2>
<div class="bonding-curve-text-block">
<p class="bonding-curve-description">
A protocol-based liquidity design combining DAG infrastructure and bonding-curve logic to support smoother ecosystem participation.
The reserve mechanism is built to reduce sudden shocks in token flow and support a more resilient network structure over time.
</p>
</div>
<div class="preview-buttons">
<a href="bonding-curve.html" class="gasless-learn-btn">Learn More</a>
<a href="purchase-ndg.html" class="gasless-learn-btn">Get NDG Access</a>
</div>
</div>
</section>
<!-- Other sections unchanged... -->
<div class="section-separator" aria-hidden="true"></div>
<!-- GUARDIAN PREVIEW SECTION -->
<section class="section guardian-preview" id="guardian-preview">
<div class="guardian-bg-image">
<img src="images/ndg-neuron-c.png" alt="NetDAG Neuron Guardian illustration" class="guardian-fullscreen-bg" />
</div>
<div class="section-overlay"></div>
<!-- Centered Content -->
<div class="section-inner hero-overlay">
<!-- HEADLINE (white & orange, correct size) -->
<h2 class="guardian-title">
Neuron Guardian — <span class="accent-orange">AI That Guards Value</span>
</h2>
<!-- SUBTITLE (clarity, reasonable size on all screens) -->
<p class="hero-subtitle">
The NetDAG's Neuron Guardian is the world's first emotional AI-driven sentinel built to protect digital
economies in real time.<br><br>
While others rely on static algorithms, our Guardian learns, adapts, and defends — analyzing market behavior,
liquidity flow,
and global sentiment 24/7. Its neural intelligence monitors behavioral signals, liquidity conditions, and ecosystem stress in real time,
helping the protocol respond more intelligently to changing network conditions around NDG.<br><br>
</p>
<div class="preview-buttons">
<a href="guardian.html" class="gasless-learn-btn">Learn More</a>
<a href="purchase-ndg.html" class="gasless-learn-btn">Get NDG Access</a>
</div>
<!-- PULSING HEART SPLASH (red, soft, subtle, not a circle) -->
<div class="guardian-heartbeat-splash" aria-hidden="true"></div>
</div>
</section>
<!-- Other sections unchanged... -->
<div class="section-separator" aria-hidden="true"></div>
<!-- TOKENOMICS PREVIEW SECTION -->
<section class="section section-tokenomics-preview" id="tokenomics-preview">
<div class="tokenomics-bg-image">
<img src="images/ndg7.png" alt="NetDAG Tokenomics illustration" class="tokenomics-preview-img" />
</div>
<div class="lay"></div>
<div class="section-inner tokenomics-preview-content">
<h2 class="tokenomics-title">
NetDAG Dynamics — <span class="accent-orange">A Buy-back reservoir.</span>
</h2>
<p class="tokenomics-lead">
<b>Dynamic Tokenomics Built for Momentum, Not Speculation.</b> NetDAG's tokenomics is a self-stabilizing
economy engineered for the future. Every transaction fuels equilibrium between growth and stability.
</p>
<p class="tokenomics-description">
<b>Our adaptive bonding-curve mechanism is designed to support a more resilient token environment, while
a 22% protocol reserve contributes to long-term ecosystem liquidity and structural stability.</b>
</p>
<div>
<a href="menu/tokenomics.html" class="gasless-learn-btn">View full Tokenomics</a>
<a href="purchase-ndg.html" class="gasless-learn-btn">Get NDG Access</a>
</div>
</div>
</section>
<!-- Other sections unchanged... -->
<div class="section-separator" aria-hidden="true"></div>
<!-- WHAT IS NETDAG SECTION -->
<section class="utility-tokenomics-modern">
<div class="glow glow-left"></div>
<div class="glow glow-right"></div>
<h2>Utility & Tokenomics</h2>
<div class="utility-list">
<div class="utility-item">
<span class="utility-icon">🔗</span>
<div>
<h3 class="utility-title">Real Utility</h3>
<p>
On-chain Provenance dApp, dVPN privacy, Charity-by-default, and a token economy designed for real people,
not just traders.
</p>
</div>
</div>
<div class="utility-item">
<span class="utility-icon">🛡️</span>
<div>
<h3 class="utility-title">Predictive Stability</h3>
<p>
Integrated Guardian AI watches flows, sentiment, and risk in real time, flagging stress before it hits and
supporting smarter decisions.
</p>
</div>
</div>
<div class="utility-item">
<span class="utility-icon">⚡</span>
<div>
<h3 class="utility-title">Shock Absorber</h3>
<p>
Adaptive curve-linked pricing plus a permanent liquidity reserve that converts volatility into controlled,
math-driven motion.
</p>
</div>
</div>
</div>
<div class="utility-footer">
<strong>NetDAG is not another hype-driven project.</strong>
<span>
It is a long-term, next-generation architecture built for real-world utility, resilience, and durable network design.
Every component — the Provenance dApp, the DAG speed & the Bonding Curve integration, Neuron Guardian AI, dVPN
or the Treasury (shock-absorber) Reservior — is engineered for durability and sustainable growth, not
speculation.
</span>
<br>
<span class="footer-highlight">
Join the NetDAG ecosystem and participate in technology built for long-term real-world utility.
</span>
</div>
</section>
<!-- Other sections unchanged... -->
<div class="section-separator" aria-hidden="true"></div>
<!-- TECHNOLOGY PARTNERS / POWERED BY SECTION -->
<section class="partners-section" aria-label="Technology Partners">
<!-- Title and Subtitle (Centered Container) -->
<div class="section-inner">
<h2 class="partners-title">Powered By Industry Leaders</h2>
<p class="partners-subtitle">
NetDAG combines best-in-class infrastructure to deliver a seamless, secure crypto experience.
</p>
</div>
<!-- FULL SCREEN Logo Ticker (No Container) -->
<div class="logo-ticker-container">
<div class="logo-ticker">
<!-- First Set of Logos (14 companies) -->
<div class="logo-item">
<img src="images/bitcoinnews.png" alt="Bitcoin News" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/binance.png" alt="BNB Chain" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/icobench.png" alt="ICO Bench" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/biconomy.png" alt="Biconomy" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/telegram.png" alt="Telegram" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/github.png" alt="GitHub" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/techbullion.png" alt="TechBullion" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/applepay.png" alt="Apple" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/coinmarketcap.png" alt="CoinMarketCap" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/googlepay.png" alt="Google Pay" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/ipfs.png" alt="IPFS" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/transak.png" alt="Transak" class="partner-logo">
</div>
<!-- Duplicate Set for Seamless Loop -->
<div class="logo-item">
<img src="images/bitcoinnews.png" alt="Bitcoin News" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/binance.png" alt="BNB Chain" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/icobench.png" alt="ICO Bench" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/biconomy.png" alt="Biconomy" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/telegram.png" alt="Telegram" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/github.png" alt="GitHub" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/techbullion.png" alt="TechBullion" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/applepay.png" alt="Apple" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/coinmarketcap.png" alt="CoinMarketCap" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/googlepay.png" alt="Google Pay" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/ipfs.png" alt="IPFS" class="partner-logo">
</div>
<div class="logo-item">
<img src="images/transak.png" alt="Transak" class="partner-logo">
</div>
</div>
</div>
<!-- Bottom Note (Centered Container) -->
<div class="section-inner">
<p class="partners-note">
Trusted by millions worldwide. Built on proven, enterprise-grade technology.
</p>
</div>
</section>
<!-- Other sections unchanged... -->
<div class="section-separator" aria-hidden="true"></div>
<!-- ADD THIS OPENING TAG -->
<section class="section-blog-preview">
<h2 class="blog-preview-heading">Latest from NetDAG</h2>
<p class="blog-preview-subheading">Insights, updates, and deep dives into our technology</p>
<!-- ============= NEWEST ARTICLE ON TOP ============= -->
<!-- Row 1: Articles 7, 6, 5, 4, 3, 2, At he moment-->
<div class="blog-preview-grid">
<!-- Article 7 - Reserve Fund (Newest) -->
<a href="menu/blog.html#reserve-fund" class="blog-preview-card highlight">
<div class="card-title">22% Reserve Fund Explained: Your Price Protection Shield</div>
<div class="card-meta">Published · Jan 2026 · NetDAG Economics · Price Protection</div>
<div class="card-desc">How a 22% protocol reserve mechanism is designed to reduce ecosystem shocks
and support structural stability during volatile conditions.</div>
</a>
<!-- Article 6 - Easy Access -->
<a href="menu/blog.html#easy-access" class="blog-preview-card">
<div class="card-title">Why NetDAG Doesn't Need Wallets or Seed Phrases</div>
<div class="card-meta">Published · Jan 2026 · Easy Access · User Experience</div>
<div class="card-desc">No seed phrase anxiety. No gas fees. Just crypto that works like
the internet should — accessible to everyone.</div>
</a>
<!-- Article 5 - Guardian AI Staking -->
<a href="menu/blog.html#guardian-ai" class="blog-preview-card">
<div class="card-title">Guardian AI Staking - Coming soon...</div>
<div class="card-meta">Published · Dec 2025 · Guardian AI · Dynamic Staking</div>
<div class="card-desc">The Neuron Guardian AI arrives soon – Phase 1 launches with fixed lockups;
dynamic Guardian staking follows later.</div>
</a>
<!-- Article 4 - Provenance -->
<a href="menu/blog.html#provenance" class="blog-preview-card">
<div class="card-title">Real-World Assets, Provenance & Why We Want Brands Like Louis Vuitton,
Rolex, Nike...</div>
<div class="card-meta">Published · Dec 2025 · NetDAG Provenance</div>
<div class="card-desc">How turning real products and purchases into on-chain proofs unlocks stable,
utility-driven liquidity.</div>
</a>
<!-- Article 3 - Bonding Curves -->
<a href="menu/blog.html#bonding-curves" class="blog-preview-card">
<div class="card-title">Bonding Curves vs. Order Books</div>
<div class="card-meta">Published · Nov 2025 · NetDAG Research · Predictable Liquidity</div>
<div class="card-desc">How a curve-based liquidity model is designed to reduce abrupt market
reactions and support more consistent token flow.</div>
</a>
<!-- Article 2 - Guardian Risk -->
<a href="menu/blog.html#guardian-risk" class="blog-preview-card">
<div class="card-title">Inside NetDAG Guardian: Protecting Liquidity & Risk Signals</div>
<div class="card-meta">Published · Oct 2025 · NetDAG Research</div>
<div class="card-desc">How our risk brain watches flows, detects anomalies, and nudges parameters
before the market feels the shock.</div>
</a>
</div>
<div class="blog-preview-actions">
<a href="menu/blog.html" class="blog-btn-viewall">View all articles</a>
</div>