For always-on availability, run clavitor as a systemd service.
[Unit]
+ [Unit]
Description=clavitor
After=network.target
@@ -113,7 +111,7 @@ WantedBy=multi-user.target
Expose to the internet
Put clavitor behind Caddy for TLS and remote access.
Caddyfile
- vault.yourdomain.com {
+ vault.yourdomain.com {
reverse_proxy localhost:1984
}
diff --git a/commercial/website/templates/pricing.tmpl b/clavitor.com/templates/pricing.tmpl
similarity index 86%
rename from commercial/website/templates/pricing.tmpl
rename to clavitor.com/templates/pricing.tmpl
index 624829e..6a72557 100644
--- a/commercial/website/templates/pricing.tmpl
+++ b/clavitor.com/templates/pricing.tmpl
@@ -8,7 +8,7 @@
-
+
Self-hosted
@@ -19,8 +19,8 @@
- Agent & Sealed field-level encryption
- WebAuthn PRF (Sealed biometric encryption)
- MCP server for AI agents
- Scoped MCP tokens (multi-agent)
- TOTP generation via MCP
- Browser extension (Chrome, Firefox)
- Import from Bitwarden / 1Password
- LLM-powered field classification
- Unlimited entries
- Full source code (MIT)
-
-
Recommended
+
+
Recommended
Hosted
$20 $12/year
7-day money-back, no questions, instant.
@@ -34,9 +34,9 @@
-
-
Common questions
-
FAQ
+
+
Common questions
+
FAQ
Why so cheap?
diff --git a/commercial/website/templates/privacy.tmpl b/clavitor.com/templates/privacy.tmpl
similarity index 96%
rename from commercial/website/templates/privacy.tmpl
rename to clavitor.com/templates/privacy.tmpl
index 561c012..733101b 100644
--- a/commercial/website/templates/privacy.tmpl
+++ b/clavitor.com/templates/privacy.tmpl
@@ -3,13 +3,13 @@
Legal
Privacy Policy
No analytics. No tracking. No data sales.
-
Last updated: February 2026
+
Last updated: February 2026
-
+
The short version
diff --git a/commercial/website/templates/sources.tmpl b/clavitor.com/templates/sources.tmpl
similarity index 90%
rename from commercial/website/templates/sources.tmpl
rename to clavitor.com/templates/sources.tmpl
index be27ecf..2515ef0 100644
--- a/commercial/website/templates/sources.tmpl
+++ b/clavitor.com/templates/sources.tmpl
@@ -16,7 +16,7 @@
-
"The L1/L2 split is genius. My home automation agent has the API keys it needs. It has never seen my passport number. That's exactly the boundary I wanted."
+
"The L2/L3 split is genius. My home automation agent has the API keys it needs. It has never seen my passport number. That's exactly the boundary I wanted."
@homelab_nerd · Hacker News · 2024
@@ -37,9 +37,9 @@
-
+
All quotes verbatim from public posts. URLs verified.
- View sources →
+ View sources →
{{end}}
diff --git a/clavitor.com/templates/styleguide.css b/clavitor.com/templates/styleguide.css
new file mode 100644
index 0000000..5340f8f
--- /dev/null
+++ b/clavitor.com/templates/styleguide.css
@@ -0,0 +1,340 @@
+/* ============================================
+ CLAVITOR DESIGN SYSTEM — v0.1
+ Violet #7C3AED + Figtree + JetBrains Mono
+ ============================================ */
+
+:root {
+ /* Brand */
+ --brand-black: #0A0A0A;
+ --brand-accent: #7C3AED;
+ --brand-accent-light: #8B5CF6;
+ --brand-accent-dark: #6D28D9;
+
+ /* Core Colors */
+ --bg-primary: #FFFFFF;
+ --bg-secondary: #F5F5F5;
+ --bg-tertiary: #E5E5E5;
+ --bg-inverse: #0A0A0A;
+
+ --text-primary: #171717;
+ --text-secondary: #525252;
+ --text-tertiary: #737373;
+ --text-inverse: #FFFFFF;
+
+ --border-default: #E5E5E5;
+ --border-strong: #D4D4D4;
+
+ /* Semantic */
+ --success: #16A34A;
+ --warning: #CA8A04;
+ --error: #DC2626;
+
+ /* Typography */
+ --font-family: "Figtree", system-ui, sans-serif;
+
+ /* Wordmark */
+ --wordmark-font: "Figtree", system-ui, sans-serif;
+ --wordmark-weight: 700;
+ --wordmark-spacing: 0.25em;
+
+ /* Spacing */
+ --space-1: 4px;
+ --space-2: 8px;
+ --space-3: 12px;
+ --space-4: 16px;
+ --space-5: 20px;
+ --space-6: 24px;
+ --space-8: 32px;
+ --space-10: 40px;
+ --space-12: 48px;
+ --space-16: 64px;
+
+ /* Motion */
+ --duration-fast: 100ms;
+ --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
+}
+
+*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
+
+html {
+ font-family: var(--font-family);
+ font-size: 16px;
+ line-height: 1.5;
+ color: var(--text-primary);
+ background: var(--bg-primary);
+ -webkit-font-smoothing: antialiased;
+}
+
+/* ============================================
+ LAYOUT
+ ============================================ */
+
+.container { max-width: 1200px; margin: 0 auto; padding: 48px 24px; }
+.section { margin-bottom: 64px; }
+.max-width { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
+
+/* Grid */
+.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
+.grid-2-equal { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; overflow: visible; }
+.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
+.grid-3-equal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
+.grid-4-equal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
+.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
+
+/* Flex */
+.flex-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
+.flex-col { display: flex; flex-direction: column; gap: 12px; }
+
+/* ============================================
+ TYPOGRAPHY
+ ============================================ */
+
+h1 { font-size: 72px; font-weight: 700; letter-spacing: -0.022em; line-height: 1; }
+h2 { font-size: 56px; font-weight: 600; letter-spacing: -0.022em; line-height: 1.1; }
+h3 { font-size: 40px; font-weight: 600; letter-spacing: -0.019em; }
+h4 { font-size: 28px; font-weight: 500; }
+
+.text-sm { font-size: 16px; }
+.text-xs { font-size: 14px; }
+.text-lg { font-size: 18px; }
+.text-secondary { color: var(--text-secondary); }
+.text-tertiary { color: var(--text-tertiary); }
+.text-inverse { color: var(--text-inverse); }
+.text-center { text-align: center; }
+.text-left { text-align: left; }
+.text-right { text-align: right; }
+
+.font-semibold { font-weight: 600; }
+.font-mono { font-family: "JetBrains Mono", monospace; }
+
+/* Wordmark */
+.wordmark { font-size: 18px; font-weight: var(--wordmark-weight); letter-spacing: var(--wordmark-spacing); text-transform: uppercase; }
+.wordmark-lg { font-size: 32px; font-weight: var(--wordmark-weight); letter-spacing: var(--wordmark-spacing); text-transform: uppercase; color: var(--brand-accent); }
+
+/* ============================================
+ BRAND ELEMENTS
+ ============================================ */
+
+.brand-block { display: flex; align-items: center; gap: 16px; margin: 32px 0; }
+.black-square { width: 64px; height: 64px; background: var(--brand-black); }
+.black-square-sm { width: 48px; height: 48px; background: var(--brand-black); }
+
+/* Logo Lockup — The Trinity */
+.logo-lockup { display: inline-flex; gap: 20px; align-items: stretch; }
+.logo-lockup-square { width: 80px; height: 80px; background: var(--brand-black); flex-shrink: 0; }
+.logo-lockup-text { display: flex; flex-direction: column; justify-content: space-between; height: 80px; }
+.logo-lockup-wordmark { font-family: var(--font-family); font-size: 56px; font-weight: var(--wordmark-weight); letter-spacing: var(--wordmark-spacing); text-transform: uppercase; color: var(--brand-accent); line-height: 1; }
+.logo-lockup-tagline { font-size: 16px; font-weight: 500; color: var(--text-tertiary); letter-spacing: 0.22em; text-transform: uppercase; line-height: 1; margin-bottom: -2px; }
+
+/* ============================================
+ NAVIGATION (New)
+ ============================================ */
+
+.nav { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; border-bottom: 1px solid var(--border-default); }
+.nav-links { display: flex; gap: 32px; align-items: center; }
+.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 100ms ease; }
+.nav-links a:hover { color: var(--text-primary); }
+
+/* ============================================
+ SECTION PATTERNS (vault1984 style)
+ ============================================ */
+
+.section-vault { padding: 80px 0; }
+.section-vault-dark { padding: 80px 0; background: var(--bg-inverse); color: var(--text-inverse); }
+
+/* ============================================
+ HERO (New)
+ ============================================ */
+
+.hero { padding: 80px 0; }
+.hero-content { max-width: 600px; }
+
+/* ============================================
+ COMPONENTS
+ ============================================ */
+
+/* Pills */
+.pill-row { display: flex; flex-wrap: wrap; gap: 12px; overflow: visible; }
+.pill {
+ display: inline-flex; align-items: center;
+ height: 32px; padding: 0 16px;
+ white-space: nowrap;
+ background: var(--bg-secondary);
+ border: 1px solid var(--border-default);
+ border-radius: 9999px;
+ font-size: 14px; font-weight: 500;
+}
+.pill-accent { background: var(--brand-accent); color: white; border-color: var(--brand-accent); }
+
+/* Feature Cards */
+.feature-card { background: var(--bg-secondary); border-radius: 12px; padding: 32px; }
+.feature-card-dark { background: var(--bg-inverse); color: var(--text-inverse); border-radius: 12px; padding: 32px; }
+
+/* Stats */
+.stat-number { font-size: 72px; font-weight: 700; color: var(--brand-accent); line-height: 1; margin-bottom: 8px; }
+.stat-label { font-size: 14px; color: var(--text-secondary); }
+
+/* Section Title */
+.section-title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-tertiary); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--border-default); }
+
+/* Buttons */
+.btn {
+ display: inline-flex; align-items: center; justify-content: center; gap: 8px;
+ font-family: inherit; font-size: 16px; font-weight: 500;
+ text-decoration: none; border: none; border-radius: 8px;
+ cursor: pointer; transition: all 100ms ease;
+ height: 40px; padding: 0 16px;
+}
+.btn:focus { outline: none; box-shadow: 0 0 0 2px white, 0 0 0 4px var(--brand-accent); }
+.btn-primary { background: var(--brand-black); color: white; }
+.btn-primary:hover { background: #262626; }
+.btn-secondary { background: transparent; color: var(--text-primary); border: 1px solid var(--border-strong); }
+.btn-secondary:hover { background: var(--bg-secondary); }
+.btn-accent { background: var(--brand-accent); color: white; }
+.btn-accent:hover { background: var(--brand-accent-light); }
+.btn-ghost { background: transparent; color: var(--text-primary); }
+.btn-ghost:hover { background: var(--bg-secondary); }
+.btn-sm { height: 32px; padding: 0 12px; font-size: 14px; }
+.btn-lg { height: 48px; padding: 0 20px; }
+.btn:disabled { opacity: 0.5; cursor: not-allowed; }
+
+/* Inputs */
+.input-group { display: flex; flex-direction: column; gap: 8px; }
+.input-label { font-size: 14px; font-weight: 500; color: var(--text-primary); }
+.input {
+ height: 40px; padding: 0 12px;
+ font-family: inherit; font-size: 16px;
+ color: var(--text-primary); background: var(--bg-primary);
+ border: 1px solid var(--border-strong); border-radius: 8px;
+ transition: all 100ms ease;
+}
+.input:hover { border-color: var(--text-tertiary); }
+.input:focus { outline: none; border-color: var(--brand-accent); box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1); }
+.input::placeholder { color: var(--text-tertiary); }
+.input-error { border-color: var(--error); }
+.input-hint { font-size: 12px; color: var(--text-tertiary); }
+.input-error-text { font-size: 12px; color: var(--error); }
+
+/* Cards */
+.card { background: var(--bg-secondary); border-radius: 12px; padding: 24px; }
+.card-flat { background: var(--bg-secondary); border: 1px solid var(--border-default); }
+.card-header { margin-bottom: 16px; }
+.card-title { font-size: 18px; font-weight: 600; }
+
+/* Badges */
+.badge { display: inline-flex; align-items: center; height: 24px; padding: 0 12px; font-size: 12px; font-weight: 500; border-radius: 8px; }
+.badge-default { background: var(--bg-tertiary); color: var(--text-secondary); }
+.badge-primary { background: var(--brand-black); color: white; }
+.badge-accent { background: var(--brand-accent); color: white; }
+.badge-success { background: rgba(22, 163, 74, 0.1); color: var(--success); }
+.badge-warning { background: rgba(202, 138, 4, 0.1); color: var(--warning); }
+.badge-error { background: rgba(220, 38, 38, 0.1); color: var(--error); }
+
+/* Alerts */
+.alert { display: flex; gap: 12px; padding: 16px; border-radius: 12px; }
+.alert-accent { background: rgba(124, 58, 237, 0.05); }
+.alert-success { background: rgba(22, 163, 74, 0.05); }
+.alert-error { background: rgba(220, 38, 38, 0.05); }
+
+/* Tables */
+.table { width: 100%; border-collapse: collapse; font-size: 14px; }
+.table th { text-align: left; padding: 12px 16px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-tertiary); background: var(--bg-secondary); border-bottom: 1px solid var(--border-default); }
+.table td { padding: 12px 16px; border-bottom: 1px solid var(--border-default); }
+.table tr:hover td { background: var(--bg-secondary); }
+
+/* Code */
+.code-block { background: var(--bg-inverse); color: var(--text-inverse); font-family: "JetBrains Mono", monospace; font-size: 14px; line-height: 1.6; padding: 16px; border-radius: 12px; overflow-x: auto; }
+
+/* Colors utility */
+.color-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }
+.color-swatch { border-radius: 8px; overflow: hidden; border: 1px solid var(--border-default); }
+.color-block { height: 80px; }
+.color-label { padding: 12px; font-size: 12px; background: var(--bg-primary); }
+.color-label code { font-family: "JetBrains Mono", monospace; background: var(--bg-secondary); padding: 2px 4px; border-radius: 4px; }
+
+/* ============================================
+ UTILITY CLASSES
+ ============================================ */
+
+/* Spacing (margin-top) */
+.mt-0 { margin-top: 0; }
+.mt-1 { margin-top: 4px; }
+.mt-2 { margin-top: 8px; }
+.mt-3 { margin-top: 12px; }
+.mt-4 { margin-top: 16px; }
+.mt-5 { margin-top: 20px; }
+.mt-6 { margin-top: 24px; }
+.mt-8 { margin-top: 32px; }
+.mt-10 { margin-top: 40px; }
+.mt-12 { margin-top: 48px; }
+.mt-16 { margin-top: 64px; }
+
+.mb-0 { margin-bottom: 0; }
+.mb-1 { margin-bottom: 4px; }
+.mb-2 { margin-bottom: 8px; }
+.mb-3 { margin-bottom: 12px; }
+.mb-4 { margin-bottom: 16px; }
+.mb-5 { margin-bottom: 20px; }
+.mb-6 { margin-bottom: 24px; }
+.mb-8 { margin-bottom: 32px; }
+.mb-10 { margin-bottom: 40px; }
+.mb-12 { margin-bottom: 48px; }
+.mb-16 { margin-bottom: 64px; }
+
+/* Auto margins */
+.mx-auto { margin-left: auto; margin-right: auto; }
+.ml-auto { margin-left: auto; }
+.mr-auto { margin-right: auto; }
+
+/* Flex/alignment */
+.justify-center { justify-content: center; }
+.justify-between { justify-content: space-between; }
+.justify-end { justify-content: flex-end; }
+.items-center { align-items: center; }
+.items-start { align-items: flex-start; }
+.items-end { align-items: flex-end; }
+
+/* Border utilities */
+.border-top { border-top: 1px solid var(--border-default); }
+.border-bottom { border-bottom: 1px solid var(--border-default); }
+.border-left { border-left: 1px solid var(--border-default); }
+.border-right { border-right: 1px solid var(--border-default); }
+
+/* Width/height */
+.w-full { width: 100%; }
+.h-full { height: 100%; }
+
+/* Max-width */
+.max-w-prose { max-width: 65ch; }
+.max-w-md { max-width: 600px; }
+
+/* ============================================
+ RESPONSIVE BREAKPOINTS
+ ============================================ */
+
+@media (max-width: 768px) {
+ h1 { font-size: 48px; }
+ h2 { font-size: 36px; }
+ h3 { font-size: 28px; }
+
+ .grid-2-equal { grid-template-columns: 1fr; gap: 32px; }
+ .grid-3-equal { grid-template-columns: 1fr; gap: 24px; }
+ .grid-4-equal { grid-template-columns: repeat(2, 1fr); gap: 24px; }
+
+ .nav { flex-direction: column; gap: 16px; align-items: flex-start; }
+ .nav-links { flex-wrap: wrap; gap: 16px; }
+
+ .hero { padding: 48px 0; }
+ .section-vault { padding: 48px 0; }
+}
+
+@media (max-width: 480px) {
+ h1 { font-size: 36px; }
+ h2 { font-size: 28px; }
+
+ .grid-4-equal { grid-template-columns: 1fr; }
+ .pill-row { gap: 8px; }
+ .pill { padding: 0 12px; font-size: 13px; }
+
+ .btn-lg { height: 44px; padding: 0 16px; }
+}
diff --git a/commercial/website/templates/styleguide.tmpl b/clavitor.com/templates/styleguide.tmpl
similarity index 97%
rename from commercial/website/templates/styleguide.tmpl
rename to clavitor.com/templates/styleguide.tmpl
index 529005d..73c2222 100644
--- a/commercial/website/templates/styleguide.tmpl
+++ b/clavitor.com/templates/styleguide.tmpl
@@ -13,8 +13,8 @@
Design System
-
clavitor Styleguide
-
Single source of truth. One stylesheet: vault1984.css. No inline styles in HTML.
+
clavitor Styleguide
+
Single source of truth. One stylesheet: clavitor.css. No inline styles in HTML.
@@ -55,7 +55,7 @@
label.accent
label.gold
label.red
-
clavitor — vaultname in body text
+
clavitor — vaultname in body text
diff --git a/commercial/website/templates/terms.tmpl b/clavitor.com/templates/terms.tmpl
similarity index 95%
rename from commercial/website/templates/terms.tmpl
rename to clavitor.com/templates/terms.tmpl
index fab5c02..df959d7 100644
--- a/commercial/website/templates/terms.tmpl
+++ b/clavitor.com/templates/terms.tmpl
@@ -2,13 +2,13 @@
Legal
Terms of Service
-
Last updated: February 2026
+
Last updated: February 2026
-
+
1. Acceptance
By using clavitor (the "Service"), you agree to these terms. If you don't agree, don't use the Service.
diff --git a/commercial/website/worldmap.svg b/clavitor.com/worldmap.svg
similarity index 100%
rename from commercial/website/worldmap.svg
rename to clavitor.com/worldmap.svg
diff --git a/clovis/.DS_Store b/clovis/.DS_Store
new file mode 100644
index 0000000..be65361
Binary files /dev/null and b/clovis/.DS_Store differ
diff --git a/clovis/._.DS_Store b/clovis/._.DS_Store
new file mode 100644
index 0000000..28c42fb
Binary files /dev/null and b/clovis/._.DS_Store differ
diff --git a/commercial/mgmt/.gitkeep b/commercial/mgmt/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/commercial/tailscale/.gitkeep b/commercial/tailscale/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/commercial/website/clavitor.css b/commercial/website/clavitor.css
deleted file mode 100644
index c457c32..0000000
--- a/commercial/website/clavitor.css
+++ /dev/null
@@ -1,190 +0,0 @@
-/* ============================================================
- clavitor — global stylesheet
- ONE rule per class. No exceptions. No inline styles.
- All layout, spacing, color and type lives here.
- ============================================================ */
-
-/* === TOKENS === */
-:root {
- --width: 1280px;
- --pad: 2rem;
- --radius: 1rem;
- --radius-sm: 0.5rem;
- --gap: 1.25rem;
-
- --bg: #0d1520;
- --surface: #142542;
- --surface-alt: #0e2414;
- --surface-gold: #2a1f00;
-
- --border: rgba(255,255,255,0.09);
- --border-gold: rgba(212,175,55,0.3);
-
- --text: #f1f5f9;
- --muted: #94a3b8;
- --subtle: #64748b;
-
- --accent: #4ade80;
- --gold: #D4AF37;
- --red: #EF4444;
-
- --font-sans: Inter, sans-serif;
- --font-mono: 'JetBrains Mono', monospace;
-}
-
-/* === RESET === */
-*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
-body { background: var(--bg); color: var(--text); font-family: var(--font-sans); line-height: 1.6; }
-a { color: inherit; text-decoration: none; }
-img, svg { display: block; max-width: 100%; }
-
-/* === LAYOUT === */
-.container { max-width: var(--width); margin: 0 auto; padding: 0 var(--pad); }
-.section { padding-top: 5rem; padding-bottom: 5rem; }
-hr.divider { border: none; border-top: 1px solid var(--border); }
-
-/* === TYPOGRAPHY === */
-h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.1; color: var(--text); }
-h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.2; color: var(--text); }
-h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.3; color: var(--text); }
-p { color: var(--muted); font-size: 1rem; line-height: 1.75; }
-p.lead { font-size: 1.125rem; }
-
-/* === LABELS === */
-.label { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--subtle); }
-.label.accent { color: var(--accent); }
-.label.gold { color: var(--gold); }
-.label.red { color: var(--red); }
-
-/* === VAULTNAME === */
-.vaultname { font-family: var(--font-mono); font-weight: 700; color: var(--text); }
-.vaultname .n { color: var(--accent); }
-
-/* === CARDS === */
-.card { background: rgba(100,140,200,0.12); border: 1px solid rgba(148,163,184,0.15); border-radius: var(--radius); padding: 1.75rem; }
-.card.alt { background: rgba(34,197,94,0.15); border-color: rgba(34,197,94,0.3); }
-.card.gold { background: rgba(212,175,55,0.15); border-color: rgba(212,175,55,0.35); }
-.card.red { background: rgba(239,68,68,0.15); border-color: rgba(239,68,68,0.3); }
-.card-hover { transition: transform 0.2s, box-shadow 0.2s; border-color: rgba(255,255,255,0.12); }
-.card-hover:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
-
-/* === GRID === */
-.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
-.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--gap); }
-
-/* === BUTTONS === */
-.btn { display: inline-block; font-family: var(--font-sans); font-size: 0.875rem; font-weight: 600; padding: 0.625rem 1.25rem; border-radius: var(--radius-sm); border: 1px solid transparent; cursor: pointer; transition: opacity 0.15s; text-align: center; }
-.btn:hover { opacity: 0.85; }
-.btn-primary { background: var(--accent); color: var(--bg); border-color: var(--accent); }
-.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
-.btn-accent { background: rgba(34,197,94,0.15); color: var(--accent); border-color: rgba(34,197,94,0.3); }
-.btn-gold { background: rgba(212,175,55,0.15); color: var(--gold); border-color: rgba(212,175,55,0.3); }
-.btn-red { background: rgba(239,68,68,0.15); color: var(--red); border-color: rgba(239,68,68,0.3); }
-.btn-block { display: block; width: 100%; }
-.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }
-
-/* === HERO === */
-.hero { padding-top: 100px; padding-bottom: 4rem; text-align: center; }
-.hero h1 { margin-bottom: 1rem; }
-.hero p.lead { max-width: 600px; margin-left: auto; margin-right: auto; }
-.hero-split { padding-top: 100px; padding-bottom: 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
-
-/* === MAP === */
-.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
-.map-wrap svg { display: block; width: 100%; background: var(--bg); }
-.map-gap { height: 1rem; }
-
-/* === DC GRID (3 action cards below map) === */
-#dc-grid { display: flex; gap: var(--gap); }
-#dc-grid .dc-card { flex: 1; min-width: 0; border-radius: var(--radius); padding: 1rem; text-align: center; background: var(--surface); border: 1px solid var(--border); }
-#dc-grid .dc-card.gold { background: var(--surface-gold); border-color: var(--border-gold); }
-#dc-grid .dc-card.red { background: #1a0505; border-color: rgba(239,68,68,0.3); }
-#dc-grid .dc-icon { font-size: 1.5rem; margin-bottom: 0.375rem; }
-#dc-grid .dc-name { font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 0.25rem; }
-#dc-grid .dc-sub { font-size: 0.75rem; color: var(--subtle); margin-bottom: 0.625rem; }
-#dc-grid .dc-status { display: flex; align-items: center; justify-content: center; gap: 0.375rem; font-size: 0.75rem; color: var(--subtle); margin-bottom: 0.75rem; }
-#dc-grid .dc-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
-
-/* === SPACING === */
-.mt-2 { margin-top: 0.5rem; } .mb-2 { margin-bottom: 0.5rem; }
-.mt-3 { margin-top: 0.75rem; } .mb-3 { margin-bottom: 0.75rem; }
-.mt-4 { margin-top: 1rem; } .mb-4 { margin-bottom: 1rem; }
-.mt-6 { margin-top: 1.5rem; } .mb-6 { margin-bottom: 1.5rem; }
-.mt-8 { margin-top: 2rem; } .mb-8 { margin-bottom: 2rem; }
-.mt-12 { margin-top: 3rem; } .mb-12 { margin-bottom: 3rem; }
-
-/* === ANIMATIONS === */
-@keyframes hostedPulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.3; transform:scale(1.8); } }
-
-/* === NAV === */
-.nav { position: fixed; top: 0; width: 100%; z-index: 50; background: rgba(10,22,40,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
-.nav-inner { max-width: var(--width); margin: 0 auto; padding: 0 var(--pad); height: 64px; display: flex; align-items: center; justify-content: space-between; }
-.nav-logo { font-family: var(--font-mono); font-weight: 700; font-size: 2rem; color: var(--text); line-height: 1; letter-spacing: -0.02em; }
-.nav-logo .n { color: var(--accent); }
-.nav-links { display: flex; align-items: center; gap: 1.5rem; font-size: 0.875rem; }
-.nav-link { color: var(--muted); transition: color 0.15s; }
-.nav-link:hover { color: var(--text); }
-.nav-link.active { color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: 0.375rem; }
-.nav-link.active::before { content:''; display:inline-block; width:6px; height:6px; border-radius:50%; background:var(--gold); animation: hostedPulse 2s ease-in-out infinite; }
-
-/* === GRADIENT TEXT === */
-.gradient-text { background: linear-gradient(135deg, #22C55E 0%, #4ade80 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
-
-/* === CODE BLOCKS === */
-.code-block { background: rgba(0,0,0,0.4); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; font-family: var(--font-mono); font-size: 0.875rem; overflow-x: auto; line-height: 1.7; }
-.code-block .prompt { color: var(--accent); }
-.code-block .comment { color: var(--subtle); }
-.code-label { font-size: 0.75rem; color: var(--subtle); margin-bottom: 0.75rem; font-family: var(--font-sans); }
-.code-block pre { margin: 0; color: var(--muted); }
-pre, code { font-family: var(--font-mono); }
-
-/* === FEATURE ICON === */
-.feature-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: rgba(34,197,94,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; flex-shrink: 0; }
-.feature-icon svg { width: 1.25rem; height: 1.25rem; color: var(--accent); stroke: var(--accent); }
-.feature-icon.red { background: rgba(239,68,68,0.1); }
-.feature-icon.red svg { color: var(--red); stroke: var(--red); }
-
-/* === CHECK LIST === */
-.checklist { list-style: none; }
-.checklist li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--muted); margin-bottom: 0.75rem; }
-.checklist li::before { content: ''; width: 1rem; height: 1rem; flex-shrink: 0; background: var(--accent); border-radius: 50%; margin-top: 0.125rem; clip-path: polygon(20% 50%, 40% 70%, 80% 25%, 85% 30%, 40% 80%, 15% 55%); }
-.checklist.red li::before { background: var(--red); }
-
-/* === FOOTER === */
-.footer { border-top: 1px solid var(--border); padding: 3rem 0; }
-.footer-inner { display: flex; flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
-.footer-links { display: flex; align-items: center; gap: 1rem; font-size: 0.875rem; color: var(--subtle); }
-.footer-links a { color: var(--subtle); transition: color 0.15s; }
-.footer-links a:hover { color: var(--muted); }
-.footer-copy { text-align: center; font-size: 0.75rem; color: var(--subtle); margin-top: 2rem; }
-
-/* === PROSE (legal pages) === */
-.prose h2 { font-size: 1.375rem; font-weight: 700; color: var(--text); margin: 2.5rem 0 1rem; }
-.prose h3 { font-size: 1.1rem; font-weight: 600; color: var(--text); margin: 1.75rem 0 0.75rem; }
-.prose p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
-.prose ul { color: var(--muted); padding-left: 1.5rem; margin-bottom: 1rem; line-height: 1.8; }
-.prose a { color: var(--accent); }
-.prose a:hover { text-decoration: underline; }
-
-/* === BADGE === */
-.badge { display: inline-block; font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600; padding: 0.25rem 0.625rem; border-radius: 9999px; }
-.badge.accent { background: rgba(34,197,94,0.15); color: var(--accent); border: 1px solid rgba(34,197,94,0.3); }
-.badge.gold { background: rgba(212,175,55,0.15); color: var(--gold); border: 1px solid rgba(212,175,55,0.3); }
-.badge.recommended { background: var(--accent); color: var(--bg); }
-.badge.red { background: rgba(239,68,68,0.15); color: var(--red); border: 1px solid rgba(239,68,68,0.3); }
-
-/* === PRICING CARDS === */
-.price-card { border-radius: var(--radius); border: 1px solid var(--border); padding: 2.5rem; background: rgba(100,140,200,0.08); }
-.price-card.featured { border-color: rgba(34,197,94,0.4); background: rgba(34,197,94,0.06); }
-.price-amount { font-size: 3rem; font-weight: 800; color: var(--text); line-height: 1; }
-.price-period { font-size: 1rem; color: var(--muted); font-weight: 400; }
-
-/* === SCROLL === */
-html { scroll-behavior: smooth; }
-
-/* === ANIMATIONS (pulse for map/decorative) === */
-@keyframes pulseDot { 0%,100% { transform:scale(1); } 50% { transform:scale(1.15); } }
-@keyframes pulseRing { 0% { transform:scale(0.8); opacity:1; } 100% { transform:scale(2.5); opacity:0; } }
-.pulse-dot { animation: pulseDot 2s ease-in-out infinite; }
-.pulse-ring { animation: pulseRing 2s ease-out infinite; }
-.pulse-ring-2 { animation: pulseRing 2s ease-out infinite 0.5s; }
diff --git a/design-system/MISSING.md b/design-system/MISSING.md
new file mode 100644
index 0000000..075dcc7
--- /dev/null
+++ b/design-system/MISSING.md
@@ -0,0 +1,66 @@
+# Clavitor Landing Page — MISSING COMPONENTS REPORT
+
+## Status
+Landing page created at `index.html` using ONLY `styleguide.css` classes.
+
+## Missing from Design System (need inline styles or new components)
+
+### 1. Navigation Components
+- `.nav` — no navigation container
+- `.nav-link` — for text links in nav
+- `.nav-spacer` or `.ml-auto` — for pushing items right (currently using `style="margin-left: auto;"`)
+
+### 2. Layout Utilities
+- `.text-center` — text-align center
+- `.mx-auto` — margin-left/right auto for centering
+- `.mt-4`, `.mt-6`, `.mt-8` — margin-top utilities (4=16px, 6=24px, 8=32px)
+- `.mb-4` — margin-bottom utilities
+
+### 3. Feature Card Icon Size
+- `.black-square-sm` — 48×48px variant for feature icons (currently inline styled)
+
+### 4. Footer Components
+- `.footer` — with border-top treatment
+- `.footer-link` — specific footer text styling
+- `.justify-between` — justify-content: space-between
+
+### 5. Typography Variants
+- `.lead` or `.text-lg` — 18px subheading for hero (currently inline styled)
+
+### 6. Responsive Classes
+- Mobile breakpoints for grid layouts
+- Stack behavior for `.grid-2-equal` on small screens
+
+## What's IN the CSS (working)
+
+✓ Logo lockup (exact final spec)
+✓ Section patterns (vault1984 style)
+✓ Buttons (all variants + sizes)
+✓ Feature cards (light + dark)
+✓ Stats grid
+✓ Pills/pill rows
+✓ Typography scale
+✓ Color tokens
+✓ Container/max-width
+
+## Recommendation
+
+Add these utility classes to `styleguide.css`:
+
+```css
+/* Utilities */
+.text-center { text-align: center; }
+.mx-auto { margin-left: auto; margin-right: auto; }
+.ml-auto { margin-left: auto; }
+.justify-between { justify-content: space-between; }
+.mt-4 { margin-top: 16px; }
+.mt-6 { margin-top: 24px; }
+.mt-8 { margin-top: 32px; }
+.mb-4 { margin-bottom: 16px; }
+.text-lg { font-size: 18px; }
+
+/* Component variants */
+.black-square-sm { width: 48px; height: 48px; }
+.nav-link { font-size: 14px; color: var(--text-secondary); text-decoration: none; }
+.footer { border-top: 1px solid var(--border-default); padding: 48px 0; }
+```
diff --git a/design-system/font-test.html b/design-system/font-test.html
deleted file mode 100644
index 13b5830..0000000
--- a/design-system/font-test.html
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
Font Test
-
-
-
-
-
Font Loading Test
-
JetBrains Mono: $ clavitor deploy
-
Fira Code: $ clavitor deploy
-
System Mono: $ clavitor deploy
-
-
\ No newline at end of file
diff --git a/design-system/styleguide-coral.html b/design-system/styleguide-coral.html
deleted file mode 100644
index 3a0ee9d..0000000
--- a/design-system/styleguide-coral.html
+++ /dev/null
@@ -1,225 +0,0 @@
-
-
-
-
-
-
Clavitor — Deep Coral + General Sans
-
-
-
-
-
-
-
-
-
-
-
-
-
Clavitor
-
Deep Coral + General Sans
-
-
-
CLAVITOR
-
- Warm energy, structured, distinct.
-
-
-
-
-
Brand Colors — DEEP CORAL
-
-
Black Square
--brand-black
#0A0A0A
-
Deep Coral
--brand-accent
#EA580C
-
Coral Light
--brand-accent-light
#F97316
-
Coral Dark
--brand-accent-dark
#C2410C
-
-
-
-
-
Typography — GENERAL SANS
-
-
wordmarkCLAVITOR
-
72pxHeading 72
-
56pxHeading 56
-
40pxHeading 40
-
16pxBody 16 — The quick brown fox jumps over the lazy dog
-
-
-
-
-
Buttons — CORAL ACCENT
-
-
-
-
-
-
-
-
-
-
Alerts
-
-
- Info: Warm energy flowing. Coral background.
-
-
- Error: Something needs attention.
-
-
-
-
-
-
Code — JETBRAINS MONO
-
- $ clavitor deploy
- Deploying with warm energy...
-
-
-
-
-
-
\ No newline at end of file
diff --git a/design-system/styleguide-green.html b/design-system/styleguide-green.html
deleted file mode 100644
index 6b865fb..0000000
--- a/design-system/styleguide-green.html
+++ /dev/null
@@ -1,225 +0,0 @@
-
-
-
-
-
-
Clavitor — Forest Green + Satoshi
-
-
-
-
-
-
-
-
-
-
-
-
-
Clavitor
-
Forest Green + Satoshi
-
-
-
CLAVITOR
-
- Trust, growth, vault is alive. Modern tech feel.
-
-
-
-
-
Brand Colors — FOREST GREEN
-
-
Black Square
--brand-black
#0A0A0A
-
Forest Green
--brand-accent
#15803D
-
Green Light
--brand-accent-light
#16A34A
-
Green Dark
--brand-accent-dark
#166534
-
-
-
-
-
Typography — SATOSHI
-
-
wordmarkCLAVITOR
-
72pxHeading 72
-
56pxHeading 56
-
40pxHeading 40
-
16pxBody 16 — The quick brown fox jumps over the lazy dog
-
-
-
-
-
Buttons — GREEN ACCENT
-
-
-
-
-
-
-
-
-
-
Alerts
-
-
- Info: Vault is secure and growing. Green background.
-
-
- Error: Something went wrong. Check logs.
-
-
-
-
-
-
Code — JETBRAINS MONO
-
- $ clavitor status
- Vault: alive and growing...
-
-
-
-
-
-
\ No newline at end of file
diff --git a/design-system/styleguide-teal.html b/design-system/styleguide-teal.html
deleted file mode 100644
index ae8d116..0000000
--- a/design-system/styleguide-teal.html
+++ /dev/null
@@ -1,225 +0,0 @@
-
-
-
-
-
-
Clavitor — Deep Teal + Space Grotesk
-
-
-
-
-
-
-
-
-
-
-
-
-
Clavitor
-
Deep Teal + Space Grotesk
-
-
-
CLAVITOR
-
- Infrastructure that flows. Technical, cool, distinctive geometry.
-
-
-
-
-
Brand Colors — DEEP TEAL
-
-
Black Square
--brand-black
#0A0A0A
-
Deep Teal
--brand-accent
#0D9488
-
Teal Light
--brand-accent-light
#14B8A6
-
Teal Dark
--brand-accent-dark
#0F766E
-
-
-
-
-
Typography — SPACE GROTESK
-
-
wordmarkCLAVITOR
-
72pxHeading 72
-
56pxHeading 56
-
40pxHeading 40
-
16pxBody 16 — The quick brown fox jumps over the lazy dog
-
-
-
-
-
Buttons — TEAL ACCENT
-
-
-
-
-
-
-
-
-
-
Alerts
-
-
- Info: Infrastructure connected. Teal background.
-
-
- Error: Connection failed. Check configuration.
-
-
-
-
-
-
Code — JETBRAINS MONO
-
- $ clavitor deploy
- Connected to teal infrastructure...
-
-
-
-
-
-
\ No newline at end of file
diff --git a/design-system/styleguide.css b/design-system/styleguide.css
new file mode 100644
index 0000000..22c732e
--- /dev/null
+++ b/design-system/styleguide.css
@@ -0,0 +1,359 @@
+/* ============================================
+ CLAVITOR DESIGN SYSTEM — v0.1
+ Violet #7C3AED + Figtree + JetBrains Mono
+ ============================================ */
+
+:root {
+ /* Brand */
+ --brand-black: #0A0A0A;
+ --brand-accent: #7C3AED;
+ --brand-accent-light: #8B5CF6;
+ --brand-accent-dark: #6D28D9;
+
+ /* Core Colors */
+ --bg-primary: #FFFFFF;
+ --bg-secondary: #F5F5F5;
+ --bg-tertiary: #E5E5E5;
+ --bg-inverse: #0A0A0A;
+
+ --text-primary: #171717;
+ --text-secondary: #525252;
+ --text-tertiary: #737373;
+ --text-inverse: #FFFFFF;
+
+ --border-default: #E5E5E5;
+ --border-strong: #D4D4D4;
+
+ /* Semantic */
+ --success: #16A34A;
+ --warning: #CA8A04;
+ --error: #DC2626;
+
+ /* Typography */
+ --font-family: "Figtree", system-ui, sans-serif;
+
+ /* Wordmark */
+ --wordmark-font: "Figtree", system-ui, sans-serif;
+ --wordmark-weight: 700;
+ --wordmark-spacing: 0.25em;
+
+ /* Spacing */
+ --space-1: 4px;
+ --space-2: 8px;
+ --space-3: 12px;
+ --space-4: 16px;
+ --space-5: 20px;
+ --space-6: 24px;
+ --space-8: 32px;
+ --space-10: 40px;
+ --space-12: 48px;
+ --space-16: 64px;
+
+ /* Motion */
+ --duration-fast: 100ms;
+ --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
+}
+
+*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
+
+html {
+ font-family: var(--font-family);
+ font-size: 16px;
+ line-height: 1.5;
+ color: var(--text-primary);
+ background: var(--bg-primary);
+ -webkit-font-smoothing: antialiased;
+}
+
+/* ============================================
+ LAYOUT
+ ============================================ */
+
+.container { max-width: 1200px; margin: 0 auto; padding: 48px 24px; }
+.section { margin-bottom: 64px; }
+.max-width { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
+
+/* Grid */
+.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
+.grid-2-equal { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; overflow: visible; }
+.grid-3-equal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
+.grid-4-equal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
+
+/* Flex */
+.flex-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
+.flex-col { display: flex; flex-direction: column; gap: 12px; }
+
+/* ============================================
+ TYPOGRAPHY
+ ============================================ */
+
+h1 { font-size: 72px; font-weight: 700; letter-spacing: -0.022em; line-height: 1; }
+h2 { font-size: 56px; font-weight: 600; letter-spacing: -0.022em; line-height: 1.1; }
+h3 { font-size: 40px; font-weight: 600; letter-spacing: -0.019em; }
+h4 { font-size: 28px; font-weight: 500; }
+
+.text-sm { font-size: 16px; }
+.text-xs { font-size: 14px; }
+.text-secondary { color: var(--text-secondary); }
+.text-tertiary { color: var(--text-tertiary); }
+.text-inverse { color: var(--text-inverse); }
+
+/* Wordmark */
+.wordmark { font-size: 18px; font-weight: var(--wordmark-weight); letter-spacing: var(--wordmark-spacing); text-transform: uppercase; }
+.wordmark-lg { font-size: 32px; font-weight: var(--wordmark-weight); letter-spacing: var(--wordmark-spacing); text-transform: uppercase; color: var(--brand-accent); }
+
+/* ============================================
+ BRAND ELEMENTS
+ ============================================ */
+
+.brand-block { display: flex; align-items: center; gap: 16px; margin: 32px 0; }
+.black-square { width: 64px; height: 64px; background: var(--brand-black); }
+
+/* Logo Lockup — The Trinity */
+.logo-lockup { display: inline-flex; gap: 20px; align-items: stretch; }
+.logo-lockup-square { width: 80px; height: 80px; background: var(--brand-black); flex-shrink: 0; }
+.logo-lockup-text { display: flex; flex-direction: column; justify-content: space-between; height: 80px; }
+.logo-lockup-wordmark { font-family: var(--font-family); font-size: 56px; font-weight: var(--wordmark-weight); letter-spacing: var(--wordmark-spacing); text-transform: uppercase; color: var(--brand-accent); line-height: 1; }
+.logo-lockup-tagline { font-size: 16px; font-weight: 500; color: var(--text-tertiary); letter-spacing: 0.22em; text-transform: uppercase; line-height: 1; margin-bottom: -2px; }
+
+/* ============================================
+ SECTION PATTERNS (vault1984 style)
+ ============================================ */
+
+.section-vault { padding: 80px 0; }
+.section-vault-dark { padding: 80px 0; background: var(--bg-inverse); color: var(--text-inverse); }
+
+/* ============================================
+ COMPONENTS
+ ============================================ */
+
+/* Pills */
+.pill-row { display: flex; flex-wrap: wrap; gap: 12px; overflow: visible; }
+.pill {
+ display: inline-flex; align-items: center;
+ height: 32px; padding: 0 16px;
+ white-space: nowrap;
+ background: var(--bg-secondary);
+ border: 1px solid var(--border-default);
+ border-radius: 9999px;
+ font-size: 14px; font-weight: 500;
+}
+.pill-accent { background: var(--brand-accent); color: white; border-color: var(--brand-accent); }
+
+/* Feature Cards */
+.feature-card { background: var(--bg-secondary); border-radius: 12px; padding: 32px; }
+.feature-card-dark { background: var(--bg-inverse); color: var(--text-inverse); border-radius: 12px; padding: 32px; }
+
+/* Stats */
+.stat-number { font-size: 72px; font-weight: 700; color: var(--brand-accent); line-height: 1; margin-bottom: 8px; }
+.stat-label { font-size: 14px; color: var(--text-secondary); }
+
+/* Section Title */
+.section-title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-tertiary); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--border-default); }
+
+/* Buttons */
+.btn {
+ display: inline-flex; align-items: center; justify-content: center; gap: 8px;
+ font-family: inherit; font-size: 16px; font-weight: 500;
+ text-decoration: none; border: none; border-radius: 8px;
+ cursor: pointer; transition: all 100ms ease;
+ height: 40px; padding: 0 16px;
+}
+.btn:focus { outline: none; box-shadow: 0 0 0 2px white, 0 0 0 4px var(--brand-accent); }
+.btn-primary { background: var(--brand-black); color: white; }
+.btn-primary:hover { background: #262626; }
+.btn-secondary { background: transparent; color: var(--text-primary); border: 1px solid var(--border-strong); }
+.btn-secondary:hover { background: var(--bg-secondary); }
+.btn-accent { background: var(--brand-accent); color: white; }
+.btn-accent:hover { background: var(--brand-accent-light); }
+.btn-ghost { background: transparent; color: var(--text-primary); }
+.btn-ghost:hover { background: var(--bg-secondary); }
+.btn-sm { height: 32px; padding: 0 12px; font-size: 14px; }
+.btn-lg { height: 48px; padding: 0 20px; }
+.btn:disabled { opacity: 0.5; cursor: not-allowed; }
+
+/* Inputs */
+.input-group { display: flex; flex-direction: column; gap: 8px; }
+.input-label { font-size: 14px; font-weight: 500; color: var(--text-primary); }
+.input {
+ height: 40px; padding: 0 12px;
+ font-family: inherit; font-size: 16px;
+ color: var(--text-primary); background: var(--bg-primary);
+ border: 1px solid var(--border-strong); border-radius: 8px;
+ transition: all 100ms ease;
+}
+.input:hover { border-color: var(--text-tertiary); }
+.input:focus { outline: none; border-color: var(--brand-accent); box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1); }
+.input::placeholder { color: var(--text-tertiary); }
+.input-error { border-color: var(--error); }
+.input-hint { font-size: 12px; color: var(--text-tertiary); }
+.input-error-text { font-size: 12px; color: var(--error); }
+
+/* Cards */
+.card { background: var(--bg-secondary); border-radius: 12px; padding: 24px; }
+.card-flat { background: var(--bg-secondary); border: 1px solid var(--border-default); }
+.card-header { margin-bottom: 16px; }
+.card-title { font-size: 18px; font-weight: 600; }
+
+/* Badges */
+.badge { display: inline-flex; align-items: center; height: 24px; padding: 0 12px; font-size: 12px; font-weight: 500; border-radius: 8px; }
+.badge-default { background: var(--bg-tertiary); color: var(--text-secondary); }
+.badge-primary { background: var(--brand-black); color: white; }
+.badge-accent { background: var(--brand-accent); color: white; }
+.badge-success { background: rgba(22, 163, 74, 0.1); color: var(--success); }
+.badge-warning { background: rgba(202, 138, 4, 0.1); color: var(--warning); }
+.badge-error { background: rgba(220, 38, 38, 0.1); color: var(--error); }
+
+/* Alerts */
+.alert { display: flex; gap: 12px; padding: 16px; border-radius: 12px; }
+.alert-accent { background: rgba(124, 58, 237, 0.05); }
+.alert-success { background: rgba(22, 163, 74, 0.05); }
+.alert-error { background: rgba(220, 38, 38, 0.05); }
+
+/* Tables */
+.table { width: 100%; border-collapse: collapse; font-size: 14px; }
+.table th { text-align: left; padding: 12px 16px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-tertiary); background: var(--bg-secondary); border-bottom: 1px solid var(--border-default); }
+.table td { padding: 12px 16px; border-bottom: 1px solid var(--border-default); }
+.table tr:hover td { background: var(--bg-secondary); }
+
+/* Code */
+.code-block { background: var(--bg-inverse); color: var(--text-inverse); font-family: "JetBrains Mono", monospace; font-size: 14px; line-height: 1.6; padding: 16px; border-radius: 12px; overflow-x: auto; }
+
+/* Colors utility */
+.color-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }
+.color-swatch { border-radius: 8px; overflow: hidden; border: 1px solid var(--border-default); }
+.color-block { height: 80px; }
+.color-label { padding: 12px; font-size: 12px; background: var(--bg-primary); }
+.color-label code { font-family: "JetBrains Mono", monospace; background: var(--bg-secondary); padding: 2px 4px; border-radius: 4px; }
+
+/* ============================================
+ UTILITY CLASSES (New)
+ ============================================ */
+
+/* Typography utilities */
+.text-lg { font-size: 18px; }
+.text-center { text-align: center; }
+.text-left { text-align: left; }
+.text-right { text-align: right; }
+
+/* Margin utilities (mt = margin-top, mb = margin-bottom) */
+.mt-0 { margin-top: 0; }
+.mt-1 { margin-top: 4px; }
+.mt-2 { margin-top: 8px; }
+.mt-3 { margin-top: 12px; }
+.mt-4 { margin-top: 16px; }
+.mt-5 { margin-top: 20px; }
+.mt-6 { margin-top: 24px; }
+.mt-8 { margin-top: 32px; }
+.mt-10 { margin-top: 40px; }
+.mt-12 { margin-top: 48px; }
+.mt-16 { margin-top: 64px; }
+
+.mb-0 { margin-bottom: 0; }
+.mb-1 { margin-bottom: 4px; }
+.mb-2 { margin-bottom: 8px; }
+.mb-3 { margin-bottom: 12px; }
+.mb-4 { margin-bottom: 16px; }
+.mb-5 { margin-bottom: 20px; }
+.mb-6 { margin-bottom: 24px; }
+.mb-8 { margin-bottom: 32px; }
+.mb-10 { margin-bottom: 40px; }
+.mb-12 { margin-bottom: 48px; }
+.mb-16 { margin-bottom: 64px; }
+
+/* Auto margins for centering */
+.mx-auto { margin-left: auto; margin-right: auto; }
+.ml-auto { margin-left: auto; }
+.mr-auto { margin-right: auto; }
+
+/* Flex/alignment utilities */
+.justify-center { justify-content: center; }
+.justify-between { justify-content: space-between; }
+.justify-end { justify-content: flex-end; }
+.items-center { align-items: center; }
+.items-start { align-items: flex-start; }
+.items-end { align-items: flex-end; }
+
+/* Display utilities */
+.block { display: block; }
+.inline { display: inline; }
+.inline-block { display: inline-block; }
+.hidden { display: none; }
+
+/* Component variants */
+.black-square-sm { width: 48px; height: 48px; background: var(--brand-black); }
+
+/* Border utilities */
+.border-top { border-top: 1px solid var(--border-default); }
+.border-bottom { border-bottom: 1px solid var(--border-default); }
+.border-left { border-left: 1px solid var(--border-default); }
+.border-right { border-right: 1px solid var(--border-default); }
+
+/* Width/height utilities */
+.w-full { width: 100%; }
+.h-full { height: 100%; }
+
+/* Max-width utilities for text readability */
+.max-w-prose { max-width: 65ch; }
+.max-w-md { max-width: 600px; }
+
+/* Grid utilities */
+.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
+.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
+
+/* Font utilities */
+.font-semibold { font-weight: 600; }
+.font-mono { font-family: "JetBrains Mono", monospace; }
+
+/* ============================================
+ NAVIGATION (New)
+ ============================================ */
+
+.nav { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; border-bottom: 1px solid var(--border-default); }
+.nav-links { display: flex; gap: 32px; align-items: center; }
+.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 100ms ease; }
+.nav-links a:hover { color: var(--text-primary); }
+
+/* ============================================
+ HERO (New)
+ ============================================ */
+
+.hero { padding: 80px 0; }
+.hero-content { max-width: 600px; }
+
+/* ============================================
+ RESPONSIVE BREAKPOINTS (New)
+ ============================================ */
+
+@media (max-width: 768px) {
+ h1 { font-size: 48px; }
+ h2 { font-size: 36px; }
+ h3 { font-size: 28px; }
+
+ .grid-2-equal { grid-template-columns: 1fr; gap: 32px; }
+ .grid-3-equal { grid-template-columns: 1fr; gap: 24px; }
+ .grid-4-equal { grid-template-columns: repeat(2, 1fr); gap: 24px; }
+
+ .nav { flex-direction: column; gap: 16px; align-items: flex-start; }
+ .nav-links { flex-wrap: wrap; gap: 16px; }
+
+ .hero { padding: 48px 0; }
+ .section-vault { padding: 48px 0; }
+}
+
+@media (max-width: 480px) {
+ h1 { font-size: 36px; }
+ h2 { font-size: 28px; }
+
+ .grid-4-equal { grid-template-columns: 1fr; }
+ .pill-row { gap: 8px; }
+ .pill { padding: 0 12px; font-size: 13px; }
+
+ .btn-lg { height: 44px; padding: 0 16px; }
+}
+
+/* ============================================
+ ACCESSIBILITY (New)
+ ============================================ */
+
+.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }
diff --git a/design-system/styleguide.html b/design-system/styleguide.html
index 7c1ee5e..52f095a 100644
--- a/design-system/styleguide.html
+++ b/design-system/styleguide.html
@@ -8,231 +8,51 @@
-
+
-
-
-
-
-
-
-
-
-
Clavitor
-
Design System v0.1 — Violet + Figtree + JetBrains Mono
-
+
+
+
+
+
+
+
+
Clavitor
+
Design System v0.1 — Violet + Figtree + JetBrains Mono
-
CLAVITOR
-
- A black box vault for AI infrastructure. Tokens, components, layouts.
- Based on vault1984.com patterns.
-
+
CLAVITOR
+
+ A black box vault for AI infrastructure. Tokens, components, layouts.
+ Based on vault1984.com patterns.
+
+
-
-
-
Logo Lockup (Black Square + Wordmark + Tagline)
+
+
+
Logo Lockup (Black Square + Wordmark + Tagline)
+
+
+
+
CLAVITOR
+
Black-box credential issuance
+
+
+
+ Spec: Square: 80×80px #0A0A0A (Black Square) · Wordmark: Figtree 700, 56px, 0.25em, #7C3AED (Violet) · Tagline: 16px, 0.22em, uppercase, #737373 (Text Tertiary)
+
+
+ ↓ Download clavitor-logo.svg
+ ↓ Download clavitor-logo.png (800×800)
+
+
+
+
+
+
Logo Lockup — Scale Variants
+
+
200%
+
-
-
-
Logo Lockup — Scale Variants
-
-
200%
-
-
-
-
-
CLAVITOR
-
Black-box credential issuance
-
-
-
-
-
150%
-
-
-
-
-
CLAVITOR
-
Black-box credential issuance
-
-
-
-
-
100%
-
-
-
-
-
CLAVITOR
-
Black-box credential issuance
-
-
-
-
-
50%
-
-
-
-
-
CLAVITOR
-
Black-box credential issuance
-
+
150%
+
+
+
+
+
CLAVITOR
+
Black-box credential issuance
-
-
-
Brand Colors
-
-
Black Square
--brand-black
#0A0A0A
-
Violet
--brand-accent
#7C3AED
-
Violet Light
--brand-accent-light
#8B5CF6
-
Violet Dark
--brand-accent-dark
#6D28D9
-
-
-
-
-
-
Typography — Figtree
-
-
wordmarkCLAVITOR
-
72pxHeading 72
-
56pxHeading 56
-
40pxHeading 40
-
16pxBody 16 — The quick brown fox jumps over the lazy dog
-
-
-
-
-
-
Buttons
-
-
-
-
-
-
-
-
-
-
-