Skip to content

Commit 7f5da6c

Browse files
authored
Update index.html
1 parent a25bbee commit 7f5da6c

File tree

1 file changed

+176
-9
lines changed

1 file changed

+176
-9
lines changed

index.html

Lines changed: 176 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@
3333
.nav-links a{font-family:var(--mono);font-size:11px;letter-spacing:2px;color:var(--text);text-decoration:none;text-transform:uppercase;transition:color 0.2s,border-color 0.2s;border-bottom:1px solid transparent;padding-bottom:2px;}
3434
.nav-links a:hover{color:var(--amber);border-bottom-color:var(--amber);}
3535
.nav-links a.active{color:var(--amber);border-bottom-color:var(--amber);}
36+
/* KSC nav item — gold accent */
37+
.nav-links a.ksc-nav-link{color:var(--gold);border-bottom-color:rgba(212,175,55,0.3);}
38+
.nav-links a.ksc-nav-link:hover{color:var(--amber-l);border-bottom-color:var(--amber-l);}
3639
#hero-canvas{position:fixed;top:0;left:0;width:100%;height:100%;z-index:0;opacity:0.35;pointer-events:none;}
3740
.hero{position:relative;z-index:1;min-height:100vh;display:flex;flex-direction:column;justify-content:center;padding:56px 40px 80px;max-width:1200px;margin:0 auto;}
3841
.hero-eyebrow{font-family:var(--mono);font-size:11px;letter-spacing:4px;color:var(--amber);text-transform:uppercase;margin-bottom:20px;opacity:0;transform:translateY(12px);animation:fadeUp 0.7s var(--ease) 0.2s forwards;}
@@ -110,6 +113,131 @@
110113
.coming-pill{display:inline-block;font-family:var(--mono);font-size:9px;letter-spacing:2px;color:var(--muted);border:1px solid var(--dim);padding:2px 8px;text-transform:uppercase;margin-top:12px;}
111114
.work-card.live-field{border-left:2px solid var(--cyan);}
112115
.work-card.live-edu{border-left:2px solid var(--edu);}
116+
117+
/* ── KSC FEATURED CARD ── */
118+
.ksc-featured {
119+
background: linear-gradient(135deg, var(--surface) 0%, rgba(212,175,55,0.04) 100%);
120+
border: 1px solid rgba(212,175,55,0.35);
121+
border-left: 4px solid var(--gold);
122+
padding: 36px 40px;
123+
margin-bottom: 28px;
124+
display: grid;
125+
grid-template-columns: 1fr auto;
126+
gap: 32px;
127+
align-items: center;
128+
text-decoration: none;
129+
position: relative;
130+
overflow: hidden;
131+
transition: border-color 0.2s, background 0.2s, transform 0.2s;
132+
}
133+
.ksc-featured::before {
134+
content: '';
135+
position: absolute;
136+
top: 0; left: 0; right: 0;
137+
height: 2px;
138+
background: linear-gradient(90deg, var(--gold), transparent);
139+
}
140+
.ksc-featured:hover {
141+
border-color: var(--gold);
142+
background: linear-gradient(135deg, var(--panel) 0%, rgba(212,175,55,0.08) 100%);
143+
transform: translateY(-2px);
144+
}
145+
.ksc-featured-label {
146+
font-family: var(--mono);
147+
font-size: 9px;
148+
letter-spacing: 3px;
149+
text-transform: uppercase;
150+
color: var(--gold);
151+
margin-bottom: 10px;
152+
display: flex;
153+
align-items: center;
154+
gap: 10px;
155+
}
156+
.ksc-featured-label::before {
157+
content: '';
158+
display: inline-block;
159+
width: 16px;
160+
height: 1px;
161+
background: var(--gold);
162+
}
163+
.ksc-featured-title {
164+
font-family: var(--sans);
165+
font-size: clamp(22px, 3vw, 32px);
166+
font-weight: 900;
167+
letter-spacing: 2px;
168+
text-transform: uppercase;
169+
color: var(--gold);
170+
margin-bottom: 10px;
171+
line-height: 1.1;
172+
}
173+
.ksc-featured-desc {
174+
font-family: var(--sans);
175+
font-size: 16px;
176+
font-weight: 300;
177+
color: var(--muted);
178+
line-height: 1.65;
179+
max-width: 600px;
180+
margin-bottom: 20px;
181+
}
182+
.ksc-featured-tags {
183+
display: flex;
184+
gap: 6px;
185+
flex-wrap: wrap;
186+
margin-bottom: 20px;
187+
}
188+
.ksc-featured-tags .tag { color: rgba(212,175,55,0.7); border-color: rgba(212,175,55,0.2); }
189+
.ksc-featured-link {
190+
font-family: var(--mono);
191+
font-size: 11px;
192+
letter-spacing: 2px;
193+
color: var(--gold);
194+
text-transform: uppercase;
195+
display: flex;
196+
align-items: center;
197+
gap: 8px;
198+
}
199+
.ksc-featured-cds {
200+
display: flex;
201+
flex-direction: column;
202+
align-items: center;
203+
gap: 4px;
204+
flex-shrink: 0;
205+
text-align: center;
206+
padding: 20px 24px;
207+
background: rgba(139,38,53,0.1);
208+
border: 1px solid rgba(139,38,53,0.25);
209+
border-radius: 4px;
210+
}
211+
.ksc-featured-cds-label {
212+
font-family: var(--mono);
213+
font-size: 8px;
214+
letter-spacing: 2px;
215+
text-transform: uppercase;
216+
color: var(--muted);
217+
}
218+
.ksc-featured-cds-number {
219+
font-family: var(--jmono);
220+
font-size: 2.8rem;
221+
font-weight: 700;
222+
color: var(--red);
223+
line-height: 1;
224+
}
225+
.ksc-featured-cds-note {
226+
font-family: var(--mono);
227+
font-size: 8px;
228+
color: var(--muted);
229+
letter-spacing: 1px;
230+
text-transform: uppercase;
231+
max-width: 100px;
232+
text-align: center;
233+
line-height: 1.4;
234+
}
235+
@media (max-width: 680px) {
236+
.ksc-featured { grid-template-columns: 1fr; }
237+
.ksc-featured-cds { display: none; }
238+
}
239+
/* ── END KSC FEATURED ── */
240+
113241
.stack-table{width:100%;border-collapse:collapse;font-family:var(--mono);font-size:12px;}
114242
.stack-table th{text-align:left;font-size:10px;letter-spacing:2px;color:var(--amber);text-transform:uppercase;padding:10px 16px;border-bottom:1px solid var(--border);background:var(--surface);}
115243
.stack-table td{padding:12px 16px;border-bottom:1px solid rgba(30,39,48,0.6);vertical-align:middle;background:var(--bg);transition:background 0.15s;}
@@ -184,6 +312,8 @@
184312
.mobile-nav a:last-child{border-bottom:none;}
185313
.mobile-nav a:hover{color:var(--amber);background:rgba(240,165,0,0.04);}
186314
.mobile-nav a::before{content:'—';color:var(--amber);font-size:10px;opacity:0.6;}
315+
.mobile-nav a.ksc-mobile-link{color:var(--gold);}
316+
.mobile-nav a.ksc-mobile-link:hover{color:var(--amber-l);}
187317
@media(max-width:640px){.nav-links{display:none;}.nav-hamburger{display:flex;}}
188318
</style>
189319
</head>
@@ -198,6 +328,8 @@
198328
<li><a href="/simulators/">Simulators</a></li>
199329
<li><a href="/services/">Services</a></li>
200330
<li><a href="/stack/">Stack</a></li>
331+
<!-- KSC nav tab — gold accent to distinguish from standard nav -->
332+
<li><a href="/ksc/" class="ksc-nav-link">KSC ◈</a></li>
201333
<li><a href="/certify/">Certify</a></li>
202334
<li><a href="/about/">About</a></li>
203335
<li><a href="https://www.linkedin.com/in/sheldon-k-salmon-b0901b378" target="_blank" rel="noopener">LinkedIn ↗</a></li>
@@ -210,6 +342,8 @@
210342
<a href="/simulators/">Simulators</a>
211343
<a href="/services/">Services</a>
212344
<a href="/stack/">Stack</a>
345+
<!-- KSC mobile nav link -->
346+
<a href="/ksc/" class="ksc-mobile-link">KSC — Civilization Scale</a>
213347
<a href="/certify/">Certify</a>
214348
<a href="/about/">About</a>
215349
<a href="https://www.linkedin.com/in/sheldon-k-salmon-b0901b378" target="_blank" rel="noopener">LinkedIn ↗</a>
@@ -331,16 +465,48 @@ <h1 class="hero-name">Sheldon K.<em>Salmon</em></h1>
331465
</div>
332466
</section>
333467

