yakmesh 2.9.0 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (225) hide show
  1. package/CHANGELOG.md +637 -0
  2. package/Caddyfile +77 -0
  3. package/README.md +119 -29
  4. package/content/api.js +50 -41
  5. package/content/index.js +1 -2
  6. package/content/store.js +323 -177
  7. package/dashboard/index.html +19 -3
  8. package/database/replication.js +117 -37
  9. package/docs/CRYPTO-AGILITY.md +204 -0
  10. package/docs/MTLS-RESEARCH.md +367 -0
  11. package/docs/NAMCHE-SPEC.md +681 -0
  12. package/docs/PEERQUANTA-YAKMESH-INTEGRATION.md +407 -0
  13. package/docs/PRECISION-DISCLOSURE.md +96 -0
  14. package/docs/README.md +76 -0
  15. package/docs/ROADMAP-2.4.0.md +447 -0
  16. package/docs/ROADMAP-2.5.0.md +244 -0
  17. package/docs/SECURITY-AUDIT-REPORT.md +306 -0
  18. package/docs/SST-INTEGRATION.md +712 -0
  19. package/docs/STEADYWATCH-IMPLEMENTATION.md +303 -0
  20. package/docs/TERNARY-AUDIT-REPORT.md +247 -0
  21. package/docs/TME-FAQ.md +221 -0
  22. package/docs/WHITEPAPER.md +623 -0
  23. package/docs/adapters.html +1001 -0
  24. package/docs/advanced-systems.html +1045 -0
  25. package/docs/annex.html +1046 -0
  26. package/docs/api.html +970 -0
  27. package/docs/business/response-templates.md +160 -0
  28. package/docs/c2c.html +1225 -0
  29. package/docs/cli.html +1332 -0
  30. package/docs/configuration.html +1248 -0
  31. package/docs/darshan.html +1085 -0
  32. package/docs/dharma.html +966 -0
  33. package/docs/docs-bundle.html +1075 -0
  34. package/docs/docs.css +3120 -0
  35. package/docs/docs.js +556 -0
  36. package/docs/doko.html +969 -0
  37. package/docs/geo-proof.html +858 -0
  38. package/docs/getting-started.html +840 -0
  39. package/docs/gumba-tutorial.html +1144 -0
  40. package/docs/gumba.html +1098 -0
  41. package/docs/index.html +914 -0
  42. package/docs/jhilke.html +1312 -0
  43. package/docs/karma.html +1100 -0
  44. package/docs/katha.html +1037 -0
  45. package/docs/lama.html +978 -0
  46. package/docs/mandala.html +1067 -0
  47. package/docs/mani.html +964 -0
  48. package/docs/mantra.html +967 -0
  49. package/docs/mesh.html +1409 -0
  50. package/docs/nakpak.html +869 -0
  51. package/docs/namche.html +928 -0
  52. package/docs/nav-order.json +53 -0
  53. package/docs/prahari.html +1043 -0
  54. package/docs/prism-bash.min.js +1 -0
  55. package/docs/prism-javascript.min.js +1 -0
  56. package/docs/prism-json.min.js +1 -0
  57. package/docs/prism-tomorrow.min.css +1 -0
  58. package/docs/prism.min.js +1 -0
  59. package/docs/privacy.html +699 -0
  60. package/docs/quick-reference.html +1181 -0
  61. package/docs/sakshi.html +1402 -0
  62. package/docs/sandboxing.md +386 -0
  63. package/docs/seva.html +911 -0
  64. package/docs/sherpa.html +871 -0
  65. package/docs/studio.html +860 -0
  66. package/docs/stupa.html +995 -0
  67. package/docs/tailwind.min.css +2 -0
  68. package/docs/tattva.html +1332 -0
  69. package/docs/terms.html +686 -0
  70. package/docs/time-server-deployment.md +166 -0
  71. package/docs/time-sources.html +1392 -0
  72. package/docs/tivra.html +1127 -0
  73. package/docs/trademark-policy.html +686 -0
  74. package/docs/tribhuj.html +1183 -0
  75. package/docs/trust-security.html +1029 -0
  76. package/docs/tutorials/backup-recovery.html +654 -0
  77. package/docs/tutorials/dashboard.html +604 -0
  78. package/docs/tutorials/domain-setup.html +605 -0
  79. package/docs/tutorials/host-website.html +456 -0
  80. package/docs/tutorials/mesh-network.html +505 -0
  81. package/docs/tutorials/mobile-access.html +445 -0
  82. package/docs/tutorials/privacy.html +467 -0
  83. package/docs/tutorials/raspberry-pi.html +600 -0
  84. package/docs/tutorials/security-basics.html +539 -0
  85. package/docs/tutorials/share-files.html +431 -0
  86. package/docs/tutorials/troubleshooting.html +637 -0
  87. package/docs/tutorials/trust-karma.html +419 -0
  88. package/docs/tutorials/yak-protocol.html +456 -0
  89. package/docs/tutorials.html +1034 -0
  90. package/docs/vani.html +1270 -0
  91. package/docs/webserver.html +809 -0
  92. package/docs/yak-protocol.html +940 -0
  93. package/docs/yak-timeserver-design.md +475 -0
  94. package/docs/yakapp.html +1015 -0
  95. package/docs/ypc27.html +1069 -0
  96. package/docs/yurt.html +1344 -0
  97. package/embedded-docs/bundle.js +274 -114
  98. package/gossip/protocol.js +247 -27
  99. package/identity/key-resolver.js +262 -0
  100. package/identity/machine-seed.js +632 -0
  101. package/identity/node-key.js +669 -368
  102. package/identity/tribhuj-ratchet.js +506 -0
  103. package/knowledge-base.js +37 -8
  104. package/launcher/yakmesh.bat +62 -0
  105. package/launcher/yakmesh.sh +70 -0
  106. package/mesh/annex.js +462 -108
  107. package/mesh/beacon-broadcast.js +4 -1
  108. package/mesh/darshan.js +17 -5
  109. package/mesh/gumba.js +47 -13
  110. package/mesh/jhilke.js +651 -0
  111. package/mesh/katha.js +5 -2
  112. package/mesh/nakpak-routing.js +8 -5
  113. package/mesh/network.js +724 -34
  114. package/mesh/pulse-sync.js +4 -1
  115. package/mesh/seva.js +526 -0
  116. package/mesh/sherpa-discovery.js +89 -8
  117. package/mesh/sybil-defense.js +19 -5
  118. package/mesh/temporal-encoder.js +4 -3
  119. package/mesh/yurt.js +72 -17
  120. package/models/entropy-sentinel.onnx +0 -0
  121. package/models/karma-trust.onnx +0 -0
  122. package/models/manifest.json +43 -0
  123. package/models/sakshi-anomaly.onnx +0 -0
  124. package/oracle/code-proof-protocol.js +7 -6
  125. package/oracle/codebase-lock.js +257 -28
  126. package/oracle/index.js +74 -15
  127. package/oracle/ma902-snmp.js +678 -0
  128. package/oracle/module-sealer.js +5 -3
  129. package/oracle/packet-checksum.js +201 -0
  130. package/oracle/ternary-144t.js +714 -0
  131. package/oracle/ternary-ml.js +481 -0
  132. package/oracle/time-api.js +239 -0
  133. package/oracle/time-source.js +137 -47
  134. package/oracle/validation-oracle-hardened.js +1111 -1071
  135. package/oracle/validation-oracle.js +4 -2
  136. package/oracle/ypc27.js +211 -0
  137. package/package.json +20 -3
  138. package/protocol/yak-handler.js +35 -9
  139. package/protocol/yak-protocol.js +6 -5
  140. package/reference/cpp/yakmesh_mceliece_shard.cpp +168 -0
  141. package/reference/cpp/yakmesh_ypc27.cpp +179 -0
  142. package/sbom.json +87 -0
  143. package/scripts/security-audit.mjs +264 -0
  144. package/scripts/update-docs-sidebar.cjs +164 -0
  145. package/security/crypto-config.js +4 -3
  146. package/security/dharma-moderation.js +4 -3
  147. package/security/doko-identity.js +193 -143
  148. package/security/domain-consensus.js +86 -85
  149. package/security/fs-hardening.js +620 -0
  150. package/security/hardware-attestation.js +5 -3
  151. package/security/hybrid-trust.js +227 -87
  152. package/security/karma-rate-limiter.js +692 -0
  153. package/security/khata-protocol.js +22 -21
  154. package/security/khata-trust-integration.js +277 -150
  155. package/security/memory-safety.js +635 -0
  156. package/security/mesh-auth.js +11 -10
  157. package/security/mesh-revocation.js +18 -5
  158. package/security/namche-gateway.js +298 -69
  159. package/security/sakshi.js +102 -3
  160. package/security/sangha.js +770 -0
  161. package/security/secure-config.js +473 -0
  162. package/security/silicon-parity.js +13 -10
  163. package/security/steadywatch.js +1142 -0
  164. package/security/strike-system.js +32 -3
  165. package/security/temporal-signing.js +488 -0
  166. package/security/trit-commitment.js +464 -0
  167. package/server/crypto/annex.js +247 -0
  168. package/server/darshan-api.js +343 -0
  169. package/server/index.js +3259 -362
  170. package/server/komm-api.js +668 -0
  171. package/utils/accel.js +2273 -0
  172. package/utils/ternary-id.js +79 -0
  173. package/utils/verify-worker.js +57 -0
  174. package/webserver/index.js +95 -5
  175. package/assets/yakmesh-logo.png +0 -0
  176. package/assets/yakmesh-logo.svg +0 -80
  177. package/assets/yakmesh-logo2.png +0 -0
  178. package/assets/yakmesh-logo2sm.png +0 -0
  179. package/assets/ymsm.png +0 -0
  180. package/scripts/update-docs-nav.cjs +0 -194
  181. package/update-docs-nav.cjs +0 -18
  182. package/update-nav.ps1 +0 -16
  183. package/website/assets/silhouettes/adapters.svg +0 -107
  184. package/website/assets/silhouettes/api-endpoints.svg +0 -115
  185. package/website/assets/silhouettes/atomic-clock.svg +0 -83
  186. package/website/assets/silhouettes/base-camp.svg +0 -81
  187. package/website/assets/silhouettes/bridge.svg +0 -69
  188. package/website/assets/silhouettes/docs-bundle.svg +0 -113
  189. package/website/assets/silhouettes/doko-basket.svg +0 -70
  190. package/website/assets/silhouettes/fortress.svg +0 -93
  191. package/website/assets/silhouettes/gateway.svg +0 -54
  192. package/website/assets/silhouettes/gears.svg +0 -93
  193. package/website/assets/silhouettes/globe-satellite.svg +0 -67
  194. package/website/assets/silhouettes/karma-wheel.svg +0 -137
  195. package/website/assets/silhouettes/lama-council.svg +0 -141
  196. package/website/assets/silhouettes/mandala-network.svg +0 -169
  197. package/website/assets/silhouettes/mani-stones.svg +0 -149
  198. package/website/assets/silhouettes/mantra-wheel.svg +0 -116
  199. package/website/assets/silhouettes/mesh-nodes.svg +0 -113
  200. package/website/assets/silhouettes/nakpak.svg +0 -56
  201. package/website/assets/silhouettes/peak-lightning.svg +0 -73
  202. package/website/assets/silhouettes/sherpa.svg +0 -69
  203. package/website/assets/silhouettes/stupa-tower.svg +0 -119
  204. package/website/assets/silhouettes/tattva-eye.svg +0 -78
  205. package/website/assets/silhouettes/terminal.svg +0 -74
  206. package/website/assets/silhouettes/webserver.svg +0 -145
  207. package/website/assets/silhouettes/yak.svg +0 -78
  208. package/website/assets/yakmesh-logo.png +0 -0
  209. package/website/assets/yakmesh-logo.webp +0 -0
  210. package/website/assets/yakmesh-logo128x140.webp +0 -0
  211. package/website/assets/yakmesh-logo2.png +0 -0
  212. package/website/assets/yakmesh-logo2.svg +0 -51
  213. package/website/assets/yakmesh-logo40x44.webp +0 -0
  214. package/website/assets/yakmesh.gif +0 -0
  215. package/website/assets/yakmesh.ico +0 -0
  216. package/website/assets/yakmesh.jpg +0 -0
  217. package/website/assets/yakmesh.pdf +0 -0
  218. package/website/assets/yakmesh.png +0 -0
  219. package/website/assets/yakmesh.svg +0 -70
  220. package/website/assets/yakmesh128.webp +0 -0
  221. package/website/assets/yakmesh32.png +0 -0
  222. package/website/assets/yakmesh32.svg +0 -65
  223. package/website/assets/yakmesh32o.ico +0 -2
  224. package/website/assets/yakmesh32o.svg +0 -65
  225. package/website/assets/yakmesh32o.svgz +0 -0
