Skip to content

Commit 555ffc0

Browse files
ccross2claude
andcommitted
redesign augmentum os page layout and typography
- replace 3 dense overview paragraphs with: - large lead statement ("a different category of machine.") - single focused body paragraph - small muted stack integration note with top border - replace 2x2 feature card grid with 4 horizontal pillar rows: - each row: muted number + bold uppercase title (left) - 2-sentence description (right) in 1fr/1fr grid - clean border separators, generous 3rem vertical padding - trim all feature descriptions to 2 sentences max - rename script var features → pillars to match new layout - drop all old feature-grid/feature-card css, add pillar-row styles - pillar title at clamp(0.95rem, 1.5vw, 1.15rem) 700 weight vs previous 0.65rem muted — title now commands attention Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 3c10950 commit 555ffc0

File tree

1 file changed

+81
-62
lines changed

1 file changed

+81
-62
lines changed

src/routes/augmentum/+page.svelte

Lines changed: 81 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,26 @@
77
</svelte:head>
88

99
<script>
10-
11-
const features = [
10+
const pillars = [
1211
{
12+
num: '01',
1313
label: 'COGNITIVE LOOP',
14-
desc: 'The OS observes system health, detects patterns, and surfaces recommendations — using local LLMs on your hardware, without your private data leaving your fleet. Every 5 minutes. Hourly trend analysis. This is not telemetry. It is a system that knows what it is doing.',
14+
desc: 'The OS observes system health every 5 minutes, detects patterns hourly, and surfaces recommendations — using local LLMs on your hardware, without your private data leaving your fleet.',
1515
},
1616
{
17-
label: 'GOVERNANCE IS STRUCTURAL',
18-
desc: 'Actions in the governance pipeline produce cryptographic receipts — hash-chained, Ed25519-signed, auditable. Every agent operates within explicitly defined capability bounds. Scoped, time-limited permits are required before any privileged operation proceeds.',
17+
num: '02',
18+
label: 'GOVERNANCE BY DESIGN',
19+
desc: 'Actions in the governance pipeline produce cryptographic receipts — hash-chained, Ed25519-signed, auditable. Every agent operates within explicitly defined, time-limited capability bounds.',
1920
},
2021
{
22+
num: '03',
2123
label: 'CONSENT AS INFRASTRUCTURE',
22-
desc: 'Privacy controls are encoded as sentinel files on a RAM-only filesystem. They expire on reboot — requiring active re-authorization every time the system starts. The system asks to be trusted again rather than assuming it still is. Cryptographic erasure is available on demand.',
24+
desc: 'Privacy controls are encoded as sentinel files on a RAM-only filesystem. They expire on reboot — requiring active re-authorization every time the system starts.',
2325
},
2426
{
27+
num: '04',
2528
label: 'SOVEREIGN IDENTITY',
26-
desc: 'Your Ethereum wallet signs your identity. No external identity provider. SSH key derives to age key derives to ETH address — a complete identity chain without trusting anyone else\'s infrastructure. One declarative config governs the entire fleet.',
29+
desc: 'Your Ethereum wallet signs your identity. SSH key derives to age key derives to ETH address — a complete identity chain with no external provider.',
2730
},
2831
]
2932
</script>
@@ -41,9 +44,9 @@
4144
<section class="overview">
4245
<div class="overview-inner">
4346
<div class="overview-text">
44-
<p>Most operating systems host your programs and stay out of the way. Augmentum OS runs a persistent cognitive layer: it observes system health, detects trends, and surfaces recommendations — locally, without sending anything to a vendor. The system learns the longer it runs. This is a different category of machine.</p>
45-
<p>Governance is built into the substrate, not bolted on top. Every action in the pipeline produces a cryptographic receipt. Consent is encoded as sentinel files that expire on reboot — requiring active re-authorization every time the system starts. What the system knows about you, it can provably erase on command. A unified CLI puts diagnostics, privacy controls, authentication, AI health, and governance behind a single entry point.</p>
46-
<p>Augmentum OS is also the integration layer for the Sovren Stack. Visage face authentication runs as a hardware-verified identity primitive at the OS level. MrHaven vault access is a first-class credential. The three products are each useful alone — together they form a complete sovereign computing platform.</p>
47+
<p class="overview-lead">A different category of machine.</p>
48+
<p class="overview-body">Most operating systems host your programs and stay out of the way. Augmentum OS runs a persistent cognitive layer — observing system health, detecting trends, surfacing recommendations — locally, on your hardware, without your private data leaving your fleet. Governance is built into the substrate: every action receipted, every agent bounded, consent that expires at reboot.</p>
49+
<p class="overview-stack">Integration layer for the Sovren StackVisage face authentication and MrHaven vault access are first-class primitives at the OS level.</p>
4750
</div>
4851
<div class="overview-specs">
4952
<div class="spec-row">
@@ -70,14 +73,17 @@
7073
</div>
7174
</section>
7275

73-
<section class="features">
74-
<div class="features-inner">
76+
<section class="pillars">
77+
<div class="pillars-inner">
7578
<span class="section-label">ARCHITECTURE</span>
76-
<div class="feature-grid">
77-
{#each features as f}
78-
<div class="feature-card">
79-
<span class="feature-label">{f.label}</span>
80-
<p class="feature-desc">{f.desc}</p>
79+
<div class="pillar-rows">
80+
{#each pillars as p}
81+
<div class="pillar-row">
82+
<div class="pillar-left">
83+
<span class="pillar-num">{p.num}</span>
84+
<h3 class="pillar-title">{p.label}</h3>
85+
</div>
86+
<p class="pillar-desc">{p.desc}</p>
8187
</div>
8288
{/each}
8389
</div>
@@ -96,6 +102,7 @@
96102
</main>
97103

98104
<style>
105+
/* ── Hero ── */
99106
.hero {
100107
min-height: calc(100vh - 60px);
101108
display: flex;
@@ -143,7 +150,7 @@
143150
letter-spacing: 0.02em;
144151
}
145152
146-
/* Overview */
153+
/* ── Overview ── */
147154
.overview {
148155
background: #ffffff;
149156
color: #000;
@@ -163,16 +170,33 @@
163170
.overview-text {
164171
display: flex;
165172
flex-direction: column;
166-
gap: 1.5rem;
173+
gap: 1.75rem;
174+
}
175+
176+
.overview-lead {
177+
font-size: clamp(1.3rem, 2.5vw, 1.7rem);
178+
font-weight: 700;
179+
letter-spacing: 0.04em;
180+
line-height: 1.2;
181+
color: #000;
167182
}
168183
169-
.overview-text p {
184+
.overview-body {
170185
font-size: 0.9rem;
171-
line-height: 1.8;
186+
line-height: 1.85;
172187
color: #333;
173188
letter-spacing: 0.02em;
174189
}
175190
191+
.overview-stack {
192+
font-size: 0.75rem;
193+
line-height: 1.7;
194+
color: #999;
195+
letter-spacing: 0.04em;
196+
padding-top: 0.25rem;
197+
border-top: 1px solid #e5e5e5;
198+
}
199+
176200
.overview-specs {
177201
display: flex;
178202
flex-direction: column;
@@ -205,13 +229,12 @@
205229
color: #888;
206230
}
207231
208-
/* Features */
209-
.features {
232+
/* ── Architecture pillars ── */
233+
.pillars {
210234
padding: 6rem 2.5rem;
211-
border-top: 1px solid var(--border);
212235
}
213236
214-
.features-inner {
237+
.pillars-inner {
215238
max-width: var(--max-w);
216239
margin: 0 auto;
217240
}
@@ -225,45 +248,52 @@
225248
text-transform: uppercase;
226249
}
227250
228-
.feature-grid {
251+
.pillar-rows {
252+
display: flex;
253+
flex-direction: column;
254+
border-top: 1px solid var(--border);
255+
}
256+
257+
.pillar-row {
229258
display: grid;
230259
grid-template-columns: 1fr 1fr;
231-
border: 1px solid var(--border);
260+
gap: 4rem;
261+
padding: 3rem 0;
262+
border-bottom: 1px solid var(--border);
263+
align-items: start;
232264
}
233265
234-
.feature-card {
235-
padding: 2.5rem;
236-
border-right: 1px solid var(--border);
237-
border-bottom: 1px solid var(--border);
266+
.pillar-left {
238267
display: flex;
239268
flex-direction: column;
240-
gap: 1rem;
241-
}
242-
243-
.feature-card:nth-child(2n) {
244-
border-right: none;
269+
gap: 0.75rem;
245270
}
246271
247-
.feature-card:nth-child(3),
248-
.feature-card:nth-child(4) {
249-
border-bottom: none;
272+
.pillar-num {
273+
font-size: 0.62rem;
274+
letter-spacing: 0.2em;
275+
color: var(--text-muted);
250276
}
251277
252-
.feature-label {
253-
font-size: 0.65rem;
254-
letter-spacing: 0.18em;
255-
color: var(--text-muted);
278+
.pillar-title {
279+
font-size: clamp(0.95rem, 1.5vw, 1.15rem);
280+
font-weight: 700;
281+
letter-spacing: 0.1em;
282+
color: var(--text-primary);
283+
line-height: 1.3;
256284
text-transform: uppercase;
285+
margin: 0;
257286
}
258287
259-
.feature-desc {
260-
font-size: 0.85rem;
288+
.pillar-desc {
289+
font-size: 0.875rem;
261290
color: var(--text-secondary);
262-
line-height: 1.75;
291+
line-height: 1.8;
263292
letter-spacing: 0.02em;
293+
padding-top: 0.25rem;
264294
}
265295
266-
/* CTA */
296+
/* ── CTA ── */
267297
.cta {
268298
background: #fff;
269299
color: #000;
@@ -312,7 +342,7 @@
312342
opacity: 0.75;
313343
}
314344
315-
/* Responsive */
345+
/* ── Responsive ── */
316346
@media (max-width: 768px) {
317347
.hero {
318348
padding: 3rem 1.5rem 4rem;
@@ -327,21 +357,10 @@
327357
gap: 3rem;
328358
}
329359
330-
.feature-grid {
360+
.pillar-row {
331361
grid-template-columns: 1fr;
332-
}
333-
334-
.feature-card {
335-
border-right: none;
336-
}
337-
338-
.feature-card:nth-child(3),
339-
.feature-card:nth-child(4) {
340-
border-bottom: 1px solid var(--border);
341-
}
342-
343-
.feature-card:last-child {
344-
border-bottom: none;
362+
gap: 1.5rem;
363+
padding: 2rem 0;
345364
}
346365
}
347366
</style>

0 commit comments

Comments
 (0)