334-
<!-- 03 STACK -->
335-
<section id="stack">
336-
<div class="section-header"><span class="section-num">// 03</span><h2 class="section-title">The AION Stack</h2><div class="section-line"></div></div>
468+
<!-- KSC FEATURED SECTION -->
469+
<section id="ksc" style="padding-top:0;">
470+
<div class="section-header"><span class="section-num">// 03</span><h2 class="section-title">Civilization Scale</h2><div class="section-line"></div></div>
471+
472+
<a href="/ksc/" class="ksc-featured" aria-label="Open the Kardashev-Salmon Civilization Scale">
473+
<div>
474+
<div class="ksc-featured-label">Live Framework · Built &amp; Red-Teamed 2026</div>
475+
<div class="ksc-featured-title">Kardashev-Salmon<br>Civilization Scale</div>
476+
<p class="ksc-featured-desc">
477+
Eight axes. One mirror that only moves in reverse. A debt counter that has never been green —
478+
and a map showing what it would take to change that. Spans 3761 BCE to the Cosmic Yovel.
479+
Types 0 through Ω. Live data. Triple-seal timestamps. Red-teamed architecture.
480+
</p>
481+
<div class="ksc-featured-tags">
482+
<span class="tag">KSC v0.5</span>
483+
<span class="tag">Type 0–II Live</span>
484+
<span class="tag">Eight Axes</span>
485+
<span class="tag">Gevurah · Tiferet</span>
486+
<span class="tag">Zero Dependencies</span>
487+
<span class="tag">27 Red Team Findings Resolved</span>
488+
</div>
489+
<div class="ksc-featured-link">Open the Scale <span></span></div>
490+
</div>
491+
<div class="ksc-featured-cds" aria-hidden="true">
492+
<div class="ksc-featured-cds-label">CDS · Now</div>
493+
<div class="ksc-featured-cds-number">0.84</div>
494+
<div class="ksc-featured-cds-note">Has never been green</div>
495+
</div>
496+
</a>
497+
</section>
498+
499+
<!-- 04 STACK (renumbered from 03) -->
500+
<section id="stack" style="padding-top:0;">
501+
<div class="section-header"><span class="section-num">// 04</span><h2 class="section-title">The AION Stack</h2><div class="section-line"></div></div>
337502
<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>
338503
<table class="stack-table">
339504
<thead><tr><th>Framework</th><th>Version</th><th>Function</th><th>Convergence</th></tr></thead>
340505
<tbody>
341506
<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>
342507
<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>
343508
<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>
509+
<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>
344510
<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>
345511
<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>
346512
<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>
@@ -351,12 +517,12 @@ <h1 class="hero-name">Sheldon K.<em>Salmon</em></h1>
351517
<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>
352518
<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>
353519
<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>
354-
<a href="/stack/frameworks/TOPOS/" class="stack-path"><span class="stack-path-icon"></span><div><div class="stack-path-label">TOPOS v0.4Persistent Shape Architecture Tool </div><div class="stack-path-desc">Instrument 3 live scorer. Map steering geometry across 4 dimensions. TOPOS-BIN deformation archive. 13 hard constraints.</div></div></a>
520+
<a href="/ksc/" class="stack-path"><span class="stack-path-icon"></span><div><div class="stack-path-label">KSC v0.5Kardashev-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>
355521
</section>
356522

