chore: auto-commit uncommitted changes
|
Before Width: | Height: | Size: 355 B After Width: | Height: | Size: 355 B |
|
|
@ -0,0 +1,267 @@
|
|||
/* ============================================================
|
||||
CLAVITOR — clavitor.com stylesheet
|
||||
Single source of truth. Design system tokens + website components.
|
||||
============================================================ */
|
||||
|
||||
/* === TOKENS (from design-system/styleguide.css) === */
|
||||
:root {
|
||||
/* Brand */
|
||||
--brand-black: #0A0A0A;
|
||||
--brand-accent: #7C3AED;
|
||||
--brand-accent-light: #8B5CF6;
|
||||
--brand-accent-dark: #6D28D9;
|
||||
|
||||
/* Backgrounds */
|
||||
--bg: #FFFFFF;
|
||||
--bg-secondary: #F5F5F5;
|
||||
--bg-tertiary: #E5E5E5;
|
||||
--bg-inverse: #0A0A0A;
|
||||
|
||||
/* Text */
|
||||
--text: #171717;
|
||||
--text-secondary: #525252;
|
||||
--text-tertiary: #737373;
|
||||
--text-inverse: #FFFFFF;
|
||||
|
||||
/* Borders */
|
||||
--border: #E5E5E5;
|
||||
--border-strong: #D4D4D4;
|
||||
|
||||
/* Semantic */
|
||||
--success: #16A34A;
|
||||
--warning: #CA8A04;
|
||||
--error: #DC2626;
|
||||
--gold: #D4AF37;
|
||||
|
||||
/* Typography */
|
||||
--font-sans: "Figtree", system-ui, sans-serif;
|
||||
--font-mono: "JetBrains Mono", monospace;
|
||||
|
||||
/* Layout */
|
||||
--width: 1280px;
|
||||
--pad: 24px;
|
||||
--radius: 12px;
|
||||
--radius-sm: 8px;
|
||||
--gap: 24px;
|
||||
}
|
||||
|
||||
/* === RESET === */
|
||||
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
||||
html { scroll-behavior: smooth; }
|
||||
body { background: var(--bg); color: var(--text); font-family: var(--font-sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
|
||||
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: 80px 0; }
|
||||
.narrow { max-width: 800px; margin: 0 auto; }
|
||||
.prose-width { max-width: 720px; }
|
||||
hr.divider { border: none; border-top: 1px solid var(--border); }
|
||||
|
||||
/* === TYPOGRAPHY === */
|
||||
h1 { font-size: clamp(2.25rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.022em; color: var(--text); }
|
||||
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; line-height: 1.2; letter-spacing: -0.022em; color: var(--text); }
|
||||
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; color: var(--text); }
|
||||
p { color: var(--text-secondary); font-size: 1rem; line-height: 1.75; }
|
||||
p.lead { font-size: 1.125rem; }
|
||||
pre, code { font-family: var(--font-mono); }
|
||||
code { font-size: 0.875em; }
|
||||
|
||||
/* === LABELS === */
|
||||
.label { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-tertiary); }
|
||||
.label.accent { color: var(--brand-black); }
|
||||
.label.gold { color: var(--gold); }
|
||||
.label.red { color: var(--error); }
|
||||
|
||||
/* === EMPHASIS TEXT === */
|
||||
.gradient-text { color: var(--brand-black); font-weight: 800; }
|
||||
|
||||
/* === BRAND / VAULTNAME === */
|
||||
.vaultname { font-family: var(--font-mono); font-weight: 700; color: var(--text); }
|
||||
|
||||
/* === LOGO LOCKUP === */
|
||||
.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-sans); font-size: 56px; font-weight: 700; letter-spacing: 0.25em; 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; }
|
||||
.logo-lockup-nav { transform: scale(0.65); transform-origin: left center; }
|
||||
|
||||
/* === NAV === */
|
||||
.nav { position: fixed; top: 0; width: 100%; z-index: 50; background: rgba(255,255,255,0.92); 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 { line-height: 1; }
|
||||
.nav-links { display: flex; align-items: center; gap: 1.5rem; font-size: 0.875rem; }
|
||||
.nav-link { color: var(--text-secondary); font-weight: 500; transition: color 100ms ease; }
|
||||
.nav-link:hover { color: var(--text); }
|
||||
.nav-link.active { color: var(--text); 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(--brand-black); animation: pulse 2s ease-in-out infinite; }
|
||||
|
||||
/* === BUTTONS === */
|
||||
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; 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: all 100ms ease; text-align: center; text-decoration: none; }
|
||||
.btn-primary { background: var(--brand-black); color: #ffffff; border-color: var(--brand-black); }
|
||||
.btn-primary:hover { background: #262626; }
|
||||
.btn-accent { background: var(--brand-accent); color: #ffffff; border-color: var(--brand-accent); }
|
||||
.btn-accent:hover { background: var(--brand-accent-light); }
|
||||
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
|
||||
.btn-ghost:hover { background: var(--bg-secondary); }
|
||||
.btn-block { display: flex; width: 100%; }
|
||||
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }
|
||||
.btn-sm { height: 32px; padding: 0 12px; font-size: 14px; }
|
||||
.btn-lg { height: 48px; padding: 0 20px; }
|
||||
.btn-mono { font-family: var(--font-mono); font-size: 0.75rem; }
|
||||
|
||||
/* === 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; }
|
||||
|
||||
/* === CARDS === */
|
||||
.card { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
|
||||
.card.alt { background: rgba(10,10,10,0.03); border-color: rgba(10,10,10,0.1); }
|
||||
.card.gold { background: rgba(212,175,55,0.06); border-color: rgba(212,175,55,0.2); }
|
||||
.card.red { background: rgba(239,68,68,0.04); border-color: rgba(239,68,68,0.15); }
|
||||
.card-hover { transition: transform 0.2s, box-shadow 0.2s; }
|
||||
.card-hover:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
|
||||
|
||||
/* === GRIDS === */
|
||||
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
|
||||
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
|
||||
.grid-2-equal { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
|
||||
.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; }
|
||||
|
||||
/* === CODE BLOCKS === */
|
||||
.code-block { background: var(--bg-inverse); border-radius: var(--radius); padding: 1.5rem; font-family: var(--font-mono); font-size: 0.875rem; overflow-x: auto; line-height: 1.7; color: #d1d5db; }
|
||||
.code-block .prompt { color: #a5b4fc; }
|
||||
.code-block .comment { color: #737373; }
|
||||
.code-block .highlight { color: #a5b4fc; }
|
||||
.code-label { font-size: 0.75rem; color: var(--text-tertiary); margin-bottom: 0.75rem; font-family: var(--font-sans); }
|
||||
.code-block pre { margin: 0; color: #d1d5db; }
|
||||
|
||||
/* === FEATURE ICONS === */
|
||||
.feature-icon { width: 2.5rem; height: 2.5rem; border-radius: 0; background: var(--brand-black); 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: #ffffff; stroke: #ffffff; }
|
||||
.feature-icon.red { background: var(--error); border-radius: 0; }
|
||||
.feature-icon.red svg { color: #ffffff; stroke: #ffffff; }
|
||||
|
||||
/* === CHECKLISTS === */
|
||||
.checklist { list-style: none; }
|
||||
.checklist li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 0.75rem; }
|
||||
.checklist li::before { content: ''; width: 1rem; height: 1rem; flex-shrink: 0; background: var(--brand-black); 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(--error); }
|
||||
|
||||
/* === BADGES === */
|
||||
.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(10,10,10,0.08); color: var(--brand-black); border: 1px solid rgba(10,10,10,0.15); }
|
||||
.badge.gold { background: rgba(212,175,55,0.1); color: var(--gold); border: 1px solid rgba(212,175,55,0.2); }
|
||||
.badge.red { background: rgba(239,68,68,0.1); color: var(--error); border: 1px solid rgba(239,68,68,0.2); }
|
||||
.badge.recommended { background: var(--brand-black); color: #ffffff; }
|
||||
|
||||
/* === PILLS === */
|
||||
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; }
|
||||
.pill { display: inline-flex; align-items: center; height: 32px; padding: 0 16px; white-space: nowrap; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 9999px; font-size: 14px; font-weight: 500; }
|
||||
.pill-accent { background: var(--brand-accent); color: white; border-color: var(--brand-accent); }
|
||||
|
||||
/* === PRICING === */
|
||||
.price-card { border-radius: var(--radius); border: 1px solid var(--border); padding: 2.5rem; background: var(--bg-secondary); }
|
||||
.price-card.featured { border-color: rgba(10,10,10,0.2); background: rgba(10,10,10,0.02); position: relative; }
|
||||
.price-amount { font-size: 3rem; font-weight: 800; color: var(--text); line-height: 1; }
|
||||
.price-period { font-size: 1rem; color: var(--text-secondary); font-weight: 400; }
|
||||
.price-grid { max-width: 900px; margin: 0 auto; }
|
||||
.price-badge { position: absolute; top: -0.75rem; right: 1.5rem; }
|
||||
|
||||
/* === STATS === */
|
||||
.stat-number { font-size: 72px; font-weight: 700; color: var(--brand-black); line-height: 1; margin-bottom: 8px; }
|
||||
.stat-label { font-size: 14px; color: var(--text-secondary); }
|
||||
|
||||
/* === MAP === */
|
||||
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
|
||||
.map-wrap svg { display: block; width: 100%; background: var(--bg-secondary); }
|
||||
|
||||
/* === DC GRID (hosted page datacenter cards) === */
|
||||
#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(--bg-secondary); border: 1px solid var(--border); }
|
||||
#dc-grid .dc-card.gold { background: rgba(212,175,55,0.06); border-color: rgba(212,175,55,0.3); }
|
||||
#dc-grid .dc-card.red { background: rgba(239,68,68,0.04); border-color: rgba(239,68,68,0.15); }
|
||||
#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(--text-tertiary); 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(--text-tertiary); margin-bottom: 0.75rem; }
|
||||
#dc-grid .dc-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
|
||||
|
||||
/* === VISITOR CARD (geo JS) === */
|
||||
.visitor-card { border-radius: var(--radius); padding: 1rem; text-align: center; background: rgba(239,68,68,0.04); border: 1px solid rgba(239,68,68,0.2); }
|
||||
.visitor-flag { font-size: 1.5rem; margin-bottom: 0.5rem; }
|
||||
.visitor-label { font-weight: 600; font-size: 0.875rem; color: var(--text); }
|
||||
.visitor-region { font-size: 0.75rem; color: var(--text-tertiary); margin-bottom: 0.5rem; }
|
||||
.visitor-status { display: flex; align-items: center; justify-content: center; gap: 0.375rem; font-size: 0.75rem; color: var(--text-tertiary); }
|
||||
.visitor-dot { width: 6px; height: 6px; border-radius: 50%; background: #EF4444; display: inline-block; }
|
||||
|
||||
/* === INSTALL STEPS === */
|
||||
.step { display: flex; gap: 1.25rem; margin-bottom: 3rem; }
|
||||
.step-num { width: 2rem; height: 2rem; border-radius: 50%; background: var(--brand-black); color: #ffffff; font-size: 0.875rem; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font-mono); }
|
||||
.step-body { flex: 1; min-width: 0; }
|
||||
.step-body h2 { margin-bottom: 0.75rem; }
|
||||
.step-body p { margin-bottom: 1rem; }
|
||||
.dl-links { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
|
||||
|
||||
/* === 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(--text-secondary); line-height: 1.8; margin-bottom: 1rem; }
|
||||
.prose ul { color: var(--text-secondary); padding-left: 1.5rem; margin-bottom: 1rem; line-height: 1.8; }
|
||||
.prose a { color: var(--brand-accent); }
|
||||
.prose a:hover { text-decoration: underline; }
|
||||
|
||||
/* === FOOTER === */
|
||||
.footer { border-top: 1px solid var(--border); padding: 3rem 0; }
|
||||
.footer-inner { display: flex; 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(--text-tertiary); }
|
||||
.footer-links a { color: var(--text-tertiary); transition: color 100ms ease; }
|
||||
.footer-links a:hover { color: var(--text-secondary); }
|
||||
.footer-copy { text-align: center; font-size: 0.75rem; color: var(--text-tertiary); margin-top: 2rem; }
|
||||
|
||||
/* === UTILITIES: 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; }
|
||||
.mt-16 { margin-top: 4rem; } .mb-16 { margin-bottom: 4rem; }
|
||||
|
||||
/* === UTILITIES: Text === */
|
||||
.text-center { text-align: center; }
|
||||
.text-sm { font-size: 0.875rem; }
|
||||
.text-xs { font-size: 0.75rem; }
|
||||
.text-secondary { color: var(--text-secondary); }
|
||||
.text-tertiary { color: var(--text-tertiary); }
|
||||
.text-accent { color: var(--brand-accent); }
|
||||
.font-mono { font-family: var(--font-mono); }
|
||||
|
||||
/* === UTILITIES: Layout === */
|
||||
.w-full { width: 100%; }
|
||||
.mx-auto { margin-left: auto; margin-right: auto; }
|
||||
|
||||
/* === ANIMATIONS === */
|
||||
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.3; transform: scale(1.8); } }
|
||||
@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; }
|
||||
|
||||
/* === RESPONSIVE === */
|
||||
@media (max-width: 768px) {
|
||||
.hero-split { grid-template-columns: 1fr; gap: 2rem; padding-top: 5rem; }
|
||||
.grid-2 { grid-template-columns: 1fr; }
|
||||
.grid-3 { grid-template-columns: 1fr; }
|
||||
.grid-2-equal { grid-template-columns: 1fr; }
|
||||
.grid-3-equal { grid-template-columns: 1fr; }
|
||||
.grid-4-equal { grid-template-columns: repeat(2, 1fr); }
|
||||
#dc-grid { flex-direction: column; }
|
||||
.nav-links { gap: 0.75rem; font-size: 0.75rem; }
|
||||
.section { padding: 48px 0; }
|
||||
}
|
||||
|
Before Width: | Height: | Size: 355 B After Width: | Height: | Size: 355 B |
|
|
@ -8,17 +8,17 @@
|
|||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/vault1984.css">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Figtree:wght@400..700&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/clavitor.css">
|
||||
{{if eq .Page "install"}}{{template "install-head"}}{{end}}
|
||||
{{if eq .Page "styleguide"}}{{template "styleguide-head"}}{{end}}
|
||||
</head>
|
||||
<body>
|
||||
<nav class="nav">
|
||||
<div class="nav-inner">
|
||||
<a href="/" class="nav-logo">clav<span class="n">itor</span></a>
|
||||
<a href="/" class="nav-logo"><span class="logo-lockup logo-lockup-nav"><span class="logo-lockup-square"></span><span class="logo-lockup-text"><span class="logo-lockup-wordmark">CLAVITOR</span><span class="logo-lockup-tagline">Black-box credential issuance</span></span></span></a>
|
||||
<div class="nav-links">
|
||||
<a href="https://github.com/johanjongsma/vault1984" target="_blank" rel="noopener" class="nav-link">GitHub</a>
|
||||
<a href="https://github.com/clavitor/clavitor" target="_blank" rel="noopener" class="nav-link">GitHub</a>
|
||||
<a href="/hosted" class="nav-link{{if eq .ActiveNav "hosted"}} active{{end}}">Hosted</a>
|
||||
<a href="/pricing" class="nav-link{{if eq .ActiveNav "pricing"}} active{{end}}">Pricing</a>
|
||||
<a href="/install" class="nav-link{{if eq .ActiveNav "install"}} active{{end}}">Self-host</a>
|
||||
|
|
@ -3,8 +3,8 @@
|
|||
<div class="container">
|
||||
<div class="footer-inner">
|
||||
<div class="footer-links">
|
||||
<a href="/" class="vaultname">clav<span class="n">itor</span></a>
|
||||
<a href="https://github.com/johanjongsma/vault1984" target="_blank" rel="noopener">GitHub</a>
|
||||
<a href="/" class="vaultname">clavitor</a>
|
||||
<a href="https://github.com/clavitor/clavitor" target="_blank" rel="noopener">GitHub</a>
|
||||
<a href="#">Discord</a>
|
||||
<a href="#">X</a>
|
||||
</div>
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
{{define "hosted"}}
|
||||
<!-- Hero -->
|
||||
<div class="hero container">
|
||||
<p class="label accent mb-4"><span class="vaultname">vault<span class="n">1984</span></span> hosted</p>
|
||||
<p class="label accent mb-4"><span class="vaultname">clavitor</span> hosted</p>
|
||||
<h1>Your vault needs to work everywhere. We make sure it does.</h1>
|
||||
<p class="lead">Your laptop, your phone, your browser extension — at home, at work, on the road. We run the infrastructure across 22 regions. You pick where your data lives. <s>$20</s> $12/yr.</p>
|
||||
</div>
|
||||
|
|
@ -11,95 +11,95 @@
|
|||
<div class="map-wrap">
|
||||
<svg id="worldmap" viewBox="0 0 1000 460" xmlns="http://www.w3.org/2000/svg">
|
||||
<image href="/worldmap.svg" x="0" y="0" width="1000" height="460"/>
|
||||
<circle cx="284.7" cy="143.8" r="4" fill="none" stroke="#22C55E" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.00s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.00s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="284.7" cy="143.8" r="4" fill="none" stroke="#22C55E" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.80s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="0.80s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="284.7" cy="143.8" r="4.5" fill="#22C55E" stroke="#0a1628" stroke-width="1.5"/>
|
||||
<text x="284.7" y="155.8" font-family="Inter,sans-serif" font-size="8.5" fill="#6ee7a0" text-anchor="middle" opacity="0.85">Washington D.C.</text>
|
||||
<circle cx="160.0" cy="143.1" r="4" fill="none" stroke="#22C55E" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.08s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.08s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="160.0" cy="143.1" r="4" fill="none" stroke="#22C55E" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.88s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="0.88s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="160.0" cy="143.1" r="4.5" fill="#22C55E" stroke="#0a1628" stroke-width="1.5"/>
|
||||
<text x="160.0" y="135.1" font-family="Inter,sans-serif" font-size="8.5" fill="#6ee7a0" text-anchor="middle" opacity="0.85">San Francisco</text>
|
||||
<circle cx="295.6" cy="122.8" r="4" fill="none" stroke="#22C55E" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.16s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.16s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="295.6" cy="122.8" r="4" fill="none" stroke="#22C55E" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.96s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="0.96s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="295.6" cy="122.8" r="4.5" fill="#22C55E" stroke="#0a1628" stroke-width="1.5"/>
|
||||
<text x="295.6" y="114.8" font-family="Inter,sans-serif" font-size="8.5" fill="#6ee7a0" text-anchor="middle" opacity="0.85">Montréal</text>
|
||||
<circle cx="224.7" cy="187.0" r="4" fill="none" stroke="#22C55E" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.24s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.24s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="224.7" cy="187.0" r="4" fill="none" stroke="#22C55E" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.04s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.04s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="224.7" cy="187.0" r="4.5" fill="#22C55E" stroke="#0a1628" stroke-width="1.5"/>
|
||||
<text x="224.7" y="199.0" font-family="Inter,sans-serif" font-size="8.5" fill="#6ee7a0" text-anchor="middle" opacity="0.85">Mexico City</text>
|
||||
<circle cx="294.2" cy="219.7" r="4" fill="none" stroke="#22C55E" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.32s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.32s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="294.2" cy="219.7" r="4" fill="none" stroke="#22C55E" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.12s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.12s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="294.2" cy="219.7" r="4.5" fill="#22C55E" stroke="#0a1628" stroke-width="1.5"/>
|
||||
<text x="294.2" y="231.7" font-family="Inter,sans-serif" font-size="8.5" fill="#6ee7a0" text-anchor="middle" opacity="0.85">Bogotá</text>
|
||||
<circle cx="370.6" cy="282.7" r="4" fill="none" stroke="#22C55E" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.40s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.40s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="370.6" cy="282.7" r="4" fill="none" stroke="#22C55E" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.20s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.20s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="370.6" cy="282.7" r="4.5" fill="#22C55E" stroke="#0a1628" stroke-width="1.5"/>
|
||||
<text x="370.6" y="294.7" font-family="Inter,sans-serif" font-size="8.5" fill="#6ee7a0" text-anchor="middle" opacity="0.85">São Paulo</text>
|
||||
<circle cx="303.9" cy="306.0" r="4" fill="none" stroke="#22C55E" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.48s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.48s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="303.9" cy="306.0" r="4" fill="none" stroke="#22C55E" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.28s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.28s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="303.9" cy="306.0" r="4.5" fill="#22C55E" stroke="#0a1628" stroke-width="1.5"/>
|
||||
<text x="303.9" y="318.0" font-family="Inter,sans-serif" font-size="8.5" fill="#6ee7a0" text-anchor="middle" opacity="0.85">Santiago</text>
|
||||
<circle cx="499.7" cy="106.0" r="4" fill="none" stroke="#22C55E" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.56s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.56s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="499.7" cy="106.0" r="4" fill="none" stroke="#22C55E" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.36s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.36s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="499.7" cy="106.0" r="4.5" fill="#22C55E" stroke="#0a1628" stroke-width="1.5"/>
|
||||
<text x="499.7" y="98.0" font-family="Inter,sans-serif" font-size="8.5" fill="#6ee7a0" text-anchor="middle" opacity="0.85">London</text>
|
||||
<circle cx="284.7" cy="143.8" r="4" fill="none" stroke="#7C3AED" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.00s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.00s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="284.7" cy="143.8" r="4" fill="none" stroke="#7C3AED" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.80s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="0.80s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="284.7" cy="143.8" r="4.5" fill="#7C3AED" stroke="#ffffff" stroke-width="1.5"/>
|
||||
<text x="284.7" y="155.8" font-family="Inter,sans-serif" font-size="8.5" fill="#6D28D9" text-anchor="middle" opacity="0.85">Washington D.C.</text>
|
||||
<circle cx="160.0" cy="143.1" r="4" fill="none" stroke="#7C3AED" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.08s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.08s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="160.0" cy="143.1" r="4" fill="none" stroke="#7C3AED" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.88s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="0.88s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="160.0" cy="143.1" r="4.5" fill="#7C3AED" stroke="#ffffff" stroke-width="1.5"/>
|
||||
<text x="160.0" y="135.1" font-family="Inter,sans-serif" font-size="8.5" fill="#6D28D9" text-anchor="middle" opacity="0.85">San Francisco</text>
|
||||
<circle cx="295.6" cy="122.8" r="4" fill="none" stroke="#7C3AED" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.16s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.16s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="295.6" cy="122.8" r="4" fill="none" stroke="#7C3AED" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.96s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="0.96s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="295.6" cy="122.8" r="4.5" fill="#7C3AED" stroke="#ffffff" stroke-width="1.5"/>
|
||||
<text x="295.6" y="114.8" font-family="Inter,sans-serif" font-size="8.5" fill="#6D28D9" text-anchor="middle" opacity="0.85">Montréal</text>
|
||||
<circle cx="224.7" cy="187.0" r="4" fill="none" stroke="#7C3AED" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.24s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.24s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="224.7" cy="187.0" r="4" fill="none" stroke="#7C3AED" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.04s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.04s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="224.7" cy="187.0" r="4.5" fill="#7C3AED" stroke="#ffffff" stroke-width="1.5"/>
|
||||
<text x="224.7" y="199.0" font-family="Inter,sans-serif" font-size="8.5" fill="#6D28D9" text-anchor="middle" opacity="0.85">Mexico City</text>
|
||||
<circle cx="294.2" cy="219.7" r="4" fill="none" stroke="#7C3AED" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.32s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.32s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="294.2" cy="219.7" r="4" fill="none" stroke="#7C3AED" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.12s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.12s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="294.2" cy="219.7" r="4.5" fill="#7C3AED" stroke="#ffffff" stroke-width="1.5"/>
|
||||
<text x="294.2" y="231.7" font-family="Inter,sans-serif" font-size="8.5" fill="#6D28D9" text-anchor="middle" opacity="0.85">Bogotá</text>
|
||||
<circle cx="370.6" cy="282.7" r="4" fill="none" stroke="#7C3AED" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.40s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.40s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="370.6" cy="282.7" r="4" fill="none" stroke="#7C3AED" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.20s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.20s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="370.6" cy="282.7" r="4.5" fill="#7C3AED" stroke="#ffffff" stroke-width="1.5"/>
|
||||
<text x="370.6" y="294.7" font-family="Inter,sans-serif" font-size="8.5" fill="#6D28D9" text-anchor="middle" opacity="0.85">São Paulo</text>
|
||||
<circle cx="303.9" cy="306.0" r="4" fill="none" stroke="#7C3AED" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.48s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.48s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="303.9" cy="306.0" r="4" fill="none" stroke="#7C3AED" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.28s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.28s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="303.9" cy="306.0" r="4.5" fill="#7C3AED" stroke="#ffffff" stroke-width="1.5"/>
|
||||
<text x="303.9" y="318.0" font-family="Inter,sans-serif" font-size="8.5" fill="#6D28D9" text-anchor="middle" opacity="0.85">Santiago</text>
|
||||
<circle cx="499.7" cy="106.0" r="4" fill="none" stroke="#7C3AED" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.56s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.56s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="499.7" cy="106.0" r="4" fill="none" stroke="#7C3AED" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.36s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.36s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="499.7" cy="106.0" r="4.5" fill="#7C3AED" stroke="#ffffff" stroke-width="1.5"/>
|
||||
<text x="499.7" y="98.0" font-family="Inter,sans-serif" font-size="8.5" fill="#6D28D9" text-anchor="middle" opacity="0.85">London</text>
|
||||
<circle cx="523.6" cy="117.6" r="5" fill="none" stroke="#D4AF37" stroke-width="2"><animate attributeName="r" values="5;18;5" dur="2.4s" begin="0.64s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.64s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="523.6" cy="117.6" r="5" fill="none" stroke="#D4AF37" stroke-width="1.5"><animate attributeName="r" values="5;18;5" dur="2.4s" begin="1.44s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.44s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="523.6" cy="117.6" r="6" fill="#D4AF37" stroke="#0a1628" stroke-width="2"/>
|
||||
<circle cx="523.6" cy="117.6" r="3" fill="#0a1628"/>
|
||||
<circle cx="523.6" cy="117.6" r="6" fill="#D4AF37" stroke="#ffffff" stroke-width="2"/>
|
||||
<circle cx="523.6" cy="117.6" r="3" fill="#ffffff"/>
|
||||
<text x="523.6" y="109.6" font-family="Inter,sans-serif" font-size="8.5" fill="#D4AF37" text-anchor="middle" opacity="0.85">Zürich</text>
|
||||
<circle cx="489.7" cy="136.4" r="4" fill="none" stroke="#22C55E" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.72s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.72s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="489.7" cy="136.4" r="4" fill="none" stroke="#22C55E" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.52s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.52s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="489.7" cy="136.4" r="4.5" fill="#22C55E" stroke="#0a1628" stroke-width="1.5"/>
|
||||
<text x="489.7" y="128.4" font-family="Inter,sans-serif" font-size="8.5" fill="#6ee7a0" text-anchor="middle" opacity="0.85">Madrid</text>
|
||||
<circle cx="550.3" cy="82.1" r="4" fill="none" stroke="#22C55E" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.80s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.80s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="550.3" cy="82.1" r="4" fill="none" stroke="#22C55E" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.60s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.60s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="550.3" cy="82.1" r="4.5" fill="#22C55E" stroke="#0a1628" stroke-width="1.5"/>
|
||||
<text x="550.3" y="74.1" font-family="Inter,sans-serif" font-size="8.5" fill="#6ee7a0" text-anchor="middle" opacity="0.85">Stockholm</text>
|
||||
<circle cx="580.3" cy="134.8" r="4" fill="none" stroke="#22C55E" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.88s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.88s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="580.3" cy="134.8" r="4" fill="none" stroke="#22C55E" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.68s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.68s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="580.3" cy="134.8" r="4.5" fill="#22C55E" stroke="#0a1628" stroke-width="1.5"/>
|
||||
<text x="580.3" y="126.8" font-family="Inter,sans-serif" font-size="8.5" fill="#6ee7a0" text-anchor="middle" opacity="0.85">Istanbul</text>
|
||||
<circle cx="653.6" cy="173.6" r="4" fill="none" stroke="#22C55E" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.96s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.96s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="653.6" cy="173.6" r="4" fill="none" stroke="#22C55E" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.76s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.76s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="653.6" cy="173.6" r="4.5" fill="#22C55E" stroke="#0a1628" stroke-width="1.5"/>
|
||||
<text x="653.6" y="165.6" font-family="Inter,sans-serif" font-size="8.5" fill="#6ee7a0" text-anchor="middle" opacity="0.85">Dubai</text>
|
||||
<circle cx="509.4" cy="215.7" r="4" fill="none" stroke="#22C55E" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.04s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="1.04s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="509.4" cy="215.7" r="4" fill="none" stroke="#22C55E" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.84s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.84s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="509.4" cy="215.7" r="4.5" fill="#22C55E" stroke="#0a1628" stroke-width="1.5"/>
|
||||
<text x="509.4" y="227.7" font-family="Inter,sans-serif" font-size="8.5" fill="#6ee7a0" text-anchor="middle" opacity="0.85">Lagos</text>
|
||||
<circle cx="602.2" cy="232.8" r="4" fill="none" stroke="#22C55E" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.12s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="1.12s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="602.2" cy="232.8" r="4" fill="none" stroke="#22C55E" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.92s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.92s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="602.2" cy="232.8" r="4.5" fill="#22C55E" stroke="#0a1628" stroke-width="1.5"/>
|
||||
<text x="602.2" y="244.8" font-family="Inter,sans-serif" font-size="8.5" fill="#6ee7a0" text-anchor="middle" opacity="0.85">Nairobi</text>
|
||||
<circle cx="551.1" cy="307.2" r="4" fill="none" stroke="#22C55E" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.20s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="1.20s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="551.1" cy="307.2" r="4" fill="none" stroke="#22C55E" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="2.00s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="2.00s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="551.1" cy="307.2" r="4.5" fill="#22C55E" stroke="#0a1628" stroke-width="1.5"/>
|
||||
<text x="551.1" y="319.2" font-family="Inter,sans-serif" font-size="8.5" fill="#6ee7a0" text-anchor="middle" opacity="0.85">Cape Town</text>
|
||||
<circle cx="702.5" cy="187.7" r="4" fill="none" stroke="#22C55E" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.28s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="1.28s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="702.5" cy="187.7" r="4" fill="none" stroke="#22C55E" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="2.08s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="2.08s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="702.5" cy="187.7" r="4.5" fill="#22C55E" stroke="#0a1628" stroke-width="1.5"/>
|
||||
<text x="702.5" y="179.7" font-family="Inter,sans-serif" font-size="8.5" fill="#6ee7a0" text-anchor="middle" opacity="0.85">Mumbai</text>
|
||||
<circle cx="788.3" cy="227.2" r="4" fill="none" stroke="#22C55E" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.36s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="1.36s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="788.3" cy="227.2" r="4" fill="none" stroke="#22C55E" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="2.16s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="2.16s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="788.3" cy="227.2" r="4.5" fill="#22C55E" stroke="#0a1628" stroke-width="1.5"/>
|
||||
<text x="788.3" y="239.2" font-family="Inter,sans-serif" font-size="8.5" fill="#6ee7a0" text-anchor="middle" opacity="0.85">Singapore</text>
|
||||
<circle cx="920.0" cy="307.2" r="4" fill="none" stroke="#22C55E" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.44s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="1.44s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="920.0" cy="307.2" r="4" fill="none" stroke="#22C55E" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="2.24s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="2.24s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="920.0" cy="307.2" r="4.5" fill="#22C55E" stroke="#0a1628" stroke-width="1.5"/>
|
||||
<text x="920.0" y="319.2" font-family="Inter,sans-serif" font-size="8.5" fill="#6ee7a0" text-anchor="middle" opacity="0.85">Sydney</text>
|
||||
<circle cx="888.1" cy="148.3" r="4" fill="none" stroke="#22C55E" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.52s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="1.52s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="888.1" cy="148.3" r="4" fill="none" stroke="#22C55E" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="2.32s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="2.32s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="888.1" cy="148.3" r="4.5" fill="#22C55E" stroke="#0a1628" stroke-width="1.5"/>
|
||||
<text x="888.1" y="140.3" font-family="Inter,sans-serif" font-size="8.5" fill="#6ee7a0" text-anchor="middle" opacity="0.85">Tokyo</text>
|
||||
<circle cx="852.5" cy="143.6" r="4" fill="none" stroke="#22C55E" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.60s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="1.60s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="852.5" cy="143.6" r="4" fill="none" stroke="#22C55E" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="2.40s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="2.40s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="852.5" cy="143.6" r="4.5" fill="#22C55E" stroke="#0a1628" stroke-width="1.5"/>
|
||||
<text x="852.5" y="135.6" font-family="Inter,sans-serif" font-size="8.5" fill="#6ee7a0" text-anchor="middle" opacity="0.85">Seoul</text>
|
||||
<circle cx="817.2" cy="180.3" r="4" fill="none" stroke="#22C55E" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.68s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="1.68s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="817.2" cy="180.3" r="4" fill="none" stroke="#22C55E" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="2.48s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="2.48s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="817.2" cy="180.3" r="4.5" fill="#22C55E" stroke="#0a1628" stroke-width="1.5"/>
|
||||
<text x="817.2" y="172.3" font-family="Inter,sans-serif" font-size="8.5" fill="#6ee7a0" text-anchor="middle" opacity="0.85">Hong Kong</text>
|
||||
<circle cx="489.7" cy="136.4" r="4" fill="none" stroke="#7C3AED" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.72s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.72s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="489.7" cy="136.4" r="4" fill="none" stroke="#7C3AED" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.52s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.52s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="489.7" cy="136.4" r="4.5" fill="#7C3AED" stroke="#ffffff" stroke-width="1.5"/>
|
||||
<text x="489.7" y="128.4" font-family="Inter,sans-serif" font-size="8.5" fill="#6D28D9" text-anchor="middle" opacity="0.85">Madrid</text>
|
||||
<circle cx="550.3" cy="82.1" r="4" fill="none" stroke="#7C3AED" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.80s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.80s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="550.3" cy="82.1" r="4" fill="none" stroke="#7C3AED" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.60s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.60s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="550.3" cy="82.1" r="4.5" fill="#7C3AED" stroke="#ffffff" stroke-width="1.5"/>
|
||||
<text x="550.3" y="74.1" font-family="Inter,sans-serif" font-size="8.5" fill="#6D28D9" text-anchor="middle" opacity="0.85">Stockholm</text>
|
||||
<circle cx="580.3" cy="134.8" r="4" fill="none" stroke="#7C3AED" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.88s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.88s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="580.3" cy="134.8" r="4" fill="none" stroke="#7C3AED" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.68s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.68s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="580.3" cy="134.8" r="4.5" fill="#7C3AED" stroke="#ffffff" stroke-width="1.5"/>
|
||||
<text x="580.3" y="126.8" font-family="Inter,sans-serif" font-size="8.5" fill="#6D28D9" text-anchor="middle" opacity="0.85">Istanbul</text>
|
||||
<circle cx="653.6" cy="173.6" r="4" fill="none" stroke="#7C3AED" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="0.96s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="0.96s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="653.6" cy="173.6" r="4" fill="none" stroke="#7C3AED" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.76s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.76s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="653.6" cy="173.6" r="4.5" fill="#7C3AED" stroke="#ffffff" stroke-width="1.5"/>
|
||||
<text x="653.6" y="165.6" font-family="Inter,sans-serif" font-size="8.5" fill="#6D28D9" text-anchor="middle" opacity="0.85">Dubai</text>
|
||||
<circle cx="509.4" cy="215.7" r="4" fill="none" stroke="#7C3AED" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.04s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="1.04s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="509.4" cy="215.7" r="4" fill="none" stroke="#7C3AED" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.84s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.84s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="509.4" cy="215.7" r="4.5" fill="#7C3AED" stroke="#ffffff" stroke-width="1.5"/>
|
||||
<text x="509.4" y="227.7" font-family="Inter,sans-serif" font-size="8.5" fill="#6D28D9" text-anchor="middle" opacity="0.85">Lagos</text>
|
||||
<circle cx="602.2" cy="232.8" r="4" fill="none" stroke="#7C3AED" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.12s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="1.12s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="602.2" cy="232.8" r="4" fill="none" stroke="#7C3AED" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.92s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="1.92s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="602.2" cy="232.8" r="4.5" fill="#7C3AED" stroke="#ffffff" stroke-width="1.5"/>
|
||||
<text x="602.2" y="244.8" font-family="Inter,sans-serif" font-size="8.5" fill="#6D28D9" text-anchor="middle" opacity="0.85">Nairobi</text>
|
||||
<circle cx="551.1" cy="307.2" r="4" fill="none" stroke="#7C3AED" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.20s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="1.20s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="551.1" cy="307.2" r="4" fill="none" stroke="#7C3AED" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="2.00s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="2.00s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="551.1" cy="307.2" r="4.5" fill="#7C3AED" stroke="#ffffff" stroke-width="1.5"/>
|
||||
<text x="551.1" y="319.2" font-family="Inter,sans-serif" font-size="8.5" fill="#6D28D9" text-anchor="middle" opacity="0.85">Cape Town</text>
|
||||
<circle cx="702.5" cy="187.7" r="4" fill="none" stroke="#7C3AED" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.28s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="1.28s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="702.5" cy="187.7" r="4" fill="none" stroke="#7C3AED" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="2.08s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="2.08s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="702.5" cy="187.7" r="4.5" fill="#7C3AED" stroke="#ffffff" stroke-width="1.5"/>
|
||||
<text x="702.5" y="179.7" font-family="Inter,sans-serif" font-size="8.5" fill="#6D28D9" text-anchor="middle" opacity="0.85">Mumbai</text>
|
||||
<circle cx="788.3" cy="227.2" r="4" fill="none" stroke="#7C3AED" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.36s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="1.36s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="788.3" cy="227.2" r="4" fill="none" stroke="#7C3AED" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="2.16s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="2.16s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="788.3" cy="227.2" r="4.5" fill="#7C3AED" stroke="#ffffff" stroke-width="1.5"/>
|
||||
<text x="788.3" y="239.2" font-family="Inter,sans-serif" font-size="8.5" fill="#6D28D9" text-anchor="middle" opacity="0.85">Singapore</text>
|
||||
<circle cx="920.0" cy="307.2" r="4" fill="none" stroke="#7C3AED" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.44s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="1.44s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="920.0" cy="307.2" r="4" fill="none" stroke="#7C3AED" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="2.24s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="2.24s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="920.0" cy="307.2" r="4.5" fill="#7C3AED" stroke="#ffffff" stroke-width="1.5"/>
|
||||
<text x="920.0" y="319.2" font-family="Inter,sans-serif" font-size="8.5" fill="#6D28D9" text-anchor="middle" opacity="0.85">Sydney</text>
|
||||
<circle cx="888.1" cy="148.3" r="4" fill="none" stroke="#7C3AED" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.52s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="1.52s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="888.1" cy="148.3" r="4" fill="none" stroke="#7C3AED" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="2.32s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="2.32s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="888.1" cy="148.3" r="4.5" fill="#7C3AED" stroke="#ffffff" stroke-width="1.5"/>
|
||||
<text x="888.1" y="140.3" font-family="Inter,sans-serif" font-size="8.5" fill="#6D28D9" text-anchor="middle" opacity="0.85">Tokyo</text>
|
||||
<circle cx="852.5" cy="143.6" r="4" fill="none" stroke="#7C3AED" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.60s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="1.60s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="852.5" cy="143.6" r="4" fill="none" stroke="#7C3AED" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="2.40s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="2.40s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="852.5" cy="143.6" r="4.5" fill="#7C3AED" stroke="#ffffff" stroke-width="1.5"/>
|
||||
<text x="852.5" y="135.6" font-family="Inter,sans-serif" font-size="8.5" fill="#6D28D9" text-anchor="middle" opacity="0.85">Seoul</text>
|
||||
<circle cx="817.2" cy="180.3" r="4" fill="none" stroke="#7C3AED" stroke-width="1.5"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="1.68s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.6;0;0.6" dur="2.4s" begin="1.68s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="817.2" cy="180.3" r="4" fill="none" stroke="#7C3AED" stroke-width="1"><animate attributeName="r" values="4;13;4" dur="2.4s" begin="2.48s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" begin="2.48s" repeatCount="indefinite"/></circle>
|
||||
<circle cx="817.2" cy="180.3" r="4.5" fill="#7C3AED" stroke="#ffffff" stroke-width="1.5"/>
|
||||
<text x="817.2" y="172.3" font-family="Inter,sans-serif" font-size="8.5" fill="#6D28D9" text-anchor="middle" opacity="0.85">Hong Kong</text>
|
||||
</svg>
|
||||
</div>
|
||||
<div class="map-gap"></div>
|
||||
|
|
@ -298,7 +298,7 @@
|
|||
<p class="mt-2 text-sm" style="color:#64748b">Community forum, April 2024</p>
|
||||
<hr class="divider mt-4 mb-4">
|
||||
<ul class="checklist">
|
||||
<li><span class="vaultname">clav<span class="n">itor</span></span>: No desktop app dependency. The extension calls the vault binary directly — no IPC, no sync layer, no unlock chain.</li>
|
||||
<li><span class="vaultname">clavitor</span>: No desktop app dependency. The extension calls the vault binary directly — no IPC, no sync layer, no unlock chain.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
@ -308,7 +308,7 @@
|
|||
<p class="mt-2 text-sm" style="color:#64748b">GitHub Issues, 2024</p>
|
||||
<hr class="divider mt-4 mb-4">
|
||||
<ul class="checklist">
|
||||
<li><span class="vaultname">clav<span class="n">itor</span></span>: Zero content scripts. The extension injects nothing into pages — fills via browser autofill API, on demand, when you ask.</li>
|
||||
<li><span class="vaultname">clavitor</span>: Zero content scripts. The extension injects nothing into pages — fills via browser autofill API, on demand, when you ask.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
@ -318,7 +318,7 @@
|
|||
<p class="mt-2 text-sm" style="color:#64748b">Hacker News, January 2023</p>
|
||||
<hr class="divider mt-4 mb-4">
|
||||
<ul class="checklist">
|
||||
<li><span class="vaultname">clav<span class="n">itor</span></span>: Credential and Identity fields are encrypted before they reach us. We mathematically cannot read them — and neither can anyone who breaches our servers.</li>
|
||||
<li><span class="vaultname">clavitor</span>: Credential and Identity fields are encrypted before they reach us. We mathematically cannot read them — and neither can anyone who breaches our servers.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
@ -328,7 +328,7 @@
|
|||
<p class="mt-2 text-sm" style="color:#64748b">Community forum, November 2022</p>
|
||||
<hr class="divider mt-4 mb-4">
|
||||
<ul class="checklist">
|
||||
<li><span class="vaultname">clav<span class="n">itor</span></span>: WebAuthn-first. Touch ID is the primary unlock. Session lives locally — no server-side token expiry forcing re-auth every few minutes.</li>
|
||||
<li><span class="vaultname">clavitor</span>: WebAuthn-first. Touch ID is the primary unlock. Session lives locally — no server-side token expiry forcing re-auth every few minutes.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
@ -338,7 +338,7 @@
|
|||
<p class="mt-2 text-sm" style="color:#64748b">Community forum</p>
|
||||
<hr class="divider mt-4 mb-4">
|
||||
<ul class="checklist">
|
||||
<li><span class="vaultname">clav<span class="n">itor</span></span>: LLM field mapping. The extension reads the form and asks the model which field is which — fills by intent, not by CSS selector guesswork.</li>
|
||||
<li><span class="vaultname">clavitor</span>: LLM field mapping. The extension reads the form and asks the model which field is which — fills by intent, not by CSS selector guesswork.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
@ -348,7 +348,7 @@
|
|||
<p class="mt-2 text-sm" style="color:#64748b">Community forum</p>
|
||||
<hr class="divider mt-4 mb-4">
|
||||
<ul class="checklist">
|
||||
<li><span class="vaultname">clav<span class="n">itor</span></span>: LLM field mapping matches by intent. Entries are indexed by URL — the right credential, every time.</li>
|
||||
<li><span class="vaultname">clavitor</span>: LLM field mapping matches by intent. Entries are indexed by URL — the right credential, every time.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
@ -364,7 +364,7 @@
|
|||
<h2 class="mb-4">Your vault needs to be everywhere you are.</h2>
|
||||
<p class="lead mb-3">A password manager that only works on your home network isn't a password manager. Your laptop moves. Your phone moves. Your agents run on servers in three time zones.</p>
|
||||
<p class="mb-3">Self-hosting means a server with a public IP, DNS, TLS certificates, uptime monitoring, and backups. That's not a weekend project — that's infrastructure.</p>
|
||||
<p class="mb-8">We run <span class="vaultname">clav<span class="n">itor</span></span> across regions on every continent. <s>$20</s> $12/yr. Your Credential and Identity keys never leave your browser — we cannot read your private fields. Not policy. Math.</p>
|
||||
<p class="mb-8">We run <span class="vaultname">clavitor</span> across regions on every continent. <s>$20</s> $12/yr. Your Credential and Identity keys never leave your browser — we cannot read your private fields. Not policy. Math.</p>
|
||||
<div class="btn-row">
|
||||
<a href="/hosted" class="btn btn-primary">Get hosted →</a>
|
||||
<a href="/install" class="btn btn-ghost">Self-host anyway</a>
|
||||
|
|
@ -11,14 +11,14 @@
|
|||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<!-- Hero SVG: L1/L2 split diagram -->
|
||||
<!-- Hero SVG: L2/L3 split diagram -->
|
||||
<svg viewBox="0 0 480 380" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<!-- Background -->
|
||||
<rect x="0" y="0" width="480" height="380" rx="12" fill="#111f38"/>
|
||||
<rect x="0" y="0" width="480" height="380" rx="12" fill="#f5f5f5"/>
|
||||
|
||||
<!-- Top labels -->
|
||||
<text x="130" y="35" font-family="JetBrains Mono, monospace" font-size="11" fill="#94a3b8" text-anchor="middle">AI Agent</text>
|
||||
<text x="350" y="35" font-family="JetBrains Mono, monospace" font-size="11" fill="#94a3b8" text-anchor="middle">You only</text>
|
||||
<text x="130" y="35" font-family="JetBrains Mono, monospace" font-size="11" fill="#737373" text-anchor="middle">AI Agent</text>
|
||||
<text x="350" y="35" font-family="JetBrains Mono, monospace" font-size="11" fill="#737373" text-anchor="middle">You only</text>
|
||||
|
||||
<!-- Arrows -->
|
||||
<path d="M130 42 L130 58" stroke="#22C55E" stroke-width="1.5" marker-end="url(#arrowGreen)"/>
|
||||
|
|
@ -28,78 +28,153 @@
|
|||
<marker id="arrowRed" markerWidth="8" markerHeight="6" refX="4" refY="3" orient="auto"><path d="M0,0 L4,3 L0,6" fill="none" stroke="#EF4444" stroke-width="1.5"/></marker>
|
||||
</defs>
|
||||
|
||||
<!-- L1 Column -->
|
||||
<!-- L2 Column (AI-readable) -->
|
||||
<rect x="30" y="65" width="200" height="260" rx="8" fill="none" stroke="#22C55E" stroke-width="1" stroke-opacity="0.3"/>
|
||||
<rect x="30" y="65" width="200" height="30" rx="8" fill="#22C55E" fill-opacity="0.1"/>
|
||||
<text x="130" y="85" font-family="JetBrains Mono, monospace" font-size="12" fill="#22C55E" text-anchor="middle" font-weight="600">L1 — AI can read</text>
|
||||
<text x="130" y="85" font-family="JetBrains Mono, monospace" font-size="12" fill="#22C55E" text-anchor="middle" font-weight="600">L2 — AI can read</text>
|
||||
|
||||
<!-- L1 items -->
|
||||
<!-- L2 items -->
|
||||
<g>
|
||||
<rect x="50" y="115" width="160" height="36" rx="6" fill="#0A1628"/>
|
||||
<text x="80" y="138" font-family="JetBrains Mono, monospace" font-size="11" fill="#d1d5db">github_token</text>
|
||||
<rect x="50" y="115" width="160" height="36" rx="6" fill="#ffffff"/>
|
||||
<text x="80" y="138" font-family="JetBrains Mono, monospace" font-size="11" fill="#525252">github_token</text>
|
||||
<circle cx="192" cy="133" r="8" fill="#22C55E" fill-opacity="0.15"/>
|
||||
<path d="M188 133 L190.5 135.5 L196 130" stroke="#22C55E" stroke-width="1.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="50" y="163" width="160" height="36" rx="6" fill="#0A1628"/>
|
||||
<text x="80" y="186" font-family="JetBrains Mono, monospace" font-size="11" fill="#d1d5db">ssh_key</text>
|
||||
<rect x="50" y="163" width="160" height="36" rx="6" fill="#ffffff"/>
|
||||
<text x="80" y="186" font-family="JetBrains Mono, monospace" font-size="11" fill="#525252">ssh_key</text>
|
||||
<circle cx="192" cy="181" r="8" fill="#22C55E" fill-opacity="0.15"/>
|
||||
<path d="M188 181 L190.5 183.5 L196 178" stroke="#22C55E" stroke-width="1.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="50" y="211" width="160" height="36" rx="6" fill="#0A1628"/>
|
||||
<text x="80" y="234" font-family="JetBrains Mono, monospace" font-size="11" fill="#d1d5db">totp_github</text>
|
||||
<rect x="50" y="211" width="160" height="36" rx="6" fill="#ffffff"/>
|
||||
<text x="80" y="234" font-family="JetBrains Mono, monospace" font-size="11" fill="#525252">totp_github</text>
|
||||
<circle cx="192" cy="229" r="8" fill="#22C55E" fill-opacity="0.15"/>
|
||||
<path d="M188 229 L190.5 231.5 L196 226" stroke="#22C55E" stroke-width="1.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="50" y="259" width="160" height="36" rx="6" fill="#0A1628"/>
|
||||
<text x="80" y="282" font-family="JetBrains Mono, monospace" font-size="11" fill="#d1d5db">oauth_slack</text>
|
||||
<rect x="50" y="259" width="160" height="36" rx="6" fill="#ffffff"/>
|
||||
<text x="80" y="282" font-family="JetBrains Mono, monospace" font-size="11" fill="#525252">oauth_slack</text>
|
||||
<circle cx="192" cy="277" r="8" fill="#22C55E" fill-opacity="0.15"/>
|
||||
<path d="M188 277 L190.5 279.5 L196 274" stroke="#22C55E" stroke-width="1.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
|
||||
<!-- L2 Column -->
|
||||
<!-- L3 Column (sealed) -->
|
||||
<rect x="250" y="65" width="200" height="260" rx="8" fill="none" stroke="#EF4444" stroke-width="1" stroke-opacity="0.3"/>
|
||||
<rect x="250" y="65" width="200" height="30" rx="8" fill="#EF4444" fill-opacity="0.1"/>
|
||||
<text x="350" y="85" font-family="JetBrains Mono, monospace" font-size="12" fill="#EF4444" text-anchor="middle" font-weight="600">L2 — you only</text>
|
||||
<text x="350" y="85" font-family="JetBrains Mono, monospace" font-size="12" fill="#EF4444" text-anchor="middle" font-weight="600">L3 — you only</text>
|
||||
|
||||
<!-- L2 items -->
|
||||
<!-- L3 items -->
|
||||
<g>
|
||||
<rect x="270" y="115" width="160" height="36" rx="6" fill="#0A1628"/>
|
||||
<text x="300" y="138" font-family="JetBrains Mono, monospace" font-size="11" fill="#d1d5db">credit_card</text>
|
||||
<rect x="270" y="115" width="160" height="36" rx="6" fill="#ffffff"/>
|
||||
<text x="300" y="138" font-family="JetBrains Mono, monospace" font-size="11" fill="#525252">credit_card</text>
|
||||
<rect x="408" y="125" width="16" height="16" rx="3" fill="#EF4444" fill-opacity="0.15"/>
|
||||
<path d="M413 131 L413 135 M416 131 L416 135 M411 133 L411 129 Q411 127 413 127 L416 127 Q418 127 418 129 L418 133 Z" stroke="#EF4444" stroke-width="1.2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="270" y="163" width="160" height="36" rx="6" fill="#0A1628"/>
|
||||
<text x="300" y="186" font-family="JetBrains Mono, monospace" font-size="11" fill="#d1d5db">cvv</text>
|
||||
<rect x="270" y="163" width="160" height="36" rx="6" fill="#ffffff"/>
|
||||
<text x="300" y="186" font-family="JetBrains Mono, monospace" font-size="11" fill="#525252">cvv</text>
|
||||
<rect x="408" y="173" width="16" height="16" rx="3" fill="#EF4444" fill-opacity="0.15"/>
|
||||
<path d="M413 179 L413 183 M416 179 L416 183 M411 181 L411 177 Q411 175 413 175 L416 175 Q418 175 418 177 L418 181 Z" stroke="#EF4444" stroke-width="1.2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="270" y="211" width="160" height="36" rx="6" fill="#0A1628"/>
|
||||
<text x="300" y="234" font-family="JetBrains Mono, monospace" font-size="11" fill="#d1d5db">passport</text>
|
||||
<rect x="270" y="211" width="160" height="36" rx="6" fill="#ffffff"/>
|
||||
<text x="300" y="234" font-family="JetBrains Mono, monospace" font-size="11" fill="#525252">passport</text>
|
||||
<rect x="408" y="221" width="16" height="16" rx="3" fill="#EF4444" fill-opacity="0.15"/>
|
||||
<path d="M413 227 L413 231 M416 227 L416 231 M411 229 L411 225 Q411 223 413 223 L416 223 Q418 223 418 225 L418 229 Z" stroke="#EF4444" stroke-width="1.2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="270" y="259" width="160" height="36" rx="6" fill="#0A1628"/>
|
||||
<text x="300" y="282" font-family="JetBrains Mono, monospace" font-size="11" fill="#d1d5db">ssn</text>
|
||||
<rect x="270" y="259" width="160" height="36" rx="6" fill="#ffffff"/>
|
||||
<text x="300" y="282" font-family="JetBrains Mono, monospace" font-size="11" fill="#525252">ssn</text>
|
||||
<rect x="408" y="269" width="16" height="16" rx="3" fill="#EF4444" fill-opacity="0.15"/>
|
||||
<path d="M413 275 L413 279 M416 275 L416 279 M411 277 L411 273 Q411 271 413 271 L416 271 Q418 271 418 273 L418 277 Z" stroke="#EF4444" stroke-width="1.2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
|
||||
<!-- Center vault icon -->
|
||||
<rect x="224" y="340" width="32" height="28" rx="4" fill="#111f38" stroke="#94a3b8" stroke-width="1"/>
|
||||
<circle cx="240" cy="352" r="3" fill="none" stroke="#94a3b8" stroke-width="1"/>
|
||||
<line x1="240" y1="355" x2="240" y2="360" stroke="#94a3b8" stroke-width="1"/>
|
||||
<rect x="224" y="340" width="32" height="28" rx="4" fill="#f5f5f5" stroke="#737373" stroke-width="1"/>
|
||||
<circle cx="240" cy="352" r="3" fill="none" stroke="#737373" stroke-width="1"/>
|
||||
<line x1="240" y1="355" x2="240" y2="360" stroke="#737373" stroke-width="1"/>
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr class="divider">
|
||||
|
||||
<!-- 3D Box Prototypes (TEMPORARY) -->
|
||||
<div class="section container">
|
||||
<h2 class="mb-4">Black box icon options</h2>
|
||||
<p class="lead mb-8">6 corners. Front face dominant, slight depth peek right + top.</p>
|
||||
<div style="display:flex;gap:48px;align-items:flex-end;flex-wrap:wrap">
|
||||
|
||||
<!-- Option A: Subtle depth, strong contrast -->
|
||||
<div style="text-align:center">
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<polygon points="4,15 58,15 58,73 4,73" fill="#0A0A0A"/>
|
||||
<polygon points="4,15 14,8 68,8 58,15" fill="#555"/>
|
||||
<polygon points="58,15 68,8 68,66 58,73" fill="#333"/>
|
||||
</svg>
|
||||
<p class="text-sm mt-3"><strong>A.</strong> Subtle</p>
|
||||
</div>
|
||||
|
||||
<!-- Option B: More depth, strong contrast -->
|
||||
<div style="text-align:center">
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<polygon points="4,18 54,18 54,74 4,74" fill="#0A0A0A"/>
|
||||
<polygon points="4,18 18,8 68,8 54,18" fill="#555"/>
|
||||
<polygon points="54,18 68,8 68,64 54,74" fill="#333"/>
|
||||
</svg>
|
||||
<p class="text-sm mt-3"><strong>B.</strong> More depth</p>
|
||||
</div>
|
||||
|
||||
<!-- Option C: Just a hair -->
|
||||
<div style="text-align:center">
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<polygon points="4,13 62,13 62,73 4,73" fill="#0A0A0A"/>
|
||||
<polygon points="4,13 11,8 69,8 62,13" fill="#555"/>
|
||||
<polygon points="62,13 69,8 69,68 62,73" fill="#333"/>
|
||||
</svg>
|
||||
<p class="text-sm mt-3"><strong>C.</strong> Just a hair</p>
|
||||
</div>
|
||||
|
||||
<!-- Option D: Very light top face -->
|
||||
<div style="text-align:center">
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<polygon points="4,15 58,15 58,73 4,73" fill="#0A0A0A"/>
|
||||
<polygon points="4,15 14,8 68,8 58,15" fill="#777"/>
|
||||
<polygon points="58,15 68,8 68,66 58,73" fill="#444"/>
|
||||
</svg>
|
||||
<p class="text-sm mt-3"><strong>D.</strong> Lighter top</p>
|
||||
</div>
|
||||
|
||||
<!-- Option E: A at icon size 40px -->
|
||||
<div style="text-align:center">
|
||||
<div style="width:40px;height:40px;display:inline-flex;align-items:center;justify-content:center">
|
||||
<svg width="40" height="40" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<polygon points="4,15 58,15 58,73 4,73" fill="#0A0A0A"/>
|
||||
<polygon points="4,15 14,8 68,8 58,15" fill="#555"/>
|
||||
<polygon points="58,15 68,8 68,66 58,73" fill="#333"/>
|
||||
</svg>
|
||||
</div>
|
||||
<p class="text-sm mt-3"><strong>E.</strong> A at 40px</p>
|
||||
</div>
|
||||
|
||||
<!-- Option F: Red variant at 40px -->
|
||||
<div style="text-align:center">
|
||||
<div style="width:40px;height:40px;display:inline-flex;align-items:center;justify-content:center">
|
||||
<svg width="40" height="40" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<polygon points="4,15 58,15 58,73 4,73" fill="#DC2626"/>
|
||||
<polygon points="4,15 14,8 68,8 58,15" fill="#F87171"/>
|
||||
<polygon points="58,15 68,8 68,66 58,73" fill="#B91C1C"/>
|
||||
</svg>
|
||||
</div>
|
||||
<p class="text-sm mt-3"><strong>F.</strong> Red at 40px</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr class="divider">
|
||||
|
||||
<!-- The Problem -->
|
||||
<div class="section container">
|
||||
<h2 class="mb-4">The problem</h2>
|
||||
|
|
@ -118,7 +193,7 @@
|
|||
<div class="card card-hover">
|
||||
<div class="feature-icon red"><svg fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.75 17L9 20l-1 1h8l-1-1-.75-3M3 13h18M5 17h14a2 2 0 002-2V5a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/></svg></div>
|
||||
<h3 class="mb-3">Agents need credentials — and 2FA</h3>
|
||||
<p>Your AI can't log in, pass two-factor, or rotate keys without access. <span class="vaultname">clav<span class="n">itor</span></span> lets it do all three — without exposing your credit card to the same pipeline.</p>
|
||||
<p>Your AI can't log in, pass two-factor, or rotate keys without access. <span class="vaultname">clavitor</span> lets it do all three — without exposing your credit card to the same pipeline.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -226,55 +301,55 @@
|
|||
<!-- Multi-agent SVG -->
|
||||
<svg viewBox="0 0 400 360" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<!-- Center vault -->
|
||||
<rect x="160" y="140" width="80" height="80" rx="12" fill="#111f38" stroke="#94a3b8" stroke-width="1.5"/>
|
||||
<text x="200" y="175" font-family="JetBrains Mono, monospace" font-size="10" fill="#94a3b8" text-anchor="middle">vault</text>
|
||||
<text x="200" y="195" font-family="JetBrains Mono, monospace" font-size="14" fill="white" text-anchor="middle" font-weight="600">1984</text>
|
||||
<rect x="160" y="140" width="80" height="80" rx="12" fill="#f5f5f5" stroke="#737373" stroke-width="1.5"/>
|
||||
<rect x="175" y="152" width="20" height="20" rx="0" fill="#0A0A0A"/>
|
||||
<text x="200" y="190" font-family="Figtree, sans-serif" font-size="10" fill="#0A0A0A" text-anchor="middle" font-weight="700" letter-spacing="0.25em">CLAVITOR</text>
|
||||
|
||||
<!-- Agent 1 — dev -->
|
||||
<circle cx="80" cy="60" r="32" fill="#22C55E" fill-opacity="0.08" stroke="#22C55E" stroke-width="1"/>
|
||||
<text x="80" y="56" font-family="JetBrains Mono, monospace" font-size="9" fill="#22C55E" text-anchor="middle">Agent 1</text>
|
||||
<text x="80" y="68" font-family="JetBrains Mono, monospace" font-size="8" fill="#94a3b8" text-anchor="middle">dev</text>
|
||||
<line x1="108" y1="80" x2="165" y2="145" stroke="#22C55E" stroke-width="1" stroke-opacity="0.4" stroke-dasharray="4 3"/>
|
||||
<circle cx="80" cy="60" r="32" fill="#0A0A0A" fill-opacity="0.08" stroke="#0A0A0A" stroke-width="1"/>
|
||||
<text x="80" y="56" font-family="JetBrains Mono, monospace" font-size="9" fill="#0A0A0A" text-anchor="middle">Agent 1</text>
|
||||
<text x="80" y="68" font-family="JetBrains Mono, monospace" font-size="8" fill="#737373" text-anchor="middle">dev</text>
|
||||
<line x1="108" y1="80" x2="165" y2="145" stroke="#0A0A0A" stroke-width="1" stroke-opacity="0.4" stroke-dasharray="4 3"/>
|
||||
|
||||
<!-- Agent 2 — social -->
|
||||
<circle cx="320" cy="60" r="32" fill="#22C55E" fill-opacity="0.08" stroke="#22C55E" stroke-width="1"/>
|
||||
<text x="320" y="56" font-family="JetBrains Mono, monospace" font-size="9" fill="#22C55E" text-anchor="middle">Agent 2</text>
|
||||
<text x="320" y="68" font-family="JetBrains Mono, monospace" font-size="8" fill="#94a3b8" text-anchor="middle">social</text>
|
||||
<line x1="292" y1="80" x2="235" y2="145" stroke="#22C55E" stroke-width="1" stroke-opacity="0.4" stroke-dasharray="4 3"/>
|
||||
<circle cx="320" cy="60" r="32" fill="#0A0A0A" fill-opacity="0.08" stroke="#0A0A0A" stroke-width="1"/>
|
||||
<text x="320" y="56" font-family="JetBrains Mono, monospace" font-size="9" fill="#0A0A0A" text-anchor="middle">Agent 2</text>
|
||||
<text x="320" y="68" font-family="JetBrains Mono, monospace" font-size="8" fill="#737373" text-anchor="middle">social</text>
|
||||
<line x1="292" y1="80" x2="235" y2="145" stroke="#0A0A0A" stroke-width="1" stroke-opacity="0.4" stroke-dasharray="4 3"/>
|
||||
|
||||
<!-- Agent 3 — finance -->
|
||||
<circle cx="50" cy="220" r="32" fill="#22C55E" fill-opacity="0.08" stroke="#22C55E" stroke-width="1"/>
|
||||
<text x="50" y="216" font-family="JetBrains Mono, monospace" font-size="9" fill="#22C55E" text-anchor="middle">Agent 3</text>
|
||||
<text x="50" y="228" font-family="JetBrains Mono, monospace" font-size="8" fill="#94a3b8" text-anchor="middle">finance</text>
|
||||
<line x1="78" y1="204" x2="164" y2="190" stroke="#22C55E" stroke-width="1" stroke-opacity="0.4" stroke-dasharray="4 3"/>
|
||||
<circle cx="50" cy="220" r="32" fill="#0A0A0A" fill-opacity="0.08" stroke="#0A0A0A" stroke-width="1"/>
|
||||
<text x="50" y="216" font-family="JetBrains Mono, monospace" font-size="9" fill="#0A0A0A" text-anchor="middle">Agent 3</text>
|
||||
<text x="50" y="228" font-family="JetBrains Mono, monospace" font-size="8" fill="#737373" text-anchor="middle">finance</text>
|
||||
<line x1="78" y1="204" x2="164" y2="190" stroke="#0A0A0A" stroke-width="1" stroke-opacity="0.4" stroke-dasharray="4 3"/>
|
||||
|
||||
<!-- Agent 4 — infra -->
|
||||
<circle cx="350" cy="220" r="32" fill="#22C55E" fill-opacity="0.08" stroke="#22C55E" stroke-width="1"/>
|
||||
<text x="350" y="216" font-family="JetBrains Mono, monospace" font-size="9" fill="#22C55E" text-anchor="middle">Agent 4</text>
|
||||
<text x="350" y="228" font-family="JetBrains Mono, monospace" font-size="8" fill="#94a3b8" text-anchor="middle">infra</text>
|
||||
<line x1="322" y1="204" x2="236" y2="190" stroke="#22C55E" stroke-width="1" stroke-opacity="0.4" stroke-dasharray="4 3"/>
|
||||
<circle cx="350" cy="220" r="32" fill="#0A0A0A" fill-opacity="0.08" stroke="#0A0A0A" stroke-width="1"/>
|
||||
<text x="350" y="216" font-family="JetBrains Mono, monospace" font-size="9" fill="#0A0A0A" text-anchor="middle">Agent 4</text>
|
||||
<text x="350" y="228" font-family="JetBrains Mono, monospace" font-size="8" fill="#737373" text-anchor="middle">infra</text>
|
||||
<line x1="322" y1="204" x2="236" y2="190" stroke="#0A0A0A" stroke-width="1" stroke-opacity="0.4" stroke-dasharray="4 3"/>
|
||||
|
||||
<!-- Agent 5 — deploy -->
|
||||
<circle cx="200" cy="330" r="32" fill="#22C55E" fill-opacity="0.08" stroke="#22C55E" stroke-width="1"/>
|
||||
<text x="200" y="326" font-family="JetBrains Mono, monospace" font-size="9" fill="#22C55E" text-anchor="middle">Agent 5</text>
|
||||
<text x="200" y="338" font-family="JetBrains Mono, monospace" font-size="8" fill="#94a3b8" text-anchor="middle">deploy</text>
|
||||
<line x1="200" y1="298" x2="200" y2="220" stroke="#22C55E" stroke-width="1" stroke-opacity="0.4" stroke-dasharray="4 3"/>
|
||||
<circle cx="200" cy="330" r="32" fill="#0A0A0A" fill-opacity="0.08" stroke="#0A0A0A" stroke-width="1"/>
|
||||
<text x="200" y="326" font-family="JetBrains Mono, monospace" font-size="9" fill="#0A0A0A" text-anchor="middle">Agent 5</text>
|
||||
<text x="200" y="338" font-family="JetBrains Mono, monospace" font-size="8" fill="#737373" text-anchor="middle">deploy</text>
|
||||
<line x1="200" y1="298" x2="200" y2="220" stroke="#0A0A0A" stroke-width="1" stroke-opacity="0.4" stroke-dasharray="4 3"/>
|
||||
|
||||
<!-- Scope labels -->
|
||||
<rect x="10" y="98" width="140" height="20" rx="4" fill="#0A1628"/>
|
||||
<text x="80" y="112" font-family="JetBrains Mono, monospace" font-size="7.5" fill="#94a3b8" text-anchor="middle">github ssh gitlab</text>
|
||||
<rect x="10" y="98" width="140" height="20" rx="4" fill="#ffffff"/>
|
||||
<text x="80" y="112" font-family="JetBrains Mono, monospace" font-size="7.5" fill="#737373" text-anchor="middle">github ssh gitlab</text>
|
||||
|
||||
<rect x="250" y="98" width="140" height="20" rx="4" fill="#0A1628"/>
|
||||
<text x="320" y="112" font-family="JetBrains Mono, monospace" font-size="7.5" fill="#94a3b8" text-anchor="middle">twitter slack discord</text>
|
||||
<rect x="250" y="98" width="140" height="20" rx="4" fill="#ffffff"/>
|
||||
<text x="320" y="112" font-family="JetBrains Mono, monospace" font-size="7.5" fill="#737373" text-anchor="middle">twitter slack discord</text>
|
||||
|
||||
<rect x="0" y="256" width="100" height="20" rx="4" fill="#0A1628"/>
|
||||
<text x="50" y="270" font-family="JetBrains Mono, monospace" font-size="7.5" fill="#94a3b8" text-anchor="middle">stripe plaid</text>
|
||||
<rect x="0" y="256" width="100" height="20" rx="4" fill="#ffffff"/>
|
||||
<text x="50" y="270" font-family="JetBrains Mono, monospace" font-size="7.5" fill="#737373" text-anchor="middle">stripe plaid</text>
|
||||
|
||||
<rect x="300" y="256" width="100" height="20" rx="4" fill="#0A1628"/>
|
||||
<text x="350" y="270" font-family="JetBrains Mono, monospace" font-size="7.5" fill="#94a3b8" text-anchor="middle">aws k8s docker</text>
|
||||
<rect x="300" y="256" width="100" height="20" rx="4" fill="#ffffff"/>
|
||||
<text x="350" y="270" font-family="JetBrains Mono, monospace" font-size="7.5" fill="#737373" text-anchor="middle">aws k8s docker</text>
|
||||
|
||||
<rect x="150" y="296" width="100" height="16" rx="4" fill="#0A1628"/>
|
||||
<text x="200" y="308" font-family="JetBrains Mono, monospace" font-size="7.5" fill="#94a3b8" text-anchor="middle">vercel netlify</text>
|
||||
<rect x="150" y="296" width="100" height="16" rx="4" fill="#ffffff"/>
|
||||
<text x="200" y="308" font-family="JetBrains Mono, monospace" font-size="7.5" fill="#737373" text-anchor="middle">vercel netlify</text>
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -295,7 +370,7 @@
|
|||
<div class="card card-hover">
|
||||
<p class="label accent mb-3">Extension</p>
|
||||
<h3 class="mb-2">For humans in a browser</h3>
|
||||
<p>Autofill passwords, generate 2FA codes inline, and unlock L2 fields with Touch ID — without leaving the page you're on.</p>
|
||||
<p>Autofill passwords, generate 2FA codes inline, and unlock L3 fields with Touch ID — without leaving the page you're on.</p>
|
||||
</div>
|
||||
<div class="card card-hover">
|
||||
<p class="label accent mb-3">CLI</p>
|
||||
|
|
@ -326,7 +401,7 @@
|
|||
<p class="mt-2"><a href="https://www.1password.community/discussions/1password/constantly-being-asked-to-unlock-with-password/90511" target="_blank" rel="noopener">— notnotjake, April 2024 ↗</a></p>
|
||||
<hr class="divider mt-4 mb-4">
|
||||
<ul class="checklist">
|
||||
<li><span class="vaultname">clav<span class="n">itor</span></span>: No desktop app dependency. The extension talks directly to the local vault binary — no IPC, no sync, no unlock chains.</li>
|
||||
<li><span class="vaultname">clavitor</span>: No desktop app dependency. The extension talks directly to the local vault binary — no IPC, no sync, no unlock chains.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
@ -336,7 +411,7 @@
|
|||
<p class="mt-2"><a href="https://github.com/bitwarden/clients/issues/11077" target="_blank" rel="noopener">— julianw1011, 2024 ↗</a></p>
|
||||
<hr class="divider mt-4 mb-4">
|
||||
<ul class="checklist">
|
||||
<li><span class="vaultname">clav<span class="n">itor</span></span>: Zero content scripts. The extension injects nothing into pages — it fills via the browser autofill API only when you ask.</li>
|
||||
<li><span class="vaultname">clavitor</span>: Zero content scripts. The extension injects nothing into pages — it fills via the browser autofill API only when you ask.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
@ -346,7 +421,7 @@
|
|||
<p class="mt-2"><a href="https://news.ycombinator.com/item?id=34516275" target="_blank" rel="noopener">— intunderflow, January 2023 ↗</a></p>
|
||||
<hr class="divider mt-4 mb-4">
|
||||
<ul class="checklist">
|
||||
<li><span class="vaultname">clav<span class="n">itor</span></span>: Self-host or use hosted with L2 encryption — we mathematically cannot read your private fields. No vault data to breach.</li>
|
||||
<li><span class="vaultname">clavitor</span>: Self-host or use hosted with L3 encryption — we mathematically cannot read your private fields. No vault data to breach.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
@ -356,7 +431,7 @@
|
|||
<p class="mt-2"><a href="https://www.1password.community/discussions/1password/why-does-the-chrome-extension-keep-asking-for-my-password-every-10-mins-rather-t/74253" target="_blank" rel="noopener">— Anonymous (Former Member), November 2022 ↗</a></p>
|
||||
<hr class="divider mt-4 mb-4">
|
||||
<ul class="checklist">
|
||||
<li><span class="vaultname">clav<span class="n">itor</span></span>: WebAuthn-first. Touch ID is the primary unlock. Session lives locally — no server-side expiry forcing re-auth.</li>
|
||||
<li><span class="vaultname">clavitor</span>: WebAuthn-first. Touch ID is the primary unlock. Session lives locally — no server-side expiry forcing re-auth.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
@ -367,7 +442,7 @@
|
|||
<p class="mt-2"><a href="https://community.bitwarden.com/t/auto-fill-is-pasting-password-in-website-search-box/44045" target="_blank" rel="noopener">— xru1nib5 ↗</a></p>
|
||||
<hr class="divider mt-4 mb-4">
|
||||
<ul class="checklist">
|
||||
<li><span class="vaultname">clav<span class="n">itor</span></span>: LLM field mapping. The extension reads the form, asks the model which field is which — fills by intent, not by CSS selector.</li>
|
||||
<li><span class="vaultname">clavitor</span>: LLM field mapping. The extension reads the form, asks the model which field is which — fills by intent, not by CSS selector.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
@ -377,7 +452,7 @@
|
|||
<p class="mt-2"><a href="https://community.bitwarden.com/t/autofill-is-wrong-saved-password-is-right/32090" target="_blank" rel="noopener">— gentlezacharias ↗</a></p>
|
||||
<hr class="divider mt-4 mb-4">
|
||||
<ul class="checklist">
|
||||
<li><span class="vaultname">clav<span class="n">itor</span></span>: LLM field mapping matches by intent. Entries are indexed by URL — the right credential for the right site, every time.</li>
|
||||
<li><span class="vaultname">clavitor</span>: LLM field mapping matches by intent. Entries are indexed by URL — the right credential for the right site, every time.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
@ -393,7 +468,7 @@
|
|||
<h2 class="mb-4">Your vault needs to be everywhere you are.</h2>
|
||||
<p class="lead mb-3">A password manager that only works on your home network isn't a password manager. Your laptop moves. Your phone moves. Your browser extension needs your vault at the coffee shop, on the plane, at the client's office.</p>
|
||||
<p class="mb-3">Self-hosting that means a server with a public IP, DNS, TLS certificates, uptime monitoring, and backups. That's not a weekend project — that's infrastructure.</p>
|
||||
<p class="mb-8">We run <span class="vaultname">clav<span class="n">itor</span></span> across 22 regions on every continent. <s>$20</s> $12/yr. Your Sealed keys never leave your browser — we mathematically cannot read your private fields.</p>
|
||||
<p class="mb-8">We run <span class="vaultname">clavitor</span> across 22 regions on every continent. <s>$20</s> $12/yr. Your Sealed keys never leave your browser — we mathematically cannot read your private fields.</p>
|
||||
<div class="btn-row">
|
||||
<a href="/hosted" class="btn btn-primary">Get hosted →</a>
|
||||
<a href="/install" class="btn btn-ghost">Self-host anyway</a>
|
||||
|
|
@ -464,7 +539,7 @@
|
|||
const dot = document.createElementNS(ns, 'circle');
|
||||
dot.setAttribute('cx', x); dot.setAttribute('cy', y);
|
||||
dot.setAttribute('r', '4'); dot.setAttribute('fill', '#EF4444');
|
||||
dot.setAttribute('stroke', '#0a1628'); dot.setAttribute('stroke-width', '1.5');
|
||||
dot.setAttribute('stroke', '#ffffff'); dot.setAttribute('stroke-width', '1.5');
|
||||
|
||||
// Label
|
||||
const label = document.createElementNS(ns, 'text');
|
||||
|
|
@ -495,15 +570,14 @@
|
|||
const region = d.region || '';
|
||||
|
||||
const card = document.createElement('div');
|
||||
card.className = 'rounded-xl p-5 text-center card-hover';
|
||||
card.className = 'visitor-card card-hover';
|
||||
card.setAttribute('data-lon', d.longitude);
|
||||
card.style.cssText = 'background:#1f0a0a;border:1px solid rgba(239,68,68,0.35)';
|
||||
card.innerHTML = `
|
||||
<div class="text-2xl mb-2">${flag}</div>
|
||||
<div class="text-white font-semibold text-sm">${label}</div>
|
||||
<div class="text-gray-500 text-xs mb-2">${region}</div>
|
||||
<div class="flex items-center justify-center gap-1.5 text-xs text-gray-400">
|
||||
<span class="w-1.5 h-1.5 rounded-full inline-block" style="background:#EF4444;opacity:0.6"></span>You are here
|
||||
<div class="visitor-flag">${flag}</div>
|
||||
<div class="visitor-label">${label}</div>
|
||||
<div class="visitor-region">${region}</div>
|
||||
<div class="visitor-status">
|
||||
<span class="visitor-dot"></span>You are here
|
||||
</div>`;
|
||||
|
||||
// Expand to 5 columns
|
||||
|
|
@ -1,6 +1,4 @@
|
|||
{{define "install-head"}}
|
||||
<style>.step-num{width:2rem;height:2rem;border-radius:50%;background:rgba(34,197,94,0.1);color:var(--accent);font-size:0.875rem;font-weight:600;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-family:var(--font-mono)}.step{display:flex;gap:1.25rem;margin-bottom:3rem}.step-body{flex:1;min-width:0}.step-body h2{margin-bottom:0.75rem}.step-body p{margin-bottom:1rem}.dl-links{display:flex;flex-wrap:wrap;gap:0.5rem;margin-top:0.75rem}</style>
|
||||
{{end}}
|
||||
{{define "install-head"}}{{end}}
|
||||
|
||||
{{define "install"}}
|
||||
<div class="hero container">
|
||||
|
|
@ -11,7 +9,7 @@
|
|||
|
||||
<hr class="divider">
|
||||
|
||||
<div class="section container" style="max-width:800px">
|
||||
<div class="section container narrow">
|
||||
|
||||
<div class="step">
|
||||
<div class="step-num">1</div>
|
||||
|
|
@ -19,11 +17,11 @@
|
|||
<h2>Download</h2>
|
||||
<p>The install script detects your OS and architecture, downloads the latest release, and puts it in your PATH.</p>
|
||||
<div class="code-block"><span class="prompt">$</span> curl -fsSL clavitor.com/install.sh | sh</div>
|
||||
<p class="mt-3" style="font-size:0.875rem">Or download directly:</p>
|
||||
<p class="mt-3 text-sm">Or download directly:</p>
|
||||
<div class="dl-links">
|
||||
<a href="https://github.com/clavitor/clavitor/releases/latest/download/clavitor-linux-amd64" class="btn btn-ghost" style="font-family:var(--font-mono);font-size:0.75rem">linux/amd64</a>
|
||||
<a href="https://github.com/clavitor/clavitor/releases/latest/download/clavitor-darwin-arm64" class="btn btn-ghost" style="font-family:var(--font-mono);font-size:0.75rem">darwin/arm64</a>
|
||||
<a href="https://github.com/clavitor/clavitor/releases/latest/download/clavitor-darwin-amd64" class="btn btn-ghost" style="font-family:var(--font-mono);font-size:0.75rem">darwin/amd64</a>
|
||||
<a href="https://github.com/clavitor/clavitor/releases/latest/download/clavitor-linux-amd64" class="btn btn-ghost btn-sm btn-mono">linux/amd64</a>
|
||||
<a href="https://github.com/clavitor/clavitor/releases/latest/download/clavitor-darwin-arm64" class="btn btn-ghost btn-sm btn-mono">darwin/arm64</a>
|
||||
<a href="https://github.com/clavitor/clavitor/releases/latest/download/clavitor-darwin-amd64" class="btn btn-ghost btn-sm btn-mono">darwin/amd64</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -61,17 +59,17 @@
|
|||
<h2>Configure MCP</h2>
|
||||
<p>Point your AI assistant at the vault. Works with Claude Code, Cursor, Codex, or any MCP-compatible client.</p>
|
||||
<p class="label mb-3">~/.claude/mcp.json</p>
|
||||
<div class="code-block"><pre style="margin:0;color:var(--muted)">{
|
||||
<div class="code-block"><pre>{
|
||||
"mcpServers": {
|
||||
"clavitor": {
|
||||
"url": "http://localhost:1984/mcp",
|
||||
"headers": {
|
||||
"Authorization": "Bearer <span style="color:var(--accent)">YOUR_MCP_TOKEN</span>"
|
||||
"Authorization": "Bearer <span class="highlight">YOUR_MCP_TOKEN</span>"
|
||||
}
|
||||
}
|
||||
}
|
||||
}</pre></div>
|
||||
<p class="mt-3" style="font-size:0.875rem">Generate an MCP token from the web UI at <code>http://localhost:1984</code> after first run.</p>
|
||||
<p class="mt-3 text-sm">Generate an MCP token from the web UI at <code>http://localhost:1984</code> after first run.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
@ -94,7 +92,7 @@
|
|||
<h2 class="mb-4">Run as a service</h2>
|
||||
<p class="mb-4">For always-on availability, run clavitor as a systemd service.</p>
|
||||
<p class="label mb-3">/etc/systemd/system/clavitor.service</p>
|
||||
<div class="code-block mb-4"><pre style="margin:0;color:var(--muted)">[Unit]
|
||||
<div class="code-block mb-4"><pre>[Unit]
|
||||
Description=clavitor
|
||||
After=network.target
|
||||
|
||||
|
|
@ -113,7 +111,7 @@ WantedBy=multi-user.target</pre></div>
|
|||
<h2 class="mb-4">Expose to the internet</h2>
|
||||
<p class="mb-4">Put clavitor behind Caddy for TLS and remote access.</p>
|
||||
<p class="label mb-3">Caddyfile</p>
|
||||
<div class="code-block"><pre style="margin:0;color:var(--muted)">vault.yourdomain.com {
|
||||
<div class="code-block"><pre>vault.yourdomain.com {
|
||||
reverse_proxy localhost:1984
|
||||
}</pre></div>
|
||||
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
<hr class="divider">
|
||||
|
||||
<div class="section container">
|
||||
<div class="grid-2" style="max-width:900px;margin:0 auto">
|
||||
<div class="grid-2 price-grid">
|
||||
|
||||
<div class="price-card">
|
||||
<p class="label mb-4">Self-hosted</p>
|
||||
|
|
@ -19,8 +19,8 @@
|
|||
<ul class="checklist"><li>Agent & Sealed field-level encryption</li><li>WebAuthn PRF (Sealed biometric encryption)</li><li>MCP server for AI agents</li><li>Scoped MCP tokens (multi-agent)</li><li>TOTP generation via MCP</li><li>Browser extension (Chrome, Firefox)</li><li>Import from Bitwarden / 1Password</li><li>LLM-powered field classification</li><li>Unlimited entries</li><li>Full source code (MIT)</li></ul>
|
||||
</div>
|
||||
|
||||
<div class="price-card featured" style="position:relative">
|
||||
<span class="badge recommended" style="position:absolute;top:-0.75rem;right:1.5rem">Recommended</span>
|
||||
<div class="price-card featured">
|
||||
<span class="badge recommended price-badge">Recommended</span>
|
||||
<p class="label accent mb-4">Hosted</p>
|
||||
<div class="price-amount mb-2"><s>$20</s> $12<span class="price-period">/year</span></div>
|
||||
<p class="mb-6">7-day money-back, no questions, instant.</p>
|
||||
|
|
@ -34,9 +34,9 @@
|
|||
|
||||
<hr class="divider">
|
||||
|
||||
<div class="section container" style="max-width:720px">
|
||||
<p class="label mb-6" style="text-align:center">Common questions</p>
|
||||
<h2 class="mb-8" style="text-align:center">FAQ</h2>
|
||||
<div class="section container prose-width">
|
||||
<p class="label mb-6 text-center">Common questions</p>
|
||||
<h2 class="mb-8 text-center">FAQ</h2>
|
||||
|
||||
<div class="prose">
|
||||
<h3>Why so cheap?</h3>
|
||||
|
|
@ -3,13 +3,13 @@
|
|||
<p class="label mb-3">Legal</p>
|
||||
<h1 class="mb-4">Privacy Policy</h1>
|
||||
<p class="lead mb-4">No analytics. No tracking. No data sales.</p>
|
||||
<p class="mb-4" style="font-size:0.875rem;color:var(--subtle)">Last updated: February 2026</p>
|
||||
<p class="mb-4 text-sm text-tertiary">Last updated: February 2026</p>
|
||||
</div>
|
||||
|
||||
<hr class="divider">
|
||||
|
||||
<div class="section container">
|
||||
<div class="prose" style="max-width:720px">
|
||||
<div class="prose prose-width">
|
||||
|
||||
<h2>The short version</h2>
|
||||
<ul>
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
</div>
|
||||
|
||||
<div class="card">
|
||||
<p class="mb-4">"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."</p>
|
||||
<p class="mb-4">"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."</p>
|
||||
<p class="label">@homelab_nerd · Hacker News · 2024</p>
|
||||
</div>
|
||||
|
||||
|
|
@ -37,9 +37,9 @@
|
|||
|
||||
</div>
|
||||
|
||||
<p class="mt-8" style="font-size:0.875rem;color:var(--subtle)">
|
||||
<p class="mt-8 text-sm text-tertiary">
|
||||
All quotes verbatim from public posts. URLs verified.
|
||||
<a href="https://github.com/johanjongsma/clavitor/wiki/sources" style="color:var(--accent)">View sources →</a>
|
||||
<a href="https://github.com/johanjongsma/clavitor/wiki/sources" class="text-accent">View sources →</a>
|
||||
</p>
|
||||
</div>
|
||||
{{end}}
|
||||
|
|
@ -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; }
|
||||
}
|
||||
|
|
@ -13,8 +13,8 @@
|
|||
<div class="container" style="padding-top:80px">
|
||||
<div style="padding: 5rem 0 2rem">
|
||||
<p class="label accent mb-3">Design System</p>
|
||||
<h1>clav<span style="color:var(--accent)">itor</span> Styleguide</h1>
|
||||
<p class="lead mt-4">Single source of truth. One stylesheet: <code style="font-family:var(--font-mono);color:var(--accent)">vault1984.css</code>. No inline styles in HTML.</p>
|
||||
<h1>clavitor Styleguide</h1>
|
||||
<p class="lead mt-4">Single source of truth. One stylesheet: <code style="font-family:var(--font-mono);color:var(--accent)">clavitor.css</code>. No inline styles in HTML.</p>
|
||||
</div>
|
||||
|
||||
<!-- COLORS -->
|
||||
|
|
@ -55,7 +55,7 @@
|
|||
<p class="label accent mb-2">label.accent</p>
|
||||
<p class="label gold mb-2">label.gold</p>
|
||||
<p class="label red mb-2">label.red</p>
|
||||
<p class="mt-4"><span class="vaultname">clav<span class="n">itor</span></span> — vaultname in body text</p>
|
||||
<p class="mt-4"><span class="vaultname">clavitor</span> — vaultname in body text</p>
|
||||
</div>
|
||||
|
||||
<!-- CARDS -->
|
||||
|
|
@ -2,13 +2,13 @@
|
|||
<div class="hero container">
|
||||
<p class="label mb-3">Legal</p>
|
||||
<h1 class="mb-4">Terms of Service</h1>
|
||||
<p class="mb-4" style="font-size:0.875rem;color:var(--subtle)">Last updated: February 2026</p>
|
||||
<p class="mb-4 text-sm text-tertiary">Last updated: February 2026</p>
|
||||
</div>
|
||||
|
||||
<hr class="divider">
|
||||
|
||||
<div class="section container">
|
||||
<div class="prose" style="max-width:720px">
|
||||
<div class="prose prose-width">
|
||||
|
||||
<h2>1. Acceptance</h2>
|
||||
<p>By using clavitor (the "Service"), you agree to these terms. If you don't agree, don't use the Service.</p>
|
||||
|
Before Width: | Height: | Size: 130 KiB After Width: | Height: | Size: 130 KiB |
|
|
@ -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; }
|
||||
|
|
@ -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; }
|
||||
```
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Font Test</title>
|
||||
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&family=Fira+Code:wght@400;500&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
body { font-family: system-ui; padding: 40px; }
|
||||
.test { font-size: 24px; margin: 20px 0; padding: 20px; background: #f5f5f5; }
|
||||
.jetbrains { font-family: 'JetBrains Mono', monospace; }
|
||||
.fira { font-family: 'Fira Code', monospace; }
|
||||
.system { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Font Loading Test</h2>
|
||||
<div class="test jetbrains">JetBrains Mono: $ clavitor deploy</div>
|
||||
<div class="test fira">Fira Code: $ clavitor deploy</div>
|
||||
<div class="test system">System Mono: $ clavitor deploy</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,225 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Clavitor — Deep Coral + General Sans</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=General+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
:root {
|
||||
--brand-black: #0A0A0A;
|
||||
--brand-accent: #EA580C;
|
||||
--brand-accent-light: #F97316;
|
||||
--brand-accent-dark: #C2410C;
|
||||
|
||||
--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;
|
||||
|
||||
--success: #16A34A;
|
||||
--warning: #CA8A04;
|
||||
--error: #DC2626;
|
||||
|
||||
--font-family: "General Sans", system-ui, sans-serif;
|
||||
|
||||
--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;
|
||||
|
||||
--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;
|
||||
}
|
||||
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 48px 24px; }
|
||||
.section { margin-bottom: 64px; }
|
||||
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
|
||||
.flex-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
|
||||
.flex-col { display: flex; flex-direction: column; gap: 12px; }
|
||||
|
||||
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); }
|
||||
|
||||
.wordmark { font-size: 18px; font-weight: 600; letter-spacing: 0.5em; text-transform: uppercase; }
|
||||
.wordmark-lg { font-size: 32px; font-weight: 600; letter-spacing: 0.5em; text-transform: uppercase; }
|
||||
|
||||
.brand-block { display: flex; align-items: center; gap: 16px; margin: 32px 0; }
|
||||
.black-square { width: 64px; height: 64px; background: var(--brand-black); }
|
||||
|
||||
.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; }
|
||||
|
||||
.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; }
|
||||
|
||||
.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(234, 88, 12, 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); }
|
||||
|
||||
.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; }
|
||||
|
||||
.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); }
|
||||
|
||||
.alert { display: flex; gap: 12px; padding: 16px; border-radius: 12px; }
|
||||
.alert-accent { background: rgba(234, 88, 12, 0.05); }
|
||||
.alert-success { background: rgba(22, 163, 74, 0.05); }
|
||||
.alert-error { background: rgba(220, 38, 38, 0.05); }
|
||||
|
||||
.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-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; }
|
||||
code { font-family: "JetBrains Mono", monospace; font-size: 0.9em; background: var(--bg-secondary); padding: 2px 6px; border-radius: 4px; color: var(--brand-accent); }
|
||||
|
||||
.spacing-demo { display: flex; flex-direction: column; gap: 16px; }
|
||||
.spacing-row { display: flex; align-items: center; gap: 16px; }
|
||||
.spacing-box { background: var(--brand-accent); height: 24px; }
|
||||
|
||||
.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); }
|
||||
|
||||
.checkbox { display: flex; align-items: center; gap: 12px; cursor: pointer; }
|
||||
.checkbox-input { width: 20px; height: 20px; border: 2px solid var(--border-strong); border-radius: 4px; appearance: none; cursor: pointer; transition: all 100ms ease; }
|
||||
.checkbox-input:checked { background: var(--brand-accent); border-color: var(--brand-accent); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E"); }
|
||||
|
||||
.toggle { width: 44px; height: 24px; background: var(--bg-tertiary); border-radius: 9999px; position: relative; cursor: pointer; transition: background 200ms ease; }
|
||||
.toggle::after { content: ''; position: absolute; width: 20px; height: 20px; background: white; border-radius: 9999px; top: 2px; left: 2px; transition: transform 200ms ease; }
|
||||
.toggle.on { background: var(--brand-accent); }
|
||||
.toggle.on::after { transform: translateX(20px); }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
|
||||
<div class="section">
|
||||
<div class="brand-block">
|
||||
<div class="black-square"></div>
|
||||
<div>
|
||||
<h1>Clavitor</h1>
|
||||
<p class="text-secondary">Deep Coral + General Sans</p>
|
||||
</div>
|
||||
</div>
|
||||
<p class="wordmark-lg" style="margin-top: 24px; color: var(--brand-accent);">CLAVITOR</p>
|
||||
<p class="text-secondary" style="max-width: 600px; margin-top: 12px;">
|
||||
Warm energy, structured, distinct.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<div class="section-title">Brand Colors — DEEP CORAL</div>
|
||||
<div class="color-grid">
|
||||
<div class="color-swatch"><div class="color-block" style="background: var(--brand-black);"></div><div class="color-label"><strong>Black Square</strong><br><code>--brand-black</code><br>#0A0A0A</div></div>
|
||||
<div class="color-swatch"><div class="color-block" style="background: var(--brand-accent);"></div><div class="color-label"><strong>Deep Coral</strong><br><code>--brand-accent</code><br>#EA580C</div></div>
|
||||
<div class="color-swatch"><div class="color-block" style="background: var(--brand-accent-light);"></div><div class="color-label"><strong>Coral Light</strong><br><code>--brand-accent-light</code><br>#F97316</div></div>
|
||||
<div class="color-swatch"><div class="color-block" style="background: var(--brand-accent-dark);"></div><div class="color-label"><strong>Coral Dark</strong><br><code>--brand-accent-dark</code><br>#C2410C</div></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<div class="section-title">Typography — GENERAL SANS</div>
|
||||
<div class="flex-col">
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">wordmark</span><span class="wordmark-lg">CLAVITOR</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">72px</span><span style="font-size:72px;font-weight:700;">Heading 72</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">56px</span><span style="font-size:56px;font-weight:600;">Heading 56</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">40px</span><span style="font-size:40px;font-weight:600;">Heading 40</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">16px</span><span style="font-size:16px;">Body 16 — The quick brown fox jumps over the lazy dog</span></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<div class="section-title">Buttons — CORAL ACCENT</div>
|
||||
<div class="flex-row">
|
||||
<button class="btn btn-primary">Primary</button>
|
||||
<button class="btn btn-secondary">Secondary</button>
|
||||
<button class="btn btn-accent">Coral Accent</button>
|
||||
<button class="btn btn-ghost">Ghost</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<div class="section-title">Alerts</div>
|
||||
<div class="flex-col">
|
||||
<div class="alert alert-accent">
|
||||
<strong>Info:</strong> Warm energy flowing. Coral background.
|
||||
</div>
|
||||
<div class="alert alert-error">
|
||||
<strong>Error:</strong> Something needs attention.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<div class="section-title">Code — JETBRAINS MONO</div>
|
||||
<div class="code-block">
|
||||
<span style="color:var(--brand-accent);">$</span> clavitor deploy<br>
|
||||
<span style="color:#A3A3A3;">Deploying with warm energy...</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,225 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Clavitor — Forest Green + Satoshi</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
:root {
|
||||
--brand-black: #0A0A0A;
|
||||
--brand-accent: #15803D;
|
||||
--brand-accent-light: #16A34A;
|
||||
--brand-accent-dark: #166534;
|
||||
|
||||
--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;
|
||||
|
||||
--success: #16A34A;
|
||||
--warning: #CA8A04;
|
||||
--error: #DC2626;
|
||||
|
||||
--font-family: "Satoshi", system-ui, sans-serif;
|
||||
|
||||
--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;
|
||||
|
||||
--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;
|
||||
}
|
||||
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 48px 24px; }
|
||||
.section { margin-bottom: 64px; }
|
||||
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
|
||||
.flex-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
|
||||
.flex-col { display: flex; flex-direction: column; gap: 12px; }
|
||||
|
||||
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); }
|
||||
|
||||
.wordmark { font-size: 18px; font-weight: 600; letter-spacing: 0.5em; text-transform: uppercase; }
|
||||
.wordmark-lg { font-size: 32px; font-weight: 600; letter-spacing: 0.5em; text-transform: uppercase; }
|
||||
|
||||
.brand-block { display: flex; align-items: center; gap: 16px; margin: 32px 0; }
|
||||
.black-square { width: 64px; height: 64px; background: var(--brand-black); }
|
||||
|
||||
.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; }
|
||||
|
||||
.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; }
|
||||
|
||||
.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(21, 128, 61, 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); }
|
||||
|
||||
.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; }
|
||||
|
||||
.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); }
|
||||
|
||||
.alert { display: flex; gap: 12px; padding: 16px; border-radius: 12px; }
|
||||
.alert-accent { background: rgba(21, 128, 61, 0.05); }
|
||||
.alert-success { background: rgba(22, 163, 74, 0.05); }
|
||||
.alert-error { background: rgba(220, 38, 38, 0.05); }
|
||||
|
||||
.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-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; }
|
||||
code { font-family: "JetBrains Mono", monospace; font-size: 0.9em; background: var(--bg-secondary); padding: 2px 6px; border-radius: 4px; color: var(--brand-accent); }
|
||||
|
||||
.spacing-demo { display: flex; flex-direction: column; gap: 16px; }
|
||||
.spacing-row { display: flex; align-items: center; gap: 16px; }
|
||||
.spacing-box { background: var(--brand-accent); height: 24px; }
|
||||
|
||||
.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); }
|
||||
|
||||
.checkbox { display: flex; align-items: center; gap: 12px; cursor: pointer; }
|
||||
.checkbox-input { width: 20px; height: 20px; border: 2px solid var(--border-strong); border-radius: 4px; appearance: none; cursor: pointer; transition: all 100ms ease; }
|
||||
.checkbox-input:checked { background: var(--brand-accent); border-color: var(--brand-accent); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E"); }
|
||||
|
||||
.toggle { width: 44px; height: 24px; background: var(--bg-tertiary); border-radius: 9999px; position: relative; cursor: pointer; transition: background 200ms ease; }
|
||||
.toggle::after { content: ''; position: absolute; width: 20px; height: 20px; background: white; border-radius: 9999px; top: 2px; left: 2px; transition: transform 200ms ease; }
|
||||
.toggle.on { background: var(--brand-accent); }
|
||||
.toggle.on::after { transform: translateX(20px); }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
|
||||
<div class="section">
|
||||
<div class="brand-block">
|
||||
<div class="black-square"></div>
|
||||
<div>
|
||||
<h1>Clavitor</h1>
|
||||
<p class="text-secondary">Forest Green + Satoshi</p>
|
||||
</div>
|
||||
</div>
|
||||
<p class="wordmark-lg" style="margin-top: 24px; color: var(--brand-accent);">CLAVITOR</p>
|
||||
<p class="text-secondary" style="max-width: 600px; margin-top: 12px;">
|
||||
Trust, growth, vault is alive. Modern tech feel.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<div class="section-title">Brand Colors — FOREST GREEN</div>
|
||||
<div class="color-grid">
|
||||
<div class="color-swatch"><div class="color-block" style="background: var(--brand-black);"></div><div class="color-label"><strong>Black Square</strong><br><code>--brand-black</code><br>#0A0A0A</div></div>
|
||||
<div class="color-swatch"><div class="color-block" style="background: var(--brand-accent);"></div><div class="color-label"><strong>Forest Green</strong><br><code>--brand-accent</code><br>#15803D</div></div>
|
||||
<div class="color-swatch"><div class="color-block" style="background: var(--brand-accent-light);"></div><div class="color-label"><strong>Green Light</strong><br><code>--brand-accent-light</code><br>#16A34A</div></div>
|
||||
<div class="color-swatch"><div class="color-block" style="background: var(--brand-accent-dark);"></div><div class="color-label"><strong>Green Dark</strong><br><code>--brand-accent-dark</code><br>#166534</div></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<div class="section-title">Typography — SATOSHI</div>
|
||||
<div class="flex-col">
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">wordmark</span><span class="wordmark-lg">CLAVITOR</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">72px</span><span style="font-size:72px;font-weight:700;">Heading 72</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">56px</span><span style="font-size:56px;font-weight:600;">Heading 56</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">40px</span><span style="font-size:40px;font-weight:600;">Heading 40</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">16px</span><span style="font-size:16px;">Body 16 — The quick brown fox jumps over the lazy dog</span></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<div class="section-title">Buttons — GREEN ACCENT</div>
|
||||
<div class="flex-row">
|
||||
<button class="btn btn-primary">Primary</button>
|
||||
<button class="btn btn-secondary">Secondary</button>
|
||||
<button class="btn btn-accent">Forest Accent</button>
|
||||
<button class="btn btn-ghost">Ghost</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<div class="section-title">Alerts</div>
|
||||
<div class="flex-col">
|
||||
<div class="alert alert-accent">
|
||||
<strong>Info:</strong> Vault is secure and growing. Green background.
|
||||
</div>
|
||||
<div class="alert alert-error">
|
||||
<strong>Error:</strong> Something went wrong. Check logs.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<div class="section-title">Code — JETBRAINS MONO</div>
|
||||
<div class="code-block">
|
||||
<span style="color:var(--brand-accent);">$</span> clavitor status<br>
|
||||
<span style="color:#A3A3A3;">Vault: alive and growing...</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,225 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Clavitor — Deep Teal + Space Grotesk</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
:root {
|
||||
--brand-black: #0A0A0A;
|
||||
--brand-accent: #0D9488;
|
||||
--brand-accent-light: #14B8A6;
|
||||
--brand-accent-dark: #0F766E;
|
||||
|
||||
--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;
|
||||
|
||||
--success: #16A34A;
|
||||
--warning: #CA8A04;
|
||||
--error: #DC2626;
|
||||
|
||||
--font-family: "Space Grotesk", system-ui, sans-serif;
|
||||
|
||||
--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;
|
||||
|
||||
--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;
|
||||
}
|
||||
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 48px 24px; }
|
||||
.section { margin-bottom: 64px; }
|
||||
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
|
||||
.flex-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
|
||||
.flex-col { display: flex; flex-direction: column; gap: 12px; }
|
||||
|
||||
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); }
|
||||
|
||||
.wordmark { font-size: 18px; font-weight: 600; letter-spacing: 0.5em; text-transform: uppercase; }
|
||||
.wordmark-lg { font-size: 32px; font-weight: 600; letter-spacing: 0.5em; text-transform: uppercase; }
|
||||
|
||||
.brand-block { display: flex; align-items: center; gap: 16px; margin: 32px 0; }
|
||||
.black-square { width: 64px; height: 64px; background: var(--brand-black); }
|
||||
|
||||
.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; }
|
||||
|
||||
.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; }
|
||||
|
||||
.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(13, 148, 136, 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); }
|
||||
|
||||
.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; }
|
||||
|
||||
.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); }
|
||||
|
||||
.alert { display: flex; gap: 12px; padding: 16px; border-radius: 12px; }
|
||||
.alert-accent { background: rgba(13, 148, 136, 0.05); }
|
||||
.alert-success { background: rgba(22, 163, 74, 0.05); }
|
||||
.alert-error { background: rgba(220, 38, 38, 0.05); }
|
||||
|
||||
.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-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; }
|
||||
code { font-family: "JetBrains Mono", monospace; font-size: 0.9em; background: var(--bg-secondary); padding: 2px 6px; border-radius: 4px; color: var(--brand-accent); }
|
||||
|
||||
.spacing-demo { display: flex; flex-direction: column; gap: 16px; }
|
||||
.spacing-row { display: flex; align-items: center; gap: 16px; }
|
||||
.spacing-box { background: var(--brand-accent); height: 24px; }
|
||||
|
||||
.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); }
|
||||
|
||||
.checkbox { display: flex; align-items: center; gap: 12px; cursor: pointer; }
|
||||
.checkbox-input { width: 20px; height: 20px; border: 2px solid var(--border-strong); border-radius: 4px; appearance: none; cursor: pointer; transition: all 100ms ease; }
|
||||
.checkbox-input:checked { background: var(--brand-accent); border-color: var(--brand-accent); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E"); }
|
||||
|
||||
.toggle { width: 44px; height: 24px; background: var(--bg-tertiary); border-radius: 9999px; position: relative; cursor: pointer; transition: background 200ms ease; }
|
||||
.toggle::after { content: ''; position: absolute; width: 20px; height: 20px; background: white; border-radius: 9999px; top: 2px; left: 2px; transition: transform 200ms ease; }
|
||||
.toggle.on { background: var(--brand-accent); }
|
||||
.toggle.on::after { transform: translateX(20px); }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
|
||||
<div class="section">
|
||||
<div class="brand-block">
|
||||
<div class="black-square"></div>
|
||||
<div>
|
||||
<h1>Clavitor</h1>
|
||||
<p class="text-secondary">Deep Teal + Space Grotesk</p>
|
||||
</div>
|
||||
</div>
|
||||
<p class="wordmark-lg" style="margin-top: 24px; color: var(--brand-accent);">CLAVITOR</p>
|
||||
<p class="text-secondary" style="max-width: 600px; margin-top: 12px;">
|
||||
Infrastructure that flows. Technical, cool, distinctive geometry.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<div class="section-title">Brand Colors — DEEP TEAL</div>
|
||||
<div class="color-grid">
|
||||
<div class="color-swatch"><div class="color-block" style="background: var(--brand-black);"></div><div class="color-label"><strong>Black Square</strong><br><code>--brand-black</code><br>#0A0A0A</div></div>
|
||||
<div class="color-swatch"><div class="color-block" style="background: var(--brand-accent);"></div><div class="color-label"><strong>Deep Teal</strong><br><code>--brand-accent</code><br>#0D9488</div></div>
|
||||
<div class="color-swatch"><div class="color-block" style="background: var(--brand-accent-light);"></div><div class="color-label"><strong>Teal Light</strong><br><code>--brand-accent-light</code><br>#14B8A6</div></div>
|
||||
<div class="color-swatch"><div class="color-block" style="background: var(--brand-accent-dark);"></div><div class="color-label"><strong>Teal Dark</strong><br><code>--brand-accent-dark</code><br>#0F766E</div></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<div class="section-title">Typography — SPACE GROTESK</div>
|
||||
<div class="flex-col">
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">wordmark</span><span class="wordmark-lg">CLAVITOR</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">72px</span><span style="font-size:72px;font-weight:700;">Heading 72</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">56px</span><span style="font-size:56px;font-weight:600;">Heading 56</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">40px</span><span style="font-size:40px;font-weight:600;">Heading 40</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">16px</span><span style="font-size:16px;">Body 16 — The quick brown fox jumps over the lazy dog</span></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<div class="section-title">Buttons — TEAL ACCENT</div>
|
||||
<div class="flex-row">
|
||||
<button class="btn btn-primary">Primary</button>
|
||||
<button class="btn btn-secondary">Secondary</button>
|
||||
<button class="btn btn-accent">Teal Accent</button>
|
||||
<button class="btn btn-ghost">Ghost</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<div class="section-title">Alerts</div>
|
||||
<div class="flex-col">
|
||||
<div class="alert alert-accent">
|
||||
<strong>Info:</strong> Infrastructure connected. Teal background.
|
||||
</div>
|
||||
<div class="alert alert-error">
|
||||
<strong>Error:</strong> Connection failed. Check configuration.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<div class="section-title">Code — JETBRAINS MONO</div>
|
||||
<div class="code-block">
|
||||
<span style="color:var(--brand-accent);">$</span> clavitor deploy<br>
|
||||
<span style="color:#A3A3A3;">Connected to teal infrastructure...</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -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; }
|
||||
|
|
@ -8,231 +8,51 @@
|
|||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Figtree:wght@400..700&display=swap" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400..500&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
/* ============================================
|
||||
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 — FINAL: Figtree 700, 0.25em */
|
||||
--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;
|
||||
}
|
||||
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 48px 24px; }
|
||||
.section { margin-bottom: 64px; }
|
||||
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
|
||||
.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); }
|
||||
|
||||
.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 Block */
|
||||
.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; }
|
||||
|
||||
/* Colors */
|
||||
.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; }
|
||||
|
||||
/* Layout Patterns (from vault1984.com) */
|
||||
.max-width { max-width: 1200px; margin: 0 auto; padding: 0 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; }
|
||||
|
||||
.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-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; }
|
||||
.section-vault { padding: 80px 0; }
|
||||
.section-vault-dark { padding: 80px 0; background: var(--bg-inverse); color: var(--text-inverse); }
|
||||
|
||||
.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; }
|
||||
</style>
|
||||
<link rel="stylesheet" href="styleguide.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
|
||||
<!-- Header -->
|
||||
<div class="section">
|
||||
<div class="brand-block">
|
||||
<div class="black-square"></div>
|
||||
<div>
|
||||
<h1 style="font-size:40px;">Clavitor</h1>
|
||||
<p class="text-secondary">Design System v0.1 — Violet + Figtree + JetBrains Mono</p>
|
||||
</div>
|
||||
<body class="container">
|
||||
|
||||
<!-- Header -->
|
||||
<div class="section">
|
||||
<div class="brand-block">
|
||||
<div class="black-square"></div>
|
||||
<div>
|
||||
<h1 style="font-size:40px;">Clavitor</h1>
|
||||
<p class="text-secondary">Design System v0.1 — Violet + Figtree + JetBrains Mono</p>
|
||||
</div>
|
||||
<p class="wordmark-lg" style="margin-top: 24px;">CLAVITOR</p>
|
||||
<p class="text-secondary" style="max-width: 600px; margin-top: 12px;">
|
||||
A black box vault for AI infrastructure. Tokens, components, layouts.
|
||||
Based on vault1984.com patterns.
|
||||
</p>
|
||||
</div>
|
||||
<p class="wordmark-lg mt-6">CLAVITOR</p>
|
||||
<p class="text-secondary max-w-md mt-3">
|
||||
A black box vault for AI infrastructure. Tokens, components, layouts.
|
||||
Based on vault1984.com patterns.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Logo Lockup — The Trinity -->
|
||||
<div class="section">
|
||||
<div class="section-title">Logo Lockup (Black Square + Wordmark + Tagline)</div>
|
||||
<!-- Logo Lockup — The Trinity -->
|
||||
<div class="section">
|
||||
<div class="section-title">Logo Lockup (Black Square + Wordmark + Tagline)</div>
|
||||
<div class="logo-lockup">
|
||||
<div class="logo-lockup-square"></div>
|
||||
<div class="logo-lockup-text">
|
||||
<div class="logo-lockup-wordmark">CLAVITOR</div>
|
||||
<div class="logo-lockup-tagline">Black-box credential issuance</div>
|
||||
</div>
|
||||
</div>
|
||||
<p class="text-tertiary text-xs mt-4">
|
||||
<strong>Spec:</strong> Square: 80×80px #0A0A0A (Black Square) · Wordmark: Figtree 700, 56px, 0.25em, #7C3AED (Violet) · Tagline: 16px, 0.22em, uppercase, #737373 (Text Tertiary)
|
||||
</p>
|
||||
<p class="mt-3 flex-row">
|
||||
<a href="clavitor-logo.svg" download="clavitor-logo.svg" class="btn btn-ghost btn-sm">↓ Download clavitor-logo.svg</a>
|
||||
<a href="clavitor-logo.png" download="clavitor-logo.png" class="btn btn-ghost btn-sm">↓ Download clavitor-logo.png (800×800)</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Logo Lockup — Scale Variants -->
|
||||
<div class="section">
|
||||
<div class="section-title">Logo Lockup — Scale Variants</div>
|
||||
|
||||
<p class="text-tertiary text-xs mb-4">200%</p>
|
||||
<div style="transform: scale(2); transform-origin: top left; margin-bottom: 180px; display: inline-block;">
|
||||
<div class="logo-lockup">
|
||||
<div class="logo-lockup-square"></div>
|
||||
<div class="logo-lockup-text">
|
||||
|
|
@ -240,187 +60,210 @@
|
|||
<div class="logo-lockup-tagline">Black-box credential issuance</div>
|
||||
</div>
|
||||
</div>
|
||||
<p class="text-tertiary text-xs" style="margin-top: 16px;">
|
||||
<strong>Spec:</strong> Square: 80×80px #0A0A0A (Black Square) · Wordmark: Figtree 700, 56px, 0.25em, #7C3AED (Violet) · Tagline: 16px, 0.22em, uppercase, #737373 (Text Tertiary)
|
||||
</p>
|
||||
<p style="margin-top: 12px; display: flex; gap: 24px;">
|
||||
<a href="clavitor-logo.svg" download="clavitor-logo.svg" style="font-size: 14px; color: var(--brand-accent); font-weight: 500;">↓ Download clavitor-logo.svg</a>
|
||||
<a href="clavitor-logo.png" download="clavitor-logo.png" style="font-size: 14px; color: var(--brand-accent); font-weight: 500;">↓ Download clavitor-logo.png (800×800)</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Logo Lockup — Scale Variants -->
|
||||
<div class="section">
|
||||
<div class="section-title">Logo Lockup — Scale Variants</div>
|
||||
|
||||
<p class="text-tertiary text-xs" style="margin-bottom: 16px;">200%</p>
|
||||
<div style="transform: scale(2); transform-origin: top left; margin-bottom: 180px; display: inline-block;">
|
||||
<div class="logo-lockup">
|
||||
<div class="logo-lockup-square"></div>
|
||||
<div class="logo-lockup-text">
|
||||
<div class="logo-lockup-wordmark">CLAVITOR</div>
|
||||
<div class="logo-lockup-tagline">Black-box credential issuance</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p class="text-tertiary text-xs" style="margin-bottom: 16px;">150%</p>
|
||||
<div style="transform: scale(1.5); transform-origin: top left; margin-bottom: 80px; display: inline-block;">
|
||||
<div class="logo-lockup">
|
||||
<div class="logo-lockup-square"></div>
|
||||
<div class="logo-lockup-text">
|
||||
<div class="logo-lockup-wordmark">CLAVITOR</div>
|
||||
<div class="logo-lockup-tagline">Black-box credential issuance</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p class="text-tertiary text-xs" style="margin-bottom: 16px;">100%</p>
|
||||
<div style="margin-bottom: 40px; display: inline-block;">
|
||||
<div class="logo-lockup">
|
||||
<div class="logo-lockup-square"></div>
|
||||
<div class="logo-lockup-text">
|
||||
<div class="logo-lockup-wordmark">CLAVITOR</div>
|
||||
<div class="logo-lockup-tagline">Black-box credential issuance</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p class="text-tertiary text-xs" style="margin-bottom: 16px;">50%</p>
|
||||
<div style="transform: scale(0.5); transform-origin: top left; margin-bottom: -20px; display: inline-block;">
|
||||
<div class="logo-lockup">
|
||||
<div class="logo-lockup-square"></div>
|
||||
<div class="logo-lockup-text">
|
||||
<div class="logo-lockup-wordmark">CLAVITOR</div>
|
||||
<div class="logo-lockup-tagline">Black-box credential issuance</div>
|
||||
</div>
|
||||
<p class="text-tertiary text-xs mb-4">150%</p>
|
||||
<div style="transform: scale(1.5); transform-origin: top left; margin-bottom: 80px; display: inline-block;">
|
||||
<div class="logo-lockup">
|
||||
<div class="logo-lockup-square"></div>
|
||||
<div class="logo-lockup-text">
|
||||
<div class="logo-lockup-wordmark">CLAVITOR</div>
|
||||
<div class="logo-lockup-tagline">Black-box credential issuance</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Brand Colors -->
|
||||
<div class="section">
|
||||
<div class="section-title">Brand Colors</div>
|
||||
<div class="color-grid">
|
||||
<div class="color-swatch"><div class="color-block" style="background: var(--brand-black);"></div><div class="color-label"><strong>Black Square</strong><br><code>--brand-black</code><br>#0A0A0A</div></div>
|
||||
<div class="color-swatch"><div class="color-block" style="background: var(--brand-accent);"></div><div class="color-label"><strong>Violet</strong><br><code>--brand-accent</code><br>#7C3AED</div></div>
|
||||
<div class="color-swatch"><div class="color-block" style="background: var(--brand-accent-light);"></div><div class="color-label"><strong>Violet Light</strong><br><code>--brand-accent-light</code><br>#8B5CF6</div></div>
|
||||
<div class="color-swatch"><div class="color-block" style="background: var(--brand-accent-dark);"></div><div class="color-label"><strong>Violet Dark</strong><br><code>--brand-accent-dark</code><br>#6D28D9</div></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Typography -->
|
||||
<div class="section">
|
||||
<div class="section-title">Typography — Figtree</div>
|
||||
<div class="flex-col">
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">wordmark</span><span class="wordmark-lg">CLAVITOR</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">72px</span><span style="font-size:72px;font-weight:700;">Heading 72</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">56px</span><span style="font-size:56px;font-weight:600;">Heading 56</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">40px</span><span style="font-size:40px;font-weight:600;">Heading 40</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">16px</span><span style="font-size:16px;">Body 16 — The quick brown fox jumps over the lazy dog</span></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Buttons -->
|
||||
<div class="section">
|
||||
<div class="section-title">Buttons</div>
|
||||
<div class="flex-row" style="margin-bottom:24px;">
|
||||
<button class="btn btn-primary">Primary</button>
|
||||
<button class="btn btn-secondary">Secondary</button>
|
||||
<button class="btn btn-accent">Violet Accent</button>
|
||||
<button class="btn btn-ghost">Ghost</button>
|
||||
<button class="btn btn-primary" disabled>Disabled</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Inputs -->
|
||||
<div class="section">
|
||||
<div class="section-title">Inputs</div>
|
||||
<div class="grid-2">
|
||||
<div class="input-group">
|
||||
<label class="input-label">Default</label>
|
||||
<input type="text" class="input" placeholder="Enter text...">
|
||||
</div>
|
||||
<div class="input-group">
|
||||
<label class="input-label">Error State</label>
|
||||
<input type="text" class="input input-error" value="invalid@email">
|
||||
<span class="input-error-text">Please enter a valid email address.</span>
|
||||
<p class="text-tertiary text-xs mb-4">100%</p>
|
||||
<div class="mb-10">
|
||||
<div class="logo-lockup">
|
||||
<div class="logo-lockup-square"></div>
|
||||
<div class="logo-lockup-text">
|
||||
<div class="logo-lockup-wordmark">CLAVITOR</div>
|
||||
<div class="logo-lockup-tagline">Black-box credential issuance</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Layout Patterns -->
|
||||
<div class="section">
|
||||
<div class="section-title">Layout Patterns (from vault1984.com)</div>
|
||||
|
||||
<h4 style="margin-bottom:16px;">2-Column Equal (Hero/Feature)</h4>
|
||||
<div class="grid-2-equal" style="margin-bottom:48px;">
|
||||
<div>
|
||||
<h3>Heading Left</h3>
|
||||
<p class="text-secondary">Description text goes here. This is the left column of a two-column layout pattern used for hero sections and feature comparisons.</p>
|
||||
<div class="pill-row" style="margin-top:16px;">
|
||||
<span class="pill">MCP</span>
|
||||
<span class="pill">REST API</span>
|
||||
<span class="pill-accent">CLI</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="feature-card-dark">
|
||||
<p style="font-family:'JetBrains Mono',monospace;">$ clavitor status<br>Vault: secure</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h4 style="margin-bottom:16px;">3-Column Features</h4>
|
||||
<div class="grid-3-equal" style="margin-bottom:48px;">
|
||||
<div class="feature-card">
|
||||
<h4>Feature One</h4>
|
||||
<p class="text-secondary">Description of the first feature with details.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<h4>Feature Two</h4>
|
||||
<p class="text-secondary">Description of the second feature with details.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<h4>Feature Three</h4>
|
||||
<p class="text-secondary">Description of the third feature with details.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h4 style="margin-bottom:16px;">4-Column Stats</h4>
|
||||
<div class="grid-4-equal">
|
||||
<div>
|
||||
<div class="stat-number">1</div>
|
||||
<div class="stat-label">Binary</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="stat-number">1</div>
|
||||
<div class="stat-label">SQLite</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="stat-number">5</div>
|
||||
<div class="stat-label">MCP Tools</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="stat-number">0</div>
|
||||
<div class="stat-label">Dependencies</div>
|
||||
<p class="text-tertiary text-xs mb-4">50%</p>
|
||||
<div style="transform: scale(0.5); transform-origin: top left; margin-bottom: -20px; display: inline-block;">
|
||||
<div class="logo-lockup">
|
||||
<div class="logo-lockup-square"></div>
|
||||
<div class="logo-lockup-text">
|
||||
<div class="logo-lockup-wordmark">CLAVITOR</div>
|
||||
<div class="logo-lockup-tagline">Black-box credential issuance</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Code -->
|
||||
<div class="section">
|
||||
<div class="section-title">Code — JetBrains Mono</div>
|
||||
<div class="code-block">
|
||||
<span style="color:var(--brand-accent);">$</span> clavitor deploy production<br>
|
||||
<span style="color:#D4D4D4;">Deploying to production... 0x7f3a9b2c</span><br>
|
||||
<span style="color:#D4D4D4;">Credentials: github-token, aws-key</span>
|
||||
</div>
|
||||
<p style="margin-top:16px;">Inline code: <code>--brand-accent</code> or <code>get_credential()</code></p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
>
|
||||
|
||||
</html>
|
||||
>
|
||||
<!-- Brand Colors -->
|
||||
<div class="section">
|
||||
<div class="section-title">Brand Colors</div>
|
||||
<div class="color-grid">
|
||||
<div class="color-swatch"><div class="color-block" style="background: var(--brand-black);"></div><div class="color-label"><strong>Black Square</strong><br><code>--brand-black</code><br>#0A0A0A</div></div>
|
||||
<div class="color-swatch"><div class="color-block" style="background: var(--brand-accent);"></div><div class="color-label"><strong>Violet</strong><br><code>--brand-accent</code><br>#7C3AED</div></div>
|
||||
<div class="color-swatch"><div class="color-block" style="background: var(--brand-accent-light);"></div><div class="color-label"><strong>Violet Light</strong><br><code>--brand-accent-light</code><br>#8B5CF6</div></div>
|
||||
<div class="color-swatch"><div class="color-block" style="background: var(--brand-accent-dark);"></div><div class="color-label"><strong>Violet Dark</strong><br><code>--brand-accent-dark</code><br>#6D28D9</div></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Typography -->
|
||||
<div class="section">
|
||||
<div class="section-title">Typography — Figtree</div>
|
||||
<div class="flex-col">
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">wordmark</span><span class="wordmark-lg">CLAVITOR</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">72px</span><span style="font-size:72px;font-weight:700;">Heading 72</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">56px</span><span style="font-size:56px;font-weight:600;">Heading 56</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">40px</span><span style="font-size:40px;font-weight:600;">Heading 40</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">28px</span><span style="font-size:28px;font-weight:500;">Heading 28</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">16px</span><span style="font-size:16px;">Body 16 — The quick brown fox jumps over the lazy dog</span></div>
|
||||
<div><span class="text-tertiary text-xs" style="display:inline-block;width:100px;">14px</span><span style="font-size:14px;">Small 14 — Supporting text, labels, metadata</span></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Buttons -->
|
||||
<div class="section">
|
||||
<div class="section-title">Buttons</div>
|
||||
<div class="flex-row mb-6">
|
||||
<button class="btn btn-primary">Primary</button>
|
||||
<button class="btn btn-secondary">Secondary</button>
|
||||
<button class="btn btn-accent">Violet Accent</button>
|
||||
<button class="btn btn-ghost">Ghost</button>
|
||||
<button class="btn btn-primary" disabled>Disabled</button>
|
||||
</div>
|
||||
<div class="flex-row">
|
||||
<button class="btn btn-primary btn-sm">Primary Small</button>
|
||||
<button class="btn btn-secondary btn-sm">Secondary Small</button>
|
||||
<button class="btn btn-accent btn-sm">Accent Small</button>
|
||||
<button class="btn btn-primary btn-lg">Primary Large</button>
|
||||
<button class="btn btn-accent btn-lg">Accent Large</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Inputs -->
|
||||
<div class="section">
|
||||
<div class="section-title">Inputs</div>
|
||||
<div class="grid-2">
|
||||
<div class="input-group">
|
||||
<label class="input-label">Default</label>
|
||||
<input type="text" class="input" placeholder="Enter text...">
|
||||
</div>
|
||||
<div class="input-group">
|
||||
<label class="input-label">Error State</label>
|
||||
<input type="text" class="input input-error" value="invalid@email">
|
||||
<span class="input-error-text">Please enter a valid email address.</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Layout Patterns -->
|
||||
<div class="section">
|
||||
<div class="section-title">Layout Patterns (from vault1984.com)</div>
|
||||
|
||||
<h4 class="mb-4">2-Column Equal (Hero/Feature)</h4>
|
||||
<div class="grid-2-equal mb-12">
|
||||
<div>
|
||||
<h3>Heading Left</h3>
|
||||
<p class="text-secondary">Description text goes here. This is the left column of a two-column layout pattern used for hero sections and feature comparisons.</p>
|
||||
<div class="pill-row mt-4">
|
||||
<span class="pill">MCP</span>
|
||||
<span class="pill">REST API</span>
|
||||
<span class="pill-accent">CLI</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="feature-card-dark">
|
||||
<p style="font-family:'JetBrains Mono',monospace;">$ clavitor status<br>Vault: secure</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h4 class="mb-4">3-Column Features</h4>
|
||||
<div class="grid-3-equal mb-12">
|
||||
<div class="feature-card">
|
||||
<h4>Feature One</h4>
|
||||
<p class="text-secondary">Description of the first feature with details.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<h4>Feature Two</h4>
|
||||
<p class="text-secondary">Description of the second feature with details.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<h4>Feature Three</h4>
|
||||
<p class="text-secondary">Description of the third feature with details.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h4 class="mb-4">4-Column Stats</h4>
|
||||
<div class="grid-4-equal">
|
||||
<div>
|
||||
<div class="stat-number">1</div>
|
||||
<div class="stat-label">Binary</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="stat-number">1</div>
|
||||
<div class="stat-label">SQLite</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="stat-number">5</div>
|
||||
<div class="stat-label">MCP Tools</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="stat-number">0</div>
|
||||
<div class="stat-label">Dependencies</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Code -->
|
||||
<div class="section">
|
||||
<div class="section-title">Code — JetBrains Mono</div>
|
||||
<div class="code-block">
|
||||
<span style="color:var(--brand-accent);">$</span> clavitor deploy production<br>
|
||||
<span style="color:#D4D4D4;">Deploying to production... 0x7f3a9b2c</span><br>
|
||||
<span style="color:#D4D4D4;">Credentials: github-token, aws-key</span>
|
||||
</div>
|
||||
<p class="mt-4">Inline code: <code>--brand-accent</code> or <code>get_credential()</code></p>
|
||||
</div>
|
||||
|
||||
<!-- NEW: Utility Classes -->
|
||||
<div class="section">
|
||||
<div class="section-title">Utility Classes</div>
|
||||
|
||||
<h4 class="mb-4">Typography</h4>
|
||||
<p class="text-lg mb-4">.text-lg — 18px subtitle size</p>
|
||||
<div class="card text-center mb-4">This entire card is centered with .text-center</div>
|
||||
|
||||
<h4 class="mb-4 mt-8">Spacing (margin-top)</h4>
|
||||
<div style="background: var(--bg-secondary); padding: 16px; border-radius: 8px;">
|
||||
<div class="card" style="background: white;">mt-0 baseline</div>
|
||||
<div class="card mt-4" style="background: white;">mt-4 adds 16px margin-top</div>
|
||||
<div class="card mt-8" style="background: white;">mt-8 adds 32px margin-top</div>
|
||||
</div>
|
||||
|
||||
<h4 class="mb-4 mt-8">Flex utilities</h4>
|
||||
<div class="flex-row justify-center mb-4" style="background: var(--bg-secondary); padding: 16px; border-radius: 8px;">
|
||||
<span class="pill">.justify-center</span>
|
||||
<span class="pill">centers items</span>
|
||||
</div>
|
||||
<div class="flex-row justify-between mb-4" style="background: var(--bg-secondary); padding: 16px; border-radius: 8px;">
|
||||
<span class="pill">.justify-between</span>
|
||||
<span class="pill">pushes to edges</span>
|
||||
</div>
|
||||
|
||||
<h4 class="mb-4 mt-8">Component variants</h4>
|
||||
<div class="flex-row items-center mb-4">
|
||||
<div class="black-square-sm mr-auto"></div>
|
||||
<span class="text-secondary">.black-square-sm (48×48px)</span>
|
||||
</div>
|
||||
<div class="flex-row items-center">
|
||||
<div class="black-square"></div>
|
||||
<span class="text-secondary ml-auto">.black-square (64×64px)</span>
|
||||
</div>
|
||||
|
||||
<h4 class="mb-4 mt-8">Border utilities</h4>
|
||||
<div class="border-top pt-4">
|
||||
<span class="text-secondary">.border-top — top border separator</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,142 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>CLAVITOR Wordmark — Interactive Tester</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Figtree:wght@300..800&family=Plus+Jakarta+Sans:wght@300..800&family=Inter:wght@300..800&family=Sora:wght@300..800&family=Syne:wght@400..800&family=Cormorant+Garamond:wght@300..700&family=Unbounded:wght@300..900&family=DM+Sans:wght@300..800&family=Outfit:wght@300..800&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
:root {
|
||||
--brand-black: #0A0A0A;
|
||||
--brand-accent: #7C3AED;
|
||||
--bg-primary: #FFFFFF;
|
||||
--bg-secondary: #F5F5F5;
|
||||
--text-primary: #171717;
|
||||
--text-secondary: #525252;
|
||||
}
|
||||
* { box-sizing: border-box; margin: 0; padding: 0; }
|
||||
html { font-family: system-ui, sans-serif; background: var(--bg-primary); color: var(--text-primary); padding: 40px; }
|
||||
h1 { font-size: 32px; font-weight: 600; margin-bottom: 8px; }
|
||||
.subtitle { color: var(--text-secondary); margin-bottom: 24px; }
|
||||
.controls { background: var(--bg-secondary); padding: 20px; border-radius: 12px; margin-bottom: 40px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
|
||||
.control-group { display: flex; flex-direction: column; gap: 6px; }
|
||||
label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary); }
|
||||
select, input[type="text"] { padding: 10px 14px; font-size: 16px; border-radius: 8px; border: 2px solid #E5E5E5; background: white; min-width: 200px; }
|
||||
select:focus, input:focus { outline: none; border-color: var(--brand-accent); }
|
||||
.weight-label { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary); margin: 40px 0 20px; padding-bottom: 8px; border-bottom: 2px solid var(--brand-accent); }
|
||||
.spacing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
|
||||
.wordmark-box { text-align: center; padding: 28px 16px; background: var(--bg-secondary); border-radius: 12px; min-height: 140px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
|
||||
.wordmark { font-size: 72px; white-space: nowrap; margin-bottom: 12px; line-height: 1.1; }
|
||||
.spacing-label { font-size: 13px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
|
||||
.preview-size { display: flex; gap: 12px; align-items: center; margin-left: auto; }
|
||||
.size-value { font-weight: 600; color: var(--brand-accent); min-width: 50px; }
|
||||
input[type="range"] { width: 140px; }
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
.spacing-grid { grid-template-columns: repeat(3, 1fr); }
|
||||
.wordmark { font-size: 48px; }
|
||||
}
|
||||
@media (max-width: 600px) {
|
||||
.spacing-grid { grid-template-columns: repeat(2, 1fr); }
|
||||
.wordmark { font-size: 36px; }
|
||||
.preview-size { width: 100%; margin-left: 0; margin-top: 10px; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>CLAVITOR Wordmark Tester</h1>
|
||||
<p class="subtitle">Pick a font. See all weight + spacing combinations.</p>
|
||||
|
||||
<div class="controls">
|
||||
<div class="control-group">
|
||||
<label>Font Family</label>
|
||||
<select id="fontSelect">
|
||||
<option value="Figtree">Figtree (Sans)</option>
|
||||
<option value="Inter">Inter (Sans)</option>
|
||||
<option value="Plus Jakarta Sans">Plus Jakarta Sans (Sans)</option>
|
||||
<option value="Sora">Sora — Geometric</option>
|
||||
<option value="Syne">Syne — Wide Geometric</option>
|
||||
<option value="Unbounded">Unbounded — Wide Display</option>
|
||||
<option value="DM Sans">DM Sans — Clean Wide</option>
|
||||
<option value="Outfit">Outfit — Geometric Modern</option>
|
||||
<option value="Cormorant Garamond">Cormorant Garamond — Serif</option>
|
||||
<option value="Satoshi">Satoshi (fallback)</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="control-group">
|
||||
<label>Preview Text</label>
|
||||
<input type="text" id="previewText" value="Clavitor" maxlength="20">
|
||||
</div>
|
||||
|
||||
<div class="control-group preview-size">
|
||||
<label>Size</label>
|
||||
<input type="range" id="sizeSlider" min="24" max="120" value="72">
|
||||
<span class="size-value" id="sizeValue">72px</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="results"></div>
|
||||
|
||||
<script>
|
||||
const fonts = {
|
||||
'Figtree': { family: "'Figtree', sans-serif", weights: [100, 200, 300, 400, 500, 600, 700, 800] },
|
||||
'Inter': { family: "'Inter', sans-serif", weights: [200, 300, 400, 500, 600, 700, 800] },
|
||||
'Plus Jakarta Sans': { family: "'Plus Jakarta Sans', sans-serif", weights: [200, 300, 400, 500, 600, 700, 800] },
|
||||
'Sora': { family: "'Sora', sans-serif", weights: [200, 300, 400, 500, 600, 700, 800] },
|
||||
'Syne': { family: "'Syne', sans-serif", weights: [400, 500, 600, 700, 800] },
|
||||
'Unbounded': { family: "'Unbounded', sans-serif", weights: [200, 300, 400, 500, 600, 700, 800, 900] },
|
||||
'DM Sans': { family: "'DM Sans', sans-serif", weights: [200, 300, 400, 500, 600, 700, 800] },
|
||||
'Outfit': { family: "'Outfit', sans-serif", weights: [200, 300, 400, 500, 600, 700, 800] },
|
||||
'Cormorant Garamond': { family: "'Cormorant Garamond', serif", weights: [300, 400, 500, 600, 700] },
|
||||
'Satoshi': { family: "'Satoshi', 'Plus Jakarta Sans', sans-serif", weights: [300, 400, 500, 600, 700, 800] }
|
||||
};
|
||||
|
||||
const spacings = [
|
||||
{ val: 0, label: '0em (tight)' },
|
||||
{ val: 0.125, label: '0.125em' },
|
||||
{ val: 0.25, label: '0.25em' },
|
||||
{ val: 0.375, label: '0.375em' },
|
||||
{ val: 0.5, label: '0.5em (wide)' }
|
||||
];
|
||||
|
||||
function render() {
|
||||
const fontName = document.getElementById('fontSelect').value;
|
||||
const text = document.getElementById('previewText').value || 'Clavitor';
|
||||
const size = document.getElementById('sizeSlider').value;
|
||||
const font = fonts[fontName];
|
||||
|
||||
let html = '';
|
||||
|
||||
font.weights.forEach(weight => {
|
||||
html += `<div class="weight-label">Weight ${weight}</div>`;
|
||||
html += `<div class="spacing-grid">`;
|
||||
|
||||
spacings.forEach(sp => {
|
||||
html += `
|
||||
<div class="wordmark-box">
|
||||
<div class="wordmark" style="font-family: ${font.family}; font-weight: ${weight}; letter-spacing: ${sp.val}em; font-size: ${size}px;">
|
||||
${text}
|
||||
</div>
|
||||
<div class="spacing-label">${sp.label}</div>
|
||||
</div>
|
||||
`;
|
||||
});
|
||||
|
||||
html += `</div>`;
|
||||
});
|
||||
|
||||
document.getElementById('results').innerHTML = html;
|
||||
document.getElementById('sizeValue').textContent = size + 'px';
|
||||
}
|
||||
|
||||
document.getElementById('fontSelect').addEventListener('change', render);
|
||||
document.getElementById('previewText').addEventListener('input', render);
|
||||
document.getElementById('sizeSlider').addEventListener('input', render);
|
||||
|
||||
render();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
Before Width: | Height: | Size: 257 KiB After Width: | Height: | Size: 257 KiB |
|
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 1.8 MiB |
|
Before Width: | Height: | Size: 277 KiB After Width: | Height: | Size: 277 KiB |
|
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 1.9 MiB |
|
Before Width: | Height: | Size: 272 KiB After Width: | Height: | Size: 272 KiB |
|
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 1.9 MiB |
|
Before Width: | Height: | Size: 250 KiB After Width: | Height: | Size: 250 KiB |
|
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 1.8 MiB |
|
Before Width: | Height: | Size: 313 KiB After Width: | Height: | Size: 313 KiB |
|
Before Width: | Height: | Size: 2.0 MiB After Width: | Height: | Size: 2.0 MiB |
|
Before Width: | Height: | Size: 252 KiB After Width: | Height: | Size: 252 KiB |
|
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 1.8 MiB |
|
Before Width: | Height: | Size: 288 KiB After Width: | Height: | Size: 288 KiB |
|
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 1.9 MiB |
|
Before Width: | Height: | Size: 246 KiB After Width: | Height: | Size: 246 KiB |
|
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 1.8 MiB |
|
Before Width: | Height: | Size: 288 KiB After Width: | Height: | Size: 288 KiB |
|
Before Width: | Height: | Size: 2.0 MiB After Width: | Height: | Size: 2.0 MiB |
|
Before Width: | Height: | Size: 315 KiB After Width: | Height: | Size: 315 KiB |
|
Before Width: | Height: | Size: 2.0 MiB After Width: | Height: | Size: 2.0 MiB |
|
Before Width: | Height: | Size: 302 KiB After Width: | Height: | Size: 302 KiB |
|
Before Width: | Height: | Size: 2.0 MiB After Width: | Height: | Size: 2.0 MiB |
|
Before Width: | Height: | Size: 289 KiB After Width: | Height: | Size: 289 KiB |
|
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 1.9 MiB |
|
Before Width: | Height: | Size: 252 KiB After Width: | Height: | Size: 252 KiB |
|
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 1.8 MiB |
|
Before Width: | Height: | Size: 275 KiB After Width: | Height: | Size: 275 KiB |
|
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 1.9 MiB |
|
Before Width: | Height: | Size: 249 KiB After Width: | Height: | Size: 249 KiB |
|
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 1.8 MiB |
|
Before Width: | Height: | Size: 292 KiB After Width: | Height: | Size: 292 KiB |
|
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 1.9 MiB |
|
Before Width: | Height: | Size: 301 KiB After Width: | Height: | Size: 301 KiB |
|
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 1.9 MiB |
|
Before Width: | Height: | Size: 248 KiB After Width: | Height: | Size: 248 KiB |
|
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 1.8 MiB |
|
Before Width: | Height: | Size: 244 KiB After Width: | Height: | Size: 244 KiB |
|
Before Width: | Height: | Size: 916 KiB After Width: | Height: | Size: 916 KiB |
|
Before Width: | Height: | Size: 247 KiB After Width: | Height: | Size: 247 KiB |
|
Before Width: | Height: | Size: 916 KiB After Width: | Height: | Size: 916 KiB |
|
Before Width: | Height: | Size: 292 KiB After Width: | Height: | Size: 292 KiB |
|
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 1.9 MiB |