-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
1090 lines (926 loc) · 62.3 KB
/
privacy.html
File metadata and controls
1090 lines (926 loc) · 62.3 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">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, minimum-scale=1.0">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CSZ00L6ZXV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-CSZ00L6ZXV');
</script>
<!-- Primary Meta Tags -->
<title>Privacy Policy | SkyKnet</title>
<meta name="title" content="Privacy Policy | SkyKnet">
<meta name="description" content="Privacy Policy for SkyKnet (Distributed Ledger Technologies Inc.) — how we collect, use, disclose, and safeguard your information.">
<meta name="keywords" content="privacy policy, data protection, SkyKnet privacy, blockchain privacy, cryptocurrency privacy">
<meta name="author" content="SkyKnet">
<meta name="robots" content="index, follow">
<meta name="theme-color" content="#000000">
<!-- Canonical URL -->
<link rel="canonical" href="https://skyknet.com/privacy.html">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://skyknet.com/privacy.html">
<meta property="og:title" content="Privacy Policy | SkyKnet">
<meta property="og:description" content="Privacy Policy for SkyKnet — how we collect, use, disclose, and safeguard your information.">
<meta property="og:image" content="https://skyknet.com/og-image.png">
<meta property="og:site_name" content="SkyKnet">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@SkyKnet">
<meta name="twitter:title" content="Privacy Policy | SkyKnet">
<meta name="twitter:description" content="Privacy Policy for SkyKnet — how we collect, use, disclose, and safeguard your information.">
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="48x48" href="/favicon-48x48.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<meta name="apple-mobile-web-app-title" content="DLT">
<link rel="manifest" href="/site.webmanifest">
<!-- Preconnect -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oxygen:wght@700&family=Orbitron:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<!-- Custom Font -->
<style>
@font-face {
font-family: 'Ethnocentric';
src: url('fonts/ethnocentric.otf') format('opentype');
font-weight: normal;
font-style: normal;
font-display: swap;
}
</style>
<style>
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--black: #000000;
--white: #ffffff;
--cyan: #00ff00;
--electric: #00ff66;
--blue: #00aa00;
--purple: #00ff00;
--magenta: #00ff66;
--green: #00ff80;
--gold: #00ff00;
--red: #ff003c;
--orange: #ff6600;
}
html {
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: transparent;
overflow-x: hidden;
}
body {
font-family: 'Space Grotesk', sans-serif;
background: #000;
color: #fff;
overflow-x: hidden;
cursor: crosshair;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
touch-action: manipulation;
width: 100%;
max-width: 100vw;
}
::selection {
background: var(--cyan);
color: #000;
}
.overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 1; background: repeating-linear-gradient(0deg, transparent 0px, transparent 2px, rgba(0, 255, 0, 0.02) 2px, rgba(0, 255, 0, 0.02) 4px); }
.overlay::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 255, 0, 0.01); animation: flicker 0.15s infinite; pointer-events: none; }
@keyframes flicker { 0%, 100% { opacity: 0.97; } 50% { opacity: 1; } }
.vignette { position: fixed; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 2; background: radial-gradient(ellipse at center, transparent 0%, transparent 40%, rgba(0,0,0,0.85) 100%); }
.grid-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 1; opacity: 0.03; background-image: linear-gradient(var(--cyan) 1px, transparent 1px), linear-gradient(90deg, var(--cyan) 1px, transparent 1px); background-size: 50px 50px; }
/* Content */
.content {
position: relative;
z-index: 10;
max-width: 100%;
overflow-x: hidden;
touch-action: pan-y;
}
/* Navigation */
.nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
padding: 32px 64px;
display: flex;
justify-content: space-between;
align-items: center;
mix-blend-mode: difference;
}
.logo {
display: flex;
align-items: center;
gap: 20px;
text-decoration: none;
color: inherit;
}
.logo-symbol {
width: 56px;
height: 56px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.logo-symbol img {
width: 100%;
height: 100%;
object-fit: contain;
position: relative;
z-index: 1;
}
.logo-text-main {
font-family: 'Orbitron', sans-serif;
font-size: 14px;
font-weight: 700;
letter-spacing: 0.3em;
color: var(--cyan);
}
.logo-text-sub {
font-size: 10px;
font-weight: 400;
letter-spacing: 0.3em;
color: #ffffff;
text-transform: uppercase;
margin-top: 4px;
}
.nav-links {
display: flex;
gap: 64px;
list-style: none;
}
.nav-links a {
font-family: 'Space Mono', monospace;
font-size: 11px;
font-weight: 400;
letter-spacing: 0.3em;
text-transform: uppercase;
color: #ffffff;
text-decoration: none;
position: relative;
padding: 8px 0;
transition: color 0.3s;
}
.nav-links a::before {
content: '[';
position: absolute;
left: -12px;
opacity: 0;
color: var(--cyan);
transition: all 0.3s;
transform: translateX(8px);
}
.nav-links a::after {
content: ']';
position: absolute;
right: -12px;
opacity: 0;
color: var(--cyan);
transition: all 0.3s;
transform: translateX(-8px);
}
.nav-links a:hover,
.nav-links a.active {
color: var(--cyan);
}
.nav-links a:hover::before,
.nav-links a:hover::after {
opacity: 1;
transform: translateX(0);
}
/* Mobile Menu */
.mobile-menu-btn {
display: none;
width: 48px;
height: 48px;
border: 1px solid rgba(0, 255, 0, 0.3);
background: transparent;
cursor: pointer;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 6px;
padding: 12px;
}
.mobile-menu-btn span {
display: block;
width: 100%;
height: 1px;
background: var(--cyan);
transition: all 0.3s;
}
.mobile-menu {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.98);
z-index: 999;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 32px;
opacity: 0;
visibility: hidden;
transition: all 0.4s;
}
.mobile-menu.visible {
opacity: 1;
visibility: visible;
}
.mobile-menu a {
font-family: 'Space Mono', monospace;
font-size: 18px;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--white);
text-decoration: none;
transition: color 0.3s;
}
.mobile-menu a:hover {
color: var(--cyan);
}
.mobile-menu-close {
position: absolute;
top: 32px;
right: 32px;
width: 48px;
height: 48px;
border: 1px solid rgba(0, 255, 0, 0.3);
background: transparent;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
}
/* Page Header */
.page-header {
padding: 180px 64px 80px;
position: relative;
text-align: center;
}
.page-eyebrow {
display: flex;
align-items: center;
justify-content: center;
gap: 24px;
margin-bottom: 32px;
}
.page-eyebrow-line {
width: 80px;
height: 1px;
background: linear-gradient(90deg, transparent, var(--cyan));
position: relative;
}
.page-eyebrow-line:last-child {
background: linear-gradient(90deg, var(--cyan), transparent);
}
.page-eyebrow-line::before {
content: '';
position: absolute;
right: 0;
top: -2px;
width: 5px;
height: 5px;
background: var(--cyan);
box-shadow: 0 0 10px var(--cyan), 0 0 20px var(--cyan);
animation: pulseDot 2s ease-in-out infinite;
}
.page-eyebrow-line:last-child::before {
left: 0;
right: auto;
}
@keyframes pulseDot {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.5; transform: scale(1.5); }
}
.page-eyebrow-text {
font-family: 'Space Mono', monospace;
font-size: 11px;
letter-spacing: 0.5em;
text-transform: uppercase;
color: var(--cyan);
}
.page-title {
font-size: clamp(48px, 10vw, 120px);
font-weight: 700;
line-height: 0.9;
letter-spacing: -0.04em;
margin-bottom: 24px;
}
.page-title .gradient {
color: transparent;
-webkit-text-stroke: 1.5px var(--cyan);
}
.page-subtitle {
font-size: 18px;
color: #ffffff;
max-width: 700px;
margin: 0 auto;
line-height: 1.8;
}
/* Legal Content */
.legal-section {
max-width: 800px;
margin: 0 auto;
padding: 0 64px 80px;
}
.legal-meta {
font-family: 'Space Mono', monospace;
font-size: 11px;
letter-spacing: 0.2em;
color: var(--cyan);
text-transform: uppercase;
margin-bottom: 48px;
text-align: center;
}
.legal-section h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 24px;
font-weight: 700;
color: var(--white);
margin: 48px 0 16px;
letter-spacing: -0.02em;
position: relative;
padding-left: 20px;
}
.legal-section h2::before {
content: '';
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 8px;
height: 8px;
background: var(--cyan);
box-shadow: 0 0 10px var(--cyan);
}
.legal-section h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 18px;
font-weight: 600;
color: var(--cyan);
margin: 32px 0 12px;
}
.legal-section p {
font-size: 15px;
color: #ffffff;
line-height: 1.9;
margin-bottom: 16px;
}
.legal-section ul {
color: #ffffff;
margin: 16px 0;
padding-left: 24px;
}
.legal-section li {
margin-bottom: 10px;
line-height: 1.8;
font-size: 15px;
}
.legal-section li strong {
color: var(--cyan);
}
.legal-section a {
color: var(--cyan);
text-decoration: none;
transition: color 0.3s;
}
.legal-section a:hover {
text-decoration: underline;
}
.legal-divider {
margin-top: 48px;
padding-top: 24px;
border-top: 1px solid rgba(0, 255, 0, 0.1);
}
/* Footer */
.footer {
padding: 80px 64px;
border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
display: grid;
grid-template-columns: 2fr repeat(3, 1fr);
gap: 64px;
}
.footer-brand p {
font-size: 14px;
color: #ffffff;
line-height: 1.7;
margin-top: 24px;
max-width: 280px;
}
.footer-title {
font-family: 'Space Mono', monospace;
font-size: 10px;
font-weight: 700;
letter-spacing: 0.3em;
text-transform: uppercase;
color: #ffffff;
margin-bottom: 24px;
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 12px;
}
.footer-links a {
color: #ffffff;
text-decoration: none;
font-size: 14px;
transition: color 0.2s;
}
.footer-links a:hover {
color: var(--cyan);
}
.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 80px;
padding-top: 40px;
border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-copyright {
font-family: 'Space Mono', monospace;
font-size: 11px;
color: #ffffff;
letter-spacing: 0.1em;
}
/* Responsive */
@media (max-width: 1024px) {
.nav {
padding: 24px 32px;
}
.page-header {
padding: 160px 32px 60px;
}
.legal-section {
padding: 0 32px 60px;
}
.footer {
padding: 60px 32px;
}
.footer-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
* {
max-width: 100%;
}
.nav {
padding: 12px 16px;
}
.nav-links {
display: none;
}
.mobile-menu-btn {
display: flex;
}
.mobile-menu {
display: flex;
}
.page-header {
padding: 100px 16px 32px;
overflow: hidden;
}
.page-title {
font-size: clamp(28px, 8vw, 48px);
word-wrap: break-word;
}
.page-subtitle {
font-size: 13px;
}
.legal-section {
padding: 0 16px 40px;
}
.legal-section h2 {
font-size: 20px;
margin: 36px 0 12px;
}
.legal-section h3 {
font-size: 16px;
}
.legal-section p,
.legal-section li {
font-size: 14px;
}
.footer {
padding: 40px 16px;
}
.footer-grid {
display: block;
}
.footer-column {
margin-bottom: 32px;
}
.footer-column:last-child {
margin-bottom: 0;
}
.footer-bottom {
flex-direction: column;
gap: 24px;
text-align: center;
}
}
@media (max-width: 480px) {
.nav {
padding: 10px 12px;
}
.logo-symbol {
width: 36px;
height: 36px;
}
.logo-text-main {
font-size: 12px;
}
.logo-text-sub {
font-size: 7px;
}
.page-header {
padding: 80px 12px 24px;
}
.page-title {
font-size: clamp(24px, 10vw, 36px);
}
.page-subtitle {
font-size: 12px;
line-height: 1.4;
}
.page-eyebrow {
margin-bottom: 12px;
}
.legal-section {
padding: 0 12px 32px;
}
.legal-section h2 {
font-size: 18px;
}
.footer {
padding: 32px 12px;
}
}
@media (max-width: 360px) {
.page-header {
padding: 70px 10px 20px;
}
.page-title {
font-size: 22px;
}
.legal-section {
padding: 0 10px 24px;
}
.footer {
padding: 28px 10px;
}
}
</style>
</head>
<body>
<!-- Overlays -->
<div class="overlay"></div>
<div class="grid-overlay"></div>
<div class="vignette"></div>
<!-- Mobile Menu -->
<div class="mobile-menu" id="mobileMenu">
<button class="mobile-menu-close" onclick="closeMobileMenu()">
<svg viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M18 6L6 18M6 6l12 12"/>
</svg>
</button>
<a href="index.html">Home</a>
<a href="whoami.html">WhoAmI</a>
<a href="index.html#products">Products</a>
<a href="contact.html">Contact</a>
<a href="careers.html">Careers</a>
</div>
<!-- Content -->
<div class="content">
<!-- Navigation -->
<nav class="nav">
<a href="index.html" class="logo" aria-label="SkyKnet Home">
<div class="logo-symbol">
<img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect fill='%23000' width='100' height='100'/%3E%3Crect x='4' y='4' width='92' height='92' fill='none' stroke='%2300ff00' stroke-width='3'/%3E%3Ctext x='50' y='50' font-size='28' text-anchor='middle' dominant-baseline='central' fill='%2300ff00' font-family='Oxygen,Arial,sans-serif' font-weight='bold' letter-spacing='2'%3ESKY%3C/text%3E%3C/svg%3E" alt="SkyKnet">
</div>
<div>
<div class="logo-text-main">SKYKNET</div>
<div class="logo-text-sub">Distributed Ledger</div>
</div>
</a>
<ul class="nav-links">
<li><a href="whoami.html" class="sound-hover">WhoAmI</a></li>
<li><a href="index.html#products" class="sound-hover">Products</a></li>
<li><a href="index.html#credentials" class="sound-hover">Credentials</a></li>
<li><a href="contact.html" class="sound-hover">Contact</a></li>
<li><a href="careers.html" class="sound-hover">Careers</a></li>
</ul>
<button class="mobile-menu-btn" onclick="openMobileMenu()" aria-label="Open menu">
<span></span>
<span></span>
<span></span>
</button>
</nav>
<!-- Page Header -->
<header class="page-header">
<div class="page-eyebrow">
<span class="page-eyebrow-line"></span>
<span class="page-eyebrow-text">Data Protection</span>
<span class="page-eyebrow-line"></span>
</div>
<h1 class="page-title">
<span class="gradient">Privacy Policy</span>
</h1>
<p class="page-subtitle">
SkyKnet, a DBA of Distributed Ledger Technologies Inc., is committed to protecting your privacy and safeguarding your personal information.
</p>
</header>
<!-- Legal Content -->
<section class="legal-section">
<p class="legal-meta">Last updated: December 28, 2025</p>
<p>SkyKnet, a DBA of Distributed Ledger Technologies Inc. ("SkyKnet," "Company," "we," "our," or "us"), is committed to protecting and respecting your privacy. This Privacy Policy explains how we collect, use, disclose, retain, and safeguard your personal information when you visit our website at skyknet.com (the "Site"), use our products and services — including Knexcoin, KnexMail, Ayedex, KnexPay, KnexWallet, and Superknet (collectively, the "Services") — or otherwise interact with us. By accessing or using our Site and Services, you acknowledge that you have read, understood, and agree to be bound by this Privacy Policy. If you do not agree with the practices described herein, please discontinue use of our Site and Services immediately.</p>
<p>This Privacy Policy should be read in conjunction with our <a href="terms.html">Terms of Service</a> and our <a href="cookies.html">Cookie Policy</a>, which are incorporated herein by reference. Capitalized terms not defined in this Privacy Policy have the meanings ascribed to them in our Terms of Service.</p>
<h2>1. Information We Collect</h2>
<p>We collect various types of information in connection with your use of our Site and Services. The categories of information we collect depend on how you interact with us and which Services you use.</p>
<h3>1.1 Information You Provide Directly</h3>
<p>When you register for an account, make a purchase, subscribe to communications, participate in promotions, request support, apply for employment, or otherwise communicate with us, we may collect the following:</p>
<ul>
<li><strong>Identity Information:</strong> Full name, username, date of birth, government-issued identification documents (where required for identity verification or Know Your Customer compliance), and photographic identification</li>
<li><strong>Contact Information:</strong> Email address, telephone number, mailing address, and other contact details you choose to provide</li>
<li><strong>Account Credentials:</strong> Usernames, passwords, security questions, and other authentication information used to access your SkyKnet accounts across our Services including Knexcoin, KnexMail, Ayedex, KnexPay, KnexWallet, and Superknet</li>
<li><strong>Financial Information:</strong> Payment card details, bank account information, billing address, and transaction history (note that payment processing is handled by PCI-compliant third-party payment processors, and we do not store full payment card numbers on our servers)</li>
<li><strong>Communications:</strong> The content of emails, support tickets, feedback forms, survey responses, forum posts, and any other correspondence you send to us or through our Services, including messages sent via KnexMail</li>
<li><strong>Employment Information:</strong> Resume, cover letter, employment history, educational background, and references submitted through our careers page or recruitment processes</li>
<li><strong>Preferences and Settings:</strong> Language preferences, notification settings, display preferences, and other configuration choices you make within our Services</li>
</ul>
<h3>1.2 Information Collected Automatically</h3>
<p>When you access our Site or use our Services, we automatically collect certain information through cookies, log files, pixel tags, web beacons, and similar tracking technologies:</p>
<ul>
<li><strong>Device Information:</strong> Hardware model, device type, operating system and version, unique device identifiers, browser type and version, screen resolution, and device settings</li>
<li><strong>Network Information:</strong> Internet Protocol (IP) address, Internet Service Provider (ISP), mobile carrier, connection type, and connection speed</li>
<li><strong>Usage Data:</strong> Pages viewed, links clicked, features accessed, time spent on pages, search queries entered, navigation paths, referring and exit URLs, session duration, and frequency of visits</li>
<li><strong>Log Data:</strong> Server logs including access times, error reports, crash data, diagnostic information, and system activity records</li>
<li><strong>Location Data:</strong> Approximate geographic location inferred from your IP address, and precise location data only if you explicitly grant permission through your device settings</li>
<li><strong>Performance Data:</strong> Application performance metrics, load times, error rates, and service availability statistics relevant to your use of our platform</li>
</ul>
<h3>1.3 Blockchain and Cryptocurrency Data</h3>
<p>Due to the nature of our blockchain-based Services, certain data handling practices are unique to our industry. It is important that you understand the following:</p>
<ul>
<li><strong>Public Blockchain Transactions:</strong> Transactions conducted on public blockchain networks (including those facilitated through Knexcoin, KnexPay, KnexWallet, Ayedex, and Superknet) are recorded on distributed public ledgers. These records are inherently public, transparent, permanent, and immutable. We cannot modify, delete, or restrict access to data recorded on a public blockchain</li>
<li><strong>Wallet Addresses:</strong> Your public wallet addresses used in connection with our Services may be visible on public blockchains and may be linked to your transaction history. While wallet addresses are pseudonymous, they may be associated with your identity through various means</li>
<li><strong>Private Keys:</strong> We do not store, access, or have custody of your private keys when you use non-custodial wallet services such as KnexWallet. You are solely responsible for the security and backup of your private keys and seed phrases. Loss of private keys will result in permanent loss of access to associated digital assets</li>
<li><strong>Mining and Node Data:</strong> If you participate in mining, staking, or operate network nodes through our Services or on the Superknet network, we may collect data related to your mining activity, hash rates, computational contributions, node uptime, rewards earned, and network participation metrics</li>
<li><strong>Smart Contract Interactions:</strong> Data related to your interactions with smart contracts deployed through or integrated with our Services, including function calls, parameters, and execution results, may be recorded on the blockchain</li>
<li><strong>Token Holdings and Balances:</strong> Information regarding your digital asset holdings, token balances, and portfolio data within our Services may be collected and processed to provide you with account management functionality</li>
</ul>
<h3>1.4 Information from Third Parties</h3>
<p>We may receive information about you from third-party sources, including:</p>
<ul>
<li><strong>Identity Verification Providers:</strong> Data from KYC/AML (Know Your Customer / Anti-Money Laundering) service providers used to verify your identity and comply with regulatory requirements</li>
<li><strong>Analytics Providers:</strong> Aggregated and individual usage data from analytics platforms including Google Analytics</li>
<li><strong>Blockchain Analytics:</strong> Data from blockchain analytics firms used to monitor transactions for compliance with applicable laws, detect fraudulent activity, and maintain the integrity of our platform</li>
<li><strong>Business Partners:</strong> Information received from business partners, affiliates, and integration partners in connection with joint offerings or interoperable services</li>
<li><strong>Public Sources:</strong> Information available from public blockchain records, public databases, and publicly accessible sources</li>
</ul>
<h2>2. How We Use Your Information</h2>
<p>We use the information we collect for the following purposes, each supported by a valid legal basis as required under applicable data protection laws:</p>
<h3>2.1 Service Delivery and Operations</h3>
<ul>
<li><strong>Account Management:</strong> To create, maintain, and administer your accounts across our Services including Knexcoin, KnexMail, Ayedex, KnexPay, KnexWallet, and Superknet</li>
<li><strong>Transaction Processing:</strong> To facilitate, process, and record cryptocurrency transactions, payments, exchanges, and transfers initiated through our Services</li>
<li><strong>Customer Support:</strong> To respond to your inquiries, troubleshoot issues, provide technical assistance, and resolve disputes</li>
<li><strong>Product Improvement:</strong> To analyze usage patterns, identify bugs, develop new features, improve existing functionality, and enhance user experience across all our products</li>
<li><strong>Communication Delivery:</strong> To deliver messages, notifications, and communications through KnexMail and other communication channels within our ecosystem</li>
</ul>
<h3>2.2 Security and Compliance</h3>
<ul>
<li><strong>Fraud Prevention:</strong> To detect, investigate, prevent, and respond to fraud, unauthorized access, illegal activities, and other security incidents</li>
<li><strong>Identity Verification:</strong> To verify your identity in compliance with KYC and AML regulations and prevent identity theft</li>
<li><strong>Regulatory Compliance:</strong> To comply with applicable laws, regulations, legal processes, governmental requests, and industry standards including anti-money laundering, counter-terrorism financing, and sanctions compliance</li>
<li><strong>Network Security:</strong> To protect the security and integrity of our blockchain networks, nodes, and infrastructure operated through Superknet and other Services</li>
<li><strong>Audit and Record-Keeping:</strong> To maintain accurate records for internal and external audit purposes and to meet accounting and tax obligations</li>
</ul>
<h3>2.3 Marketing and Communications</h3>
<ul>
<li><strong>Service Updates:</strong> To send technical notices, security alerts, system updates, and administrative messages related to your use of our Services</li>
<li><strong>Promotional Communications:</strong> To send marketing communications about new products, features, events, and promotions, where you have opted in to receive such communications or where otherwise permitted by law</li>
<li><strong>Personalization:</strong> To tailor content, recommendations, and advertisements to your interests and usage patterns</li>
</ul>
<h2>3. Legal Bases for Processing (GDPR)</h2>
<p>If you are located in the European Economic Area (EEA), the United Kingdom (UK), or Switzerland, we process your personal data based on the following legal grounds under the General Data Protection Regulation (GDPR) and equivalent legislation:</p>
<ul>
<li><strong>Contractual Necessity:</strong> Processing necessary for the performance of our contract with you, including providing the Services you have requested, managing your account, and processing transactions</li>
<li><strong>Legitimate Interests:</strong> Processing necessary for our legitimate business interests, including fraud prevention, network and information security, product improvement, and direct marketing (where not overridden by your data protection rights)</li>
<li><strong>Legal Obligation:</strong> Processing necessary to comply with legal obligations to which we are subject, including KYC/AML requirements, tax reporting, and responding to lawful governmental requests</li>
<li><strong>Consent:</strong> Processing based on your freely given, specific, informed, and unambiguous consent, such as for marketing communications or the use of certain cookies. You may withdraw your consent at any time without affecting the lawfulness of processing carried out prior to withdrawal</li>
</ul>
<h2>4. Information Sharing and Disclosure</h2>
<p>We do not sell, trade, or rent your personal information to third parties for their marketing purposes. We may share your information only in the following circumstances:</p>
<h3>4.1 Service Providers</h3>
<p>We engage trusted third-party companies and individuals to perform services on our behalf, such as hosting providers, payment processors, analytics services, customer support platforms, identity verification services, and email delivery providers. These service providers are contractually bound to use your information only for the purposes of providing services to us and are obligated to maintain the confidentiality and security of your data.</p>
<h3>4.2 Legal and Regulatory Requirements</h3>
<p>We may disclose your information if required to do so by law, regulation, legal process, or governmental request, including but not limited to subpoenas, court orders, search warrants, national security letters, and requests from regulatory bodies such as financial regulators, tax authorities, and law enforcement agencies.</p>
<h3>4.3 Protection of Rights</h3>
<p>We may disclose your information where we believe it is necessary to investigate, prevent, or take action regarding potential violations of our <a href="terms.html">Terms of Service</a>, suspected fraud, situations involving potential threats to the physical safety of any person, illegal activities, or as evidence in litigation in which we are involved.</p>
<h3>4.4 Business Transfers</h3>
<p>In the event of a merger, acquisition, reorganization, bankruptcy, dissolution, sale of all or a portion of our assets, or similar corporate transaction, your personal information may be transferred as part of that transaction. We will notify you via email and/or a prominent notice on our Site of any change in ownership or uses of your personal information, as well as any choices you may have regarding your information.</p>
<h3>4.5 Blockchain Network Participants</h3>
<p>Certain transaction data processed through our Services is broadcast to and recorded on public blockchain networks. This data is accessible to any participant on the relevant blockchain network and is not subject to our control once it has been broadcast or recorded. This includes transaction amounts, wallet addresses, timestamps, and other data inherent to blockchain transactions.</p>
<h3>4.6 With Your Consent</h3>
<p>We may share your information with third parties when you have given us your explicit consent to do so for a specific purpose.</p>
<h2>5. Cookies and Tracking Technologies</h2>
<p>We use cookies, web beacons, pixel tags, local storage objects, and similar technologies to collect information about your browsing activities and to distinguish you from other users of our Site. This helps us provide you with a good experience when you browse our Site and also allows us to improve our services.</p>
<ul>
<li><strong>Essential Cookies:</strong> Required for the operation of our Site and Services, including session management, authentication, security, and load balancing. These cookies cannot be disabled</li>
<li><strong>Analytics Cookies:</strong> Used to collect information about how visitors use our Site, including which pages are visited most often, how visitors navigate between pages, and whether error messages are displayed. We use Google Analytics and similar tools for this purpose</li>
<li><strong>Functional Cookies:</strong> Used to remember choices you make (such as language preferences, region, or login details) and to provide enhanced, personalized features</li>
<li><strong>Advertising Cookies:</strong> Used to deliver advertisements relevant to your interests and to measure the effectiveness of advertising campaigns</li>
</ul>
<p>You can manage your cookie preferences through your browser settings. For comprehensive information about how we use cookies and how to manage them, please refer to our <a href="cookies.html">Cookie Policy</a>.</p>
<h2>6. Data Security</h2>
<p>We take the security of your personal information seriously and implement robust technical, administrative, and physical safeguards designed to protect your data from unauthorized access, alteration, disclosure, or destruction. Our security measures include, but are not limited to:</p>
<ul>
<li><strong>Encryption:</strong> Use of industry-standard TLS/SSL encryption for data transmitted between your browser and our servers, and AES-256 encryption for sensitive data at rest</li>
<li><strong>Access Controls:</strong> Strict role-based access controls, multi-factor authentication for administrative access, and least-privilege principles applied to all employees and contractors who handle personal data</li>
<li><strong>Infrastructure Security:</strong> Firewalls, intrusion detection and prevention systems, regular vulnerability scanning, and penetration testing of our systems and applications</li>
<li><strong>Monitoring:</strong> Continuous monitoring of our systems for suspicious activity, unauthorized access attempts, and potential security breaches</li>
<li><strong>Employee Training:</strong> Regular security awareness training for all employees and contractors on data protection best practices and incident response procedures</li>
<li><strong>Secure Development:</strong> Implementation of secure software development lifecycle practices, code reviews, and security testing throughout our product development process</li>
<li><strong>Physical Security:</strong> Data centers with 24/7 physical security, biometric access controls, and environmental protections</li>
</ul>
<p>Despite our efforts, no security measure is perfect or impenetrable, and no method of data transmission can be guaranteed against interception or misuse. While we strive to use commercially acceptable means to protect your personal information, we cannot guarantee its absolute security. You are responsible for maintaining the security of your account credentials, private keys, seed phrases, and any devices used to access our Services.</p>
<h2>7. Data Breach Notification</h2>
<p>In the event of a data breach that is likely to result in a risk to the rights and freedoms of individuals, we will:</p>
<ul>
<li><strong>Regulatory Notification:</strong> Notify the relevant supervisory authority within 72 hours of becoming aware of the breach, as required under GDPR Article 33, unless the breach is unlikely to result in a risk to the rights and freedoms of natural persons</li>
<li><strong>Individual Notification:</strong> Notify affected individuals without undue delay when the breach is likely to result in a high risk to their rights and freedoms, providing clear information about the nature of the breach, the likely consequences, and the measures taken or proposed to mitigate the potential adverse effects</li>
<li><strong>US State Law Compliance:</strong> Comply with all applicable US state data breach notification laws, including providing notification to affected individuals and state attorneys general within the timeframes required by applicable law</li>
<li><strong>Documentation:</strong> Maintain comprehensive records of all data breaches, including the facts relating to the breach, its effects, and the remedial actions taken</li>
</ul>
<h2>8. Data Retention</h2>
<p>We retain your personal information for as long as necessary to fulfill the purposes for which it was collected, to provide our Services, to comply with our legal and regulatory obligations, to resolve disputes, and to enforce our agreements. Specific retention periods depend on the nature of the data and the purposes for which it is processed:</p>
<ul>
<li><strong>Account Data:</strong> Retained for the duration of your account and for a reasonable period thereafter (typically up to 5 years) to comply with legal obligations and resolve potential disputes</li>
<li><strong>Transaction Records:</strong> Retained for a minimum of 5 years after the transaction date, or longer where required by applicable anti-money laundering, tax, or financial regulations</li>
<li><strong>KYC/AML Records:</strong> Retained for a minimum of 5 years following the termination of the business relationship, or longer as required by applicable law</li>
<li><strong>Marketing Data:</strong> Retained until you withdraw your consent or opt out of marketing communications, after which we will promptly cease processing your data for marketing purposes</li>
<li><strong>Log and Analytics Data:</strong> Generally retained for up to 26 months, unless longer retention is required for security investigations or legal proceedings</li>
<li><strong>Blockchain Data:</strong> Data recorded on public blockchains is permanent and immutable and cannot be deleted by us or any other party. This is an inherent characteristic of distributed ledger technology</li>
</ul>
<p>When personal information is no longer required for any legitimate purpose, we will securely delete or anonymize it in accordance with our data destruction policies and applicable regulations.</p>
<h2>9. International Data Transfers</h2>
<p>SkyKnet operates globally, and your personal information may be transferred to, stored, and processed in countries other than the country in which you reside, including the United States and other jurisdictions where we or our service providers maintain facilities. These countries may have data protection laws that are different from, and potentially less protective than, the laws of your country of residence.</p>
<p>When we transfer personal data from the EEA, UK, or Switzerland to countries that have not been deemed to provide an adequate level of data protection, we rely on appropriate safeguards to ensure your data is protected, including:</p>
<ul>
<li><strong>Standard Contractual Clauses (SCCs):</strong> We use European Commission-approved Standard Contractual Clauses with our service providers and partners to ensure adequate protection of transferred data</li>
<li><strong>Adequacy Decisions:</strong> Where applicable, we rely on adequacy decisions issued by the European Commission or the UK Secretary of State recognizing that certain countries provide an adequate level of data protection</li>
<li><strong>Data Processing Agreements:</strong> We enter into comprehensive data processing agreements with all third-party processors that require them to implement appropriate technical and organizational security measures</li>
<li><strong>Additional Safeguards:</strong> Where necessary, we implement supplementary measures such as encryption, pseudonymization, and access controls to provide additional protection for transferred data</li>
</ul>
<p>By using our Services, you understand that your information may be transferred to our facilities and to those third parties with whom we share it as described in this Privacy Policy.</p>
<h2>10. Your Privacy Rights</h2>
<p>Depending on your jurisdiction, you may have certain rights regarding your personal information. We are committed to facilitating the exercise of these rights in a timely and transparent manner.</p>
<h3>10.1 General Rights</h3>
<p>Subject to applicable law, you may have the right to:</p>
<ul>
<li><strong>Access:</strong> Request confirmation of whether we process your personal data and obtain a copy of the personal information we hold about you</li>
<li><strong>Rectification:</strong> Request correction of inaccurate or incomplete personal information</li>
<li><strong>Erasure:</strong> Request deletion of your personal information where it is no longer necessary for the purposes for which it was collected, subject to certain exceptions (including data recorded on public blockchains, which cannot be erased)</li>
<li><strong>Restriction:</strong> Request restriction of processing of your personal information in certain circumstances</li>
<li><strong>Data Portability:</strong> Request that we provide your personal data in a structured, commonly used, and machine-readable format, and transmit it to another controller where technically feasible</li>
<li><strong>Objection:</strong> Object to processing of your personal information where we rely on legitimate interests as our legal basis, including objection to direct marketing</li>
<li><strong>Withdraw Consent:</strong> Withdraw your consent at any time where processing is based on consent, without affecting the lawfulness of processing carried out prior to withdrawal</li>
<li><strong>Complaint:</strong> Lodge a complaint with a supervisory authority if you believe our processing of your personal information violates applicable data protection laws</li>
</ul>
<p>To exercise any of these rights, please contact us at <a href="mailto:hello@skyknet.com">hello@skyknet.com</a>. We will respond to your request within the timeframe required by applicable law (generally within 30 days, or 45 days for CCPA requests). We may ask you to verify your identity before processing your request.</p>
<h3>10.2 California Privacy Rights (CCPA/CPRA)</h3>
<p>If you are a California resident, you have specific rights under the California Consumer Privacy Act (CCPA) and the California Privacy Rights Act (CPRA), including:</p>
<ul>
<li><strong>Right to Know:</strong> You have the right to request information about the categories and specific pieces of personal information we have collected about you, the categories of sources from which it was collected, the business or commercial purpose for collecting it, and the categories of third parties with whom we share it</li>
<li><strong>Right to Delete:</strong> You have the right to request deletion of personal information we have collected from you, subject to certain exceptions provided by law</li>
<li><strong>Right to Correct:</strong> You have the right to request correction of inaccurate personal information we maintain about you</li>
<li><strong>Right to Opt-Out of Sale or Sharing:</strong> You have the right to opt out of the sale or sharing of your personal information. We do not sell your personal information as defined by the CCPA/CPRA, nor do we share personal information for cross-context behavioral advertising purposes</li>
<li><strong>Right to Limit Use of Sensitive Personal Information:</strong> You have the right to limit the use and disclosure of sensitive personal information to purposes necessary to provide the Services</li>
<li><strong>Non-Discrimination:</strong> We will not discriminate against you for exercising any of your CCPA/CPRA rights. We will not deny you goods or services, charge you different prices, provide a different level or quality of service, or suggest that you will receive any of the foregoing as a result of exercising your privacy rights</li>
</ul>
<p>To submit a CCPA/CPRA request, please contact us at <a href="mailto:hello@skyknet.com">hello@skyknet.com</a>. You may also designate an authorized agent to make a request on your behalf, provided that the agent submits written proof of authorization.</p>
<h3>10.3 European Privacy Rights (GDPR)</h3>
<p>If you are located in the European Economic Area (EEA), the United Kingdom, or Switzerland, you have the rights described in Section 10.1 above under the General Data Protection Regulation (GDPR) and equivalent legislation. In addition:</p>
<ul>
<li><strong>Data Protection Officer:</strong> You may contact our data protection team at <a href="mailto:hello@skyknet.com">hello@skyknet.com</a> with any questions or concerns about our data processing practices</li>
<li><strong>Supervisory Authority:</strong> You have the right to lodge a complaint with your local data protection authority. A list of EU data protection authorities is available on the European Data Protection Board website</li>
<li><strong>Automated Decision-Making:</strong> You have the right not to be subject to a decision based solely on automated processing, including profiling, which produces legal effects concerning you or similarly significantly affects you, unless such processing is necessary for the performance of a contract, authorized by applicable law, or based on your explicit consent</li>
</ul>
<h2>11. Third-Party Services and Links</h2>
<p>Our Site and Services may contain links to, or integrations with, third-party websites, applications, and services that are not owned or controlled by SkyKnet. These include, but are not limited to, blockchain networks, decentralized exchanges, payment processors, analytics providers, cloud hosting services, and social media platforms. This Privacy Policy applies solely to information collected by SkyKnet.</p>
<p>We are not responsible for the privacy practices, content, or security of third-party services. We strongly encourage you to read the privacy policies of every website, application, and service you visit or use. The inclusion of a link to or integration with a third-party service does not imply endorsement by SkyKnet of that service or its privacy practices.</p>
<p>Specifically, please be aware that when you interact with decentralized applications (dApps) or decentralized exchanges through our Services, your interactions may be governed by smart contracts and protocols over which we have no control, and data transmitted in those interactions may be publicly recorded on blockchain networks.</p>
<h2>12. Analytics and Performance Monitoring</h2>
<p>We use analytics services, including Google Analytics, to help us understand how users interact with our Site and Services. These analytics providers may use cookies, web beacons, and similar technologies to collect information about your use of our Site, including your IP address, browser type, pages viewed, time spent on pages, and other engagement metrics. This information is used to compile reports and help us improve our Site and Services.</p>
<p>Google Analytics uses cookies to collect information in an anonymous form, including the number of visitors to the Site, where visitors originate from, and the pages they visit. You may opt out of Google Analytics tracking by installing the Google Analytics opt-out browser add-on or by adjusting your cookie settings as described in our <a href="cookies.html">Cookie Policy</a>.</p>
<p>We may also use application performance monitoring tools to track the performance and reliability of our Services, including error rates, response times, and system health indicators. This data is used solely for the purpose of maintaining and improving the quality and availability of our Services.</p>
<h2>13. Children's Privacy</h2>
<p>Our Site and Services are not directed to, and are not intended for use by, individuals under the age of 18. We do not knowingly collect, solicit, or maintain personal information from anyone under the age of 18. If you are under 18, please do not use our Site or Services and do not provide us with any personal information. If we learn that we have collected personal information from a child under 18, we will take prompt steps to delete such information from our records and, if applicable, terminate the associated account. If you believe that a child under 18 has provided us with personal information, please contact us immediately at <a href="mailto:hello@skyknet.com">hello@skyknet.com</a>.</p>
<p>Given the nature of blockchain technology and cryptocurrency services, the use of our Services requires a level of financial sophistication and legal capacity to enter into binding agreements that is generally associated with adults. Users must be of legal age in their jurisdiction to use financial services and to enter into legally binding contracts.</p>