/* juliankramer.nl — shared design system (zero framework, zero build).
   Self-hosted Inter; dark ground; blue interactive (logo/buttons/links/icon), gold accents (kickers, eyebrows, taglines, ⌘K, stats), green status dots. */

@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url('/fonts/inter-regular.woff2') format('woff2')}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url('/fonts/inter-medium.woff2') format('woff2')}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url('/fonts/inter-semibold.woff2') format('woff2')}
@font-face{font-family:'Inter';font-style:normal;font-weight:700;font-display:swap;src:url('/fonts/inter-bold.woff2') format('woff2')}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

:root{
  --bg:#060608; --surface:#101116; --surface2:#0b0c10; --border:#20222b; --border2:#2b2e39;
  --ink:#eef1f6; --soft:#c3cad6; --muted:#8b93a2;
  --accent:#5b93f7; --accent-ink:#a9c6ff; --gold:#f2a65a; --good:#54cf8e;
  --mono:ui-monospace,"SF Mono","JetBrains Mono","Roboto Mono",Menlo,Consolas,monospace;
  --maxw:1120px;
}

html{scroll-behavior:smooth}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:radial-gradient(1200px 620px at 50% -10%, rgba(90,110,160,.22), transparent 66%), var(--bg);
  color:var(--ink); line-height:1.65; -webkit-font-smoothing:antialiased; -webkit-text-size-adjust:100%;
  min-height:100svh;
}
a{color:var(--accent-ink); text-decoration:none; -webkit-tap-highlight-color:transparent}
a:hover{text-decoration:underline}
img{display:block; max-width:100%; height:auto}
.wrap{width:100%; max-width:var(--maxw); margin:0 auto; padding:0 24px}
.mono{font-family:var(--mono)}

/* ---------- nav ---------- */
.nav{position:sticky; top:0; z-index:50; backdrop-filter:blur(12px);
  background:linear-gradient(180deg, rgba(6,6,8,.86), rgba(6,6,8,.55)); border-bottom:1px solid var(--border)}
