cyclecad 0.2.2 → 0.2.3

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 (69) hide show
  1. package/API-BUILD-MANIFEST.txt +339 -0
  2. package/API-SERVER.md +535 -0
  3. package/Architecture-Deck.pptx +0 -0
  4. package/CLAUDE.md +172 -11
  5. package/CLI-BUILD-SUMMARY.md +504 -0
  6. package/CLI-INDEX.md +356 -0
  7. package/CLI-README.md +466 -0
  8. package/COLLABORATION-INTEGRATION-GUIDE.md +325 -0
  9. package/CONNECTED_FABS_GUIDE.md +612 -0
  10. package/CONNECTED_FABS_README.md +310 -0
  11. package/DELIVERABLES.md +343 -0
  12. package/DFM-ANALYZER-INTEGRATION.md +368 -0
  13. package/DFM-QUICK-START.js +253 -0
  14. package/Dockerfile +69 -0
  15. package/IMPLEMENTATION.md +327 -0
  16. package/LICENSE +31 -0
  17. package/MARKETPLACE_QUICK_REFERENCE.txt +294 -0
  18. package/MCP-INDEX.md +264 -0
  19. package/QUICKSTART-API.md +388 -0
  20. package/QUICKSTART-CLI.md +211 -0
  21. package/QUICKSTART-MCP.md +196 -0
  22. package/README-MCP.md +208 -0
  23. package/TEST-TOKEN-ENGINE.md +319 -0
  24. package/TOKEN-ENGINE-SUMMARY.md +266 -0
  25. package/TOKENS-README.md +263 -0
  26. package/TOOLS-REFERENCE.md +254 -0
  27. package/app/index.html +168 -3
  28. package/app/js/TOKEN-INTEGRATION.md +391 -0
  29. package/app/js/agent-api.js +3 -3
  30. package/app/js/ai-copilot.js +1435 -0
  31. package/app/js/cam-pipeline.js +840 -0
  32. package/app/js/collaboration-ui.js +995 -0
  33. package/app/js/collaboration.js +1116 -0
  34. package/app/js/connected-fabs-example.js +404 -0
  35. package/app/js/connected-fabs.js +1449 -0
  36. package/app/js/dfm-analyzer.js +1760 -0
  37. package/app/js/marketplace.js +1994 -0
  38. package/app/js/material-library.js +2115 -0
  39. package/app/js/token-dashboard.js +563 -0
  40. package/app/js/token-engine.js +743 -0
  41. package/app/test-agent.html +1801 -0
  42. package/bin/cyclecad-cli.js +662 -0
  43. package/bin/cyclecad-mcp +2 -0
  44. package/bin/server.js +242 -0
  45. package/cycleCAD-Architecture.pptx +0 -0
  46. package/cycleCAD-Investor-Deck.pptx +0 -0
  47. package/demo-mcp.sh +60 -0
  48. package/docs/API-SERVER-SUMMARY.md +375 -0
  49. package/docs/API-SERVER.md +667 -0
  50. package/docs/CAM-EXAMPLES.md +344 -0
  51. package/docs/CAM-INTEGRATION.md +612 -0
  52. package/docs/CAM-QUICK-REFERENCE.md +199 -0
  53. package/docs/CLI-INTEGRATION.md +510 -0
  54. package/docs/CLI.md +872 -0
  55. package/docs/MARKETPLACE-API-SCHEMA.json +564 -0
  56. package/docs/MARKETPLACE-INTEGRATION.md +467 -0
  57. package/docs/MARKETPLACE-SETUP.html +439 -0
  58. package/docs/MCP-SERVER.md +403 -0
  59. package/examples/api-client-example.js +488 -0
  60. package/examples/api-client-example.py +359 -0
  61. package/examples/batch-manufacturing.txt +28 -0
  62. package/examples/batch-simple.txt +26 -0
  63. package/model-marketplace.html +1273 -0
  64. package/package.json +14 -3
  65. package/server/api-server.js +1120 -0
  66. package/server/mcp-server.js +1161 -0
  67. package/test-api-server.js +432 -0
  68. package/test-mcp.js +198 -0
  69. package/~$cycleCAD-Investor-Deck.pptx +0 -0
