-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
615 lines (469 loc) · 17.7 KB
/
Copy pathprivacy.html
File metadata and controls
615 lines (469 loc) · 17.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - Ziwio</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--obsidian-black: #141416;
--champagne-gold: #F5DEB3;
--platinum-silver: #E6E6E8;
--deep-charcoal: #262629;
--ivory-white: #FAFAF9;
--warm-gray: #404042;
}
body {
font-family: 'Inter', sans-serif;
background: var(--obsidian-black);
color: var(--platinum-silver);
line-height: 1.8;
}
.header {
position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
background: rgba(20, 20, 22, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(245, 222, 179, 0.1);
padding: 1rem 2rem;
}
.header-content {
max-width: 1200px; margin: 0 auto;
display: flex; justify-content: space-between; align-items: center;
}
.logo {
font-size: 1.5rem; font-weight: 700;
background: linear-gradient(135deg, #F5DEB3 0%, #EBC88C 100%);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
background-clip: text; text-decoration: none;
}
.back-link {
color: var(--champagne-gold); text-decoration: none;
font-weight: 500; transition: opacity 0.3s;
}
.back-link:hover { opacity: 0.8; }
.container {
max-width: 900px; margin: 0 auto; padding: 8rem 2rem 4rem;
}
.policy-header {
text-align: center; margin-bottom: 4rem;
padding-bottom: 2rem; border-bottom: 1px solid var(--warm-gray);
}
h1 {
font-size: 3rem; font-weight: 300; color: var(--ivory-white);
margin-bottom: 1rem;
background: linear-gradient(135deg, #F5DEB3 0%, #EBC88C 100%);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
background-clip: text;
}
.last-updated { color: var(--warm-gray); font-size: 0.95rem; }
.content-section { margin-bottom: 3rem; }
h2 {
font-size: 1.75rem; font-weight: 600;
color: var(--ivory-white); margin: 2.5rem 0 1rem;
}
h3 {
font-size: 1.25rem; font-weight: 600;
color: var(--champagne-gold); margin: 2rem 0 1rem;
}
p { margin-bottom: 1.25rem; color: var(--platinum-silver); }
strong { color: var(--ivory-white); font-weight: 600; }
ul, ol { margin: 1rem 0 1.5rem 2rem; }
li { margin-bottom: 0.75rem; color: var(--platinum-silver); }
.important-notice {
background: rgba(245, 222, 179, 0.1);
border-left: 4px solid var(--champagne-gold);
padding: 1.5rem; margin: 2rem 0; border-radius: 0.5rem;
}
.footer {
background: var(--deep-charcoal); padding: 3rem 2rem;
margin-top: 4rem; border-top: 1px solid var(--warm-gray);
text-align: center;
}
.footer-links {
display: flex; justify-content: center;
gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.footer-links a {
color: var(--platinum-silver); text-decoration: none;
transition: color 0.3s;
}
.footer-links a:hover { color: var(--champagne-gold); }
@media (max-width: 768px) {
h1 { font-size: 2rem; }
.container { padding: 6rem 1.5rem 2rem; }
}
</style>
</head>
<body>
<header class="header">
<div class="header-content">
<a href="index.html" class="logo">ZIWIO</a>
<a href="index.html" class="back-link">← Back to Home</a>
</div>
</header>
<div class="container">
<div class="policy-header">
<h1>Privacy Policy</h1>
<p class="last-updated">Last Updated: October 2025</p>
</div>
<div class="content-section">
<h1>Ziwio Privacy Policy</h1>
<strong>Last Updated:</strong> October 2025
<h2>1. Introduction</h2>
<p>Ziwio ("we," "our," or "us") is committed to protecting your privacy. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you use the Ziwio mobile application ("App").</p>
<strong>IMPORTANT:</strong> Ziwio is a self-custodial wallet. We do NOT store your private keys, seed phrases, or wallet passwords. You maintain full control and responsibility for your cryptographic credentials.
<h2>2. Information We Collect</h2>
<h3>2.1 Information You Provide</h3>
<strong>Account Information:</strong>
<ul>
<li>Username or display name</li>
<li>Email address (optional, for notifications)</li>
<li>Profile picture (optional)</li>
</ul>
<strong>Identity Verification (KYC):</strong>
<ul>
<li>Government-issued ID (when required by regulations)</li>
<li>Proof of address documents</li>
<li>Facial recognition data for verification</li>
<li>This information is collected only when legally required for certain features</li>
</ul>
<strong>User-Generated Content:</strong>
<ul>
<li>NFT images and metadata</li>
<li>Token descriptions</li>
<li>Transaction notes</li>
<li>Real estate documentation for RWA tokenization</li>
</ul>
<h3>2.2 Information Collected Automatically</h3>
<strong>Device Information:</strong>
<ul>
<li>Device type, model, and operating system</li>
<li>Unique device identifiers</li>
<li>Mobile network information</li>
<li>IP address</li>
</ul>
<strong>Usage Data:</strong>
<ul>
<li>App features accessed</li>
<li>Transaction types (without revealing wallet addresses)</li>
<li>Session duration and frequency</li>
<li>Crash reports and error logs</li>
</ul>
<strong>Biometric Data:</strong>
<ul>
<li>Face ID or Touch ID authentication data (stored locally on your device only)</li>
</ul>
<strong>Location Data:</strong>
<ul>
<li>Approximate location (when permission is granted)</li>
<li>Used for regulatory compliance and fraud prevention</li>
</ul>
<h3>2.3 Information We Do NOT Collect or Store</h3>
<ul>
<li>Private keys or seed phrases</li>
<li>Wallet passwords</li>
<li>Full transaction history on-chain (this is public on blockchain)</li>
<li>Your cryptocurrency balances (these are on-chain)</li>
</ul>
<h3>2.4 Blockchain Data</h3>
<p>All blockchain transactions are publicly recorded on their respective networks. This includes:</p>
<ul>
<li>Wallet addresses</li>
<li>Transaction amounts</li>
<li>Transaction timestamps</li>
<li>Smart contract interactions</li>
</ul>
<strong>We do not control or have access to this public blockchain data.</strong>
<h2>3. How We Use Your Information</h2>
<h3>3.1 Essential Services</h3>
<p>We use your information to:</p>
<ul>
<li>Provide wallet and transaction services</li>
<li>Authenticate your identity</li>
<li>Process your requests and transactions</li>
<li>Send important service notifications</li>
</ul>
<h3>3.2 Improvement and Analytics</h3>
<ul>
<li>Analyze App usage to improve features</li>
<li>Debug errors and optimize performance</li>
<li>Develop new features</li>
<li>Conduct research and analytics</li>
</ul>
<h3>3.3 Security and Compliance</h3>
<ul>
<li>Detect and prevent fraud</li>
<li>Comply with legal obligations (AML/KYC)</li>
<li>Enforce our Terms of Service</li>
<li>Protect against security threats</li>
</ul>
<h3>3.4 Communications</h3>
<ul>
<li>Send transaction confirmations</li>
<li>Provide customer support</li>
<li>Send security alerts</li>
<li>Notify about updates or changes (with your consent)</li>
</ul>
<h3>3.5 Marketing (Optional)</h3>
<p>With your explicit consent:</p>
<ul>
<li>Send promotional materials about new features</li>
<li>Provide personalized recommendations</li>
<li>Share news and updates</li>
</ul>
<strong>You can opt out of marketing communications at any time.</strong>
<h2>4. Third-Party Services and Data Sharing</h2>
<h3>4.1 Service Providers</h3>
<p>We share limited information with trusted third-party providers:</p>
<strong>Exchange APIs:</strong>
<ul>
<li>Binance, Coinbase, Kraken, Gemini, Bitfinex</li>
<li>Purpose: Execute trades and access market data</li>
<li>Data shared: API keys (encrypted), trading orders</li>
</ul>
<strong>Stock Trading:</strong>
<ul>
<li>Alpaca Markets</li>
<li>Purpose: Stock trading services</li>
<li>Data shared: Trading orders, account information</li>
</ul>
<strong>Bridge Protocols:</strong>
<ul>
<li>LayerZero, Wormhole</li>
<li>Purpose: Cross-chain transfers</li>
<li>Data shared: Transaction details, wallet addresses</li>
</ul>
<strong>Price Data:</strong>
<ul>
<li>CoinGecko, CoinMarketCap</li>
<li>Purpose: Real-time cryptocurrency prices</li>
<li>Data shared: None (read-only access)</li>
</ul>
<strong>Analytics Services:</strong>
<ul>
<li>App analytics providers</li>
<li>Purpose: Understand app usage and performance</li>
<li>Data shared: Anonymized usage data</li>
</ul>
<strong>Cloud Storage:</strong>
<ul>
<li>For app data backup (excluding sensitive credentials)</li>
<li>Data is encrypted in transit and at rest</li>
</ul>
<h3>4.2 Identity Verification Partners</h3>
<p>When KYC is required:</p>
<ul>
<li>Third-party identity verification services</li>
<li>Government ID verification</li>
<li>Data shared: Personal identification documents</li>
</ul>
<h3>4.3 Legal Requirements</h3>
<p>We may disclose information when required by law:</p>
<ul>
<li>In response to court orders or subpoenas</li>
<li>To comply with regulatory requirements</li>
<li>To protect our rights or safety of others</li>
<li>In connection with fraud investigations</li>
</ul>
<h3>4.4 Business Transfers</h3>
<p>In the event of a merger, acquisition, or sale of assets, your information may be transferred to the acquiring entity.</p>
<h2>5. Data Security</h2>
<h3>5.1 Security Measures</h3>
<p>We implement industry-standard security measures:</p>
<strong>Encryption:</strong>
<ul>
<li>Data encrypted in transit (TLS/SSL)</li>
<li>Data encrypted at rest (AES-256)</li>
<li>API keys stored in iOS Keychain</li>
<li>Biometric authentication support</li>
</ul>
<strong>Access Controls:</strong>
<ul>
<li>Role-based access to internal systems</li>
<li>Multi-factor authentication for staff</li>
<li>Regular security audits</li>
</ul>
<strong>Device Security:</strong>
<ul>
<li>Private keys never leave your device</li>
<li>Seed phrases stored only in secure device storage</li>
<li>Optional biometric authentication</li>
</ul>
<h3>5.2 Your Responsibilities</h3>
<p>You are responsible for:</p>
<ul>
<li>Keeping your device secure</li>
<li>Using strong passwords</li>
<li>Protecting your seed phrase</li>
<li>Enabling biometric authentication</li>
<li>Not sharing your credentials</li>
</ul>
<h3>5.3 No Guarantee</h3>
<strong>While we implement strong security measures, no system is 100% secure.</strong> You acknowledge the inherent risks of digital systems and blockchain technology.
<h2>6. Your Privacy Rights</h2>
<h3>6.1 Access and Correction</h3>
<p>You have the right to:</p>
<ul>
<li>Access your personal information</li>
<li>Correct inaccurate information</li>
<li>Request deletion of your data (subject to legal requirements)</li>
</ul>
<h3>6.2 Data Portability</h3>
<p>You can request a copy of your data in a machine-readable format.</p>
<h3>6.3 Opt-Out Rights</h3>
<p>You can opt out of:</p>
<ul>
<li>Marketing communications</li>
<li>Non-essential data collection</li>
<li>Analytics tracking (where technically feasible)</li>
</ul>
<h3>6.4 Do Not Track</h3>
<p>We respect Do Not Track browser settings where applicable.</p>
<h3>6.5 Regional Rights</h3>
<strong>European Union (GDPR):</strong>
<ul>
<li>Right to be forgotten</li>
<li>Right to data portability</li>
<li>Right to restrict processing</li>
<li>Right to object to processing</li>
</ul>
<strong>California (CCPA):</strong>
<ul>
<li>Right to know what data is collected</li>
<li>Right to delete personal information</li>
<li>Right to opt out of data sales (we do not sell data)</li>
<li>Right to non-discrimination</li>
</ul>
<strong>Other Jurisdictions:</strong>
<p>We comply with applicable privacy laws in your region.</p>
<h2>7. Data Retention</h2>
<h3>7.1 Retention Periods</h3>
<ul>
<li><strong>Account Data:</strong> Retained while your account is active</li>
<li><strong>Transaction Records:</strong> Retained for 7 years (regulatory compliance)</li>
<li><strong>KYC Documents:</strong> Retained for 7 years after account closure</li>
<li><strong>Analytics Data:</strong> Anonymized and retained indefinitely</li>
<li><strong>Logs:</strong> Retained for 90 days</li>
</ul>
<h3>7.2 Deletion Requests</h3>
<p>You can request deletion of your data. Note:</p>
<ul>
<li>Blockchain transactions cannot be deleted (they are permanent)</li>
<li>Some data must be retained for legal/regulatory compliance</li>
<li>Deletion may prevent you from using certain features</li>
</ul>
<h2>8. Children's Privacy</h2>
<p>Ziwio is not intended for users under 18 years of age. We do not knowingly collect information from children. If we discover we have collected data from a child, we will delete it immediately.</p>
<h2>9. International Data Transfers</h2>
<p>Your information may be transferred to and processed in countries other than your own. We ensure appropriate safeguards are in place:</p>
<ul>
<li>Standard contractual clauses</li>
<li>Privacy Shield certification (where applicable)</li>
<li>Adequate data protection agreements</li>
</ul>
<h2>10. Cookies and Tracking Technologies</h2>
<h3>10.1 What We Use</h3>
<ul>
<li><strong>Essential Cookies:</strong> Required for app functionality</li>
<li><strong>Analytics Cookies:</strong> Understand app usage</li>
<li><strong>Preference Cookies:</strong> Remember your settings</li>
</ul>
<h3>10.2 Your Choices</h3>
<p>You can control cookie preferences through your device settings.</p>
<h2>11. Third-Party Links</h2>
<p>The App may contain links to third-party websites or services. We are not responsible for their privacy practices. Please review their privacy policies.</p>
<h2>12. Biometric Data</h2>
<strong>Face ID / Touch ID:</strong>
<ul>
<li>Biometric data is stored locally on your device only</li>
<li>We never receive or store your biometric templates</li>
<li>Used solely for authentication purposes</li>
<li>Controlled by your device's operating system</li>
</ul>
<h2>13. Push Notifications</h2>
<p>We may send push notifications for:</p>
<ul>
<li>Transaction confirmations</li>
<li>Security alerts</li>
<li>Price alerts (if enabled)</li>
<li>Important updates</li>
</ul>
<strong>You can disable notifications in your device settings.</strong>
<h2>14. Camera and Photo Library</h2>
<strong>Camera Access:</strong>
<ul>
<li>Used for QR code scanning (wallet addresses)</li>
<li>Used for document verification (KYC)</li>
</ul>
<strong>Photo Library:</strong>
<ul>
<li>Used for uploading NFT images</li>
<li>Used for saving QR codes</li>
</ul>
<strong>We do not access your photos without permission.</strong>
<h2>15. Location Data</h2>
<strong>Location is used for:</strong>
<ul>
<li>Regulatory compliance (restricted jurisdictions)</li>
<li>Fraud prevention</li>
<li>Real estate property verification (RWA)</li>
</ul>
<strong>You can disable location access in device settings.</strong> Some features may not work without location permissions.
<h2>16. AI and Automated Decision-Making</h2>
<p>Ziwio uses AI for:</p>
<ul>
<li>Trading insights and recommendations</li>
<li>Fraud detection</li>
<li>Price predictions</li>
</ul>
<strong>These are informational only and not investment advice.</strong> You maintain full control over all decisions.
<h2>17. Changes to This Privacy Policy</h2>
<p>We may update this Privacy Policy from time to time. Changes will be posted within the App and on our website. Continued use after changes constitutes acceptance.</p>
<strong>Material changes will be notified via:</strong>
<ul>
<li>In-app notification</li>
<li>Email (if provided)</li>
<li>Push notification</li>
</ul>
<h2>18. Data Breach Notification</h2>
<p>In the event of a data breach affecting your personal information, we will:</p>
<ul>
<li>Notify you within 72 hours</li>
<li>Describe the breach and affected data</li>
<li>Provide recommended actions</li>
<li>Comply with applicable breach notification laws</li>
</ul>
<h2>19. Contact Us</h2>
<p>For privacy-related questions or requests:</p>
<strong>Email:</strong> arseniospapa@gmail.com
<strong>Website:</strong> www.ziwio.net
<strong>Data Protection Officer:</strong> dpo@ziwio.net
<h2>20. Consent</h2>
<p>By using Ziwio, you consent to this Privacy Policy. If you do not agree, please do not use the App.</p>
<p>For specific data processing activities, we will request your explicit consent separately.</p>
<h2>21. Compliance Certifications</h2>
<p>Ziwio is committed to maintaining compliance with:</p>
<ul>
<li>GDPR (General Data Protection Regulation)</li>
<li>CCPA (California Consumer Privacy Act)</li>
<li>SOC 2 Type II (in progress)</li>
<li>ISO 27001 (in progress)</li>
</ul>
<p>---</p>
<strong>Last Updated:</strong> October 2025
<strong>Effective Date:</strong> 0ctober 2025
</div>
</div>
<footer class="footer">
<div class="footer-links">
<a href="index.html">Home</a>
<a href="terms.html">Terms of Service</a>
<a href="privacy.html">Privacy Policy</a>
<a href="mailto:arseniospapa@gmail.com">Contact</a>
</div>
<p>© 2024 Ziwio Technologies. All rights reserved.</p>
</footer>
</body>
</html>