.nav .wrap{display:flex; align-items:center; justify-content:space-between; height:62px}
.brand{display:flex; align-items:center; gap:11px; font-weight:700; letter-spacing:-.01em; color:var(--ink)}
.brand:hover{text-decoration:none}
.brand .mk{width:30px; height:30px; border-radius:8px; flex:none; display:grid; place-items:center; font-weight:700; font-size:13px;
  color:#0a0d12; background:linear-gradient(140deg,#7aa8ff,var(--accent))}
.navlinks{display:flex; align-items:center; gap:6px}
.navlinks a{color:var(--muted); font-size:14px; font-weight:500; padding:8px 13px; border-radius:8px; transition:color .15s, background .15s}
.navlinks a:hover{color:var(--ink); background:rgba(255,255,255,.05); text-decoration:none}
.navlinks a.active{color:var(--ink); background:rgba(255,255,255,.06)}
.navlinks a.cta{color:#0a0d12; background:var(--accent); font-weight:600}
.navlinks a.cta:hover{background:#7aa8ff; color:#0a0d12}
@media(max-width:640px){
  /* keep every nav link reachable: wrap them to a centred second row */
  .nav .wrap{height:auto; flex-wrap:wrap; row-gap:8px; padding-top:11px; padding-bottom:11px}
  .navlinks{width:100%; justify-content:center; gap:2px; flex-wrap:wrap}
  .navlinks a{font-size:13px; padding:7px 11px}
  /* tighten the desktop rhythm so phones don't get huge empty bands */
  .wrap{padding:0 18px}
  .section{padding:44px 0}
  .section.tight{padding:32px 0}
  .section-head{margin-bottom:24px}
}

/* ---------- shared bits ---------- */
.kicker{display:inline-flex; align-items:center; gap:11px; font-size:12px; letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold); font-weight:600}
.kicker::before{content:""; width:22px; height:1.5px; background:var(--gold); opacity:.8}
.eyebrow{font-size:12px; letter-spacing:.22em; text-transform:uppercase; color:var(--gold); font-weight:600}
h1{font-size:clamp(2.2rem,5.2vw,3.6rem); font-weight:700; letter-spacing:-.03em; line-height:1.03; text-wrap:balance}
h2{font-size:clamp(1.5rem,3.2vw,2.1rem); font-weight:700; letter-spacing:-.02em; line-height:1.1; text-wrap:balance}
h3{font-size:1.12rem; font-weight:600; letter-spacing:-.01em}
.lede{font-size:clamp(1.05rem,2.1vw,1.22rem); color:var(--soft); line-height:1.6; max-width:60ch}
.section{padding:74px 0}
.section.tight{padding:52px 0}
.section-head{max-width:64ch; margin-bottom:36px}
.section-head h2{margin-top:14px}
.section-head p{margin-top:12px; color:var(--muted); font-size:1.02rem}

.btn{display:inline-flex; align-items:center; gap:9px; font-weight:600; font-size:15px; padding:12px 22px; border-radius:999px;
  border:1px solid var(--border2); color:var(--ink); background:transparent; cursor:pointer;
  transition:border-color .18s, background .18s, color .18s, transform .18s}
.btn .arrow{transition:transform .18s}
.btn:hover{text-decoration:none; border-color:var(--accent); transform:translateY(-1px)}
.btn:hover .arrow{transform:translateX(4px)}
.btn.primary{background:var(--accent); border-color:var(--accent); color:#08101f}
.btn.primary:hover{background:#7aa8ff}
.btn:focus-visible{outline:2px solid var(--accent); outline-offset:3px}

/* ---------- product cards ---------- */
.cards{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px}
@media(max-width:720px){.cards{grid-template-columns:1fr}}
.card{position:relative; border:1px solid var(--border); border-radius:18px; overflow:hidden; background:var(--surface);
  display:flex; flex-direction:column; transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease}
.card:hover{transform:translateY(-4px); border-color:var(--border2);
  box-shadow:0 26px 60px -28px rgba(0,0,0,.85), 0 0 90px -40px rgba(242,166,90,.25)}
.card .shot{aspect-ratio:16/9; overflow:hidden; border-bottom:1px solid var(--border)}
.card .shot img{width:100%; height:100%; object-fit:cover; transition:transform .5s ease}
.card:hover .shot img{transform:scale(1.04)}
.card .cbody{padding:20px 22px 22px; display:flex; flex-direction:column; gap:9px; flex:1}
.card .cname{display:flex; align-items:baseline; gap:10px; flex-wrap:wrap}
.card .cname h3{font-size:1.18rem}
.card .cname .tl{font-size:13px; color:var(--gold); font-weight:600}
.card .cblurb{color:var(--muted); font-size:14px; line-height:1.55}
.card .ctags{display:flex; flex-wrap:wrap; gap:6px; margin-top:4px}
.tag{font-size:11px; font-weight:600; letter-spacing:.02em; color:var(--soft); padding:4px 9px; border-radius:999px;
  background:rgba(255,255,255,.04); border:1px solid var(--border)}
.card .clink{margin-top:auto; padding-top:12px; font-size:13.5px; font-weight:600; color:var(--accent-ink)}

/* ---------- stats band ---------- */
.stats{display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--border); border:1px solid var(--border);
  border-radius:16px; overflow:hidden}
.stats.six{grid-template-columns:repeat(3,1fr)}
@media(max-width:720px){.stats{grid-template-columns:repeat(2,1fr)} .stats.six{grid-template-columns:repeat(2,1fr)}}
.stat{background:var(--surface2); padding:24px 22px}
.stat .n{font-size:clamp(1.6rem,3vw,2.1rem); font-weight:700; letter-spacing:-.02em; color:var(--gold)}
.stat .l{margin-top:4px; font-size:12.5px; color:var(--muted); line-height:1.4}

/* ---------- timeline ---------- */
.tl-list{display:flex; flex-direction:column; gap:2px; border-left:2px solid var(--border); padding-left:0}
.tl-item{position:relative; padding:18px 0 18px 28px; border-bottom:1px solid var(--border)}
.tl-item:last-child{border-bottom:0}
.tl-item::before{content:""; position:absolute; left:-7px; top:24px; width:12px; height:12px; border-radius:50%;
  background:var(--bg); border:2px solid var(--accent)}
.tl-item .tl-top{display:flex; align-items:baseline; justify-content:space-between; gap:14px; flex-wrap:wrap}
.tl-item .tl-org{font-weight:650; font-size:1.05rem}
.tl-item .tl-role{color:var(--accent-ink); font-size:13.5px; font-weight:600}
.tl-item .tl-per{color:var(--muted); font-size:12.5px; font-family:var(--mono); white-space:nowrap}
.tl-item .tl-note{color:var(--muted); font-size:14px; margin-top:5px; max-width:70ch}

/* ---------- client cards (logo + role) ---------- */
.clienthead{display:flex; align-items:center; gap:14px; margin-bottom:13px}
.logochip{width:50px; height:50px; flex:none; border-radius:12px; background:#f4f5f7; display:flex;
  align-items:center; justify-content:center; padding:7px; box-shadow:0 1px 3px rgba(0,0,0,.5)}
.logochip img{max-width:100%; max-height:100%; object-fit:contain}
.clienthead .ch-org{display:flex; align-items:center; gap:9px; flex-wrap:wrap}
.clienthead h3{font-size:1.12rem}
.clienthead .ch-role{color:var(--accent-ink); font-size:13px; font-weight:600; margin-top:1px}
.clienthead .ch-per{color:var(--muted); font-size:12px; font-family:var(--mono); margin-top:3px}
/* logo + name link to the company site */
a.logochip{transition:transform .15s ease, box-shadow .15s ease}
a.logochip:hover{transform:translateY(-2px); box-shadow:0 6px 16px -6px rgba(0,0,0,.7)}
.clienthead .ch-org h3 a{color:inherit; text-decoration:none; transition:color .15s ease}
.clienthead .ch-org h3 a:hover{color:var(--accent-ink); text-decoration:none}
/* flagship engagements (ING, Gemeente Utrecht) — lifted with the platform accent */
.panel.featured{border-color:rgba(91,147,247,.42);
  background:linear-gradient(155deg, rgba(91,147,247,.11), var(--surface) 56%);
  box-shadow:0 0 72px -34px rgba(91,147,247,.6), inset 0 1px 0 rgba(255,255,255,.04)}
.panel.featured .ch-role{color:var(--accent-ink)}

/* ---------- feature list ---------- */
.flist{display:flex; flex-direction:column; gap:14px; max-width:64ch}
.flist li{list-style:none; position:relative; padding-left:30px; color:var(--soft); font-size:15px; line-height:1.55}
.flist li::before{content:""; position:absolute; left:3px; top:.62em; width:12px; height:2px; background:var(--gold)}
.flist li b{color:var(--ink); font-weight:650}

.chips{display:flex; flex-wrap:wrap; gap:8px}
.chips span{font-size:13px; font-weight:500; color:var(--soft); padding:7px 13px; border-radius:999px;
  background:var(--surface); border:1px solid var(--border)}

/* ---------- panels ---------- */
.panel{border:1px solid var(--border); border-radius:18px; background:var(--surface); padding:26px 28px}
.grid2{display:grid; grid-template-columns:1fr 1fr; gap:22px}
@media(max-width:820px){.grid2{grid-template-columns:1fr}}

/* ---------- footer ---------- */
.foot{border-top:1px solid var(--border); margin-top:40px}
.foot .wrap{display:flex; align-items:center; justify-content:space-between; gap:16px; padding-top:26px; padding-bottom:34px; flex-wrap:wrap}
.foot .muted{color:var(--muted); font-size:13.5px}
.foot .fl{display:flex; gap:16px; font-size:13.5px}
.foot .fl a{color:var(--muted)}
.foot .fl a:hover{color:var(--ink); text-decoration:none}

/* ---------- reveal ---------- */
@media (prefers-reduced-motion: no-preference){
  .rise{opacity:0; transform:translateY(16px); animation:rise .7s cubic-bezier(.22,1,.36,1) forwards}
  .rise.d1{animation-delay:.06s} .rise.d2{animation-delay:.13s} .rise.d3{animation-delay:.2s} .rise.d4{animation-delay:.27s}
  @keyframes rise{to{opacity:1; transform:none}}
}

/* utility classes — hand-maintained (u1–u38) */
.u1{text-align:center}
.u2{border:1px solid var(--border); border-radius:18px; overflow:hidden; background:var(--surface); max-width:860px; margin:0 auto; box-shadow:0 30px 70px -30px rgba(0,0,0,.7), 0 0 140px -60px rgba(242,166,90,.25)}
.u3{margin-top:34px}
.u4{margin:16px auto 0}
.u5{margin-top:26px; display:flex; gap:12px; justify-content:center; flex-wrap:wrap}
.u6{text-align:center; font-size:13px; margin-top:14px}
@media(min-width:721px){.u7{grid-template-columns:repeat(3,1fr)}}
.u8{margin-top:18px; max-width:18ch}
.u9{margin-top:16px}
.u10{color:var(--good); border-color:rgba(84,207,142,.4)}
.u11{font-size:14px; line-height:1.6}
.u12{margin-top:26px}
.u13{font-size:13px; margin-top:14px}
.u14{margin-top:30px}
.u15{margin-top:18px}
.u16{margin-top:8px; font-size:14.5px; line-height:1.6}
.u17{align-items:center; gap:30px}
.u18{border:1px solid var(--border); border-radius:16px; overflow:hidden}
.u19{margin-top:12px}
.u20{margin-top:14px; font-size:1.05rem}
.u21{margin-top:18px; max-width:16ch}
.u22{border-color:rgba(91,147,247,.42); background:linear-gradient(155deg, rgba(91,147,247,.11), var(--surface) 56%); box-shadow:0 0 72px -34px rgba(91,147,247,.6), inset 0 1px 0 rgba(255,255,255,.04)}
.u23{color:var(--accent-ink)}
.u24{margin-top:12px; max-width:20ch}
.u25{margin-top:14px; font-size:1.08rem}
.u26{display:flex; gap:24px 34px; align-items:center; justify-content:space-between; flex-wrap:wrap}
.u27{max-width:38ch}
.u28{color:var(--gold)}
.u29{font-size:1.4rem; margin-top:9px; letter-spacing:-.015em}
.u30{margin-top:9px; font-size:14px; line-height:1.6}
.u31{max-width:340px}
.u32{text-align:center; padding:44px 28px}
.u33{justify-content:center}
.u34{margin:16px auto 0; text-align:center}
.u35{margin-top:20px; font-size:14px}
.u36{margin-top:22px}
/* @gen-utilities-end */

/* ---------- vibecoded console ----------
   A floating badge + a ⌘K command bar. Styled entirely here (style-src 'self');
   behaviour lives in /console.js. Everything reuses the tokens above. */
.vibe-badge{position:fixed; right:18px; bottom:18px; z-index:80; display:inline-flex; align-items:center; gap:8px;
  font-family:var(--mono); font-size:12.5px; font-weight:500; color:var(--soft); letter-spacing:.01em;
  padding:8px 12px; border-radius:999px; cursor:pointer;
  background:linear-gradient(180deg, rgba(16,17,22,.92), rgba(11,12,16,.88)); border:1px solid var(--border2);
  -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); box-shadow:0 12px 32px -14px rgba(0,0,0,.85);
  transition:transform .18s ease, border-color .18s ease, color .18s ease}
.vibe-badge:hover{transform:translateY(-2px); border-color:var(--accent); color:var(--ink); text-decoration:none}
.vibe-badge:focus-visible{outline:2px solid var(--accent); outline-offset:3px}
.vibe-dot{width:7px; height:7px; border-radius:50%; background:var(--good); box-shadow:0 0 0 0 rgba(84,207,142,.5)}
.vibe-kbd{font-family:var(--mono); font-size:10.5px; color:var(--gold); background:rgba(255,255,255,.05);
  border:1px solid var(--border2); border-radius:5px; padding:1px 6px; line-height:1.5}
@media(max-width:640px){.vibe-badge{right:12px; bottom:12px; padding:9px 13px}}
@media (prefers-reduced-motion: no-preference){
  .vibe-dot{animation:vibePulse 2.6s ease-out infinite}
  @keyframes vibePulse{0%{box-shadow:0 0 0 0 rgba(84,207,142,.55)}70%{box-shadow:0 0 0 8px rgba(84,207,142,0)}100%{box-shadow:0 0 0 0 rgba(84,207,142,0)}}
}

.vibe-console{position:fixed; inset:0; z-index:100; display:flex; align-items:flex-start; justify-content:center;
  padding:13vh 16px 16px}
.vibe-console[hidden]{display:none}
.vibe-backdrop{position:fixed; inset:0; background:rgba(4,4,6,.66); -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px)}
.vibe-panel{position:relative; width:100%; max-width:600px; border:1px solid var(--border2); border-radius:16px;
  background:linear-gradient(180deg, rgba(16,17,22,.985), rgba(9,10,13,.985));
  box-shadow:0 44px 96px -30px rgba(0,0,0,.9), 0 0 130px -50px rgba(91,147,247,.4); overflow:hidden}
@media (prefers-reduced-motion: no-preference){
  .vibe-console:not([hidden]) .vibe-panel{animation:vibeIn .28s cubic-bezier(.22,1,.36,1)}
  @keyframes vibeIn{from{opacity:0; transform:translateY(-12px) scale(.98)}to{opacity:1; transform:none}}
}
.vibe-head{display:flex; align-items:center; gap:10px; padding:11px 14px; border-bottom:1px solid var(--border)}
.vibe-prompt{font-size:12px; color:var(--muted)}
.vibe-tag{font-size:11px; color:var(--gold); margin-left:auto; letter-spacing:.02em}
.vibe-close{font-family:var(--mono); font-size:11px; color:var(--muted); background:rgba(255,255,255,.04);
  border:1px solid var(--border2); border-radius:6px; padding:3px 8px; cursor:pointer; transition:color .15s, border-color .15s}
.vibe-close:hover{color:var(--ink); border-color:var(--accent)}
.vibe-inputrow{display:flex; align-items:center; gap:10px; padding:15px 16px 13px}
.vibe-caret{color:var(--accent); font-size:15px; line-height:1}
.vibe-input{flex:1; min-width:0; background:transparent; border:0; outline:none; color:var(--ink); font-size:15px}
.vibe-input::placeholder{color:var(--muted)}
.vibe-list{list-style:none; max-height:42vh; overflow:auto; padding:2px 8px 8px; margin:0}
.vibe-list li{display:flex; align-items:center; gap:12px; padding:9px 10px; border-radius:9px; cursor:pointer; color:var(--soft)}
.vibe-list li .vi-ic{width:18px; flex:none; text-align:center; color:var(--accent-ink)}
.vibe-list li .vi-name{font-size:13.5px; color:var(--ink); min-width:82px}
.vibe-list li .vi-hint{font-size:12.5px; color:var(--muted)}
.vibe-list li[aria-selected="true"]{background:rgba(91,147,247,.13)}
.vibe-list li[aria-selected="true"] .vi-hint{color:var(--soft)}
.vibe-out{white-space:pre-wrap; font-size:13px; line-height:1.62; color:var(--soft);
  padding:4px 18px 16px; max-height:46vh; overflow:auto; border-top:1px solid var(--border)}
.vibe-foot{display:flex; justify-content:space-between; gap:12px; padding:9px 14px; border-top:1px solid var(--border);
  font-family:var(--mono); font-size:10.5px; color:var(--muted); flex-wrap:wrap}
.vibe-foot .vibe-foot-r{color:var(--gold); opacity:.85}

/* ---------- minigame: packets (snake) ---------- */
.vibe-game{position:fixed; inset:0; z-index:110; display:flex; align-items:center; justify-content:center; padding:16px}
.vibe-game[hidden]{display:none}
.vibe-gpanel{position:relative; width:100%; max-width:460px; border:1px solid var(--border2); border-radius:16px;
  background:linear-gradient(180deg, rgba(16,17,22,.99), rgba(9,10,13,.99));
  box-shadow:0 44px 96px -30px rgba(0,0,0,.9), 0 0 130px -50px rgba(91,147,247,.4);
  padding:14px; display:flex; flex-direction:column; gap:12px}
@media (prefers-reduced-motion: no-preference){
  .vibe-game:not([hidden]) .vibe-gpanel{animation:vibeIn .28s cubic-bezier(.22,1,.36,1)}
}
.vibe-ghead{display:flex; align-items:center; gap:9px}
.vibe-gtitle{font-size:13px; color:var(--ink); letter-spacing:.02em}
.vibe-gsub{font-size:11px; color:var(--gold)}
.vibe-gscore{margin-left:auto; font-size:12px; color:var(--soft)}
.vibe-gbest{font-size:12px; color:var(--muted)}
.vibe-gwrap{position:relative; align-self:center; width:100%; max-width:400px}
.vibe-canvas{display:block; width:100%; aspect-ratio:1; border:1px solid var(--border); border-radius:12px;
  background:var(--surface2); touch-action:none}
.vibe-gfoot{font-size:10.5px; color:var(--muted); text-align:center}
.vibe-gover{position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:10px; text-align:center; padding:16px; border-radius:12px;
  background:rgba(6,6,8,.74); -webkit-backdrop-filter:blur(3px); backdrop-filter:blur(3px)}
.vibe-gover[hidden]{display:none}
.vibe-gover .go-title{font-size:16px; color:var(--ink); letter-spacing:.02em}
.vibe-gover .go-score{font-size:13px; color:var(--soft)}
.vibe-gover .go-hint{font-size:11px; color:var(--muted)}
.vibe-gover .go-btn{font-family:var(--mono); font-size:12.5px; font-weight:600; color:#08101f; background:var(--accent);
  border:0; border-radius:999px; padding:8px 18px; cursor:pointer; transition:background .15s, transform .15s}
.vibe-gover .go-btn:hover{background:#7aa8ff; transform:translateY(-1px)}
.vibe-gover .go-btn:focus-visible{outline:2px solid var(--accent-ink); outline-offset:3px}

/* ---------- ambient drift + hero parallax ----------
   Two soft glow layers that slowly breathe (GPU transform only, so it costs
   ~nothing and keeps the "fast site" promise). Static on mobile + reduced-motion. */
body::before, body::after{content:""; position:fixed; z-index:-1; pointer-events:none;
  border-radius:50%; filter:blur(44px)}
body::before{top:-16vh; left:6vw; width:54vw; height:52vh;
  background:radial-gradient(closest-side, rgba(91,147,247,.11), transparent 72%)}
body::after{top:-10vh; right:0; width:46vw; height:48vh;
  background:radial-gradient(closest-side, rgba(242,166,90,.09), transparent 72%)}
@media (prefers-reduced-motion: no-preference){
  body::before, body::after{will-change:transform}
  body::before{animation:driftA 24s ease-in-out infinite alternate}
  body::after{animation:driftB 31s ease-in-out infinite alternate}
  @keyframes driftA{from{transform:translate3d(0,0,0)}to{transform:translate3d(4vw,3vh,0)}}
  @keyframes driftB{from{transform:translate3d(0,0,0)}to{transform:translate3d(-3vw,4vh,0)}}
}
@media(max-width:640px){body::before,body::after{filter:blur(32px); opacity:.72; animation:none}}

/* hero illustration parallaxes toward the cursor (transform set in console.js) */
main figure img{transition:transform .18s ease-out}
@media (prefers-reduced-motion: no-preference){ main figure img{will-change:transform} }

/* skip link — visible only on keyboard focus */
.skip{position:absolute; left:12px; top:-52px; z-index:200; background:var(--accent); color:#08101f;
  padding:9px 15px; border-radius:9px; font-weight:600; font-size:14px; transition:top .16s ease}
.skip:focus{top:12px}

/* visually hidden, still announced by screen readers */
.sr-only{position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0}

/* home hero kicker + centred proof heading */
.u37{margin:22px 0 4px}
.u38{margin-left:auto; margin-right:auto; text-align:center}

/* ---------- inner-page hero: text + a live-system signal card ----------
   Fills the right half of the work / approach / pitch heroes with a compact
   monospace "status" card that echoes the ⌘K console — honest facts, not chrome.
   Collapses to a single column below the text on narrow screens. */
.herosplit{display:grid; grid-template-columns:1.08fr .92fr; gap:46px; align-items:center}
.herosplit>*{min-width:0} /* let grid children shrink instead of forcing overflow */
@media(max-width:900px){.herosplit{grid-template-columns:1fr; gap:30px}}
.signal{font-family:var(--mono); border:1px solid var(--border2); border-radius:15px; overflow:hidden;
  background:linear-gradient(180deg, rgba(16,17,22,.92), rgba(9,10,13,.94));
  box-shadow:0 34px 82px -38px rgba(0,0,0,.85), 0 0 100px -54px rgba(91,147,247,.4)}
.signal .sig-head{display:flex; align-items:center; gap:9px; padding:11px 14px; border-bottom:1px solid var(--border);
  font-size:11.5px; letter-spacing:.02em}
.signal .sig-dot{width:8px; height:8px; border-radius:50%; background:var(--good); flex:none}
.signal .sig-label{color:var(--soft)}
.signal .sig-kbd{margin-left:auto; font-size:10.5px; color:var(--gold);
  background:rgba(255,255,255,.05); border:1px solid var(--border2); border-radius:5px; padding:1px 6px}
.signal .sig-body{padding:14px 16px; display:flex; flex-direction:column; gap:9px}
.signal .sig-row{display:flex; gap:12px; font-size:12.5px; line-height:1.45}
.signal .sig-key{color:var(--gold); flex:none; width:78px}
.signal .sig-val{color:var(--soft)}
.signal .sig-foot{padding:10px 16px; border-top:1px solid var(--border); font-size:11px; color:var(--muted)}
.signal .sig-foot b{color:var(--gold); font-weight:600}
@media (prefers-reduced-motion: no-preference){ .signal .sig-dot{animation:vibePulse 2.6s ease-out infinite} }
@media (pointer:coarse){ .signal .sig-kbd, .signal .sig-foot{display:none} }

/* console input keeps a visible focus ring for keyboard users */
.vibe-input:focus-visible{outline:2px solid var(--accent-ink); outline-offset:3px; border-radius:4px}

/* copied-email toast — makes mailto robust when the desktop browser has no mail client */
.vibe-toast{position:fixed; left:50%; bottom:22px; transform:translate(-50%,12px); z-index:130;
  font-size:12.5px; color:var(--ink); letter-spacing:.01em;
  background:linear-gradient(180deg, rgba(16,17,22,.96), rgba(11,12,16,.94)); border:1px solid var(--border2);
  border-radius:999px; padding:9px 16px; box-shadow:0 14px 34px -14px rgba(0,0,0,.85);
  -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px);
  opacity:0; pointer-events:none; transition:opacity .2s ease, transform .2s ease}
.vibe-toast.show{opacity:1; transform:translate(-50%,0)}

/* mobile: clear the fixed vibecoded badge off the footer, enlarge footer tap targets */
@media(max-width:640px){
  .foot .wrap{padding-bottom:66px}
  .foot .fl{gap:8px 20px; flex-wrap:wrap}
  .foot .fl a{padding:7px 2px}
}

/* ---------- vibecoded components: mobile tidy-ups ---------- */
@media(max-width:640px){
  /* console — hide the header tag (the badge already says "vibecoded"), give hints room */
  .vibe-tag{display:none}
  .vibe-list li{gap:9px}
  .vibe-list li .vi-name{min-width:66px}
  .vibe-console{padding:9vh 12px 12px}
  /* game — drop the subtitle so the score/best/esc HUD stays on one line */
  .vibe-gsub{display:none}
  .vibe-gscore,.vibe-gbest{font-size:11.5px}
  .vibe-game{padding:12px}
}