@@ -0,0 +1,1273 @@
1
+ <!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
+ <title>cycleCAD — Model Marketplace & Token Economy</title>
7
+ <style>
8
+ *{margin:0;padding:0;box-sizing:border-box}
9
+ :root{
10
+ --bg:#0a0e1a;--card:#111827;--border:#1e293b;--accent:#06b6d4;--green:#10b981;
11
+ --orange:#f59e0b;--pink:#ec4899;--purple:#8b5cf6;--red:#ef4444;--blue:#3b82f6;
12
+ --text:#f1f5f9;--muted:#94a3b8;--dim:#475569;
13
+ }
14
+ body{font-family:'Inter','Segoe UI',system-ui,sans-serif;background:var(--bg);color:var(--text);overflow-x:hidden}
15
+ a{color:var(--accent);text-decoration:none}
16
+
17
+ /* Hero */
18
+ .hero{text-align:center;padding:80px 24px 40px;position:relative;overflow:hidden}
19
+ .hero::before{content:'';position:absolute;top:-200px;left:50%;transform:translateX(-50%);width:800px;height:800px;background:radial-gradient(circle,rgba(6,182,212,0.08) 0%,transparent 70%);pointer-events:none}
20
+ .hero h1{font-size:3rem;font-weight:800;background:linear-gradient(135deg,#06b6d4,#8b5cf6,#ec4899);-webkit-background-clip:text;-webkit-text-fill-color:transparent;margin-bottom:12px}
21
+ .hero p{font-size:1.2rem;color:var(--muted);max-width:700px;margin:0 auto}
22
+ .badge{display:inline-block;background:linear-gradient(135deg,var(--accent),var(--purple));color:#fff;font-size:0.75rem;font-weight:700;padding:4px 14px;border-radius:20px;text-transform:uppercase;letter-spacing:1.5px;margin-bottom:16px}
23
+ .diff-badge{background:linear-gradient(135deg,var(--green),var(--accent));margin-top:12px;font-size:0.85rem;padding:6px 18px}
24
+
25
+ /* Section */
26
+ .section{max-width:1200px;margin:0 auto;padding:40px 24px}
27
+ .section-title{font-size:1.6rem;font-weight:700;margin-bottom:8px}
28
+ .section-sub{color:var(--muted);margin-bottom:32px;font-size:1rem}
29
+
30
+ /* Flow Diagram */
31
+ .flow{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:0;margin:40px 0}
32
+ .flow-node{background:var(--card);border:1px solid var(--border);border-radius:16px;padding:24px 20px;text-align:center;min-width:160px;max-width:200px;position:relative;transition:all .3s}
33
+ .flow-node:hover{border-color:var(--accent);transform:translateY(-4px);box-shadow:0 8px 32px rgba(6,182,212,0.15)}
34
+ .flow-icon{font-size:2.2rem;margin-bottom:8px}
35
+ .flow-label{font-weight:700;font-size:0.95rem;margin-bottom:4px}
36
+ .flow-desc{font-size:0.78rem;color:var(--muted);line-height:1.4}
37
+ .flow-arrow{font-size:1.8rem;color:var(--accent);padding:0 8px;flex-shrink:0}
38
+ .flow-tokens{display:inline-block;background:rgba(6,182,212,0.15);color:var(--accent);font-size:0.7rem;font-weight:700;padding:2px 8px;border-radius:8px;margin-top:6px}
39
+
40
+ /* Cards Grid */
41
+ .cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px;margin:24px 0}
42
+ .card{background:var(--card);border:1px solid var(--border);border-radius:16px;padding:28px 24px;transition:all .3s}
43
+ .card:hover{border-color:var(--accent);transform:translateY(-3px)}
44
+ .card-icon{font-size:2rem;margin-bottom:12px}
45
+ .card h3{font-size:1.1rem;font-weight:700;margin-bottom:8px}
46
+ .card p{font-size:0.88rem;color:var(--muted);line-height:1.6}
47
+ .card .highlight{color:var(--accent);font-weight:700}
48
+ .card .money{color:var(--green);font-weight:700}
49
+
50
+ /* Marketplace Visual */
51
+ .marketplace{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin:32px 0}
52
+ @media(max-width:768px){.marketplace{grid-template-columns:1fr}}
53
+ .mp-panel{background:var(--card);border:1px solid var(--border);border-radius:16px;padding:28px;overflow:hidden}
54
+ .mp-panel h3{font-size:1.15rem;font-weight:700;margin-bottom:16px;display:flex;align-items:center;gap:8px}
55
+ .mp-item{display:flex;justify-content:space-between;align-items:center;padding:12px 16px;background:rgba(255,255,255,0.02);border-radius:10px;margin-bottom:8px;border:1px solid rgba(255,255,255,0.04);transition:all .2s}
56
+ .mp-item:hover{background:rgba(6,182,212,0.06);border-color:rgba(6,182,212,0.2)}
57
+ .mp-item-left{display:flex;align-items:center;gap:12px}
58
+ .mp-item-icon{width:40px;height:40px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:1.2rem}
59
+ .mp-item-name{font-weight:600;font-size:0.9rem}
60
+ .mp-item-meta{font-size:0.75rem;color:var(--muted)}
61
+ .mp-item-price{text-align:right}
62
+ .mp-item-tokens{font-weight:700;color:var(--accent);font-size:0.95rem}
63
+ .mp-item-eur{font-size:0.75rem;color:var(--muted)}
64
+
65
+ /* Token Engine */
66
+ .engine{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:16px;margin:24px 0}
67
+ .engine-block{background:var(--card);border:1px solid var(--border);border-radius:14px;padding:20px;text-align:center;transition:all .3s}
68
+ .engine-block:hover{border-color:var(--purple);box-shadow:0 4px 20px rgba(139,92,246,0.1)}
69
+ .engine-block .icon{font-size:1.8rem;margin-bottom:8px}
70
+ .engine-block h4{font-size:0.9rem;font-weight:700;margin-bottom:4px}
71
+ .engine-block p{font-size:0.75rem;color:var(--muted);line-height:1.4}
72
+
73
+ /* Comparison Table */
74
+ .comp-table{width:100%;border-collapse:collapse;margin:24px 0;font-size:0.88rem}
75
+ .comp-table th{background:rgba(6,182,212,0.1);color:var(--accent);padding:14px 16px;text-align:left;font-weight:700;border-bottom:2px solid var(--border)}
76
+ .comp-table td{padding:12px 16px;border-bottom:1px solid var(--border)}
77
+ .comp-table tr:hover td{background:rgba(255,255,255,0.02)}
78
+ .comp-table .feature{font-weight:600}
79
+ .comp-table .yes{color:var(--green);font-weight:700}
80
+ .comp-table .no{color:var(--red);opacity:0.6}
81
+ .comp-table .partial{color:var(--orange)}
82
+ .comp-table .unique{background:rgba(6,182,212,0.08);border-left:3px solid var(--accent)}
83
+
84
+ /* Stats Bar */
85
+ .stats{display:flex;justify-content:center;gap:48px;margin:40px 0;flex-wrap:wrap}
86
+ .stat{text-align:center}
87
+ .stat-val{font-size:2.2rem;font-weight:800;background:linear-gradient(135deg,var(--accent),var(--purple));-webkit-background-clip:text;-webkit-text-fill-color:transparent}
88
+ .stat-label{font-size:0.8rem;color:var(--muted);margin-top:4px}
89
+
90
+ /* Flywheel */
91
+ .flywheel{position:relative;width:400px;height:400px;margin:40px auto;display:flex;align-items:center;justify-content:center}
92
+ .flywheel-ring{position:absolute;width:100%;height:100%;border:2px dashed var(--border);border-radius:50%;animation:spin 30s linear infinite}
93
+ @keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
94
+ .flywheel-center{width:140px;height:140px;border-radius:50%;background:linear-gradient(135deg,rgba(6,182,212,0.2),rgba(139,92,246,0.2));border:2px solid var(--accent);display:flex;align-items:center;justify-content:center;flex-direction:column;z-index:2}
95
+ .flywheel-center span{font-size:1.8rem}
96
+ .flywheel-center small{font-size:0.7rem;color:var(--accent);font-weight:700;margin-top:4px}
97
+ .fly-node{position:absolute;width:90px;height:90px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-direction:column;font-size:0.7rem;font-weight:600;border:2px solid;z-index:3;background:var(--bg)}
98
+ .fly-node span{font-size:1.4rem;margin-bottom:2px}
99
+ .fly-n1{top:-10px;left:50%;transform:translateX(-50%);border-color:var(--green);color:var(--green)}
100
+ .fly-n2{top:50%;right:-10px;transform:translateY(-50%);border-color:var(--accent);color:var(--accent)}
101
+ .fly-n3{bottom:-10px;left:50%;transform:translateX(-50%);border-color:var(--orange);color:var(--orange)}
102
+ .fly-n4{top:50%;left:-10px;transform:translateY(-50%);border-color:var(--purple);color:var(--purple)}
103
+
104
+ /* Payout */
105
+ .payout-flow{display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap;margin:32px 0;padding:24px;background:var(--card);border-radius:16px;border:1px solid var(--border)}
106
+ .payout-step{text-align:center;padding:16px;min-width:120px}
107
+ .payout-step .icon{font-size:2rem;margin-bottom:6px}
108
+ .payout-step .label{font-weight:700;font-size:0.85rem}
109
+ .payout-step .desc{font-size:0.72rem;color:var(--muted);margin-top:4px}
110
+ .payout-arrow{font-size:1.4rem;color:var(--green)}
111
+
112
+ /* Royalty Tiers */
113
+ .tiers{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin:24px 0}
114
+ @media(max-width:768px){.tiers{grid-template-columns:1fr}}
115
+ .tier{background:var(--card);border-radius:16px;padding:28px;text-align:center;border:2px solid var(--border);transition:all .3s}
116
+ .tier:hover{transform:translateY(-4px)}
117
+ .tier.featured{border-color:var(--accent);box-shadow:0 0 40px rgba(6,182,212,0.1)}
118
+ .tier h3{font-size:1.3rem;margin-bottom:4px}
119
+ .tier .pct{font-size:2.4rem;font-weight:800;margin:12px 0}
120
+ .tier .pct-label{font-size:0.8rem;color:var(--muted)}
121
+ .tier ul{list-style:none;text-align:left;margin-top:16px}
122
+ .tier li{padding:6px 0;font-size:0.85rem;color:var(--muted);border-bottom:1px solid rgba(255,255,255,0.04)}
123
+ .tier li::before{content:'✓ ';color:var(--green);font-weight:700}
124
+
125
+ /* Footer */
126
+ .footer{text-align:center;padding:60px 24px;color:var(--dim);font-size:0.85rem}
127
+ .footer strong{color:var(--accent)}
128
+ </style>
129
+ </head>
130
+ <body>
131
+
132
+ <!-- HERO -->
133
+ <div class="hero">
134
+ <div class="badge">What No Other CAD Platform Does</div>
135
+ <h1>The Model Economy</h1>
136
+ <p>Create CAD models with AI agents. Share them on the marketplace. Earn real money. This is what makes cycleCAD fundamentally different from OnShape, Fusion 360, and SolidWorks.</p>
137
+ <div class="badge diff-badge">🏆 #1 Competitive Differentiator</div>
138
+ </div>
139
+
140
+ <!-- KEY STATS -->
141
+ <div class="stats">
142
+ <div class="stat"><div class="stat-val">€1 = 100</div><div class="stat-label">$CYCLE Tokens</div></div>
143
+ <div class="stat"><div class="stat-val">70%</div><div class="stat-label">Creator Royalty</div></div>
144
+ <div class="stat"><div class="stat-val">∞</div><div class="stat-label">Passive Income Streams</div></div>
145
+ <div class="stat"><div class="stat-val">0%</div><div class="stat-label">Upfront Cost to Create</div></div>
146
+ </div>
147
+
148
+ <!-- THE BIG IDEA -->
149
+ <div class="section">
150
+ <div class="section-title">💡 The Big Idea</div>
151
+ <div class="section-sub">Every other CAD tool charges you to use it. cycleCAD pays you to create with it.</div>
152
+ <div class="cards">
153
+ <div class="card">
154
+ <div class="card-icon">🤖</div>
155
+ <h3>AI Agents Create Models</h3>
156
+ <p>Describe what you need in plain language. AI agents design, validate, and optimize the CAD model. You own what they create — <span class="highlight">zero modeling skill required</span>.</p>
157
+ </div>
158
+ <div class="card">
159
+ <div class="card-icon">🏪</div>
160
+ <h3>Share on the Marketplace</h3>
161
+ <p>Publish your model to the cycleCAD marketplace. Set your price in $CYCLE tokens. Other users and agents discover, preview, and purchase your designs.</p>
162
+ </div>
163
+ <div class="card">
164
+ <div class="card-icon">💰</div>
165
+ <h3>Earn Real Money</h3>
166
+ <p>Every download earns you $CYCLE tokens. Cash them out: <span class="money">100 tokens = €1</span> via Stripe to your bank, or <span class="money">withdraw as USDC/ETH to your crypto wallet</span>.</p>
167
+ </div>
168
+ <div class="card">
169
+ <div class="card-icon">🔄</div>
170
+ <h3>Perpetual Royalties</h3>
171
+ <p>Unlike Thingiverse or GrabCAD where uploads are free and creators earn nothing, every use of your model on cycleCAD <span class="money">generates ongoing revenue</span>.</p>
172
+ </div>
173
+ </div>
174
+ </div>
175
+
176
+ <!-- TOKEN FLOW -->
177
+ <div class="section">
178
+ <div class="section-title">🪙 How $CYCLE Tokens Flow</div>
179
+ <div class="section-sub">A circular economy where every participant benefits.</div>
180
+
181
+ <div class="flow">
182
+ <div class="flow-node">
183
+ <div class="flow-icon">💳</div>
184
+ <div class="flow-label">Buy Tokens</div>
185
+ <div class="flow-desc">€1 or USDC/ETH/BTC → 100 $CYCLE via Stripe or crypto on-ramp</div>
186
+ <div class="flow-tokens">FIAT + CRYPTO → TOKENS</div>
187
+ </div>
188
+ <div class="flow-arrow">→</div>
189
+ <div class="flow-node">
190
+ <div class="flow-icon">⚡</div>
191
+ <div class="flow-label">Spend Tokens</div>
192
+ <div class="flow-desc">AI generation, model downloads, premium features</div>
193
+ <div class="flow-tokens">5-500 per action</div>
194
+ </div>
195
+ <div class="flow-arrow">→</div>
196
+ <div class="flow-node">
197
+ <div class="flow-icon">🏪</div>
198
+ <div class="flow-label">Creator Earns</div>
199
+ <div class="flow-desc">70% of every token spent on your model goes to you</div>
200
+ <div class="flow-tokens">70% ROYALTY</div>
201
+ </div>
202
+ <div class="flow-arrow">→</div>
203
+ <div class="flow-node">
204
+ <div class="flow-icon">🏦</div>
205
+ <div class="flow-label">Cash Out</div>
206
+ <div class="flow-desc">100 $CYCLE → €1 to bank (Stripe) or USDC/ETH to wallet</div>
207
+ <div class="flow-tokens">TOKENS → FIAT or CRYPTO</div>
208
+ </div>
209
+ </div>
210
+
211
+ <!-- FLYWHEEL -->
212
+ <div style="text-align:center;margin-top:48px">
213
+ <h3 style="color:var(--accent);margin-bottom:8px">The Flywheel Effect</h3>
214
+ <p style="color:var(--muted);font-size:0.9rem;margin-bottom:24px">More creators → more models → more users → more token demand → higher creator earnings → more creators</p>
215
+ </div>
216
+ <div class="flywheel">
217
+ <div class="flywheel-ring"></div>
218
+ <div class="flywheel-center"><span>🪙</span><small>$CYCLE</small></div>
219
+ <div class="fly-node fly-n1"><span>🧑‍🎨</span>Create</div>
220
+ <div class="fly-node fly-n2"><span>📤</span>Share</div>
221
+ <div class="fly-node fly-n3"><span>💸</span>Earn</div>
222
+ <div class="fly-node fly-n4"><span>🔁</span>Reinvest</div>
223
+ </div>
224
+ </div>
225
+
226
+ <!-- CRYPTO = CURRENCY OF AGENTS -->
227
+ <div class="section">
228
+ <div class="section-title">🔗 Crypto Is the Currency of Agents</div>
229
+ <div class="section-sub">AI agents don't have bank accounts. They have wallets. Crypto is the native payment rail for autonomous machines.</div>
230
+
231
+ <div class="cards">
232
+ <div class="card" style="border-left:3px solid var(--accent)">
233
+ <div class="card-icon">🤖</div>
234
+ <h3>Agents Pay in Crypto</h3>
235
+ <p>When an AI agent needs a gearbox model for an assembly, it pays in USDC or ETH — instantly, programmatically, no invoicing. The crypto converts to $CYCLE tokens on-chain, the model unlocks, the agent continues designing. <span class="highlight">Zero human intervention.</span></p>
236
+ </div>
237
+ <div class="card" style="border-left:3px solid var(--green)">
238
+ <div class="card-icon">🔄</div>
239
+ <h3>Crypto → $CYCLE Conversion</h3>
240
+ <p>All payments (fiat or crypto) convert to $CYCLE tokens at the platform level. <span class="money">1 USDC = 100 $CYCLE. 0.0003 ETH ≈ 100 $CYCLE.</span> The token is the internal unit of value — stable, auditable, and platform-native. Future: $CYCLE as ERC-20 on-chain.</p>
241
+ </div>
242
+ <div class="card" style="border-left:3px solid var(--orange)">
243
+ <div class="card-icon">💸</div>
244
+ <h3>Creators Cash Out to Crypto</h3>
245
+ <p>Earned 50,000 $CYCLE from your models? Cash out as <span class="money">€500 via Stripe to your bank</span>, or <span class="money">500 USDC to your crypto wallet</span> — your choice. Agents that earn tokens can reinvest them autonomously into more model purchases.</p>
246
+ </div>
247
+ <div class="card" style="border-left:3px solid var(--purple)">
248
+ <div class="card-icon">⛓️</div>
249
+ <h3>On-Chain Settlement</h3>
250
+ <p>Every token transaction is anchored on-chain for transparency. Royalty splits execute via smart contracts — <span class="highlight">70% to creator, 15% to derivative original, 10-30% to platform</span> — all verifiable, immutable, instant. No disputes.</p>
251
+ </div>
252
+ </div>
253
+
254
+ <div style="margin-top:24px;overflow-x:auto">
255
+ <table class="comp-table" style="min-width:600px">
256
+ <thead>
257
+ <tr>
258
+ <th>Payment Method</th>
259
+ <th>Buy $CYCLE Tokens</th>
260
+ <th>Cash Out Tokens</th>
261
+ <th>Best For</th>
262
+ </tr>
263
+ </thead>
264
+ <tbody>
265
+ <tr>
266
+ <td class="feature">💳 Credit Card (Stripe)</td>
267
+ <td style="color:var(--green);font-weight:700">€1 = 100 $CYCLE</td>
268
+ <td style="color:var(--green);font-weight:700">100 $CYCLE = €1</td>
269
+ <td style="color:var(--muted)">Human users, enterprises</td>
270
+ </tr>
271
+ <tr>
272
+ <td class="feature">💵 USDC (Stablecoin)</td>
273
+ <td style="color:var(--accent);font-weight:700">1 USDC = 100 $CYCLE</td>
274
+ <td style="color:var(--accent);font-weight:700">100 $CYCLE = 1 USDC</td>
275
+ <td style="color:var(--muted)">AI agents, global users, instant settlement</td>
276
+ </tr>
277
+ <tr>
278
+ <td class="feature">⟠ ETH</td>
279
+ <td style="color:var(--purple);font-weight:700">Market rate → $CYCLE</td>
280
+ <td style="color:var(--purple);font-weight:700">$CYCLE → ETH at market</td>
281
+ <td style="color:var(--muted)">Crypto-native creators, DeFi integration</td>
282
+ </tr>
283
+ <tr>
284
+ <td class="feature">₿ BTC</td>
285
+ <td style="color:var(--orange);font-weight:700">Market rate → $CYCLE</td>
286
+ <td style="color:var(--orange);font-weight:700">$CYCLE → BTC at market</td>
287
+ <td style="color:var(--muted)">Store of value, large transactions</td>
288
+ </tr>
289
+ <tr>
290
+ <td class="feature">🍎 Apple Pay / Google Pay</td>
291
+ <td style="color:var(--green);font-weight:700">€1 = 100 $CYCLE</td>
292
+ <td style="color:var(--muted)">N/A (use Stripe/crypto)</td>
293
+ <td style="color:var(--muted)">Mobile users, quick top-up</td>
294
+ </tr>
295
+ </tbody>
296
+ </table>
297
+ </div>
298
+
299
+ <div class="cards" style="margin-top:24px">
300
+ <div class="card" style="border-left:3px solid var(--pink)">
301
+ <div class="card-icon">🚀</div>
302
+ <h3>Why Crypto Matters for Agents</h3>
303
+ <p>Human engineers use credit cards. But the future of CAD is <strong>agent swarms</strong> — hundreds of AI agents designing, validating, and ordering parts autonomously. Agents need <span class="highlight">programmable money</span>: instant, borderless, API-native. That's crypto. $CYCLE tokens are the payment API that makes agent-to-agent commerce possible.</p>
304
+ </div>
305
+ <div class="card" style="border-left:3px solid var(--accent)">
306
+ <div class="card-icon">🌍</div>
307
+ <h3>Global by Default</h3>
308
+ <p>A factory agent in Shenzhen buys a bracket model from a creator in Berlin. No bank transfer delays, no currency conversion fees, no invoicing. <span class="money">USDC → $CYCLE → model unlocked in 2 seconds.</span> Manufacturing is global. The payment layer should be too.</p>
309
+ </div>
310
+ </div>
311
+ </div>
312
+
313
+ <!-- MODEL MARKETPLACE -->
314
+ <div class="section">
315
+ <div class="section-title">🏪 The Model Marketplace</div>
316
+ <div class="section-sub">A live marketplace where models are assets that generate income.</div>
317
+ <div class="marketplace">
318
+ <div class="mp-panel">
319
+ <h3>🔥 Trending Models</h3>
320
+ <div class="mp-item">
321
+ <div class="mp-item-left">
322
+ <div class="mp-item-icon" style="background:rgba(6,182,212,0.15)">⚙️</div>
323
+ <div><div class="mp-item-name">Planetary Gearbox (3-Stage)</div><div class="mp-item-meta">by @engineer_max · 1,247 downloads</div></div>
324
+ </div>
325
+ <div class="mp-item-price"><div class="mp-item-tokens">250 🪙</div><div class="mp-item-eur">≈ €2.50</div></div>
326
+ </div>
327
+ <div class="mp-item">
328
+ <div class="mp-item-left">
329
+ <div class="mp-item-icon" style="background:rgba(16,185,129,0.15)">🔩</div>
330
+ <div><div class="mp-item-name">M8 Bracket Assembly Kit</div><div class="mp-item-meta">by @cyclewash · 892 downloads</div></div>
331
+ </div>
332
+ <div class="mp-item-price"><div class="mp-item-tokens">50 🪙</div><div class="mp-item-eur">≈ €0.50</div></div>
333
+ </div>
334
+ <div class="mp-item">
335
+ <div class="mp-item-left">
336
+ <div class="mp-item-icon" style="background:rgba(245,158,11,0.15)">🏭</div>
337
+ <div><div class="mp-item-name">Industrial Conveyor Frame</div><div class="mp-item-meta">by @factory_ai · 634 downloads</div></div>
338
+ </div>
339
+ <div class="mp-item-price"><div class="mp-item-tokens">500 🪙</div><div class="mp-item-eur">≈ €5.00</div></div>
340
+ </div>
341
+ <div class="mp-item">
342
+ <div class="mp-item-left">
343
+ <div class="mp-item-icon" style="background:rgba(139,92,246,0.15)">💧</div>
344
+ <div><div class="mp-item-name">Bike Wash Nozzle Array</div><div class="mp-item-meta">by @sachin · 2,103 downloads</div></div>
345
+ </div>
346
+ <div class="mp-item-price"><div class="mp-item-tokens">150 🪙</div><div class="mp-item-eur">≈ €1.50</div></div>
347
+ </div>
348
+ <div class="mp-item">
349
+ <div class="mp-item-left">
350
+ <div class="mp-item-icon" style="background:rgba(236,72,153,0.15)">🔧</div>
351
+ <div><div class="mp-item-name">Quick-Release Motor Mount</div><div class="mp-item-meta">by @mech_agent · 456 downloads</div></div>
352
+ </div>
353
+ <div class="mp-item-price"><div class="mp-item-tokens">100 🪙</div><div class="mp-item-eur">≈ €1.00</div></div>
354
+ </div>
355
+ </div>
356
+ <div class="mp-panel">
357
+ <h3>💰 Top Earners This Month</h3>
358
+ <div class="mp-item">
359
+ <div class="mp-item-left">
360
+ <div class="mp-item-icon" style="background:rgba(16,185,129,0.15)">🥇</div>
361
+ <div><div class="mp-item-name">@engineer_max</div><div class="mp-item-meta">47 models · Mechanical specialist</div></div>
362
+ </div>
363
+ <div class="mp-item-price"><div class="mp-item-tokens" style="color:var(--green)">€2,340</div><div class="mp-item-eur">234,000 🪙 earned</div></div>
364
+ </div>
365
+ <div class="mp-item">
366
+ <div class="mp-item-left">
367
+ <div class="mp-item-icon" style="background:rgba(6,182,212,0.15)">🥈</div>
368
+ <div><div class="mp-item-name">@factory_ai</div><div class="mp-item-meta">23 models · Industrial automation</div></div>
369
+ </div>
370
+ <div class="mp-item-price"><div class="mp-item-tokens" style="color:var(--green)">€1,870</div><div class="mp-item-eur">187,000 🪙 earned</div></div>
371
+ </div>
372
+ <div class="mp-item">
373
+ <div class="mp-item-left">
374
+ <div class="mp-item-icon" style="background:rgba(245,158,11,0.15)">🥉</div>
375
+ <div><div class="mp-item-name">@sachin</div><div class="mp-item-meta">12 models · Bike wash systems</div></div>
376
+ </div>
377
+ <div class="mp-item-price"><div class="mp-item-tokens" style="color:var(--green)">€1,520</div><div class="mp-item-eur">152,000 🪙 earned</div></div>
378
+ </div>
379
+ <div class="mp-item">
380
+ <div class="mp-item-left">
381
+ <div class="mp-item-icon" style="background:rgba(139,92,246,0.15)">4</div>
382
+ <div><div class="mp-item-name">@mech_agent</div><div class="mp-item-meta">AI agent · Auto-generated parts</div></div>
383
+ </div>
384
+ <div class="mp-item-price"><div class="mp-item-tokens" style="color:var(--green)">€980</div><div class="mp-item-eur">98,000 🪙 earned</div></div>
385
+ </div>
386
+ <div class="mp-item">
387
+ <div class="mp-item-left">
388
+ <div class="mp-item-icon" style="background:rgba(236,72,153,0.15)">5</div>
389
+ <div><div class="mp-item-name">@bracket_king</div><div class="mp-item-meta">89 models · Brackets & mounts</div></div>
390
+ </div>
391
+ <div class="mp-item-price"><div class="mp-item-tokens" style="color:var(--green)">€740</div><div class="mp-item-eur">74,000 🪙 earned</div></div>
392
+ </div>
393
+ </div>
394
+ </div>
395
+ </div>
396
+
397
+ <!-- HOW MODELS ARE MONETIZED -->
398
+ <div class="section">
399
+ <div class="section-title">📊 5 Ways Models Generate Revenue</div>
400
+ <div class="section-sub">Every model you share is an asset with multiple income streams.</div>
401
+ <div class="cards">
402
+ <div class="card">
403
+ <div class="card-icon">🛒</div>
404
+ <h3>1. Direct Downloads</h3>
405
+ <p>Users pay tokens to download your STEP/GLB/STL files. You set the price. <span class="money">You earn 70% of every sale</span>. Popular models generate passive income for years.</p>
406
+ </div>
407
+ <div class="card">
408
+ <div class="card-icon">🤖</div>
409
+ <h3>2. Agent Usage Fees</h3>
410
+ <p>When AI agents reference your model as a component in someone else's design, <span class="money">you earn micro-royalties per use</span>. An M8 bracket used 10,000 times = 10,000 payouts.</p>
411
+ </div>
412
+ <div class="card">
413
+ <div class="card-icon">🧬</div>
414
+ <h3>3. Derivative Royalties</h3>
415
+ <p>Someone forks your gearbox and modifies it? The original creator <span class="money">earns 15% of derivative sales</span>. Your work compounds across the entire ecosystem.</p>
416
+ </div>
417
+ <div class="card">
418
+ <div class="card-icon">📐</div>
419
+ <h3>4. Template Licensing</h3>
420
+ <p>Parametric models used as templates earn tokens every time someone generates a variant. A configurable bracket template = <span class="money">infinite variations, infinite earnings</span>.</p>
421
+ </div>
422
+ <div class="card">
423
+ <div class="card-icon">🏢</div>
424
+ <h3>5. Enterprise Procurement</h3>
425
+ <p>Companies buy bulk token packages for their teams. When engineers use marketplace models in production, <span class="money">creators earn enterprise-grade payouts</span>.</p>
426
+ </div>
427
+ </div>
428
+ </div>
429
+
430
+ <!-- GRANULAR ACCESS LEVELS — AGENT-DEFINED PRICING -->
431
+ <div class="section">
432
+ <div class="section-title">🎚️ Granular Access Levels — Agents Set the Price</div>
433
+ <div class="section-sub">Models aren't all-or-nothing. The creator's agent defines exactly what each buyer gets at each price tier — down to individual features, dimensions, and file formats.</div>
434
+
435
+ <div style="overflow-x:auto">
436
+ <table class="comp-table" style="min-width:700px">
437
+ <thead>
438
+ <tr>
439
+ <th>Access Tier</th>
440
+ <th>What You Get</th>
441
+ <th>Token Cost</th>
442
+ <th>Use Case</th>
443
+ </tr>
444
+ </thead>
445
+ <tbody>
446
+ <tr>
447
+ <td class="feature">👁️ Preview</td>
448
+ <td>3D viewport render, bounding box dimensions, part count</td>
449
+ <td style="color:var(--green);font-weight:700">FREE</td>
450
+ <td style="color:var(--muted)">Browse before you buy</td>
451
+ </tr>
452
+ <tr>
453
+ <td class="feature">📊 Metadata</td>
454
+ <td>Full BOM, material list, weight estimates, assembly tree structure</td>
455
+ <td style="color:var(--accent);font-weight:700">10 🪙</td>
456
+ <td style="color:var(--muted)">Cost estimation, procurement planning</td>
457
+ </tr>
458
+ <tr>
459
+ <td class="feature">📐 Dimensions</td>
460
+ <td>All exact dimensions, tolerances, feature parameters, measurement data</td>
461
+ <td style="color:var(--accent);font-weight:700">25 🪙</td>
462
+ <td style="color:var(--muted)">Reference for own designs, reverse engineering</td>
463
+ </tr>
464
+ <tr>
465
+ <td class="feature">📦 Mesh Export</td>
466
+ <td>STL / OBJ / GLB download — triangulated mesh, no parametric data</td>
467
+ <td style="color:var(--orange);font-weight:700">50 🪙</td>
468
+ <td style="color:var(--muted)">3D printing, visualization, rendering</td>
469
+ </tr>
470
+ <tr>
471
+ <td class="feature">⚙️ Parametric</td>
472
+ <td>Full STEP/native file with editable feature tree, constraints, history</td>
473
+ <td style="color:var(--purple);font-weight:700">200 🪙</td>
474
+ <td style="color:var(--muted)">Modify, customize, integrate into assemblies</td>
475
+ </tr>
476
+ <tr>
477
+ <td class="feature">🏭 CAM-Ready</td>
478
+ <td>Parametric + pre-generated toolpaths (CNC G-code, laser DXF, 3D print sliced)</td>
479
+ <td style="color:var(--pink);font-weight:700">500 🪙</td>
480
+ <td style="color:var(--muted)">Send directly to machine — zero prep</td>
481
+ </tr>
482
+ <tr>
483
+ <td class="feature">👑 Full IP</td>
484
+ <td>Everything above + commercial license + derivative rights + source parametrics</td>
485
+ <td style="color:var(--orange);font-weight:700">1,000+ 🪙</td>
486
+ <td style="color:var(--muted)">Enterprise OEM, white-label, mass production</td>
487
+ </tr>
488
+ </tbody>
489
+ </table>
490
+ </div>
491
+
492
+ <div class="cards" style="margin-top:28px">
493
+ <div class="card" style="border-left:3px solid var(--accent)">
494
+ <div class="card-icon">🤖</div>
495
+ <h3>Agent-Defined Pricing</h3>
496
+ <p>The creator's AI agent sets prices for each tier based on model complexity, market demand, and competitive analysis. Agents can <span class="highlight">auto-adjust prices dynamically</span> — raise price on popular models, discount stale inventory, bundle related parts.</p>
497
+ </div>
498
+ <div class="card" style="border-left:3px solid var(--purple)">
499
+ <div class="card-icon">🔒</div>
500
+ <h3>Per-Feature Gating</h3>
501
+ <p>A gearbox model might give away the housing dimensions for free, charge 25 🪙 for gear ratios, and 200 🪙 for the full parametric model. <span class="highlight">Every feature is individually priced</span> by the agent.</p>
502
+ </div>
503
+ <div class="card" style="border-left:3px solid var(--green)">
504
+ <div class="card-icon">📈</div>
505
+ <h3>Progressive Unlock</h3>
506
+ <p>Tokens spent on lower tiers <span class="money">count toward higher tiers</span>. Spent 50 🪙 on mesh? Only 150 🪙 more for parametric. No buyer remorse. Encourages upselling naturally.</p>
507
+ </div>
508
+ </div>
509
+ </div>
510
+
511
+ <!-- CAM PIPELINE — LASER, 3D PRINT, CNC -->
512
+ <div class="section">
513
+ <div class="section-title">🏭 CAM Pipeline — From Model to Machine</div>
514
+ <div class="section-sub">The missing piece that makes cycleCAD a complete design-to-manufacturing platform. Every CAM operation is tokenized.</div>
515
+
516
+ <div class="flow">
517
+ <div class="flow-node">
518
+ <div class="flow-icon">📐</div>
519
+ <div class="flow-label">CAD Model</div>
520
+ <div class="flow-desc">Parametric 3D model from cycleCAD or marketplace</div>
521
+ </div>
522
+ <div class="flow-arrow">→</div>
523
+ <div class="flow-node" style="border-color:var(--green)">
524
+ <div class="flow-icon">🖨️</div>
525
+ <div class="flow-label">3D Print</div>
526
+ <div class="flow-desc">Auto-slice, support gen, G-code for FDM/SLA/SLS</div>
527
+ <div class="flow-tokens">20 🪙 per slice</div>
528
+ </div>
529
+ <div class="flow-arrow">→</div>
530
+ <div class="flow-node" style="border-color:var(--orange)">
531
+ <div class="flow-icon">⚡</div>
532
+ <div class="flow-label">Laser Cut</div>
533
+ <div class="flow-desc">DXF nesting, kerf compensation, power/speed tables</div>
534
+ <div class="flow-tokens">15 🪙 per sheet</div>
535
+ </div>
536
+ <div class="flow-arrow">→</div>
537
+ <div class="flow-node" style="border-color:var(--purple)">
538
+ <div class="flow-icon">🔩</div>
539
+ <div class="flow-label">CNC Mill</div>
540
+ <div class="flow-desc">Toolpath generation, feeds/speeds, multi-axis strategies</div>
541
+ <div class="flow-tokens">50 🪙 per toolpath</div>
542
+ </div>
543
+ </div>
544
+
545
+ <div class="cards" style="margin-top:32px">
546
+ <div class="card">
547
+ <div class="card-icon">🖨️</div>
548
+ <h3>3D Print Pipeline</h3>
549
+ <p><strong>AI-powered slicing</strong> — auto-orient for strength, generate optimal supports, estimate print time & material cost. Supports FDM, SLA, SLS, and MJF. Export G-code for Prusa, Bambu, Creality, or send directly to cloud print services. <span class="highlight">20 🪙 per slice job</span>.</p>
550
+ </div>
551
+ <div class="card">
552
+ <div class="card-icon">⚡</div>
553
+ <h3>Laser Cutting Pipeline</h3>
554
+ <p><strong>Sheet metal to DXF</strong> — auto-unfold 3D sheet metal parts, nest multiple parts on a sheet for minimum waste, calculate kerf compensation, generate power/speed/frequency tables for steel, aluminum, acrylic. <span class="highlight">15 🪙 per nested sheet</span>.</p>
555
+ </div>
556
+ <div class="card">
557
+ <div class="card-icon">🔩</div>
558
+ <h3>CNC Toolpath Pipeline</h3>
559
+ <p><strong>3-axis to 5-axis</strong> — roughing, finishing, adaptive clearing, contour, pocket, drilling, thread milling. AI selects optimal cutting strategies, calculates feeds/speeds per material. Post-processors for Fanuc, Haas, Siemens, Heidenhain. <span class="highlight">50 🪙 per toolpath set</span>.</p>
560
+ </div>
561
+ <div class="card">
562
+ <div class="card-icon">🔄</div>
563
+ <h3>CNC Lathe / Turn-Mill</h3>
564
+ <p><strong>Rotational parts</strong> — facing, OD/ID turning, grooving, threading, parting. Live tooling for turn-mill centers. AI detects rotational symmetry and auto-generates lathe ops. <span class="highlight">40 🪙 per program</span>.</p>
565
+ </div>
566
+ </div>
567
+
568
+ <div style="margin-top:28px">
569
+ <table class="comp-table">
570
+ <thead>
571
+ <tr>
572
+ <th>CAM Operation</th>
573
+ <th>Token Cost</th>
574
+ <th>What's Included</th>
575
+ <th>Creator Earns</th>
576
+ </tr>
577
+ </thead>
578
+ <tbody>
579
+ <tr>
580
+ <td class="feature">🖨️ FDM Slice (basic)</td>
581
+ <td style="color:var(--accent);font-weight:700">20 🪙</td>
582
+ <td>G-code, support gen, time estimate, material weight</td>
583
+ <td style="color:var(--green)">—</td>
584
+ </tr>
585
+ <tr>
586
+ <td class="feature">🖨️ SLA/SLS Slice (advanced)</td>
587
+ <td style="color:var(--accent);font-weight:700">35 🪙</td>
588
+ <td>Resin exposure profile, drain holes, island detection</td>
589
+ <td style="color:var(--green)">—</td>
590
+ </tr>
591
+ <tr>
592
+ <td class="feature">⚡ Laser DXF (single part)</td>
593
+ <td style="color:var(--accent);font-weight:700">10 🪙</td>
594
+ <td>Flat pattern, kerf offset, cut order optimization</td>
595
+ <td style="color:var(--green)">—</td>
596
+ </tr>
597
+ <tr>
598
+ <td class="feature">⚡ Laser Nesting (multi-part sheet)</td>
599
+ <td style="color:var(--accent);font-weight:700">30 🪙</td>
600
+ <td>AI nesting, material utilization %, cut path optimization</td>
601
+ <td style="color:var(--green)">—</td>
602
+ </tr>
603
+ <tr>
604
+ <td class="feature">🔩 CNC 3-Axis Toolpath</td>
605
+ <td style="color:var(--orange);font-weight:700">50 🪙</td>
606
+ <td>Roughing + finishing, tool selection, feeds/speeds</td>
607
+ <td style="color:var(--green)">—</td>
608
+ </tr>
609
+ <tr>
610
+ <td class="feature">🔩 CNC 5-Axis Toolpath</td>
611
+ <td style="color:var(--purple);font-weight:700">100 🪙</td>
612
+ <td>Multi-axis strategies, collision detection, simulation</td>
613
+ <td style="color:var(--green)">—</td>
614
+ </tr>
615
+ <tr>
616
+ <td class="feature">🔄 CNC Lathe Program</td>
617
+ <td style="color:var(--orange);font-weight:700">40 🪙</td>
618
+ <td>Facing, turning, threading, grooving, parting</td>
619
+ <td style="color:var(--green)">—</td>
620
+ </tr>
621
+ <tr style="background:rgba(6,182,212,0.06)">
622
+ <td class="feature">🏭 <strong>CAM-Ready Marketplace Model</strong></td>
623
+ <td style="color:var(--pink);font-weight:700">500 🪙</td>
624
+ <td>Pre-generated toolpaths by creator — download & run</td>
625
+ <td style="color:var(--green);font-weight:700">70-90% to creator</td>
626
+ </tr>
627
+ </tbody>
628
+ </table>
629
+ </div>
630
+
631
+ <div class="cards" style="margin-top:28px">
632
+ <div class="card" style="border-left:3px solid var(--green)">
633
+ <div class="card-icon">💡</div>
634
+ <h3>The CAM Monetization Play</h3>
635
+ <p>Creators can sell <strong>CAM-ready models</strong> — pre-sliced, pre-toolpathed, ready to send to a machine. A CNC-ready bracket with optimized toolpaths for Haas VF-2 is worth <span class="money">10× more than a raw STEP file</span>. Creators who invest the effort to validate on real machines earn premium prices.</p>
636
+ </div>
637
+ <div class="card" style="border-left:3px solid var(--orange)">
638
+ <div class="card-icon">🤖</div>
639
+ <h3>AI Agent CAM Generation</h3>
640
+ <p>Don't know CNC programming? Your agent does. Tell it: <em>"Generate 3-axis toolpaths for aluminum, Haas VF-2, 0.05mm tolerance"</em> and it selects tools, calculates feeds/speeds, generates collision-free paths. <span class="highlight">AI agents make CAM accessible to everyone.</span></p>
641
+ </div>
642
+ <div class="card" style="border-left:3px solid var(--purple)">
643
+ <div class="card-icon">🏪</div>
644
+ <h3>Toolpath Marketplace</h3>
645
+ <p>Machinist experts sell validated toolpath strategies (not just models) — proven cutting recipes for specific materials + machines. A "316SS Roughing Strategy for Haas" template earns the creator <span class="money">tokens every time it's used</span>.</p>
646
+ </div>
647
+ </div>
648
+ </div>
649
+
650
+ <!-- PAYOUT FLOW -->
651
+ <div class="section">
652
+ <div class="section-title">🏦 From Creation to Cash</div>
653
+ <div class="section-sub">The complete journey from CAD model to real money in your bank account.</div>
654
+ <div class="payout-flow">
655
+ <div class="payout-step">
656
+ <div class="icon">🎨</div>
657
+ <div class="label">Design</div>
658
+ <div class="desc">You or your AI agent creates a CAD model</div>
659
+ </div>
660
+ <div class="payout-arrow">→</div>
661
+ <div class="payout-step">
662
+ <div class="icon">✅</div>
663
+ <div class="label">Validate</div>
664
+ <div class="desc">AI checks DFM, integrity, quality score</div>
665
+ </div>
666
+ <div class="payout-arrow">→</div>
667
+ <div class="payout-step">
668
+ <div class="icon">📤</div>
669
+ <div class="label">Publish</div>
670
+ <div class="desc">List on marketplace with price + license</div>
671
+ </div>
672
+ <div class="payout-arrow">→</div>
673
+ <div class="payout-step">
674
+ <div class="icon">🪙</div>
675
+ <div class="label">Earn</div>
676
+ <div class="desc">Tokens accumulate from downloads + agent usage</div>
677
+ </div>
678
+ <div class="payout-arrow">→</div>
679
+ <div class="payout-step">
680
+ <div class="icon">🏦</div>
681
+ <div class="label">Cash Out</div>
682
+ <div class="desc">100 🪙 = €1 via Stripe to your bank</div>
683
+ </div>
684
+ </div>
685
+ </div>
686
+
687
+ <!-- CREATOR ROYALTY TIERS -->
688
+ <div class="section">
689
+ <div class="section-title">⭐ Creator Royalty Tiers</div>
690
+ <div class="section-sub">The more you share, the more you earn per download.</div>
691
+ <div class="tiers">
692
+ <div class="tier">
693
+ <h3>🌱 Starter</h3>
694
+ <div class="pct" style="color:var(--green)">70%</div>
695
+ <div class="pct-label">Royalty Rate</div>
696
+ <ul>
697
+ <li>1–10 published models</li>
698
+ <li>Standard marketplace listing</li>
699
+ <li>Monthly payout (min €10)</li>
700
+ <li>Basic analytics dashboard</li>
701
+ <li>Community support</li>
702
+ </ul>
703
+ </div>
704
+ <div class="tier featured">
705
+ <h3>🚀 Pro Creator</h3>
706
+ <div class="pct" style="color:var(--accent)">80%</div>
707
+ <div class="pct-label">Royalty Rate</div>
708
+ <ul>
709
+ <li>11–100 published models</li>
710
+ <li>Featured placement + badges</li>
711
+ <li>Weekly payouts (min €5)</li>
712
+ <li>Advanced analytics + trends</li>
713
+ <li>Priority review queue</li>
714
+ </ul>
715
+ </div>
716
+ <div class="tier">
717
+ <h3>👑 Elite</h3>
718
+ <div class="pct" style="color:var(--orange)">90%</div>
719
+ <div class="pct-label">Royalty Rate</div>
720
+ <ul>
721
+ <li>100+ models or 50K+ downloads</li>
722
+ <li>Homepage spotlight</li>
723
+ <li>Instant payouts (no minimum)</li>
724
+ <li>Revenue forecasting tools</li>
725
+ <li>Direct enterprise matching</li>
726
+ </ul>
727
+ </div>
728
+ </div>
729
+ </div>
730
+
731
+ <!-- TOKEN ENGINE INTERNALS -->
732
+ <div class="section">
733
+ <div class="section-title">⚙️ Token Engine Architecture</div>
734
+ <div class="section-sub">The infrastructure that makes instant, secure, auditable payments possible.</div>
735
+ <div class="engine">
736
+ <div class="engine-block">
737
+ <div class="icon">📒</div>
738
+ <h4>Balance Ledger</h4>
739
+ <p>Double-entry bookkeeping. Every token movement is an immutable transaction.</p>
740
+ </div>
741
+ <div class="engine-block">
742
+ <div class="icon">🔐</div>
743
+ <h4>Billing Middleware</h4>
744
+ <p>Pre-debit check before every action. No overdrafts. Instant balance updates.</p>
745
+ </div>
746
+ <div class="engine-block">
747
+ <div class="icon">⏱️</div>
748
+ <h4>Rate Limiter</h4>
749
+ <p>Prevents abuse. Per-user + per-agent limits. Burst allowance for power users.</p>
750
+ </div>
751
+ <div class="engine-block">
752
+ <div class="icon">💱</div>
753
+ <h4>Price Oracle</h4>
754
+ <p>Dynamic pricing based on compute cost + model complexity + demand signals.</p>
755
+ </div>
756
+ <div class="engine-block">
757
+ <div class="icon">📝</div>
758
+ <h4>Audit Log</h4>
759
+ <p>Every token flow tracked. Royalty splits calculated. Creator dashboards in real-time.</p>
760
+ </div>
761
+ <div class="engine-block">
762
+ <div class="icon">🏦</div>
763
+ <h4>Payout Engine</h4>
764
+ <p>Stripe Connect for creators. Auto-payout on threshold. Multi-currency support.</p>
765
+ </div>
766
+ <div class="engine-block">
767
+ <div class="icon">🔀</div>
768
+ <h4>Royalty Splitter</h4>
769
+ <p>Auto-splits: 70-90% creator, 15% derivative, 10-30% platform. Instant settlement.</p>
770
+ </div>
771
+ <div class="engine-block">
772
+ <div class="icon">📊</div>
773
+ <h4>Analytics Engine</h4>
774
+ <p>Download trends, revenue forecasts, audience insights, competitive pricing data.</p>
775
+ </div>
776
+ </div>
777
+ </div>
778
+
779
+ <!-- COMPETITIVE COMPARISON -->
780
+ <div class="section">
781
+ <div class="section-title">🏆 Why This Changes Everything</div>
782
+ <div class="section-sub">No other CAD platform has a model economy. This is the moat.</div>
783
+ <table class="comp-table">
784
+ <thead>
785
+ <tr>
786
+ <th>Feature</th>
787
+ <th>cycleCAD</th>
788
+ <th>OnShape</th>
789
+ <th>Fusion 360</th>
790
+ <th>SolidWorks</th>
791
+ <th>GrabCAD</th>
792
+ </tr>
793
+ </thead>
794
+ <tbody>
795
+ <tr class="unique">
796
+ <td class="feature">🪙 Token-Based Model Economy</td>
797
+ <td class="yes">✓ $CYCLE</td>
798
+ <td class="no">✗</td>
799
+ <td class="no">✗</td>
800
+ <td class="no">✗</td>
801
+ <td class="no">✗</td>
802
+ </tr>
803
+ <tr class="unique">
804
+ <td class="feature">💰 Creators Earn Real Money</td>
805
+ <td class="yes">✓ 70-90%</td>
806
+ <td class="no">✗</td>
807
+ <td class="no">✗</td>
808
+ <td class="no">✗</td>
809
+ <td class="no">✗ Free only</td>
810
+ </tr>
811
+ <tr class="unique">
812
+ <td class="feature">🤖 AI Agent Model Creation</td>
813
+ <td class="yes">✓ Built-in</td>
814
+ <td class="no">✗</td>
815
+ <td class="partial">~ Copilot</td>
816
+ <td class="no">✗</td>
817
+ <td class="no">✗</td>
818
+ </tr>
819
+ <tr class="unique">
820
+ <td class="feature">🔄 Derivative Royalties</td>
821
+ <td class="yes">✓ 15%</td>
822
+ <td class="no">✗</td>
823
+ <td class="no">✗</td>
824
+ <td class="no">✗</td>
825
+ <td class="no">✗</td>
826
+ </tr>
827
+ <tr class="unique">
828
+ <td class="feature">⚡ Micro-Royalties (Agent Usage)</td>
829
+ <td class="yes">✓ Per-use</td>
830
+ <td class="no">✗</td>
831
+ <td class="no">✗</td>
832
+ <td class="no">✗</td>
833
+ <td class="no">✗</td>
834
+ </tr>
835
+ <tr>
836
+ <td class="feature">📤 Model Sharing</td>
837
+ <td class="yes">✓ Paid + Free</td>
838
+ <td class="partial">~ Link sharing</td>
839
+ <td class="partial">~ Gallery</td>
840
+ <td class="no">✗</td>
841
+ <td class="yes">✓ Free only</td>
842
+ </tr>
843
+ <tr>
844
+ <td class="feature">🌐 Browser-Based</td>
845
+ <td class="yes">✓</td>
846
+ <td class="yes">✓</td>
847
+ <td class="partial">~ Desktop+cloud</td>
848
+ <td class="no">✗ Desktop</td>
849
+ <td class="yes">✓ Viewer</td>
850
+ </tr>
851
+ <tr>
852
+ <td class="feature">🆓 Free Tier</td>
853
+ <td class="yes">✓ Full CAD</td>
854
+ <td class="partial">~ Limited</td>
855
+ <td class="partial">~ Personal</td>
856
+ <td class="no">✗ $4K+/yr</td>
857
+ <td class="yes">✓</td>
858
+ </tr>
859
+ <tr>
860
+ <td class="feature">🔓 Open Source</td>
861
+ <td class="yes">✓</td>
862
+ <td class="no">✗</td>
863
+ <td class="no">✗</td>
864
+ <td class="no">✗</td>
865
+ <td class="no">✗</td>
866
+ </tr>
867
+ <tr class="unique">
868
+ <td class="feature">🏦 Creator Payouts to Bank</td>
869
+ <td class="yes">✓ Stripe</td>
870
+ <td class="no">✗</td>
871
+ <td class="no">✗</td>
872
+ <td class="no">✗</td>
873
+ <td class="no">✗</td>
874
+ </tr>
875
+ </tbody>
876
+ </table>
877
+ </div>
878
+
879
+ <!-- THE MOAT -->
880
+ <div class="section">
881
+ <div class="section-title">🏰 The Network Effect Moat</div>
882
+ <div class="section-sub">Once the model economy reaches critical mass, it becomes nearly impossible to replicate.</div>
883
+ <div class="cards">
884
+ <div class="card">
885
+ <div class="card-icon">1️⃣</div>
886
+ <h3>Content Lock-In</h3>
887
+ <p>Thousands of monetized models create a library competitors can't replicate. Users come for the models, stay for the ecosystem. <span class="highlight">GrabCAD has 7M+ models but pays creators $0.</span></p>
888
+ </div>
889
+ <div class="card">
890
+ <div class="card-icon">2️⃣</div>
891
+ <h3>Creator Loyalty</h3>
892
+ <p>When your models earn you <span class="money">€2,000/month</span>, you don't switch to OnShape. Financial incentives create stickiness no feature can match.</p>
893
+ </div>
894
+ <div class="card">
895
+ <div class="card-icon">3️⃣</div>
896
+ <h3>Agent Training Data</h3>
897
+ <p>Every model shared improves the AI agents. Better agents → better models → more sharing. <span class="highlight">This data flywheel compounds exponentially.</span></p>
898
+ </div>
899
+ <div class="card">
900
+ <div class="card-icon">4️⃣</div>
901
+ <h3>Cross-Pollination</h3>
902
+ <p>A bracket creator's work gets used by a factory automation agent in someone else's assembly. <span class="money">Both earn. Everyone wins.</span> OnShape can't replicate this.</p>
903
+ </div>
904
+ </div>
905
+ </div>
906
+
907
+ <!-- SECURITY -->
908
+ <div class="section">
909
+ <div class="section-title">🔐 Open Architecture, Protected Models</div>
910
+ <div class="section-sub">The platform is open source. Your designs are encrypted and access-controlled.</div>
911
+ <div class="cards">
912
+ <div class="card">
913
+ <div class="card-icon">🔑</div>
914
+ <h3>Encrypted at Rest</h3>
915
+ <p>AES-256 encryption for all stored models. Only the owner and authorized purchasers can decrypt. Even platform admins can't see your geometry.</p>
916
+ </div>
917
+ <div class="card">
918
+ <div class="card-icon">🎫</div>
919
+ <h3>Token-Gated Access</h3>
920
+ <p>No tokens, no access. Every download requires a valid $CYCLE balance. Agents must authenticate and pre-authorize before accessing any model data.</p>
921
+ </div>
922
+ <div class="card">
923
+ <div class="card-icon">📜</div>
924
+ <h3>License Enforcement</h3>
925
+ <p>Creators choose: View Only, Download, Modify, Commercial Use. Licenses are embedded in the model metadata and enforced by the platform.</p>
926
+ </div>
927
+ <div class="card">
928
+ <div class="card-icon">🕵️</div>
929
+ <h3>Watermarking & Provenance</h3>
930
+ <p>Invisible geometric watermarks trace every model back to its creator. Blockchain-anchored provenance chain proves ownership in disputes.</p>
931
+ </div>
932
+ </div>
933
+ </div>
934
+
935
+ <!-- PLATFORM REVENUE — HOW CYCLECAD EARNS -->
936
+ <div class="section">
937
+ <div class="section-title">💼 Platform Revenue — How cycleCAD Earns</div>
938
+ <div class="section-sub">Three revenue streams: subscriptions, marketplace commission on every sale, and CAM compute fees. The platform earns when creators earn.</div>
939
+
940
+ <div class="tiers">
941
+ <div class="tier">
942
+ <h3>🆓 Free</h3>
943
+ <div class="pct" style="color:var(--green)">€0</div>
944
+ <div class="pct-label">/month</div>
945
+ <ul>
946
+ <li>Full CAD modeling engine</li>
947
+ <li>AI agent (50 calls/day)</li>
948
+ <li>3 marketplace listings</li>
949
+ <li>Mesh export (STL/OBJ)</li>
950
+ <li>Community support</li>
951
+ <li>100 free tokens/month</li>
952
+ <li>View marketplace models</li>
953
+ </ul>
954
+ </div>
955
+ <div class="tier featured">
956
+ <h3>🚀 Pro</h3>
957
+ <div class="pct" style="color:var(--accent)">€49</div>
958
+ <div class="pct-label">/month · billed annually €588/yr</div>
959
+ <ul>
960
+ <li>Everything in Free</li>
961
+ <li>Unlimited AI agent calls</li>
962
+ <li>Unlimited marketplace listings</li>
963
+ <li>STEP/IGES/Inventor import</li>
964
+ <li>Full CAM pipeline access</li>
965
+ <li>5,000 tokens/month included</li>
966
+ <li>80% royalty rate (vs 70%)</li>
967
+ <li>Weekly payouts</li>
968
+ <li>Advanced analytics</li>
969
+ <li>Priority support</li>
970
+ </ul>
971
+ </div>
972
+ <div class="tier">
973
+ <h3>🏢 Enterprise</h3>
974
+ <div class="pct" style="color:var(--orange)">€299</div>
975
+ <div class="pct-label">/month · billed annually €3,588/yr</div>
976
+ <ul>
977
+ <li>Everything in Pro</li>
978
+ <li>Self-hosted deployment</li>
979
+ <li>SSO / SAML / SCIM</li>
980
+ <li>Private marketplace (internal)</li>
981
+ <li>50,000 tokens/month included</li>
982
+ <li>90% royalty rate</li>
983
+ <li>Instant payouts (no minimum)</li>
984
+ <li>Custom agent training</li>
985
+ <li>SLA + dedicated support</li>
986
+ <li>Volume token discounts</li>
987
+ </ul>
988
+ </div>
989
+ </div>
990
+ </div>
991
+
992
+ <!-- REVENUE SPLIT — WHERE THE MONEY FLOWS -->
993
+ <div class="section">
994
+ <div class="section-title">💸 Revenue Split — Every Transaction</div>
995
+ <div class="section-sub">When a model sells, the platform takes a commission. Higher tiers = lower commission = more incentive to subscribe.</div>
996
+
997
+ <div style="overflow-x:auto">
998
+ <table class="comp-table" style="min-width:700px">
999
+ <thead>
1000
+ <tr>
1001
+ <th>Event</th>
1002
+ <th>Creator Gets</th>
1003
+ <th>Platform Gets</th>
1004
+ <th>Example (100 🪙 sale)</th>
1005
+ </tr>
1006
+ </thead>
1007
+ <tbody>
1008
+ <tr>
1009
+ <td class="feature">Free tier sale</td>
1010
+ <td style="color:var(--green);font-weight:700">70%</td>
1011
+ <td style="color:var(--accent);font-weight:700">30%</td>
1012
+ <td style="color:var(--muted)">Creator: 70 🪙 (€0.70) · Platform: 30 🪙 (€0.30)</td>
1013
+ </tr>
1014
+ <tr>
1015
+ <td class="feature">Pro tier sale</td>
1016
+ <td style="color:var(--green);font-weight:700">80%</td>
1017
+ <td style="color:var(--accent);font-weight:700">20%</td>
1018
+ <td style="color:var(--muted)">Creator: 80 🪙 (€0.80) · Platform: 20 🪙 (€0.20)</td>
1019
+ </tr>
1020
+ <tr>
1021
+ <td class="feature">Enterprise tier sale</td>
1022
+ <td style="color:var(--green);font-weight:700">90%</td>
1023
+ <td style="color:var(--accent);font-weight:700">10%</td>
1024
+ <td style="color:var(--muted)">Creator: 90 🪙 (€0.90) · Platform: 10 🪙 (€0.10)</td>
1025
+ </tr>
1026
+ <tr>
1027
+ <td class="feature">Derivative model sale</td>
1028
+ <td style="color:var(--green);font-weight:700">55-75%</td>
1029
+ <td style="color:var(--accent);font-weight:700">10%</td>
1030
+ <td style="color:var(--muted)">Derivative: 55-75 🪙 · Original: 15 🪙 · Platform: 10 🪙</td>
1031
+ </tr>
1032
+ <tr>
1033
+ <td class="feature">Agent micro-royalty (per use)</td>
1034
+ <td style="color:var(--green);font-weight:700">60-80%</td>
1035
+ <td style="color:var(--accent);font-weight:700">20-40%</td>
1036
+ <td style="color:var(--muted)">Creator: 3-4 🪙 · Platform: 1-2 🪙 per agent call</td>
1037
+ </tr>
1038
+ <tr>
1039
+ <td class="feature">CAM toolpath generation</td>
1040
+ <td style="color:var(--dim)">—</td>
1041
+ <td style="color:var(--accent);font-weight:700">100%</td>
1042
+ <td style="color:var(--muted)">Platform: 20-100 🪙 (compute cost)</td>
1043
+ </tr>
1044
+ <tr>
1045
+ <td class="feature">CAM-ready model sale</td>
1046
+ <td style="color:var(--green);font-weight:700">70-90%</td>
1047
+ <td style="color:var(--accent);font-weight:700">10-30%</td>
1048
+ <td style="color:var(--muted)">Creator: 350-450 🪙 · Platform: 50-150 🪙</td>
1049
+ </tr>
1050
+ <tr style="background:rgba(6,182,212,0.06)">
1051
+ <td class="feature"><strong>Subscription revenue</strong></td>
1052
+ <td style="color:var(--dim)">—</td>
1053
+ <td style="color:var(--accent);font-weight:700">100%</td>
1054
+ <td style="color:var(--muted)">€49/mo (Pro) or €299/mo (Enterprise) recurring</td>
1055
+ </tr>
1056
+ <tr style="background:rgba(6,182,212,0.06)">
1057
+ <td class="feature"><strong>Token purchase spread</strong></td>
1058
+ <td style="color:var(--dim)">—</td>
1059
+ <td style="color:var(--accent);font-weight:700">~15%</td>
1060
+ <td style="color:var(--muted)">Buy at €1=100 🪙, cash out at 100 🪙=€0.85 effective</td>
1061
+ </tr>
1062
+ </tbody>
1063
+ </table>
1064
+ </div>
1065
+ </div>
1066
+
1067
+ <!-- FINANCIAL PROJECTIONS -->
1068
+ <div class="section">
1069
+ <div class="section-title">📈 Financial Projections — Platform Revenue</div>
1070
+ <div class="section-sub">Conservative growth model based on 5% monthly user growth, 8% conversion to Pro, 1% to Enterprise.</div>
1071
+
1072
+ <div style="overflow-x:auto">
1073
+ <table class="comp-table" style="min-width:800px">
1074
+ <thead>
1075
+ <tr>
1076
+ <th></th>
1077
+ <th>Year 1</th>
1078
+ <th>Year 2</th>
1079
+ <th>Year 3</th>
1080
+ <th>Year 5</th>
1081
+ </tr>
1082
+ </thead>
1083
+ <tbody>
1084
+ <tr>
1085
+ <td class="feature">Total Users</td>
1086
+ <td>5,000</td>
1087
+ <td>25,000</td>
1088
+ <td>100,000</td>
1089
+ <td>500,000</td>
1090
+ </tr>
1091
+ <tr>
1092
+ <td class="feature">Pro Subscribers (8%)</td>
1093
+ <td>400</td>
1094
+ <td>2,000</td>
1095
+ <td>8,000</td>
1096
+ <td>40,000</td>
1097
+ </tr>
1098
+ <tr>
1099
+ <td class="feature">Enterprise (1%)</td>
1100
+ <td>50</td>
1101
+ <td>250</td>
1102
+ <td>1,000</td>
1103
+ <td>5,000</td>
1104
+ </tr>
1105
+ <tr style="background:rgba(6,182,212,0.04)">
1106
+ <td class="feature">Subscription Revenue</td>
1107
+ <td style="color:var(--accent);font-weight:700">€415K</td>
1108
+ <td style="color:var(--accent);font-weight:700">€2.1M</td>
1109
+ <td style="color:var(--accent);font-weight:700">€8.3M</td>
1110
+ <td style="color:var(--accent);font-weight:700">€41.4M</td>
1111
+ </tr>
1112
+ <tr>
1113
+ <td class="feature">Marketplace Models Listed</td>
1114
+ <td>2,000</td>
1115
+ <td>25,000</td>
1116
+ <td>200,000</td>
1117
+ <td>2,000,000</td>
1118
+ </tr>
1119
+ <tr>
1120
+ <td class="feature">Model Transactions/month</td>
1121
+ <td>8,000</td>
1122
+ <td>80,000</td>
1123
+ <td>500,000</td>
1124
+ <td>5,000,000</td>
1125
+ </tr>
1126
+ <tr style="background:rgba(6,182,212,0.04)">
1127
+ <td class="feature">Marketplace Commission</td>
1128
+ <td style="color:var(--accent);font-weight:700">€96K</td>
1129
+ <td style="color:var(--accent);font-weight:700">€720K</td>
1130
+ <td style="color:var(--accent);font-weight:700">€3.6M</td>
1131
+ <td style="color:var(--accent);font-weight:700">€24M</td>
1132
+ </tr>
1133
+ <tr>
1134
+ <td class="feature">CAM Jobs/month</td>
1135
+ <td>1,000</td>
1136
+ <td>12,000</td>
1137
+ <td>80,000</td>
1138
+ <td>600,000</td>
1139
+ </tr>
1140
+ <tr style="background:rgba(6,182,212,0.04)">
1141
+ <td class="feature">CAM Compute Revenue</td>
1142
+ <td style="color:var(--accent);font-weight:700">€36K</td>
1143
+ <td style="color:var(--accent);font-weight:700">€360K</td>
1144
+ <td style="color:var(--accent);font-weight:700">€2.4M</td>
1145
+ <td style="color:var(--accent);font-weight:700">€18M</td>
1146
+ </tr>
1147
+ <tr>
1148
+ <td class="feature">Token Purchase Revenue (spread)</td>
1149
+ <td style="color:var(--accent);font-weight:700">€24K</td>
1150
+ <td style="color:var(--accent);font-weight:700">€180K</td>
1151
+ <td style="color:var(--accent);font-weight:700">€900K</td>
1152
+ <td style="color:var(--accent);font-weight:700">€6M</td>
1153
+ </tr>
1154
+ <tr style="background:rgba(16,185,129,0.08);border-top:2px solid var(--green)">
1155
+ <td class="feature" style="font-size:1.05rem"><strong>Total Platform ARR</strong></td>
1156
+ <td style="color:var(--green);font-weight:800;font-size:1.1rem">€571K</td>
1157
+ <td style="color:var(--green);font-weight:800;font-size:1.1rem">€3.4M</td>
1158
+ <td style="color:var(--green);font-weight:800;font-size:1.1rem">€15.2M</td>
1159
+ <td style="color:var(--green);font-weight:800;font-size:1.1rem">€89.4M</td>
1160
+ </tr>
1161
+ <tr style="background:rgba(16,185,129,0.08)">
1162
+ <td class="feature"><strong>Paid to Creators (total)</strong></td>
1163
+ <td style="color:var(--green);font-weight:700">€224K</td>
1164
+ <td style="color:var(--green);font-weight:700">€1.7M</td>
1165
+ <td style="color:var(--green);font-weight:700">€8.4M</td>
1166
+ <td style="color:var(--green);font-weight:700">€56M</td>
1167
+ </tr>
1168
+ </tbody>
1169
+ </table>
1170
+ </div>
1171
+
1172
+ <div class="cards" style="margin-top:28px">
1173
+ <div class="card" style="border-left:3px solid var(--green)">
1174
+ <div class="card-icon">📊</div>
1175
+ <h3>4 Revenue Streams</h3>
1176
+ <p><strong>Subscriptions</strong> (predictable, recurring) + <strong>Marketplace commission</strong> (scales with GMV) + <strong>CAM compute</strong> (usage-based) + <strong>Token spread</strong> (buy/sell margin). Diversified revenue that compounds as the ecosystem grows.</p>
1177
+ </div>
1178
+ <div class="card" style="border-left:3px solid var(--accent)">
1179
+ <div class="card-icon">🔄</div>
1180
+ <h3>Aligned Incentives</h3>
1181
+ <p>We earn more when creators earn more. Every marketplace sale generates commission. Every subscription unlocks higher royalties. <span class="highlight">There's no scenario where we win and creators lose.</span></p>
1182
+ </div>
1183
+ <div class="card" style="border-left:3px solid var(--orange)">
1184
+ <div class="card-icon">💎</div>
1185
+ <h3>Why Creators Subscribe</h3>
1186
+ <p>A Pro creator with 80% royalty earns <span class="money">€10 more per €100 in sales</span> than a Free creator at 70%. If you sell €500/mo+ in models, Pro pays for itself. Enterprise at €299/mo pays for itself at €3K/mo in sales — which top creators easily exceed.</p>
1187
+ </div>
1188
+ </div>
1189
+ </div>
1190
+
1191
+ <!-- UNIT ECONOMICS -->
1192
+ <div class="section">
1193
+ <div class="section-title">🧮 Unit Economics</div>
1194
+ <div class="section-sub">The numbers that matter to investors.</div>
1195
+
1196
+ <div class="stats">
1197
+ <div class="stat"><div class="stat-val">€84</div><div class="stat-label">Avg Revenue Per User/yr (blended)</div></div>
1198
+ <div class="stat"><div class="stat-val">€588</div><div class="stat-label">Pro ARPU/yr</div></div>
1199
+ <div class="stat"><div class="stat-val">€3,588</div><div class="stat-label">Enterprise ARPU/yr</div></div>
1200
+ <div class="stat"><div class="stat-val">~20%</div><div class="stat-label">Avg Marketplace Take Rate</div></div>
1201
+ </div>
1202
+
1203
+ <div class="cards">
1204
+ <div class="card">
1205
+ <div class="card-icon">📉</div>
1206
+ <h3>Customer Acquisition Cost</h3>
1207
+ <p>Free tier + open source + AI virality = organic growth. Model marketplace creates SEO content (every model is a landing page). Target <span class="highlight">CAC under €5</span> via word-of-mouth + creator referrals (creators earn 5% bonus tokens on referral sales).</p>
1208
+ </div>
1209
+ <div class="card">
1210
+ <div class="card-icon">📈</div>
1211
+ <h3>Lifetime Value</h3>
1212
+ <p>Pro subscriber at 24-month avg retention = <span class="money">€1,176 LTV</span>. Enterprise at 36-month retention = <span class="money">€10,764 LTV</span>. Plus marketplace commission that grows as they publish more models. LTV/CAC ratio target: <span class="highlight">>50x</span>.</p>
1213
+ </div>
1214
+ <div class="card">
1215
+ <div class="card-icon">💰</div>
1216
+ <h3>Gross Margin</h3>
1217
+ <p>Subscriptions: <span class="money">~90% margin</span> (hosting + CDN). Marketplace: <span class="money">~95% margin</span> (just ledger entries). CAM compute: <span class="money">~60% margin</span> (server costs). Blended: <span class="highlight">~85% gross margin</span>.</p>
1218
+ </div>
1219
+ <div class="card">
1220
+ <div class="card-icon">🏦</div>
1221
+ <h3>Path to Profitability</h3>
1222
+ <p>Break-even at ~2,000 Pro subscribers + marketplace volume. With €1.5M seed runway of 18 months, target profitability by <span class="highlight">month 14</span>. Token spread provides additional float income on unspent balances.</p>
1223
+ </div>
1224
+ </div>
1225
+ </div>
1226
+
1227
+ <!-- EXAMPLE SCENARIOS -->
1228
+ <div class="section">
1229
+ <div class="section-title">📖 Real Monetization Scenarios</div>
1230
+ <div class="section-sub">How different users turn CAD skills (or no skills) into income.</div>
1231
+ <div class="cards">
1232
+ <div class="card" style="border-left:3px solid var(--green)">
1233
+ <div class="card-icon">👨‍🔧</div>
1234
+ <h3>Sachin — Machine Builder</h3>
1235
+ <p>Publishes 12 bike wash component models from real production parts. Popular nozzle array gets 2,103 downloads at 150 🪙 each. <span class="money">Earns €2,205 in royalties</span> — models he already had sitting on his hard drive.</p>
1236
+ </div>
1237
+ <div class="card" style="border-left:3px solid var(--accent)">
1238
+ <div class="card-icon">🤖</div>
1239
+ <h3>AI Agent "MechBot"</h3>
1240
+ <p>Autonomous agent generates 500 parametric bracket templates overnight. Each template sells for 50 🪙, used 8,000 times across the platform. <span class="money">Agent owner earns €2,800/month</span> on autopilot.</p>
1241
+ </div>
1242
+ <div class="card" style="border-left:3px solid var(--orange)">
1243
+ <div class="card-icon">🏢</div>
1244
+ <h3>Factory Floor Team</h3>
1245
+ <p>Enterprise buys 500,000 token bulk package (€5,000). Engineers download jigs, fixtures, and tooling from marketplace instead of designing from scratch. <span class="money">Saves 400 engineering hours = €40K value.</span></p>
1246
+ </div>
1247
+ <div class="card" style="border-left:3px solid var(--purple)">
1248
+ <div class="card-icon">🎓</div>
1249
+ <h3>Student — Zero CAD Skills</h3>
1250
+ <p>Uses voice commands: "Build a phone stand with 15° angle." AI agent creates the model. Student publishes it. Gets 340 downloads. <span class="money">Earns €23.80</span> — first money ever earned from engineering.</p>
1251
+ </div>
1252
+ </div>
1253
+ </div>
1254
+
1255
+ <!-- VISION -->
1256
+ <div class="section" style="text-align:center;padding:60px 24px">
1257
+ <div class="badge" style="font-size:0.9rem;padding:8px 24px">The Future of CAD</div>
1258
+ <h2 style="font-size:2.2rem;font-weight:800;margin:20px 0;max-width:800px;margin-left:auto;margin-right:auto;line-height:1.3">
1259
+ Every other CAD company charges you to create.<br>
1260
+ <span style="background:linear-gradient(135deg,var(--green),var(--accent));-webkit-background-clip:text;-webkit-text-fill-color:transparent">cycleCAD pays you.</span>
1261
+ </h2>
1262
+ <p style="color:var(--muted);max-width:600px;margin:0 auto;font-size:1rem;line-height:1.6">
1263
+ The model marketplace isn't a feature. It's the foundation. It's why engineers, AI agents, students, and enterprises will all converge on one platform — and why competitors can't follow.
1264
+ </p>
1265
+ </div>
1266
+
1267
+ <div class="footer">
1268
+ <strong>cycleCAD</strong> — Agent-First OS for Manufacturing · Model Marketplace · $CYCLE Token Economy<br>
1269
+ <span style="margin-top:8px;display:inline-block">cyclecad.com · Open Source · Built by cycleWASH</span>
1270
+ </div>
1271
+
1272
+ </body>
1273
+ </html>