Skip to content

Commit 94a5d7d

Browse files
authored
Update index.html
1 parent 3e28f3d commit 94a5d7d

File tree

1 file changed

+187
-2
lines changed

1 file changed

+187
-2
lines changed

index.html

Lines changed: 187 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
1313
<link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&family=JetBrains+Mono:wght@300;400;500;700&display=swap" rel="stylesheet">
1414
<style>
15+
/* existing styles (unchanged, but we will add new styles at the end) */
1516
:root {
1617
--bg:#08090b;
1718
--bg-deep:#030405;
@@ -341,6 +342,138 @@
341342
.ksc-featured-cds-number{font-family:var(--jmono);font-size:2.8rem;font-weight:700;color:var(--red);line-height:1;}
342343
.ksc-featured-cds-note{font-family:var(--mono);font-size:8px;color:var(--muted);letter-spacing:1px;text-transform:uppercase;max-width:100px;text-align:center;line-height:1.4;}
343344

345+
/* STACK CARD REDESIGN */
346+
.stack-card {
347+
background: var(--surface);
348+
border: 1px solid var(--border);
349+
border-radius: 24px;
350+
padding: 32px 36px;
351+
margin-bottom: 48px;
352+
transition: border-color 0.2s ease, box-shadow 0.2s ease;
353+
}
354+
.stack-card:hover {
355+
border-color: var(--amber);
356+
box-shadow: 0 8px 24px rgba(0,0,0,0.3);
357+
}
358+
.stack-intro {
359+
font-family: var(--serif);
360+
font-size: 1.05rem;
361+
color: var(--text);
362+
margin-bottom: 28px;
363+
line-height: 1.6;
364+
}
365+
.stack-table-wrapper {
366+
overflow-x: auto;
367+
margin-bottom: 20px;
368+
}
369+
.stack-table {
370+
width: 100%;
371+
border-collapse: collapse;
372+
font-family: var(--mono);
373+
font-size: 0.75rem;
374+
}
375+
.stack-table th,
376+
.stack-table td {
377+
text-align: left;
378+
padding: 12px 8px;
379+
border-bottom: 1px solid var(--border);
380+
vertical-align: top;
381+
}
382+
.stack-table th {
383+
color: var(--amber);
384+
font-weight: 600;
385+
letter-spacing: 1px;
386+
text-transform: uppercase;
387+
}
388+
.fw-name {
389+
font-weight: 600;
390+
color: var(--amber);
391+
}
392+
.fw-version {
393+
color: var(--muted);
394+
font-family: var(--jmono);
395+
}
396+
.fw-function {
397+
color: var(--text);
398+
font-size: 0.7rem;
399+
line-height: 1.4;
400+
}
401+
.fw-inline-link {
402+
color: var(--amber);
403+
text-decoration: none;
404+
margin-left: 8px;
405+
font-size: 0.7rem;
406+
border-bottom: 1px dotted var(--amber);
407+
}
408+
.fw-inline-link:hover {
409+
color: var(--amber-l);
410+
}
411+
.convergence-badge {
412+
display: inline-block;
413+
padding: 2px 8px;
414+
border-radius: 20px;
415+
font-size: 0.65rem;
416+
font-weight: 600;
417+
text-transform: uppercase;
418+
background: rgba(0,0,0,0.4);
419+
white-space: nowrap;
420+
}
421+
.convergence-badge.m-strong { background: #1e4620; color: #4ade80; }
422+
.convergence-badge.m-mod { background: #5f3a1a; color: #ffaa33; }
423+
.convergence-badge.m-nascent { background: #2a2a3a; color: #a0a0b0; }
424+
.stack-legend {
425+
font-family: var(--mono);
426+
font-size: 0.7rem;
427+
color: var(--muted);
428+
text-align: right;
429+
border-top: 1px solid var(--border);
430+
padding-top: 16px;
431+
margin-top: 8px;
432+
}
433+
.stack-links-grid {
434+
display: grid;
435+
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
436+
gap: 24px;
437+
margin-top: 16px;
438+
}
439+
.stack-link-bubble {
440+
background: var(--panel);
441+
border: 1px solid var(--border);
442+
border-radius: 32px;
443+
padding: 24px 20px;
444+
text-decoration: none;
445+
transition: all 0.2s var(--ease);
446+
display: flex;
447+
flex-direction: column;
448+
align-items: flex-start;
449+
gap: 12px;
450+
}
451+
.stack-link-bubble:hover {
452+
border-color: var(--amber);
453+
transform: translateY(-4px);
454+
background: var(--surface);
455+
box-shadow: 0 8px 20px rgba(0,0,0,0.3);
456+
}
457+
.bubble-icon {
458+
font-size: 28px;
459+
color: var(--amber);
460+
line-height: 1;
461+
}
462+
.bubble-title {
463+
font-family: var(--sans);
464+
font-size: 1.2rem;
465+
font-weight: 700;
466+
text-transform: uppercase;
467+
color: var(--text);
468+
letter-spacing: 1px;
469+
}
470+
.bubble-desc {
471+
font-family: var(--sans);
472+
font-size: 0.85rem;
473+
color: var(--muted);
474+
line-height: 1.5;
475+
}
476+
344477
footer{position:relative;z-index:1;border-top:1px solid var(--border);padding:40px;max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px;}
345478
.footer-id{font-family:var(--mono);font-size:11px;color:var(--muted);line-height:1.8;letter-spacing:1px;}
346479
.footer-id strong{color:var(--amber);}
@@ -488,8 +621,59 @@ <h1 class="hero-name">Sheldon K.<em>Salmon</em></h1>
488621
<!-- KSC FEATURED SECTION -->
489622
<section id="ksc" style="padding-top:0;"><div class="section-header"><span class="section-num">// 03</span><h2 class="section-title">Civilization Scale</h2><div class="section-line"></div></div><a href="/ksc/" class="ksc-featured" aria-label="Open the Kardashev-Salmon Civilization Scale"><div><div class="ksc-featured-label">Live Framework · Built &amp; Red-Teamed 2026</div><div class="ksc-featured-title">Kardashev-Salmon<br>Civilization Scale</div><p class="ksc-featured-desc">Eight axes. One mirror that only moves in reverse. A debt counter that has never been green — and a map showing what it would take to change that. Spans 3761 BCE to the Cosmic Yovel. Types 0 through Ω. Live data. Triple-seal timestamps. Red-teamed architecture.</p><div class="ksc-featured-tags"><span class="tag">KSC v0.5</span><span class="tag">Type 0–II Live</span><span class="tag">Eight Axes</span><span class="tag">Gevurah · Tiferet</span><span class="tag">Zero Dependencies</span><span class="tag">27 Red Team Findings Resolved</span></div><div class="ksc-featured-link">Open the Scale <span></span></div></div><div class="ksc-featured-cds" aria-hidden="true"><div class="ksc-featured-cds-label">CDS · Now</div><div class="ksc-featured-cds-number">0.84</div><div class="ksc-featured-cds-note">Has never been green</div></div></a></section>
490623

491-
<!-- 04 STACK (unchanged) -->
492-
<section id="stack" style="padding-top:0;"><div class="section-header"><span class="section-num">// 04</span><h2 class="section-title">The AION Stack</h2><div class="section-line"></div></div><p style="font-family:var(--sans);font-size:17px;font-weight:300;color:var(--muted);max-width:640px;margin-bottom:36px;line-height:1.7;">A constitutional stack for AI reliability — built through live failure events, not theoretical modeling. Every framework is falsifiable, versioned, and convergence-tracked. M-STRONG means validated. M-NASCENT means honest about what isn't yet.</p><table class="stack-table"><thead><tr><th>Framework</th><th>Version</th><th>Function</th><th>Convergence</th></tr></thead><tbody><tr><td class="fw-name">FSVE</td><td class="fw-version">v3.6</td><td class="fw-function">Certainty Scoring Engine — 6 dimensions, validity threshold enforcement<a href="/stack/frameworks/FSVE/" class="fw-inline-link">→ Tool</a></td><td><span class="convergence-badge m-mod">M-MODERATE</span></td></tr><tr><td class="fw-name">LAV</td><td class="fw-version">v1.5</td><td class="fw-function">Linguistic Anchor Validation — 45 entries, 77.5% running mean<a href="/stack/frameworks/LAV/" class="fw-inline-link">→ Tool</a></td><td><span class="convergence-badge m-strong">M-STRONG</span></td></tr><tr><td class="fw-name">TOPOS</td><td class="fw-version">v0.4</td><td class="fw-function">Persistent Shape Architecture — 4 mapping instruments, Instrument 3 live scorer<a href="/stack/frameworks/TOPOS/" class="fw-inline-link">→ Tool</a></td><td><span class="convergence-badge m-nascent">M-NASCENT</span></td></tr><tr><td class="fw-name">KSC</td><td class="fw-version">v0.5</td><td class="fw-function">Kardashev-Salmon Civilization Scale — 8 axes, Types 0–II live, Hebrew cosmological mapping<a href="/ksc/" class="fw-inline-link">→ Scale</a></td><td><span class="convergence-badge m-nascent">M-NASCENT → M-MOD</span></td></tr><tr><td class="fw-name">CSCA</td><td class="fw-version">v0.1</td><td class="fw-function">Cognitive Substrate Cryptographic Assumption — SHA-256 signals analysis, D minor · 128 BPM<a href="/stack/#csca" class="fw-inline-link">→ Hear it</a></td><td><span class="convergence-badge m-mod">M-MODERATE</span></td></tr><tr><td class="fw-name">DUAL-HELIX</td><td class="fw-version">v2.0</td><td class="fw-function">Build and Deep Thinking Wrapper — VELA · TOPOS base pair architecture</td><td><span class="convergence-badge m-nascent">M-NASCENT</span></td></tr><tr><td class="fw-name">NRP</td><td class="fw-version">v0.1</td><td class="fw-function">Search Null-Return Protocol — Pre-generation gate, never suspended</td><td><span class="convergence-badge m-nascent">M-NASCENT</span></td></tr><tr><td class="fw-name">EIGHT LAWS</td><td class="fw-version">v1.0</td><td class="fw-function">Sovereignty Stack — Laws 1–8 active · Law 9 dark by design</td><td><span class="convergence-badge m-mod">CONSTITUTIONAL</span></td></tr></tbody></table><div style="margin-top:16px;font-family:var(--mono);font-size:10px;color:var(--muted);letter-spacing:1px;margin-bottom:4px;">M-STRONG: validated · M-MODERATE: tested · M-NASCENT: specified, building · CONSTITUTIONAL: foundational</div><a href="/stack/" class="stack-path"><span class="stack-path-icon"></span><div><div class="stack-path-label">Full Stack Documentation →</div><div class="stack-path-desc">All 18 frameworks. Version history. Convergence records. FCL entries. Protocol I registrations. The complete AION Constitutional Stack in one place.</div></div></a><a href="/stack/eight-laws/" class="stack-path"><span class="stack-path-icon">⚖️</span><div><div class="stack-path-label">The Sovereignty Stack — Nine Constitutional Laws →</div><div class="stack-path-desc">Laws 1–3: Asimov. Laws 4–8: Salmon. Law 9: dark by design. A spiral constitutional architecture for civilizational scale.</div></div></a><a href="/stack/frameworks/FSVE/" class="stack-path"><span class="stack-path-icon"></span><div><div class="stack-path-label">FSVE v3.6 — Live Certainty Scoring Tool →</div><div class="stack-path-desc">Score any claim across six epistemic dimensions. Gini laundering detection. Validity threshold gate. Sensitivity analysis. CEV audit log. Shareable results.</div></div></a><a href="/ksc/" class="stack-path"><span class="stack-path-icon"></span><div><div class="stack-path-label">KSC v0.5 — Kardashev-Salmon Civilization Scale →</div><div class="stack-path-desc">Eight-axis civilization measurement from 3761 BCE to the Cosmic Yovel. Live data. Triple-seal timestamps. Types 0–II specced and red-teamed.</div></div></a></section>
624+
<!-- 04 STACK (redesigned as beautiful card with link bubbles) -->
625+
<section id="stack" style="padding-top:0;">
626+
<div class="section-header">
627+
<span class="section-num">// 04</span>
628+
<h2 class="section-title">The AION Stack</h2>
629+
<div class="section-line"></div>
630+
</div>
631+
632+
<div class="stack-card">
633+
<p class="stack-intro">A constitutional stack for AI reliability — built through live failure events, not theoretical modeling. Every framework is falsifiable, versioned, and convergence-tracked. M‑STRONG means validated. M‑NASCENT means honest about what isn't yet.</p>
634+
<div class="stack-table-wrapper">
635+
<table class="stack-table">
636+
<thead>
637+
<tr><th>Framework</th><th>Version</th><th>Function</th><th>Convergence</th></tr>
638+
</thead>
639+
<tbody>
640+
<tr><td class="fw-name">FSVE</td><td class="fw-version">v3.6</td><td class="fw-function">Certainty Scoring Engine — 6 dimensions, validity threshold enforcement<a href="/stack/frameworks/FSVE/" class="fw-inline-link">→ Tool</a></td><td><span class="convergence-badge m-mod">M-MODERATE</span></td></tr>
641+
<tr><td class="fw-name">LAV</td><td class="fw-version">v1.5</td><td class="fw-function">Linguistic Anchor Validation — 45 entries, 77.5% running mean<a href="/stack/frameworks/LAV/" class="fw-inline-link">→ Tool</a></td><td><span class="convergence-badge m-strong">M-STRONG</span></td></tr>
642+
<tr><td class="fw-name">TOPOS</td><td class="fw-version">v0.4</td><td class="fw-function">Persistent Shape Architecture — 4 mapping instruments, Instrument 3 live scorer<a href="/stack/frameworks/TOPOS/" class="fw-inline-link">→ Tool</a></td><td><span class="convergence-badge m-nascent">M-NASCENT</span></td></tr>
643+
<tr><td class="fw-name">KSC</td><td class="fw-version">v0.5</td><td class="fw-function">Kardashev-Salmon Civilization Scale — 8 axes, Types 0–II live, Hebrew cosmological mapping<a href="/ksc/" class="fw-inline-link">→ Scale</a></td><td><span class="convergence-badge m-nascent">M-NASCENT → M-MOD</span></td></tr>
644+
<tr><td class="fw-name">CSCA</td><td class="fw-version">v0.1</td><td class="fw-function">Cognitive Substrate Cryptographic Assumption — SHA-256 signals analysis, D minor · 128 BPM<a href="/stack/#csca" class="fw-inline-link">→ Hear it</a></td><td><span class="convergence-badge m-mod">M-MODERATE</span></td></tr>
645+
<tr><td class="fw-name">DUAL-HELIX</td><td class="fw-version">v2.0</td><td class="fw-function">Build and Deep Thinking Wrapper — VELA · TOPOS base pair architecture</td><td><span class="convergence-badge m-nascent">M-NASCENT</span></td></tr>
646+
<tr><td class="fw-name">NRP</td><td class="fw-version">v0.1</td><td class="fw-function">Search Null-Return Protocol — Pre-generation gate, never suspended</td><td><span class="convergence-badge m-nascent">M-NASCENT</span></td></tr>
647+
<tr><td class="fw-name">EIGHT LAWS</td><td class="fw-version">v1.0</td><td class="fw-function">Sovereignty Stack — Laws 1–8 active · Law 9 dark by design</td><td><span class="convergence-badge m-mod">CONSTITUTIONAL</span></td></tr>
648+
</tbody>
649+
</table>
650+
</div>
651+
<div class="stack-legend">M‑STRONG: validated · M‑MODERATE: tested · M‑NASCENT: specified, building · CONSTITUTIONAL: foundational</div>
652+
</div>
653+
654+
<div class="stack-links-grid">
655+
<a href="/stack/" class="stack-link-bubble">
656+
<span class="bubble-icon"></span>
657+
<div class="bubble-title">Full Stack Documentation</div>
658+
<div class="bubble-desc">All 18 frameworks. Version history. Convergence records. FCL entries. Protocol I registrations.</div>
659+
</a>
660+
<a href="/stack/eight-laws/" class="stack-link-bubble">
661+
<span class="bubble-icon">⚖️</span>
662+
<div class="bubble-title">The Sovereignty Stack</div>
663+
<div class="bubble-desc">Nine Constitutional Laws — Laws 1–3: Asimov. Laws 4–8: Salmon. Law 9: dark by design.</div>
664+
</a>
665+
<a href="/stack/frameworks/FSVE/" class="stack-link-bubble">
666+
<span class="bubble-icon"></span>
667+
<div class="bubble-title">FSVE v3.6 — Live Certainty Scoring Tool</div>
668+
<div class="bubble-desc">Score any claim across six epistemic dimensions. Validity threshold gate. Shareable results.</div>
669+
</a>
670+
<a href="/ksc/" class="stack-link-bubble">
671+
<span class="bubble-icon"></span>
672+
<div class="bubble-title">KSC v0.5 — Civilization Scale</div>
673+
<div class="bubble-desc">Eight‑axis civilization measurement from 3761 BCE to the Cosmic Yovel. Live data.</div>
674+
</a>
675+
</div>
676+
</section>
493677

494678
<!-- 05 CERTIFICATION -->
495679
<section id="certify" style="padding-top:0;"><div class="section-header"><span class="section-num">// 05</span><h2 class="section-title">Certification</h2><div class="section-line"></div></div><div class="certify-strip"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400" width="80" height="80" style="flex-shrink:0;"><defs><linearGradient id="cs1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="#F5E070"/><stop offset="50%" stop-color="#D4AF37"/><stop offset="100%" stop-color="#8B7520"/></linearGradient><linearGradient id="cw1" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="#8B7520" stop-opacity="0.3"/><stop offset="50%" stop-color="#F5E070"/><stop offset="100%" stop-color="#8B7520" stop-opacity="0.3"/></linearGradient><path id="ct1" d="M 78,200 A 122,122 0 0,1 322,200"/><path id="cb1" d="M 92,200 A 108,108 0 0,0 308,200"/></defs><polygon points="368,270 270,368 130,368 32,270 32,130 130,32 270,32 368,130" fill="#0f0d09" stroke="url(#cs1)" stroke-width="4"/><circle cx="200" cy="200" r="150" fill="none" stroke="url(#cs1)" stroke-width="3"/><circle cx="200" cy="200" r="134" fill="#0c0a08"/><circle cx="200" cy="200" r="134" fill="none" stroke="url(#cs1)" stroke-width="2"/><path d="M 95,200 C 107,168 119,168 131,200 S 155,232 167,200 C 179,168 191,168 203,200 S 227,232 239,200 C 251,168 263,168 275,200 S 299,232 305,200" fill="none" stroke="url(#cw1)" stroke-width="3" stroke-linecap="round"/><text font-family="'Times New Roman',serif" font-size="14" font-weight="bold" letter-spacing="4" fill="#D4AF37" text-anchor="middle"><textPath href="#ct1" startOffset="50%">AION · VERIFIED</textPath></text><text font-family="'Times New Roman',serif" font-size="10" letter-spacing="3" fill="#D4AF37" text-anchor="middle"><textPath href="#cb1" startOffset="50%">SHELDON K. SALMON</textPath></text></svg><div class="certify-text"><h3>Sovereign Trace Protocol</h3><p>Certification is not installation. It is formal verification that a deployment meets the FROZEN-2.0 standard — immutable failure capture, transparent remediation, honest epistemic record. Four tiers. No negotiation on scope.<br><br>Simulator tools carry the <strong style="color:#D4AF37;">AION Verified Simulator</strong> badge — citation-backed, red-teamed, peer-reviewed.<br><br><a href="/certify/">Verify a badge</a> &nbsp;·&nbsp;<a href="/certify/seal/">Generate a Seal →</a> &nbsp;·&nbsp;<a href="/services/ai-audit/">Certification tiers</a> &nbsp;·&nbsp;<a href="https://github.com/AionSystem/SOVEREIGN-TRACE-PROTOCOL/blob/main/CERTIFICATION.md" target="_blank" rel="noopener">Full methodology ↗</a></p></div></div></section>
@@ -519,6 +703,7 @@ <h1 class="hero-name">Sheldon K.<em>Salmon</em></h1>
519703
</footer>
520704

521705
<script>
706+
// [existing JavaScript unchanged]
522707
(function(){
523708
'use strict';
524709
const cursor=document.getElementById('custom-cursor');

0 commit comments

Comments
 (0)