[object Object]

← back to Ventura Claw

Track homepage.css (was untracked when CSS extraction committed)

c42b617dd0543d38baf45548760ddb966e11af10 · 2026-05-06 07:48:35 -0700 · Steve Abrams

Belongs with d9e7a6c — without this file the previous commit ships a broken homepage. fill.html and app/icon.svg left uncommitted (not from this loop).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Files touched

Diff

commit c42b617dd0543d38baf45548760ddb966e11af10
Author: Steve Abrams <info@agentabrams.com>
Date:   Wed May 6 07:48:35 2026 -0700

    Track homepage.css (was untracked when CSS extraction committed)
    
    Belongs with d9e7a6c — without this file the previous commit ships a broken homepage. fill.html and app/icon.svg left uncommitted (not from this loop).
    
    Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
---
 server/public/homepage.css | 72 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 72 insertions(+)

diff --git a/server/public/homepage.css b/server/public/homepage.css
new file mode 100644
index 0000000..4943475
--- /dev/null
+++ b/server/public/homepage.css
@@ -0,0 +1,72 @@
+:root { --max: 1180px; }
+.hero { max-width: var(--max); margin: 0 auto; padding: 64px 28px 40px; }
+.eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
+.eyebrow .dot { display:inline-block; width:6px; height:6px; border-radius:50%; background:var(--gold); margin-right:10px; box-shadow:0 0 12px var(--gold); animation:pulse 2.4s ease-in-out infinite; }
+@keyframes pulse { 0%,100%{opacity:.4} 50%{opacity:1} }
+h1.headline { font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 6vw, 72px); line-height: 1; letter-spacing: -.02em; margin: 0 0 22px; color: var(--ink); }
+h1.headline em { font-style: italic; color: var(--gold); }
+.subhead { font-family: var(--serif); font-style: italic; font-size: clamp(18px, 2.4vw, 24px); color: var(--ink-soft); max-width: 60ch; line-height: 1.5; margin: 0 0 36px; }
+
+/* Demo widget */
+.demo-card { background: var(--bg-elevated); border: 1px solid var(--rule-strong); border-left: 3px solid var(--gold); border-radius: 4px; padding: 24px 28px; margin: 32px 0 14px; }
+.demo-label { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 12px; }
+.demo-input-row { display: flex; gap: 10px; align-items: stretch; }
+.demo-input-row input { flex: 1; font-family: var(--mono); font-size: 14px; padding: 14px 16px; background: rgba(0,0,0,0.25); border: 1px solid var(--rule); color: var(--ink); border-radius: 2px; }
+.demo-input-row input:focus { outline: none; border-color: var(--gold); }
+.demo-input-row button { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; padding: 0 22px; background: var(--gold); color: var(--bg); border: none; cursor: pointer; border-radius: 2px; transition: opacity 140ms; }
+.demo-input-row button:hover { opacity: .85; }
+.demo-input-row button:disabled { opacity: .4; cursor: wait; }
+.demo-presets { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
+.demo-preset { font-family: var(--mono); font-size: 10px; padding: 5px 11px; background: transparent; border: 1px solid var(--rule); color: var(--ink-soft); cursor: pointer; border-radius: 2px; transition: border-color 120ms, color 120ms; }
+.demo-preset:hover { border-color: var(--gold); color: var(--gold); }
+
+.demo-result { margin-top: 18px; min-height: 60px; padding: 14px 16px; background: rgba(244,241,234,0.04); border: 1px dashed var(--rule); border-radius: 2px; font-family: var(--mono); font-size: 12px; color: var(--ink-soft); line-height: 1.6; display: none; }
+.demo-result.visible { display: block; }
+.demo-result .key { color: var(--ink-mute); letter-spacing: .08em; text-transform: uppercase; font-size: 9px; }
+.demo-result .val-connector { color: var(--gold); font-weight: 500; font-size: 14px; font-family: var(--serif); font-style: italic; }
+.demo-result .val-action { color: var(--good); }
+.demo-result .val-reason { color: var(--ink-soft); font-style: italic; }
+
+/* 56-connector grid */
+.connector-grid { max-width: var(--max); margin: 30px auto 0; padding: 0 28px; display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 12px; }
+.c-tile { aspect-ratio: 1.4 / 1; background: var(--bg-elevated); border: 1px solid var(--rule); border-radius: 3px; padding: 14px 12px; display: flex; flex-direction: column; justify-content: space-between; transition: border-color 220ms, transform 220ms, box-shadow 220ms; position: relative; }
+.c-tile .c-logo { width: 22px; height: 22px; }
+.c-tile .c-name { font-family: var(--serif); font-size: 13px; line-height: 1.1; color: var(--ink); }
+.c-tile .c-cat { font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-top: 4px; }
+.c-tile { animation: tile-float var(--float-dur, 6s) ease-in-out infinite; animation-delay: var(--float-delay, 0s); }
+@keyframes tile-float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-3px) } }
+.c-tile.matched { border-color: var(--gold); background: rgba(212,160,74,0.10); transform: translateY(-2px); box-shadow: 0 6px 24px -8px var(--gold); animation: none; }
+.c-tile.matched::after { content: ""; position: absolute; top: 8px; right: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
+.c-tile.dimmed { opacity: 0.32; }
+
+/* Moats section */
+.moats { max-width: var(--max); margin: 80px auto 0; padding: 0 28px; }
+.moats h2 { font-family: var(--serif); font-weight: 500; font-size: 36px; margin: 0 0 28px; letter-spacing: -.01em; }
+.moats h2 em { font-style: italic; color: var(--gold); }
+.moat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
+.moat { background: var(--bg-elevated); border: 1px solid var(--rule); border-radius: 4px; padding: 24px 26px; }
+.moat .moat-num { font-family: var(--serif); font-style: italic; font-size: 28px; color: var(--gold); line-height: 1; margin-bottom: 14px; }
+.moat .moat-title { font-family: var(--serif); font-size: 19px; margin-bottom: 8px; line-height: 1.3; }
+.moat .moat-body { font-family: var(--mono); font-size: 11px; line-height: 1.7; color: var(--ink-soft); letter-spacing: .02em; }
+.moat .moat-tag { display: inline-block; margin-top: 12px; font-family: var(--mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; padding: 3px 9px; background: rgba(212,160,74,0.12); color: var(--gold); border-radius: 2px; }
+
+/* CTA */
+.cta { max-width: var(--max); margin: 80px auto 60px; padding: 0 28px; text-align: center; }
+.cta h2 { font-family: var(--serif); font-weight: 500; font-style: italic; font-size: clamp(28px, 4vw, 44px); margin: 0 0 24px; }
+.cta h2 em { color: var(--gold); }
+.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
+.cta-row a.btn-cta { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; padding: 16px 28px; background: var(--gold); color: var(--bg); border: 1px solid var(--gold); border-radius: 2px; text-decoration: none; transition: opacity 140ms; }
+.cta-row a.btn-cta:hover { opacity: .85; }
+.cta-row a.btn-cta-ghost { background: transparent; color: var(--gold); }
+.cta-row a.btn-cta-ghost:hover { background: rgba(212,160,74,0.08); opacity: 1; }
+
+/* Footer */
+.footer { max-width: var(--max); margin: 0 auto; padding: 28px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
+.footer .left { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); }
+.footer .right a { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; color: var(--ink-soft); margin-left: 18px; text-decoration: none; }
+.footer .right a:hover { color: var(--gold); }
+
+@media (max-width: 600px) {
+  .demo-input-row { flex-direction: column; }
+  .demo-input-row button { padding: 12px 22px; }
+}

← d9e7a6c Externalize homepage inline CSS to /static/homepage.css  ·  back to Ventura Claw  ·  Launch comms drafts + og-cover.png raster + linter brand pol ee0bbe0 →