Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,11 @@ <h1>Steer code with rules, not with token maxxing.</h1>
<!-- ========== DEMO: silent slop-detection triptych ========== -->
<section id="demo" class="sec sec-demo">
<div class="shell">
<p class="eyebrow"><span class="eyebrow-dot" aria-hidden="true"></span>Demo</p>
<div class="win win-lg demo-screen" aria-label="Product demo">
<div class="win win-lg demo-screen" aria-label="Demo: OpenCode, Neovim, VS Code">
<div class="win-chrome">
<span class="traffic" aria-hidden="true"><i></i><i></i><i></i></span>
<span class="win-title">demo · OpenCode → Neovim → VS Code</span>
<span class="win-meta">silent · ~32s</span>
<span class="win-title">demo</span>
<span class="win-meta">OpenCode · Neovim · VS Code</span>
</div>
<div class="demo-video">
<video controls playsinline preload="metadata"
Expand Down
39 changes: 33 additions & 6 deletions site/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -992,25 +992,52 @@ tr.mark strong { color: var(--accent); }

/* ---------- demo video frame ---------- */
.sec-demo {
padding-block: clamp(2.5rem, 6vw, 4rem);
padding-block: clamp(1.75rem, 4.5vw, 3rem);
background: linear-gradient(180deg, var(--bg-elev), var(--bg));
}
.sec-demo .eyebrow { margin-bottom: 1.1rem; }
.demo-screen {
width: 100%;
max-width: none;
margin-inline: 0;
overflow: hidden;
border-radius: 14px;
box-shadow: var(--shadow-float);
max-width: 56rem;
background: var(--machine);
}
.demo-screen .win-chrome {
padding-inline: 0.95rem;
}
.demo-screen .win-title {
letter-spacing: 0.04em;
text-transform: uppercase;
font-size: 0.68rem;
color: var(--machine-dim);
}
.demo-screen .win-meta {
color: var(--machine-ink);
opacity: 0.75;
}
.demo-video {
background: #000;
position: relative;
background: #050607;
line-height: 0;
isolation: isolate;
}
.demo-video video {
display: block;
width: 100%;
height: auto;
aspect-ratio: 16 / 9;
object-fit: contain;
background: #050607;
vertical-align: top;
background: #000;
}
@media (max-width: 719px) {
.demo-screen .win-meta { display: none; }
.sec-demo { padding-block: 1.35rem 1.75rem; }
.demo-screen { border-radius: 12px; }
.demo-screen .win-meta {
max-width: 55%;
overflow: hidden;
text-overflow: ellipsis;
}
}
Loading