-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
374 lines (327 loc) · 13.7 KB
/
about.html
File metadata and controls
374 lines (327 loc) · 13.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
<!DOCTYPE html>
<!--
============================================================================
FORAY Protocol - About Page
============================================================================
Version: 1.1.0
Created: 2026-01-30T21:30:00Z
Modified: 2026-01-31T20:00:00Z
Author: Marvin Percival
Email: marvinp@dunin7.com
GitHub: github.com/DUNIN7/foray-kaspathon
License: Business Source License 1.1
Copyright (c) 2026 Marvin Percival. All rights reserved.
Changelog:
v1.1.0 (2026-01-31): Content review - "immutable" to "tamper-evident"
Content review - removed "completely" overclaim
Fixed character encoding (copyright, middot)
Added scroll-margin-top for anchor links
v1.0.0 (2026-01-30): Initial release with unified navigation
============================================================================
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - FORAY Protocol</title>
<meta name="description" content="About FORAY Protocol - Privacy-preserving blockchain audit infrastructure for enterprise transactions.">
<link rel="icon" href="favicon.svg" type="image/svg+xml">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap" rel="stylesheet">
<style>
:root {
--primary-teal: #0D7377;
--secondary-navy: #1B365D;
--accent-cyan: #14B8B8;
--highlight-mint: #7DD3D6;
--action-amber: #E6A817;
--text-dark: #1A1D21;
--text-light: #F7F9FA;
--bg-dark: #1A1D21;
--gray-600: #636E72;
--gray-400: #94A3A8;
--gray-200: #E5E9EB;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
font-family: 'IBM Plex Sans', -apple-system, sans-serif;
background: var(--bg-dark);
color: var(--text-light);
line-height: 1.7;
}
.font-mono { font-family: 'IBM Plex Mono', monospace; }
/* Navigation */
/* === BULLETPROOF NAV CSS v4.0 - FULLY SELF-CONTAINED === */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; background: rgba(26, 29, 33, 0.95); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(125, 211, 214, 0.1); font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 16px; line-height: 1.5; box-sizing: border-box; }
.nav * { box-sizing: border-box; }
.nav-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; font-family: inherit; font-size: inherit; line-height: inherit; }
.nav-logo-text { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1; display: flex; align-items: center; }
.nav-logo-foray { color: #0D7377; }
.nav-logo-protocol { color: #F7F9FA; font-weight: 400; }
.nav-badge { font-size: 0.65rem; padding: 0.2rem 0.5rem; background: #E6A817; color: #1A1D21; border-radius: 4px; font-weight: 600; line-height: 1; display: inline-block; vertical-align: middle; font-family: inherit; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-link { color: #94A3A8; text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; font-family: inherit; line-height: 1; }
.nav-link:hover, .nav-link.active { color: #14B8B8; }
.nav-hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; width: 40px; height: 40px; background: transparent; border: none; cursor: pointer; z-index: 1001; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #F7F9FA; margin: 3px 0; transition: all 0.3s ease; border-radius: 2px; }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
.nav-mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(26, 29, 33, 0.98); backdrop-filter: blur(20px); z-index: 999; flex-direction: column; justify-content: center; align-items: center; gap: 2rem; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif; }
.nav-mobile-menu.active { opacity: 1; visibility: visible; }
.nav-mobile-menu .nav-link { font-size: 1.5rem; font-weight: 500; color: #F7F9FA; line-height: 1; }
.nav-mobile-menu .nav-link:hover { color: #14B8B8; }
@media (max-width: 768px) { .nav-links { display: none; } .nav-hamburger { display: flex; } .nav-mobile-menu { display: flex; } }
/* === END BULLETPROOF NAV CSS === */
/* Hamburger Menu */
/* Mobile Menu */
@media (max-width: 768px) {
}
/* Page Header */
.page-header {
padding: 8rem 2rem 3rem;
text-align: center;
background: linear-gradient(180deg, rgba(13, 115, 119, 0.1) 0%, transparent 100%);
}
.page-header h1 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1rem;
letter-spacing: -0.02em;
}
.page-header p {
color: var(--gray-400);
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto;
}
/* Content */
.content {
max-width: 800px;
margin: 0 auto;
padding: 3rem 2rem;
}
.content h2 {
font-size: 1.75rem;
font-weight: 600;
margin-top: 3rem;
margin-bottom: 1rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(125, 211, 214, 0.1);
color: var(--accent-cyan);
scroll-margin-top: 100px;
}
.content h2:first-child {
margin-top: 0;
padding-top: 0;
border-top: none;
}
.content h3 {
font-size: 1.25rem;
font-weight: 600;
margin-top: 2rem;
margin-bottom: 0.75rem;
color: var(--text-light);
}
.content p {
color: var(--gray-400);
margin-bottom: 1rem;
}
.content a {
color: var(--accent-cyan);
text-decoration: none;
}
.content a:hover {
text-decoration: underline;
}
.content ul {
margin-bottom: 1rem;
padding-left: 1.5rem;
color: var(--gray-400);
}
.content li {
margin-bottom: 0.5rem;
}
/* Cards */
.card {
background: rgba(27, 54, 93, 0.15);
border: 1px solid rgba(125, 211, 214, 0.1);
border-radius: 12px;
padding: 1.5rem;
margin-bottom: 1.5rem;
}
.card h3 {
margin-top: 0;
color: var(--accent-cyan);
}
/* Contact Card */
.contact-card {
background: linear-gradient(135deg, rgba(13, 115, 119, 0.1) 0%, rgba(20, 184, 184, 0.05) 100%);
border: 1px solid rgba(20, 184, 184, 0.2);
}
.contact-card a {
display: block;
margin-bottom: 0.5rem;
}
/* Code */
code {
font-family: 'IBM Plex Mono', monospace;
background: rgba(20, 184, 184, 0.1);
padding: 0.15rem 0.4rem;
border-radius: 4px;
font-size: 0.85em;
color: var(--accent-cyan);
}
/* Footer */
.footer {
text-align: center;
padding: 3rem 2rem;
border-top: 1px solid rgba(125, 211, 214, 0.1);
color: var(--gray-400);
font-size: 0.9rem;
}
.footer a {
color: var(--accent-cyan);
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<nav class="nav">
<a href="index.html" class="nav-logo">
<span class="nav-logo-text">
<span class="nav-logo-foray">FORAY</span> <span class="nav-logo-protocol">Protocol</span>
</span>
<span class="nav-badge">v4.1</span>
</a>
<div class="nav-links">
<a href="demo.html" class="nav-link">Demo</a>
<a href="docs.html" class="nav-link">Documentation</a>
<a href="about.html" class="nav-link active">About</a>
<a href="https://github.com/DUNIN7/foray-kaspathon" class="nav-link" target="_blank">GitHub</a>
</div>
<button class="nav-hamburger" onclick="toggleMobileMenu()" aria-label="Toggle menu">
<span></span>
<span></span>
<span></span>
</button>
</nav>
<!-- Mobile Menu -->
<div class="nav-mobile-menu" id="mobileMenu">
<a href="demo.html" class="nav-link" onclick="closeMobileMenu()">Demo</a>
<a href="docs.html" class="nav-link" onclick="closeMobileMenu()">Documentation</a>
<a href="about.html" class="nav-link" onclick="closeMobileMenu()">About</a>
<a href="https://github.com/DUNIN7/foray-kaspathon" class="nav-link" target="_blank" onclick="closeMobileMenu()">GitHub</a>
</div>
<header class="page-header">
<h1>About FORAY Protocol</h1>
<p>Privacy-preserving blockchain audit infrastructure for enterprise transactions</p>
</header>
<main class="content">
<h2 id="overview">What is FORAY?</h2>
<p>
FORAY Protocol creates tamper-evident audit trails for enterprise transactions while keeping
sensitive business data private. The name derives from "4A" - the four
fundamental components that every transaction decomposes into:
</p>
<ul>
<li><strong>Arrangements</strong> - Contracts, terms, and counterparty agreements</li>
<li><strong>Accruals</strong> - Formulas applied against asset flows (interest, depreciation, allocations)</li>
<li><strong>Anticipations</strong> - Expected future cash flows and deliverables</li>
<li><strong>Actions</strong> - Actual asset transfers and settlements</li>
</ul>
<p>
By structuring transactions this way, FORAY enables cryptographic verification without
exposing proprietary business logic or competitive intelligence.
</p>
<h2 id="kaspathon">Kaspathon 2026</h2>
<p>
FORAY Protocol is being developed as a submission for <strong>Kaspathon 2026</strong> in the
Real-Time Data Track. The hackathon showcases innovative uses of Kaspa blockchain technology.
</p>
<p>
Kaspa's unique blockDAG architecture provides sub-second finality and extremely low transaction
costs - ideal for enterprise audit anchoring where thousands of transactions may need to be
recorded daily.
</p>
<h2 id="use-cases">Target Use Cases</h2>
<div class="card">
<h3>Defense Contractors</h3>
<p>DCAA compliance, cost accounting, labor hour tracking, and contract management with cryptographic proof of integrity.</p>
</div>
<div class="card">
<h3>Financial Services</h3>
<p>SOX compliance, Basel III requirements, derivative valuations, and complex multi-party transactions.</p>
</div>
<div class="card">
<h3>Manufacturing & Supply Chain</h3>
<p>Provenance tracking, work order management, inventory movements, and supplier payments.</p>
</div>
<div class="card">
<h3>Energy Sector</h3>
<p>Power purchase agreements, renewable energy credits, meter readings, and settlement calculations.</p>
</div>
<h2 id="license">License</h2>
<p>
FORAY Protocol is released under the <strong>Business Source License 1.1 (BSL 1.1)</strong>.
</p>
<p>
This means the source code is publicly available for review and non-production use. After
a specified change date (or for certain permitted uses), the license converts to a permissive
open source license.
</p>
<p>
For commercial licensing inquiries, please contact us directly.
</p>
<h2 id="ai-disclosure">AI Disclosure</h2>
<p>
This project uses AI-assisted development. Documentation, code examples, and demonstration
materials have been created with assistance from Claude (Anthropic). All outputs have been
reviewed and validated by the project author.
</p>
<p>
The FORAY Protocol concept, architecture decisions, and business strategy are the original
work of Marvin Percival.
</p>
<h2 id="contact">Contact</h2>
<div class="card contact-card">
<h3>Get in Touch</h3>
<p><strong>Author:</strong> Marvin Percival</p>
<a href="mailto:marvinp@dunin7.com">marvinp@dunin7.com</a>
<a href="https://github.com/DUNIN7/foray-kaspathon" target="_blank">github.com/DUNIN7/foray-kaspathon</a>
</div>
</main>
<footer class="footer">
<p>© 2026 Marvin Percival. All rights reserved.</p>
<p style="margin-top: 0.5rem;">
<a href="#license">License</a> ·
<a href="https://github.com/DUNIN7/foray-kaspathon" target="_blank">GitHub</a>
</p>
</footer>
<script>
// Mobile Menu Toggle
function toggleMobileMenu() {
const hamburger = document.querySelector('.nav-hamburger');
const mobileMenu = document.getElementById('mobileMenu');
hamburger.classList.toggle('active');
mobileMenu.classList.toggle('active');
document.body.style.overflow = mobileMenu.classList.contains('active') ? 'hidden' : '';
}
function closeMobileMenu() {
const hamburger = document.querySelector('.nav-hamburger');
const mobileMenu = document.getElementById('mobileMenu');
hamburger.classList.remove('active');
mobileMenu.classList.remove('active');
document.body.style.overflow = '';
}
document.addEventListener('keydown', function(e) {
if (e.key === 'Escape') closeMobileMenu();
});
</script>
</body>
</html>