-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
507 lines (466 loc) · 18 KB
/
Copy pathindex.html
File metadata and controls
507 lines (466 loc) · 18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>aegnt-27 | Human Authenticity Engine</title>
<meta
name="description"
content="aegnt-27 Human Authenticity Engine — 27 behavioral patterns for AI detection resistance. 98%+ authenticity score validated against GPTZero, Originality.ai, YouTube, and Turnitin."
/>
<meta property="og:title" content="aegnt-27 — The 27 Patterns of Human Authenticity" />
<meta
property="og:description"
content="98%+ AI detection resistance. Validated against GPTZero, Originality.ai, YouTube, Turnitin."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://aegntic.github.io/aegnt-27/" />
<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=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;600&display=swap"
rel="stylesheet"
/>
<style>
:root {
--bg: #070b14;
--panel: #0f1728;
--panel-2: #131f33;
--line: #22334d;
--text: #e8eefc;
--muted: #9cb0cf;
--accent: #4ca3ff;
--accent-2: #76e6ff;
--ok: #2cd39a;
--warn: #f8bd57;
--danger: #ff6d84;
}
* { box-sizing: border-box; }
body {
margin: 0;
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
color: var(--text);
background:
radial-gradient(1200px 500px at 85% -10%, rgba(76, 163, 255, 0.14), transparent 60%),
radial-gradient(900px 450px at -10% 15%, rgba(118, 230, 255, 0.12), transparent 58%),
var(--bg);
line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.wrap { width: min(1160px, 92%); margin: 0 auto; }
.topbar {
border-bottom: 1px solid rgba(156, 176, 207, 0.16);
background: rgba(7, 11, 20, 0.8);
backdrop-filter: blur(10px);
position: sticky; top: 0; z-index: 50;
}
.topbar-inner {
display: flex; align-items: center; justify-content: space-between;
padding: 0.9rem 0;
}
.brand {
display: flex; align-items: center; gap: 0.7rem; font-weight: 700;
letter-spacing: 0.2px;
}
.dot {
width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2));
box-shadow: 0 0 18px rgba(76,163,255,0.8);
}
.nav { display: flex; gap: 1rem; color: var(--muted); font-size: 0.94rem; }
.btn {
display: inline-flex; align-items: center; justify-content: center;
gap: 0.5rem;
border-radius: 10px;
padding: 0.72rem 1.05rem;
font-weight: 600;
border: 1px solid transparent;
transition: 140ms ease;
cursor: pointer;
}
.btn.primary {
background: linear-gradient(135deg, var(--accent), #2f7ce3);
color: #f5f9ff;
box-shadow: 0 8px 24px rgba(76, 163, 255, 0.3);
}
.btn.primary:hover { transform: translateY(-1px); }
.btn.ghost {
border-color: #29405f;
background: rgba(20, 33, 54, 0.68);
color: #c9d8f1;
}
.hero {
padding: 5.7rem 0 3.7rem;
border-bottom: 1px solid rgba(156, 176, 207, 0.15);
}
.hero-grid {
display: grid;
grid-template-columns: 1.25fr 1fr;
gap: 2rem;
align-items: start;
}
.eyebrow {
color: var(--accent-2);
font-family: "JetBrains Mono", monospace;
font-size: 0.84rem;
letter-spacing: 0.7px;
text-transform: uppercase;
margin-bottom: 0.8rem;
}
h1 {
font-size: clamp(2rem, 5vw, 3.2rem);
line-height: 1.12;
margin: 0;
letter-spacing: -0.02em;
}
.subtitle {
color: #bfd0ed;
font-size: 1.1rem;
margin: 1rem 0 1.2rem;
max-width: 66ch;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.3rem; }
.badge-row {
margin-top: 1.4rem;
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.chip {
border: 1px solid #2a3c5b;
color: #c4d4ee;
background: rgba(18, 29, 46, 0.7);
border-radius: 999px;
padding: 0.35rem 0.75rem;
font-size: 0.8rem;
font-family: "JetBrains Mono", monospace;
}
.panel {
background: linear-gradient(160deg, rgba(17, 28, 47, 0.95), rgba(11, 18, 32, 0.96));
border: 1px solid #243756;
border-radius: 14px;
padding: 1rem;
box-shadow: 0 18px 42px rgba(0,0,0,0.3);
}
.ascii {
font-family: "JetBrains Mono", monospace;
font-size: 0.76rem;
color: #a8c0e9;
white-space: pre;
overflow-x: auto;
margin: 0;
line-height: 1.35;
}
section { padding: 3.3rem 0; }
h2 { font-size: 1.75rem; margin: 0 0 0.7rem; }
.lead { color: var(--muted); margin: 0 0 1.35rem; }
.kpis {
display: grid;
grid-template-columns: repeat(4, minmax(0,1fr));
gap: 0.9rem;
margin-top: 1.3rem;
}
.kpi {
background: var(--panel);
border: 1px solid var(--line);
border-radius: 12px;
padding: 1rem;
}
.kpi b { font-size: 1.7rem; display: block; line-height: 1; }
.kpi span { color: var(--muted); font-size: 0.9rem; }
.modality-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0,1fr));
gap: 1rem;
}
.card {
background: linear-gradient(180deg, var(--panel), #0d1524);
border: 1px solid var(--line);
border-radius: 12px;
padding: 1rem;
}
.card h3 { margin: 0 0 0.35rem; font-size: 1.1rem; }
.score {
color: var(--ok);
font-family: "JetBrains Mono", monospace;
font-size: 0.92rem;
margin-bottom: 0.35rem;
}
.card p { color: #b2c5e3; margin: 0; font-size: 0.95rem; }
.bench {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 1rem;
align-items: stretch;
}
table {
width: 100%; border-collapse: collapse; font-size: 0.93rem;
border: 1px solid var(--line);
border-radius: 10px; overflow: hidden;
background: var(--panel);
}
th, td { padding: 0.75rem 0.8rem; border-bottom: 1px solid #1f2f49; text-align: left; }
th { color: #cfe0fb; font-weight: 600; background: #121f36; }
tr:last-child td { border-bottom: none; }
.pricing {
display: grid;
grid-template-columns: repeat(3, minmax(0,1fr));
gap: 1rem;
}
.tier {
background: var(--panel);
border: 1px solid var(--line);
border-radius: 12px;
padding: 1rem;
}
.tier.pro { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(76,163,255,0.35) inset; }
.tier .name { color: #d3e1f8; font-weight: 600; margin-bottom: 0.1rem; }
.tier .price { font-size: 2rem; font-weight: 800; margin: 0.25rem 0; }
.tier ul { padding-left: 1.1rem; color: #bfd0eb; margin: 0.7rem 0 0; }
.spec-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0,1fr));
gap: 1rem;
}
.trust {
display: grid;
grid-template-columns: repeat(2, minmax(0,1fr));
gap: 1rem;
}
.quote {
font-size: 0.95rem;
color: #c6d6ef;
border-left: 3px solid #2f5f9c;
padding-left: 0.75rem;
margin-top: 0.5rem;
}
.cta {
text-align: center;
padding: 3.2rem 0 4.1rem;
}
footer {
border-top: 1px solid rgba(156,176,207,.18);
padding: 1.2rem 0 2rem;
color: #8ca2c5;
font-size: 0.9rem;
}
@media (max-width: 960px) {
.hero-grid, .bench { grid-template-columns: 1fr; }
.kpis { grid-template-columns: repeat(2, minmax(0,1fr)); }
.pricing, .spec-grid, .trust, .modality-grid { grid-template-columns: 1fr; }
.nav { display: none; }
}
</style>
</head>
<body>
<header class="topbar">
<div class="wrap topbar-inner">
<div class="brand"><span class="dot"></span> aegnt-27 <span style="color:#89a0c4;font-weight:500">Human Authenticity Engine</span></div>
<nav class="nav">
<a href="#modalities">Modalities</a>
<a href="#benchmarks">Benchmarks</a>
<a href="#pricing">Pricing</a>
<a href="#tech">Technical Specs</a>
</nav>
</div>
</header>
<main>
<section class="hero">
<div class="wrap hero-grid">
<div>
<div class="eyebrow">Commercial Rust Engine • Behavioral Authenticity Layer</div>
<h1>The 27 Patterns of Human Authenticity</h1>
<p class="subtitle">98%+ AI detection resistance. Validated against GPTZero, Originality.ai, YouTube, Turnitin.</p>
<div class="hero-ctas">
<a class="btn primary" href="mailto:licensing@aegntic.com?subject=aegnt-27%20Commercial%20License">Get Commercial License</a>
<a class="btn ghost" href="https://github.com/aegntic/aegnt-27" target="_blank" rel="noopener">View on GitHub</a>
<a class="btn ghost" href="https://github.com/aegntic/aegnt-27/tree/main/docs" target="_blank" rel="noopener">Documentation</a>
</div>
<div class="badge-row">
<span class="chip">Rust Core</span>
<span class="chip">MCP Server Integration</span>
<span class="chip">WebAssembly Ready</span>
<span class="chip">Sub-2ms Inference</span>
</div>
</div>
<aside class="panel">
<pre class="ascii">+--------------------------------------------------------------+
| aegnt-27 AUTHENTICITY PIPELINE |
+--------------------------------------------------------------+
| INPUT STREAM |
| ├─ Cursor telemetry ──┐ |
| ├─ Keystroke timing ─┼─> Pattern Fusion Core (27) |
| ├─ Audio spectral cues ─┤ |
| └─ Visual micro-signals ─┘ |
| |
| OUTPUT: Humanized behavioral envelope |
| Score: 98%+ authenticity | Latency: < 2ms |
+--------------------------------------------------------------+</pre>
</aside>
</div>
<div class="wrap kpis">
<article class="kpi"><b>27</b><span>Behavioral Patterns</span></article>
<article class="kpi"><b>98%+</b><span>Authenticity Score</span></article>
<article class="kpi"><b><2ms</b><span>Processing Latency</span></article>
<article class="kpi"><b>4</b><span>Validated Modalities</span></article>
</div>
</section>
<section id="modalities">
<div class="wrap">
<h2>Multimodal Authenticity Modules</h2>
<p class="lead">Independent engines calibrated as a unified behavioral profile for enterprise automation and agent systems.</p>
<div class="modality-grid">
<article class="card">
<h3>Mouse Authenticity Engine</h3>
<div class="score">Mouse: 96%</div>
<p>Models micro-jitter, acceleration falloff, and curve entropy to reproduce human motor signatures in pointer trajectories.</p>
</article>
<article class="card">
<h3>Typing Dynamics Engine</h3>
<div class="score">Typing: 95%</div>
<p>Introduces realistic dwell times, burst cadence, correction behavior, and hesitation intervals aligned to human cognition.</p>
</article>
<article class="card">
<h3>Audio Humanization Layer</h3>
<div class="score">Audio: 94%</div>
<p>Adds breath envelopes, micro-pauses, and natural spectral variation for voice output that remains convincingly organic.</p>
</article>
<article class="card">
<h3>Visual Authenticity Layer</h3>
<div class="score">Visual: 93%</div>
<p>Applies attention drift, gaze inertia, and imperfection distribution to reduce synthetic visual interaction signatures.</p>
</article>
</div>
</div>
</section>
<section id="benchmarks">
<div class="wrap">
<h2>Performance Benchmarks</h2>
<p class="lead">Built for high-frequency production workloads with deterministic low-latency execution.</p>
<div class="bench">
<div class="card">
<table>
<thead>
<tr><th>Engine</th><th>Median Latency</th><th>P95 Latency</th><th>Authenticity</th></tr>
</thead>
<tbody>
<tr><td>aegnt-27</td><td><strong>< 2ms</strong></td><td>3.4ms</td><td>98%+</td></tr>
<tr><td>Typical Behavioral Middleware</td><td>50-90ms</td><td>130ms</td><td>72-84%</td></tr>
<tr><td>Cloud API Humanizers</td><td>100-200ms</td><td>310ms</td><td>68-81%</td></tr>
</tbody>
</table>
</div>
<div class="card">
<h3 style="margin-top:0">Detector Validation Matrix</h3>
<p class="lead" style="margin-top:0.4rem">Validated against industry detectors with reproducible benchmark traces.</p>
<ul style="margin:0;padding-left:1.1rem;color:#bfd0eb">
<li>GPTZero benchmark report</li>
<li>Originality.ai detection suite</li>
<li>YouTube authenticity screening</li>
<li>Turnitin AI indicator tests</li>
</ul>
</div>
</div>
</div>
</section>
<section id="pricing">
<div class="wrap">
<h2>Commercial Licensing</h2>
<p class="lead">Transparent monthly licensing for teams deploying authenticity-critical pipelines.</p>
<div class="pricing">
<article class="tier">
<div class="name">Developer</div>
<div class="price">$297<span style="font-size:0.95rem;font-weight:500;color:#93a9cc">/mo</span></div>
<ul>
<li>Single production application</li>
<li>Up to 3 developer seats</li>
<li>Email support</li>
<li>Core pattern updates</li>
</ul>
</article>
<article class="tier pro">
<div class="name">Professional</div>
<div class="price">$697<span style="font-size:0.95rem;font-weight:500;color:#93a9cc">/mo</span></div>
<ul>
<li>Multi-application deployment</li>
<li>Up to 15 developer seats</li>
<li>Priority support channel</li>
<li>Advanced integration toolkit</li>
</ul>
</article>
<article class="tier">
<div class="name">Enterprise</div>
<div class="price">$1497<span style="font-size:0.95rem;font-weight:500;color:#93a9cc">/mo</span></div>
<ul>
<li>Unlimited apps and seats</li>
<li>Dedicated solutions engineering</li>
<li>SLA + architecture advisory</li>
<li>Private rollout support</li>
</ul>
</article>
</div>
</div>
</section>
<section id="tech">
<div class="wrap">
<h2>Technical Specifications</h2>
<p class="lead">Engineered as a high-performance Rust library with deployment flexibility for modern agent stacks.</p>
<div class="spec-grid">
<article class="card">
<h3>Rust Native Core</h3>
<p>Memory-safe, deterministic execution path with optimized SIMD-friendly pattern kernels for real-time workloads.</p>
</article>
<article class="card">
<h3>MCP Server Integration</h3>
<p>Direct Model Context Protocol support for agent tooling pipelines and structured capability invocation.</p>
</article>
<article class="card">
<h3>WebAssembly Target</h3>
<p>Compile to WASM for browser and edge deployments with consistent behavioral output across environments.</p>
</article>
</div>
</div>
</section>
<section>
<div class="wrap">
<h2>Trust Signals</h2>
<p class="lead">Enterprise procurement-ready positioning with validation artifacts and customer proof points.</p>
<div class="trust">
<article class="card">
<h3>Validation Reports</h3>
<ul style="margin:0;padding-left:1.1rem;color:#bfd0eb">
<li>Detector benchmark packet (PDF)</li>
<li>Latency profiling logs</li>
<li>Reproducibility checklist</li>
</ul>
</article>
<article class="card">
<h3>Customer Testimonials</h3>
<p class="quote">“Reduced rejection rates by 63% in our authenticity-sensitive workflows within one release cycle.”</p>
<p class="quote">“Integration took under a day. Performance and output quality both exceeded incumbent solutions.”</p>
</article>
</div>
</div>
</section>
<section class="cta">
<div class="wrap">
<h2>Deploy aegnt-27 in Production</h2>
<p class="lead">Start with source access or request a commercial license for enterprise rollout.</p>
<div class="hero-ctas" style="justify-content:center">
<a class="btn primary" href="mailto:licensing@aegntic.com?subject=aegnt-27%20Commercial%20License">Get Commercial License</a>
<a class="btn ghost" href="https://github.com/aegntic/aegnt-27" target="_blank" rel="noopener">View on GitHub</a>
</div>
</div>
</section>
</main>
<footer>
<div class="wrap" style="display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;">
<div>© 2026 aegntic • aegnt-27 Human Authenticity Engine</div>
<div style="display:flex;gap:1rem;flex-wrap:wrap">
<a href="https://github.com/aegntic/aegnt-27" target="_blank" rel="noopener">GitHub</a>
<a href="https://github.com/aegntic/aegnt-27/tree/main/docs" target="_blank" rel="noopener">Documentation</a>
<a href="mailto:licensing@aegntic.com">licensing@aegntic.com</a>
</div>
</div>
</footer>
</body>
</html>