@@ -0,0 +1,699 @@
1
+ <![CDATA[<!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <link rel="icon" href="favicon.ico" sizes="32x32">
7
+ <link rel="icon" href="icon.svg" type="image/svg+xml">
8
+ <link rel="apple-touch-icon" href="apple-touch-icon.png">
9
+ <title>Privacy Policy - YAKMESH</title>
10
+ <meta name="description" content="Yakmesh privacy policy and data handling practices">
11
+ <link rel="icon" type="image/png" href="../assets/yakmesh-logo2.png">
12
+ <link rel="stylesheet" href="tailwind.min.css">
13
+
14
+ <!-- Open Graph -->
15
+ <meta property="og:type" content="article">
16
+ <meta property="og:site_name" content="Yakmesh Documentation">
17
+ <meta property="og:title" content="Privacy Policy — Yakmesh">
18
+ <meta property="og:description" content="Yakmesh privacy policy and data handling practices">
19
+ </head>
20
+ <body class="bg-mountain-900 text-white min-h-screen">
21
+ <!-- YAKMESH-ICON-SPRITE-START -->
22
+ <svg xmlns="http://www.w3.org/2000/svg" style="display:none">
23
+ <!--
24
+ Yakmesh Docs Icon Sprite Sheet
25
+ 24×24 viewBox — stroke/fill set via .doc-icon CSS
26
+ Usage: <svg class="doc-icon"><use href="#icon-name"/></svg>
27
+ -->
28
+
29
+ <!-- ═══ GUIDES ═══ -->
30
+
31
+ <symbol id="icon-home" viewBox="0 0 24 24">
32
+ <path d="M3 9.5L12 3l9 6.5V20a1 1 0 01-1 1H4a1 1 0 01-1-1V9.5z"/>
33
+ <polyline points="9 22 9 12 15 12 15 22"/>
34
+ </symbol>
35
+
36
+ <symbol id="icon-rocket" viewBox="0 0 24 24">
37
+ <path d="M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 00-2.91-.09z"/>
38
+ <path d="M12 15l-3-3a22 22 0 012-3.95A12.88 12.88 0 0122 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 01-4 2z"/>
39
+ <path d="M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0"/>
40
+ <path d="M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5"/>
41
+ </symbol>
42
+
43
+ <symbol id="icon-book" viewBox="0 0 24 24">
44
+ <path d="M4 19.5A2.5 2.5 0 016.5 17H20"/>
45
+ <path d="M6.5 2H20v20H6.5A2.5 2.5 0 014 19.5v-15A2.5 2.5 0 016.5 2z"/>
46
+ <line x1="8" y1="7" x2="16" y2="7"/>
47
+ <line x1="8" y1="11" x2="13" y2="11"/>
48
+ </symbol>
49
+
50
+ <!-- ═══ PROTOCOL STACK ═══ -->
51
+
52
+ <!-- YAK:// — Content addressing (yak horns) -->
53
+ <symbol id="icon-yak" viewBox="0 0 24 24">
54
+ <path d="M4 4c1 3 3 5 5 6"/>
55
+ <path d="M20 4c-1 3-3 5-5 6"/>
56
+ <circle cx="12" cy="14" r="5"/>
57
+ <circle cx="10" cy="13" r="0.5" fill="currentColor"/>
58
+ <circle cx="14" cy="13" r="0.5" fill="currentColor"/>
59
+ <path d="M10 16c1 1 3 1 4 0"/>
60
+ </symbol>
61
+
62
+ <!-- ANNEX — Encrypted bridge -->
63
+ <symbol id="icon-annex" viewBox="0 0 24 24">
64
+ <path d="M4 18h3a4 4 0 004-4V8"/>
65
+ <path d="M20 18h-3a4 4 0 01-4-4V8"/>
66
+ <circle cx="7" cy="6" r="2"/>
67
+ <circle cx="17" cy="6" r="2"/>
68
+ <line x1="7" y1="8" x2="7" y2="18"/>
69
+ <line x1="17" y1="8" x2="17" y2="18"/>
70
+ </symbol>
71
+
72
+ <!-- JHILKE — Cricket / steganographic key lifecycle -->
73
+ <symbol id="icon-jhilke" viewBox="0 0 24 24">
74
+ <ellipse cx="12" cy="14" rx="4" ry="6"/>
75
+ <path d="M8 10c-2-3-4-6-3-8"/>
76
+ <path d="M16 10c2-3 4-6 3-8"/>
77
+ <line x1="10" y1="20" x2="8" y2="23"/>
78
+ <line x1="14" y1="20" x2="16" y2="23"/>
79
+ <path d="M9 12l-4 2"/>
80
+ <path d="M15 12l4 2"/>
81
+ </symbol>
82
+
83
+ <!-- NAKPAK — Onion layers / backpack -->
84
+ <symbol id="icon-nakpak" viewBox="0 0 24 24">
85
+ <circle cx="12" cy="12" r="10" opacity="0.3"/>
86
+ <circle cx="12" cy="12" r="7" opacity="0.5"/>
87
+ <circle cx="12" cy="12" r="4" opacity="0.8"/>
88
+ <circle cx="12" cy="12" r="1.5" fill="currentColor"/>
89
+ </symbol>
90
+
91
+ <!-- NAMCHE — Gateway door -->
92
+ <symbol id="icon-namche" viewBox="0 0 24 24">
93
+ <rect x="3" y="3" width="18" height="18" rx="2"/>
94
+ <path d="M9 3v18"/>
95
+ <path d="M15 3v18"/>
96
+ <line x1="3" y1="8" x2="9" y2="8"/>
97
+ <line x1="15" y1="8" x2="21" y2="8"/>
98
+ <circle cx="12" cy="14" r="1" fill="currentColor"/>
99
+ </symbol>
100
+
101
+ <!-- DOKO — Basket / certificate -->
102
+ <symbol id="icon-doko" viewBox="0 0 24 24">
103
+ <path d="M6 8l-2 12h16l-2-12"/>
104
+ <path d="M6 8c0-3 2.7-5 6-5s6 2 6 5"/>
105
+ <line x1="8" y1="10" x2="10" y2="18"/>
106
+ <line x1="16" y1="10" x2="14" y2="18"/>
107
+ <line x1="12" y1="10" x2="12" y2="18"/>
108
+ </symbol>
109
+
110
+ <!-- SHERPA — Mountain climber -->
111
+ <symbol id="icon-sherpa" viewBox="0 0 24 24">
112
+ <path d="M4 20L10 6l3 6 3-4 4 12"/>
113
+ <line x1="4" y1="20" x2="20" y2="20"/>
114
+ <circle cx="13" cy="4" r="1.5"/>
115
+ </symbol>
116
+
117
+ <!-- MANDALA — Network topology web -->
118
+ <symbol id="icon-mandala" viewBox="0 0 24 24">
119
+ <circle cx="12" cy="12" r="9"/>
120
+ <circle cx="12" cy="12" r="4.5"/>
121
+ <line x1="12" y1="3" x2="12" y2="21"/>
122
+ <line x1="3" y1="12" x2="21" y2="12"/>
123
+ <line x1="5.6" y1="5.6" x2="18.4" y2="18.4"/>
124
+ <line x1="18.4" y1="5.6" x2="5.6" y2="18.4"/>
125
+ </symbol>
126
+
127
+ <!-- MANTRA — Gossip / prayer wheel -->
128
+ <symbol id="icon-mantra" viewBox="0 0 24 24">
129
+ <circle cx="12" cy="10" r="7"/>
130
+ <path d="M12 3v14"/>
131
+ <path d="M8 7c2 1.5 6 1.5 8 0"/>
132
+ <path d="M8 13c2-1.5 6-1.5 8 0"/>
133
+ <line x1="12" y1="17" x2="12" y2="22"/>
134
+ <line x1="9" y1="22" x2="15" y2="22"/>
135
+ </symbol>
136
+
137
+ <!-- GUMBA — Temple / access control -->
138
+ <symbol id="icon-gumba" viewBox="0 0 24 24">
139
+ <path d="M12 2L3 9h18z"/>
140
+ <line x1="5" y1="9" x2="5" y2="19"/>
141
+ <line x1="9" y1="9" x2="9" y2="19"/>
142
+ <line x1="15" y1="9" x2="15" y2="19"/>
143
+ <line x1="19" y1="9" x2="19" y2="19"/>
144
+ <line x1="3" y1="19" x2="21" y2="19"/>
145
+ <line x1="3" y1="21" x2="21" y2="21"/>
146
+ </symbol>
147
+
148
+ <!-- YURT — Camp / room -->
149
+ <symbol id="icon-yurt" viewBox="0 0 24 24">
150
+ <path d="M3 20L12 4l9 16"/>
151
+ <line x1="3" y1="20" x2="21" y2="20"/>
152
+ <path d="M10 20v-5a2 2 0 014 0v5"/>
153
+ <path d="M6 14h12"/>
154
+ </symbol>
155
+
156
+ <!-- KATHA — Chat / story scroll -->
157
+ <symbol id="icon-katha" viewBox="0 0 24 24">
158
+ <path d="M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z"/>
159
+ <line x1="8" y1="8" x2="16" y2="8"/>
160
+ <line x1="8" y1="12" x2="13" y2="12"/>
161
+ </symbol>
162
+
163
+ <!-- VANI — Voice / microphone -->
164
+ <symbol id="icon-vani" viewBox="0 0 24 24">
165
+ <rect x="9" y="2" width="6" height="11" rx="3"/>
166
+ <path d="M5 10a7 7 0 0014 0"/>
167
+ <line x1="12" y1="17" x2="12" y2="22"/>
168
+ <line x1="8" y1="22" x2="16" y2="22"/>
169
+ </symbol>
170
+
171
+ <!-- DARSHAN — Eye / viewing -->
172
+ <symbol id="icon-darshan" viewBox="0 0 24 24">
173
+ <path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8S1 12 1 12z"/>
174
+ <circle cx="12" cy="12" r="3"/>
175
+ </symbol>
176
+
177
+ <!-- STUPA — Tower / distributed storage -->
178
+ <symbol id="icon-stupa" viewBox="0 0 24 24">
179
+ <line x1="12" y1="2" x2="12" y2="5"/>
180
+ <path d="M10 5h4l1 3H9z"/>
181
+ <ellipse cx="12" cy="11" rx="5" ry="3"/>
182
+ <ellipse cx="12" cy="15" rx="6" ry="3"/>
183
+ <ellipse cx="12" cy="19" rx="7" ry="3"/>
184
+ </symbol>
185
+
186
+ <!-- LAMA — Crystal ball / consensus -->
187
+ <symbol id="icon-lama" viewBox="0 0 24 24">
188
+ <circle cx="12" cy="10" r="7"/>
189
+ <path d="M12 3c-1.5 2-2 5 0 7s4.5 2 6 0"/>
190
+ <path d="M7 19h10"/>
191
+ <path d="M9 22h6"/>
192
+ <line x1="9" y1="17" x2="9" y2="19"/>
193
+ <line x1="15" y1="17" x2="15" y2="19"/>
194
+ </symbol>
195
+
196
+ <!-- MANI — Prayer stone / time sync -->
197
+ <symbol id="icon-mani" viewBox="0 0 24 24">
198
+ <circle cx="12" cy="12" r="9"/>
199
+ <polyline points="12 6 12 12 16 14"/>
200
+ <circle cx="12" cy="12" r="1" fill="currentColor"/>
201
+ </symbol>
202
+
203
+ <!-- KARMA — Yin-yang / reputation -->
204
+ <symbol id="icon-karma" viewBox="0 0 24 24">
205
+ <circle cx="12" cy="12" r="9"/>
206
+ <path d="M12 3a4.5 4.5 0 010 9 4.5 4.5 0 000 9"/>
207
+ <circle cx="12" cy="7.5" r="1.5" fill="currentColor"/>
208
+ <circle cx="12" cy="16.5" r="1.5"/>
209
+ </symbol>
210
+
211
+ <!-- TATTVA — Quantum elements / atom -->
212
+ <symbol id="icon-tattva" viewBox="0 0 24 24">
213
+ <circle cx="12" cy="12" r="2.5" fill="currentColor" stroke="none"/>
214
+ <ellipse cx="12" cy="12" rx="10" ry="4"/>
215
+ <ellipse cx="12" cy="12" rx="10" ry="4" transform="rotate(60 12 12)"/>
216
+ <ellipse cx="12" cy="12" rx="10" ry="4" transform="rotate(120 12 12)"/>
217
+ </symbol>
218
+
219
+ <!-- TRIBHUJ — Triangle / balanced ternary -->
220
+ <symbol id="icon-tribhuj" viewBox="0 0 24 24">
221
+ <polygon points="12,3 21,20 3,20"/>
222
+ <line x1="12" y1="3" x2="12" y2="20"/>
223
+ <line x1="7.5" y1="11.5" x2="16.5" y2="11.5"/>
224
+ <circle cx="12" cy="14" r="1" fill="currentColor"/>
225
+ </symbol>
226
+
227
+ <!-- YPC-27 — Lock / cipher -->
228
+ <symbol id="icon-ypc27" viewBox="0 0 24 24">
229
+ <rect x="5" y="11" width="14" height="10" rx="2"/>
230
+ <path d="M8 11V7a4 4 0 118 0v4"/>
231
+ <circle cx="12" cy="16" r="1" fill="currentColor"/>
232
+ <line x1="12" y1="17" x2="12" y2="19"/>
233
+ </symbol>
234
+
235
+ <!-- SAKSHI — Witness / aperture eye -->
236
+ <symbol id="icon-sakshi" viewBox="0 0 24 24">
237
+ <circle cx="12" cy="12" r="9"/>
238
+ <path d="M12 3l3 9-3 9"/>
239
+ <path d="M12 3l-3 9 3 9"/>
240
+ <circle cx="12" cy="12" r="2.5"/>
241
+ <circle cx="12" cy="12" r="0.8" fill="currentColor"/>
242
+ </symbol>
243
+
244
+ <!-- PRAMAAN — Globe / geographic proof -->
245
+ <symbol id="icon-pramaan" viewBox="0 0 24 24">
246
+ <circle cx="12" cy="12" r="9"/>
247
+ <ellipse cx="12" cy="12" rx="4" ry="9"/>
248
+ <line x1="3" y1="9" x2="21" y2="9"/>
249
+ <line x1="3" y1="15" x2="21" y2="15"/>
250
+ <path d="M18 4l-2 2 1 3"/>
251
+ <path d="M6 18l2-1 3 1"/>
252
+ </symbol>
253
+
254
+ <!-- SURAKSHA — Shield / security -->
255
+ <symbol id="icon-suraksha" viewBox="0 0 24 24">
256
+ <path d="M12 2l8 4v6c0 5.5-3.8 10.7-8 12-4.2-1.3-8-6.5-8-12V6z"/>
257
+ <polyline points="9 12 11 14 15 10"/>
258
+ </symbol>
259
+
260
+ <!-- TIVRA — Lightning bolt / acceleration -->
261
+ <symbol id="icon-tivra" viewBox="0 0 24 24">
262
+ <polygon points="13,2 3,14 12,14 11,22 21,10 12,10"/>
263
+ </symbol>
264
+
265
+ <!-- PRAHARI — Satellite / sentinel -->
266
+ <symbol id="icon-prahari" viewBox="0 0 24 24">
267
+ <rect x="9" y="9" width="6" height="6" rx="1" transform="rotate(45 12 12)"/>
268
+ <line x1="12" y1="5" x2="12" y2="2"/>
269
+ <line x1="19" y1="12" x2="22" y2="12"/>
270
+ <line x1="12" y1="19" x2="12" y2="22"/>
271
+ <line x1="5" y1="12" x2="2" y2="12"/>
272
+ <path d="M7 7L5 5"/>
273
+ <path d="M17 7l2-2"/>
274
+ </symbol>
275
+
276
+ <!-- DHARMA — Balance scale / content moderation -->
277
+ <symbol id="icon-dharma" viewBox="0 0 24 24">
278
+ <line x1="12" y1="3" x2="12" y2="21"/>
279
+ <line x1="4" y1="7" x2="20" y2="7"/>
280
+ <path d="M4 7l2 7h0a3 3 0 006 0h0l2-7"/>
281
+ <path d="M14 7l2 7h0a3 3 0 006 0h0l2-7"/>
282
+ <line x1="10" y1="21" x2="14" y2="21"/>
283
+ </symbol>
284
+
285
+ <!-- SEVA — Helping hands / NPU sharing -->
286
+ <symbol id="icon-seva" viewBox="0 0 24 24">
287
+ <path d="M12 22c-4 0-8-2-8-6 0-2 1-3 3-4l5-3 5 3c2 1 3 2 3 4 0 4-4 6-8 6z"/>
288
+ <path d="M12 11V5"/>
289
+ <path d="M9 8l3-3 3 3"/>
290
+ <circle cx="12" cy="16" r="2"/>
291
+ </symbol>
292
+
293
+ <!-- ═══ APPLICATIONS ═══ -->
294
+
295
+ <!-- YakApp — Messenger -->
296
+ <symbol id="icon-yakapp" viewBox="0 0 24 24">
297
+ <path d="M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z"/>
298
+ </symbol>
299
+
300
+ <!-- C2C — Core to Cosmos -->
301
+ <symbol id="icon-c2c" viewBox="0 0 24 24">
302
+ <circle cx="12" cy="12" r="3"/>
303
+ <circle cx="12" cy="12" r="9"/>
304
+ <path d="M12 3v3"/>
305
+ <path d="M12 18v3"/>
306
+ <path d="M3 12h3"/>
307
+ <path d="M18 12h3"/>
308
+ </symbol>
309
+
310
+ <!-- Studio — Creative suite -->
311
+ <symbol id="icon-studio" viewBox="0 0 24 24">
312
+ <circle cx="13.5" cy="6.5" r="2.5"/>
313
+ <path d="M6 21l4-10 3 5 4-7 4 12"/>
314
+ <rect x="2" y="2" width="20" height="20" rx="2"/>
315
+ </symbol>
316
+
317
+
318
+ <!-- ═══ REFERENCE ═══ -->
319
+
320
+ <!-- Quick Reference — Clipboard -->
321
+ <symbol id="icon-quickref" viewBox="0 0 24 24">
322
+ <path d="M16 4h2a2 2 0 012 2v14a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2h2"/>
323
+ <rect x="8" y="2" width="8" height="4" rx="1"/>
324
+ <line x1="8" y1="10" x2="16" y2="10"/>
325
+ <line x1="8" y1="14" x2="16" y2="14"/>
326
+ <line x1="8" y1="18" x2="12" y2="18"/>
327
+ </symbol>
328
+
329
+ <!-- GRANTH — Docs bundle -->
330
+ <symbol id="icon-granth" viewBox="0 0 24 24">
331
+ <path d="M4 19.5A2.5 2.5 0 016.5 17H20"/>
332
+ <path d="M6.5 2H20v20H6.5A2.5 2.5 0 014 19.5v-15A2.5 2.5 0 016.5 2z"/>
333
+ <path d="M8 7h8"/>
334
+ <path d="M8 11h5"/>
335
+ <path d="M8 15h3"/>
336
+ </symbol>
337
+
338
+ <!-- API — Signal tower -->
339
+ <symbol id="icon-api" viewBox="0 0 24 24">
340
+ <line x1="12" y1="10" x2="12" y2="22"/>
341
+ <path d="M8 6a6 6 0 018 0"/>
342
+ <path d="M5 3a10 10 0 0114 0"/>
343
+ <circle cx="12" cy="10" r="2"/>
344
+ </symbol>
345
+
346
+ <!-- Adapters — Plug connector -->
347
+ <symbol id="icon-adapters" viewBox="0 0 24 24">
348
+ <path d="M6 3v4"/>
349
+ <path d="M10 3v4"/>
350
+ <path d="M4 7h8v3a4 4 0 01-8 0V7z"/>
351
+ <line x1="8" y1="14" x2="8" y2="17"/>
352
+ <path d="M14 10h4v3a2 2 0 01-4 0v-3z"/>
353
+ <line x1="16" y1="7" x2="16" y2="10"/>
354
+ <line x1="16" y1="13" x2="16" y2="17"/>
355
+ <line x1="8" y1="17" x2="16" y2="17"/>
356
+ <line x1="12" y1="17" x2="12" y2="21"/>
357
+ </symbol>
358
+
359
+ <!-- ═══ EXTRA (pages outside nav-order) ═══ -->
360
+
361
+ <!-- Terminal / CLI -->
362
+ <symbol id="icon-terminal" viewBox="0 0 24 24">
363
+ <rect x="2" y="3" width="20" height="18" rx="2"/>
364
+ <polyline points="7 9 10 12 7 15"/>
365
+ <line x1="13" y1="15" x2="17" y2="15"/>
366
+ </symbol>
367
+
368
+ <!-- Gear / Configuration -->
369
+ <symbol id="icon-gear" viewBox="0 0 24 24">
370
+ <circle cx="12" cy="12" r="3"/>
371
+ <path d="M19.4 15a1.65 1.65 0 00.33 1.82l.06.06a2 2 0 01-2.83 2.83l-.06-.06a1.65 1.65 0 00-1.82-.33 1.65 1.65 0 00-1 1.51V21a2 2 0 01-4 0v-.09A1.65 1.65 0 009 19.4a1.65 1.65 0 00-1.82.33l-.06.06a2 2 0 01-2.83-2.83l.06-.06A1.65 1.65 0 004.68 15a1.65 1.65 0 00-1.51-1H3a2 2 0 010-4h.09A1.65 1.65 0 004.6 9a1.65 1.65 0 00-.33-1.82l-.06-.06a2 2 0 012.83-2.83l.06.06A1.65 1.65 0 009 4.68a1.65 1.65 0 001-1.51V3a2 2 0 014 0v.09a1.65 1.65 0 001 1.51 1.65 1.65 0 001.82-.33l.06-.06a2 2 0 012.83 2.83l-.06.06A1.65 1.65 0 0019.4 9a1.65 1.65 0 001.51 1H21a2 2 0 010 4h-.09a1.65 1.65 0 00-1.51 1z"/>
372
+ </symbol>
373
+
374
+ <!-- Server / Web hosting -->
375
+ <symbol id="icon-server" viewBox="0 0 24 24">
376
+ <rect x="2" y="2" width="20" height="8" rx="2"/>
377
+ <rect x="2" y="14" width="20" height="8" rx="2"/>
378
+ <line x1="6" y1="6" x2="6.01" y2="6"/>
379
+ <line x1="6" y1="18" x2="6.01" y2="18"/>
380
+ </symbol>
381
+
382
+ <!-- ═══ CHROME / UI ═══ -->
383
+
384
+ <!-- Mountain peak — logo icon (replaces 🏔️) -->
385
+ <symbol id="icon-mountain" viewBox="0 0 24 24">
386
+ <path d="M8 21l4.5-9 3 5.5L19 12l3 9H2l6-9z"/>
387
+ <path d="M12 12l1.5-3L16 14"/>
388
+ </symbol>
389
+
390
+ <!-- Dashboard / bar chart (replaces 📊) -->
391
+ <symbol id="icon-dashboard" viewBox="0 0 24 24">
392
+ <line x1="18" y1="20" x2="18" y2="10"/>
393
+ <line x1="12" y1="20" x2="12" y2="4"/>
394
+ <line x1="6" y1="20" x2="6" y2="14"/>
395
+ <rect x="2" y="2" width="20" height="20" rx="2" stroke-opacity="0.4"/>
396
+ </symbol>
397
+
398
+ <!-- ═══ GENERIC / CONTENT ICONS ═══ -->
399
+
400
+ <!-- Lock / encrypted (replaces 🔐) -->
401
+ <symbol id="icon-lock" viewBox="0 0 24 24">
402
+ <rect x="3" y="11" width="18" height="11" rx="2"/>
403
+ <path d="M7 11V7a5 5 0 0110 0v4"/>
404
+ </symbol>
405
+
406
+ <!-- Signal / broadcast (replaces 📡) -->
407
+ <symbol id="icon-signal" viewBox="0 0 24 24">
408
+ <path d="M2 12a10 10 0 0118 0"/>
409
+ <path d="M5 12a7 7 0 0112 0"/>
410
+ <path d="M8 12a4 4 0 016 0"/>
411
+ <circle cx="11" cy="12" r="1"/>
412
+ </symbol>
413
+
414
+ <!-- Link / chain (replaces 🔗) -->
415
+ <symbol id="icon-link" viewBox="0 0 24 24">
416
+ <path d="M10 13a5 5 0 007.54.54l3-3a5 5 0 00-7.07-7.07l-1.72 1.71"/>
417
+ <path d="M14 11a5 5 0 00-7.54-.54l-3 3a5 5 0 007.07 7.07l1.71-1.71"/>
418
+ </symbol>
419
+
420
+ <!-- Globe / network (replaces 🌐) -->
421
+ <symbol id="icon-globe" viewBox="0 0 24 24">
422
+ <circle cx="12" cy="12" r="10"/>
423
+ <line x1="2" y1="12" x2="22" y2="12"/>
424
+ <path d="M12 2a15.3 15.3 0 014 10 15.3 15.3 0 01-4 10 15.3 15.3 0 01-4-10 15.3 15.3 0 014-10z"/>
425
+ </symbol>
426
+
427
+ <!-- Sync / refresh (replaces 🔄) -->
428
+ <symbol id="icon-sync" viewBox="0 0 24 24">
429
+ <polyline points="23 4 23 10 17 10"/>
430
+ <polyline points="1 20 1 14 7 14"/>
431
+ <path d="M3.51 9a9 9 0 0114.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0020.49 15"/>
432
+ </symbol>
433
+
434
+ <!-- Users / group (replaces 👥) -->
435
+ <symbol id="icon-users" viewBox="0 0 24 24">
436
+ <path d="M17 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2"/>
437
+ <circle cx="9" cy="7" r="4"/>
438
+ <path d="M23 21v-2a4 4 0 00-3-3.87"/>
439
+ <path d="M16 3.13a4 4 0 010 7.75"/>
440
+ </symbol>
441
+
442
+ <!-- Shield / protection (replaces 🛡) -->
443
+ <symbol id="icon-shield" viewBox="0 0 24 24">
444
+ <path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/>
445
+ </symbol>
446
+
447
+ <!-- Heartbeat / pulse (replaces 💓) -->
448
+ <symbol id="icon-heartbeat" viewBox="0 0 24 24">
449
+ <path d="M3 12h4l3-9 4 18 3-9h4"/>
450
+ </symbol>
451
+
452
+ <!-- Map pin / location (replaces 📍) -->
453
+ <symbol id="icon-pin" viewBox="0 0 24 24">
454
+ <path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z"/>
455
+ <circle cx="12" cy="10" r="3"/>
456
+ </symbol>
457
+
458
+ <!-- Traffic light / status (replaces 🚦) -->
459
+ <symbol id="icon-traffic" viewBox="0 0 24 24">
460
+ <rect x="7" y="2" width="10" height="20" rx="3"/>
461
+ <circle cx="12" cy="7" r="1.5"/>
462
+ <circle cx="12" cy="12" r="1.5"/>
463
+ <circle cx="12" cy="17" r="1.5"/>
464
+ </symbol>
465
+
466
+ <!-- Check circle (replaces ✅) -->
467
+ <symbol id="icon-check" viewBox="0 0 24 24">
468
+ <path d="M22 11.08V12a10 10 0 11-5.93-9.14"/>
469
+ <polyline points="22 4 12 14.01 9 11.01"/>
470
+ </symbol>
471
+
472
+ <!-- Megaphone / broadcast (replaces 📢) -->
473
+ <symbol id="icon-megaphone" viewBox="0 0 24 24">
474
+ <path d="M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z"/>
475
+ </symbol>
476
+
477
+ <!-- Pen / signed (replaces ✍) -->
478
+ <symbol id="icon-pen" viewBox="0 0 24 24">
479
+ <path d="M12 20h9"/>
480
+ <path d="M16.5 3.5a2.121 2.121 0 013 3L7 19l-4 1 1-4L16.5 3.5z"/>
481
+ </symbol>
482
+
483
+ <!-- Warning / alert (replaces ⚠) -->
484
+ <symbol id="icon-warning" viewBox="0 0 24 24">
485
+ <path d="M10.29 3.86L1.82 18a2 2 0 001.71 3h16.94a2 2 0 001.71-3L13.71 3.86a2 2 0 00-3.42 0z"/>
486
+ <line x1="12" y1="9" x2="12" y2="13"/>
487
+ <line x1="12" y1="17" x2="12.01" y2="17"/>
488
+ </symbol>
489
+
490
+ <!-- Hourglass / timer (replaces ⏳) -->
491
+ <symbol id="icon-hourglass" viewBox="0 0 24 24">
492
+ <path d="M6 2h12v5l-4 4 4 4v5H6v-5l4-4-4-4V2z"/>
493
+ </symbol>
494
+
495
+ <!-- Scroll / document (replaces 📜) -->
496
+ <symbol id="icon-scroll" viewBox="0 0 24 24">
497
+ <path d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z"/>
498
+ <polyline points="14 2 14 8 20 8"/>
499
+ <line x1="16" y1="13" x2="8" y2="13"/>
500
+ <line x1="16" y1="17" x2="8" y2="17"/>
501
+ </symbol>
502
+
503
+ <!-- Bolt / lightning (replaces ⚡) -->
504
+ <symbol id="icon-bolt" viewBox="0 0 24 24">
505
+ <polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"/>
506
+ </symbol>
507
+
508
+ <!-- Target / crosshair (replaces 🎯) -->
509
+ <symbol id="icon-target" viewBox="0 0 24 24">
510
+ <circle cx="12" cy="12" r="10"/>
511
+ <circle cx="12" cy="12" r="6"/>
512
+ <circle cx="12" cy="12" r="2"/>
513
+ </symbol>
514
+
515
+ <!-- Handshake / trust (replaces 🤝) -->
516
+ <symbol id="icon-handshake" viewBox="0 0 24 24">
517
+ <path d="M11 17l-3.5-3.5a2.12 2.12 0 013-3L14 14"/>
518
+ <path d="M20.88 7.12l-3.17 3.17"/>
519
+ <path d="M3.12 7.12l3.17 3.17"/>
520
+ <path d="M2 12h4"/>
521
+ <path d="M18 12h4"/>
522
+ <path d="M7.76 4.25L12 2l4.24 2.25"/>
523
+ </symbol>
524
+
525
+ <!-- Leaf / organic (replaces 🌿) -->
526
+ <symbol id="icon-leaf" viewBox="0 0 24 24">
527
+ <path d="M17 8C8 10 5.9 16.17 3.82 21.34l1.89.66.95-2.3c.48.17.98.3 1.34.3C19 20 22 3 22 3c-1 0-8 0-10 2"/>
528
+ <path d="M7 15c2-2 5.5-3 9-3"/>
529
+ </symbol>
530
+
531
+ <!-- Satellite (replaces 🛰) -->
532
+ <symbol id="icon-satellite" viewBox="0 0 24 24">
533
+ <path d="M13 7L9 3 5 7l4 4"/>
534
+ <path d="M17 11l4 4-4 4-4-4"/>
535
+ <line x1="8" y1="11" x2="13" y2="16"/>
536
+ <line x1="3" y1="21" x2="3.01" y2="21"/>
537
+ <path d="M6 18a3 3 0 000 0"/>
538
+ <path d="M9 15a6 6 0 000 0"/>
539
+ </symbol>
540
+
541
+ <!-- Phone / mobile (replaces 📱) -->
542
+ <symbol id="icon-phone" viewBox="0 0 24 24">
543
+ <rect x="5" y="2" width="14" height="20" rx="2"/>
544
+ <line x1="12" y1="18" x2="12.01" y2="18"/>
545
+ </symbol>
546
+
547
+ <!-- Masks / theater (replaces 🎭) -->
548
+ <symbol id="icon-masks" viewBox="0 0 24 24">
549
+ <circle cx="12" cy="12" r="10"/>
550
+ <path d="M8 14s1.5 2 4 2 4-2 4-2"/>
551
+ <line x1="9" y1="9" x2="9.01" y2="9"/>
552
+ <line x1="15" y1="9" x2="15.01" y2="9"/>
553
+ </symbol>
554
+
555
+ <!-- Stars / cosmos (replaces 🌌) -->
556
+ <symbol id="icon-cosmos" viewBox="0 0 24 24">
557
+ <polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/>
558
+ </symbol>
559
+
560
+ <!-- Gem / diamond (replaces 💎) -->
561
+ <symbol id="icon-gem" viewBox="0 0 24 24">
562
+ <polygon points="6 3 18 3 22 9 12 22 2 9 6 3"/>
563
+ <line x1="2" y1="9" x2="22" y2="9"/>
564
+ <line x1="12" y1="22" x2="8" y2="9"/>
565
+ <line x1="12" y1="22" x2="16" y2="9"/>
566
+ <line x1="8" y1="9" x2="10" y2="3"/>
567
+ <line x1="16" y1="9" x2="14" y2="3"/>
568
+ </symbol>
569
+
570
+ <!-- Search / magnifying glass (replaces 🔍) -->
571
+ <symbol id="icon-search" viewBox="0 0 24 24">
572
+ <circle cx="11" cy="11" r="8"/>
573
+ <line x1="21" y1="21" x2="16.65" y2="16.65"/>
574
+ </symbol>
575
+
576
+ </svg>
577
+ <!-- YAKMESH-ICON-SPRITE-END -->
578
+ <nav class="bg-mountain-900/90 border-b border-mountain-800 py-4">
579
+ <div class="max-w-4xl mx-auto px-6 flex items-center gap-3">
580
+ <a href="../" class="flex items-center gap-3">
581
+ <img src="../assets/yakmesh-logo2.png" alt="YAKMESH" class="h-10 w-10">
582
+ <span class="text-xl font-bold">YAKMESH</span>
583
+ </a>
584
+ <span class="text-mountain-500">/ Privacy Policy</span>
585
+ </div>
586
+ </nav>
587
+
588
+ <main class="max-w-4xl mx-auto px-6 py-12">
589
+ <h1 class="text-4xl font-bold mb-8">Privacy Policy</h1>
590
+ <p class="text-mountain-400 mb-8">Effective Date: January 14, 2026</p>
591
+
592
+ <div class="prose prose-invert max-w-none space-y-8">
593
+ <section>
594
+ <h2 class="text-2xl font-semibold text-Yakmesh-400 mb-4">1. Our Commitment to Privacy</h2>
595
+ <p class="text-mountain-200 leading-relaxed">
596
+ YAKMESH is built on the principle of <strong>Data Minimization</strong>. As a security-focused
597
+ project, we collect the least amount of information possible to provide our services.
598
+ </p>
599
+ </section>
600
+
601
+ <section>
602
+ <h2 class="text-2xl font-semibold text-Yakmesh-400 mb-4">2. Information We Collect</h2>
603
+
604
+ <h3 class="text-xl font-medium text-mountain-100 mt-6 mb-3">Website Visitors</h3>
605
+ <ul class="list-disc list-inside text-mountain-300 space-y-2">
606
+ <li><strong>Technical Logs:</strong> Our web server may log standard metadata (IP addresses,
607
+ browser type) for security and maintenance. This data is purged every 30 days.</li>
608
+ <li><strong>No Cookies:</strong> We do not use tracking cookies or analytics services.</li>
609
+ </ul>
610
+
611
+ <h3 class="text-xl font-medium text-mountain-100 mt-6 mb-3">Newsletter/Beta Signups</h3>
612
+ <ul class="list-disc list-inside text-mountain-300 space-y-2">
613
+ <li><strong>Voluntary Data:</strong> If you sign up for our newsletter or developer beta,
614
+ we collect your email address.</li>
615
+ <li><strong>Purpose:</strong> To send you updates about YAKMESH releases and security advisories.</li>
616
+ </ul>
617
+
618
+ <h3 class="text-xl font-medium text-mountain-100 mt-6 mb-3">YAKMESH Node Operators</h3>
619
+ <ul class="list-disc list-inside text-mountain-300 space-y-2">
620
+ <li><strong>Public Keys:</strong> If you run a YAKMESH node, your public key (network identity)
621
+ is visible to other nodes in the mesh. This is a functional requirement of peer-to-peer networking.</li>
622
+ <li><strong>No Central Collection:</strong> YAKMESH does not operate central servers that
623
+ collect node data. Your node communicates directly with peers.</li>
624
+ </ul>
625
+ </section>
626
+
627
+ <section>
628
+ <h2 class="text-2xl font-semibold text-Yakmesh-400 mb-4">3. Decentralized Data</h2>
629
+ <p class="text-mountain-200 leading-relaxed mb-4">
630
+ YAKMESH is designed as a decentralized peer-to-peer network:
631
+ </p>
632
+ <ul class="list-disc list-inside text-mountain-300 space-y-2">
633
+ <li><strong>No Central Database:</strong> We do not maintain a central database of user information.</li>
634
+ <li><strong>Peer-to-Peer:</strong> Data synchronization occurs directly between nodes you connect to.</li>
635
+ <li><strong>Your Control:</strong> You control what data your node stores and shares.</li>
636
+ </ul>
637
+ </section>
638
+
639
+ <section>
640
+ <h2 class="text-2xl font-semibold text-Yakmesh-400 mb-4">4. Data Security</h2>
641
+ <ul class="list-disc list-inside text-mountain-300 space-y-2">
642
+ <li><strong>Post-Quantum Cryptography:</strong> YAKMESH uses ML-DSA-65 (NIST FIPS 204)
643
+ lattice-based signatures to protect node identities against quantum computing threats.</li>
644
+ <li><strong>No Plaintext Storage:</strong> Cryptographic keys are generated locally on your
645
+ machine and never transmitted.</li>
646
+ </ul>
647
+ </section>
648
+
649
+ <section>
650
+ <h2 class="text-2xl font-semibold text-Yakmesh-400 mb-4">5. Your Rights (Texas TDPSA)</h2>
651
+ <p class="text-mountain-200 leading-relaxed mb-4">
652
+ Under the Texas Data Privacy and Security Act, you have the right to:
653
+ </p>
654
+ <ul class="list-disc list-inside text-mountain-300 space-y-2">
655
+ <li>Request access to the personal data we hold about you</li>
656
+ <li>Request deletion of your data</li>
657
+ <li>Opt-out of any "sale" of data (Note: YAKMESH does not sell user data)</li>
658
+ </ul>
659
+ <p class="text-mountain-200 leading-relaxed mt-4">
660
+ We honor <strong>Global Privacy Control (GPC)</strong> signals sent by your browser.
661
+ </p>
662
+ </section>
663
+
664
+ <section>
665
+ <h2 class="text-2xl font-semibold text-Yakmesh-400 mb-4">6. Data We Do NOT Collect</h2>
666
+ <ul class="list-disc list-inside text-mountain-300 space-y-2">
667
+ <li>We do not collect payment information (npm package is free)</li>
668
+ <li>We do not use third-party analytics (no Google Analytics, etc.)</li>
669
+ <li>We do not sell, rent, or share personal data with third parties</li>
670
+ <li>We do not track your usage of the YAKMESH software</li>
671
+ </ul>
672
+ </section>
673
+
674
+ <section>
675
+ <h2 class="text-2xl font-semibold text-Yakmesh-400 mb-4">7. Contact Us</h2>
676
+ <p class="text-mountain-200 leading-relaxed">
677
+ For privacy inquiries: <a href="mailto:privacy@peerquanta.com" class="text-Yakmesh-400 hover:underline">privacy@peerquanta.com</a>
678
+ </p>
679
+ </section>
680
+ </div>
681
+ </main>
682
+
683
+ <footer class="border-t border-mountain-800 py-8 mt-12">
684
+ <div class="max-w-4xl mx-auto px-6 text-center text-mountain-500 text-sm">
685
+ <p>© 2026 YAKMESH Project. Sturdy & Secure.</p>
686
+ <div class="flex justify-center gap-6 mt-4">
687
+ <a href="./" class="hover:text-white transition">Documentation</a>
688
+ <a href="trademark-policy.html" class="hover:text-white transition">Trademark Policy</a>
689
+ <a href="terms.html" class="hover:text-white transition">Terms of Service</a>
690
+ <a href="privacy.html" class="hover:text-white transition">Privacy Policy</a>
691
+ </div>
692
+ </div>
693
+ </footer>
694
+ </body>
695
+ </html>
696
+ ]]>
697
+
698
+
699
+