357-
<!-- 04 CERTIFICATION -->
523+
<!-- 05 CERTIFICATION (renumbered from 04) -->
358524
<section id="certify" style="padding-top:0;">
359-
<div class="section-header"><span class="section-num">// 04</span><h2 class="section-title">Certification</h2><div class="section-line"></div></div>
525+
<div class="section-header"><span class="section-num">// 05</span><h2 class="section-title">Certification</h2><div class="section-line"></div></div>
360526
<div class="certify-strip">
361527
<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>
362528
<div class="certify-text">
@@ -371,9 +537,9 @@ <h3>Sovereign Trace Protocol</h3>
371537
</div>
372538
</section>
373539

374-
<!-- 05 CONNECT -->
540+
<!-- 06 CONNECT (renumbered from 05) -->
375541
<section id="connect">
376-
<div class="section-header"><span class="section-num">// 05</span><h2 class="section-title">Connect</h2><div class="section-line"></div></div>
542+
<div class="section-header"><span class="section-num">// 06</span><h2 class="section-title">Connect</h2><div class="section-line"></div></div>
377543
<div class="connect-grid">
378544
<div class="connect-group">
379545
<div class="connect-group-label">Contact</div>
@@ -428,12 +594,13 @@ <h3>Sovereign Trace Protocol</h3>
428594
<div class="footer-id">
429595
<strong>AionSystem</strong> &nbsp;·&nbsp; Sheldon K. Salmon<br>
430596
AI Reliability Architect &nbsp;·&nbsp; Evans Mills, New York &nbsp;·&nbsp; March 2026<br>
431-
<span style="font-size:10px;">AION v3.0 · STP v2.0 · LEDGER-011 · © 2026 Sheldon K. Salmon</span>
597+
<span style="font-size:10px;">AION v3.0 · STP v2.0 · KSC v0.5 · LEDGER-011 · © 2026 Sheldon K. Salmon</span>
432598
</div>
433599
<ul class="footer-links">
434600
<li><a href="/simulators/">Simulators</a></li>
435601
<li><a href="/services/">Services</a></li>
436602
<li><a href="/stack/">Stack</a></li>
603+
<li><a href="/ksc/">KSC</a></li>
437604
<li><a href="/stack/eight-laws/">Eight Laws</a></li>
438605
<li><a href="/certify/">Certify</a></li>
439606
<li><a href="/certify/seal/">Seal Tool</a></li>

0 commit comments

Comments
 (0)