/* kyfram site — monochrome, hairline structure, self-hosted. No CDN, no build step.
   Two parts: components below, then a generated utility layer (tools/build_css.py). */

/* ── tokens: black, white, grays. nothing else ─────────────────────── */
:root{
  /* palette pulled from wallpapers/1920x1080_omarchy_aerial-urban-landscape.jpg
     (k-means on a 320x180 frame; all tones warm-olive, sat <8%) */
  --bg:#0d0d0c;
  --surface:#171816;
  --surface-2:#232421;
  --line:#343531;
  --line-strong:#4b4c46;
  --text:#f5f5f4;
  --muted:#8f8f86;   /* brightest tone #8a8a80 lifted one step to clear 4.5:1 */
  --muted-2:#8a8a80;
  --mono:"Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans:"Geist", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --r:14px;
  --r-sm:10px;
}

/* ── fonts, self-hosted ────────────────────────────────────────────── */
@font-face{font-family:"Geist";src:url("fonts/Geist-Regular.ttf") format("truetype");font-weight:400;font-display:swap}
@font-face{font-family:"Geist";src:url("fonts/Geist-Medium.ttf") format("truetype");font-weight:500;font-display:swap}
@font-face{font-family:"Geist";src:url("fonts/Geist-Bold.ttf") format("truetype");font-weight:700;font-display:swap}
@font-face{font-family:"Geist";src:url("fonts/Geist-Black.ttf") format("truetype");font-weight:900;font-display:swap}
@font-face{font-family:"Geist Mono";src:url("fonts/GeistMono-400.woff2") format("woff2");font-weight:400;font-display:swap}
@font-face{font-family:"Geist Mono";src:url("fonts/GeistMono-500.woff2") format("woff2");font-weight:500;font-display:swap}
@font-face{font-family:"Geist Mono";src:url("fonts/GeistMono-600.woff2") format("woff2");font-weight:600;font-display:swap}

/* ── base ──────────────────────────────────────────────────────────── */
*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:4rem}
body{
  font-family:var(--sans);
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  line-height:1.6;
  margin:0;
}
img,video{max-width:100%;display:block}
.mono,pre,code,kbd{font-family:var(--mono)}
::selection{background:var(--text);color:#000}
a{color:inherit}
:focus-visible{outline:1px solid var(--text);outline-offset:2px}
h1,h2,h3,h4{margin:0;line-height:1.15;text-wrap:balance}
p{margin:0}
em{font-style:normal}
details summary{list-style:none}
details summary::-webkit-details-marker{display:none}
.muted{color:var(--muted)}
.muted-2{color:var(--muted-2)}
.link{color:var(--text);text-decoration:underline;text-underline-offset:3px}
.link:hover{color:#fff}

/* skip link */
.skip-link{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;background:#fff;color:#000;padding:.6rem 1rem;font-size:13px;font-weight:600;z-index:100;border-radius:999px}
.skip-link:focus{left:1rem;top:1rem;width:auto;height:auto}

/* grain — film texture, not decoration lighting */
/* lists are navigation menus only — never show bullets (Tailwind's preflight
   reset used to do this; we have no preflight anymore) */
ul, ol { list-style: none; margin: 0; padding: 0 }
a { color: inherit; text-decoration: none }

.grain{
  position:fixed;inset:0;z-index:1;pointer-events:none;opacity:.12;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M24 0H0V24' fill='none' stroke='%23d4d4cc' stroke-opacity='.35' stroke-width='1'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size:24px 24px,180px 180px;
}

/* ── button system — one shape, three fills ────────────────────────── */
.btn{display:inline-flex;align-items:center;gap:.5rem;font-weight:500;line-height:1;cursor:pointer;transition:background .15s,color .15s,border-color .15s;white-space:nowrap;user-select:none;text-decoration:none}
.btn--primary{background:#fff;color:#000;border:1px solid #fff}
.btn--primary:hover{background:#cfcfcf;border-color:#cfcfcf}
.btn--secondary{background:transparent;color:#fff;border:1px solid #3f3f46}
.btn--secondary:hover{background:#fff;color:#000;border-color:#fff}
.btn--ghost{background:transparent;color:var(--muted);border:1px solid var(--line-strong)}
.btn--ghost:hover{color:#fff;border-color:#52525b}
.btn--sm{font-size:13px;padding:.45rem 1rem}
.btn--md{font-size:14px;padding:.7rem 1.5rem}
.btn--pill{border-radius:999px}
.btn--icon{width:2.1rem;height:2.1rem;justify-content:center;border-radius:999px;padding:0;font-size:1rem}
.btn:disabled{opacity:.45;pointer-events:none}

/* ── nav ───────────────────────────────────────────────────────────── */
.site-nav{position:relative;z-index:20;border-bottom:1px solid var(--line);background:var(--bg)}
.nav-row{max-width:1220px;margin:0 auto;padding:0 clamp(16px,4vw,32px);height:56px;display:flex;align-items:center;justify-content:space-between;gap:1rem}
.nav-brand{display:flex;align-items:center;gap:.75rem;shrink:0;text-decoration:none}
.nav-name{font-weight:700;letter-spacing:-.02em;font-size:16px;color:var(--text)}
.nav-version{font-family:var(--mono);font-size:11px;color:var(--muted-2);border:1px solid var(--line-strong);padding:1px 6px;border-radius:5px;margin-left:.25rem}
.nav-links{display:none;align-items:center;gap:1.75rem;font-size:13.5px;color:var(--muted);list-style:none;margin:0;padding:0}
.nav-links a{text-decoration:none;transition:color .15s}
.nav-links a:hover{color:#fff}
.nav-actions{display:flex;align-items:center;gap:.5rem}
.nav-mobile{position:relative}
.nav-burger{display:block;width:18px;height:2px;background:currentColor;position:relative}
.nav-burger::before,.nav-burger::after{content:"";position:absolute;left:0;width:18px;height:2px;background:currentColor}
.nav-burger::before{top:-6px}.nav-burger::after{top:6px}
.nav-mobile summary{color:var(--text);border:1px solid var(--line-strong);padding:13px 14px;cursor:pointer}
.nav-mobile summary:hover{border-color:#52525b}
.nav-mobile-menu{position:absolute;right:0;top:calc(100% + 8px);width:200px;background:var(--surface);border:1px solid var(--line-strong);padding:.4rem;display:flex;flex-direction:column;z-index:50}
.nav-mobile-menu a{padding:.55rem .75rem;color:var(--muted);text-decoration:none;font-size:14px}
.nav-mobile-menu a:hover{background:#fff;color:#000}
@media(min-width:1024px){.nav-links{display:flex}.nav-mobile{display:none}.nav-actions .btn--secondary{display:inline-flex}}

/* ── page / sections ───────────────────────────────────────────────── */
.page{max-width:1220px;margin:0 auto;padding:0 clamp(16px,4vw,32px);position:relative;z-index:10}
.section{padding-block:clamp(40px,7vw,80px);border-top:1px solid var(--line)}
.section-h2{font-size:clamp(1.3rem,3vw,1.9rem);font-weight:700;letter-spacing:-.02em}
.section-sub{color:var(--muted);font-size:14px;margin-top:.5rem;max-width:64ch}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:1rem;flex-wrap:wrap}

/* ── hero: the tween, not the video ────────────────────────────────── */
.hero{padding-block:clamp(48px,8vw,96px) clamp(40px,6vw,72px)}
.hero-grid{display:grid;grid-template-columns:1fr;gap:clamp(28px,5vw,64px);align-items:center}
@media(min-width:1024px){.hero-grid{grid-template-columns:1.05fr .95fr}}
.hero-copy{max-width:560px}
.hero-h1{
  font-size:clamp(2rem,5.6vw,3.6rem);
  font-weight:900;letter-spacing:-.045em;line-height:1.02;color:var(--text);
}
.hero-sub{color:var(--muted);font-size:clamp(15px,1.8vw,17px);line-height:1.65;margin-top:1.25rem;max-width:48ch}
.hero-ctas{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1.75rem}
@media(max-width:480px){.hero-ctas{flex-direction:column}.hero-ctas .btn{width:100%;justify-content:center}}
.hero-facts{color:var(--muted-2);font-size:12px;line-height:1.8;margin-top:2rem}

/* the tween visual — one deliberate motion moment */
.tween-box{border:1px solid var(--line-strong);background:var(--bg);border-radius:var(--r);overflow:hidden}
.tween-head{display:flex;align-items:center;justify-content:space-between;gap:.75rem;padding:.6rem .85rem;border-bottom:1px solid var(--line);background:var(--surface-2)}
.tween-title{font-family:var(--mono);font-size:11px;color:var(--muted)}
.tween-ease{font-family:var(--mono);font-size:11px;color:var(--text);border:1px solid var(--line-strong);border-radius:999px;padding:2px 9px}
.tween-svg{display:block;width:100%;height:auto;background:var(--surface)}
.tween-meta{display:flex;flex-wrap:wrap;gap:.75rem 1.5rem;padding:.6rem .85rem;border-top:1px solid var(--line);color:var(--muted);font-size:12px}
.tween-meta em{color:var(--text);font-variant-numeric:tabular-nums}
.hero-code{max-width:760px;margin-inline:auto;margin-top:clamp(32px,5vw,56px)}

/* ── showcase clips ────────────────────────────────────────────────── */
.clips{display:grid;grid-template-columns:1fr;gap:clamp(12px,2vw,18px);margin-top:1.5rem}
@media(min-width:640px){.clips{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.clips{grid-template-columns:repeat(4,1fr)}}
.clip{border:1px solid var(--line-strong);background:var(--bg);overflow:hidden;border-radius:var(--r-sm);margin:0}
.clip-video{display:block;width:100%;aspect-ratio:16/9;background:#000;cursor:pointer;object-fit:cover}
.clip-cap{display:flex;align-items:center;justify-content:space-between;gap:.75rem;padding:.6rem .85rem;border-top:1px solid var(--line);font-family:var(--mono);font-size:12px;flex-wrap:wrap;row-gap:.25rem}

/* ── example grid + dialog ─────────────────────────────────────────── */
.egrid{display:grid;grid-template-columns:1fr;gap:clamp(12px,2vw,16px);margin-top:1.5rem}
@media(min-width:640px){.egrid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.egrid{grid-template-columns:repeat(3,1fr)}}
.example-card{text-align:left;border:1px solid var(--line-strong);background:var(--surface);border-radius:var(--r-sm);overflow:hidden;cursor:pointer;padding:0;font:inherit;color:inherit;transition:border-color .2s;width:100%}
.example-card:hover{border-color:#4a4a4a}
.example-media{position:relative;display:block;aspect-ratio:16/9;background:#000;overflow:hidden}
.example-poster{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .35s}
.example-card:hover .example-poster{transform:scale(1.03)}
.example-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity .25s}
.example-play{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;transition:opacity .2s}
.example-play span{width:40px;height:40px;border-radius:999px;background:rgba(0,0,0,.6);display:flex;align-items:center;justify-content:center;color:#fff}
.example-body{display:block;padding:.85rem 1rem}
.example-row{display:flex;align-items:center;justify-content:space-between;gap:.5rem}
.example-name{font-family:var(--mono);font-size:12px;color:var(--text)}
.example-tag{font-family:var(--mono);font-size:11px;color:var(--muted)}
.example-desc{display:block;margin-top:.4rem;font-size:13px;line-height:1.5;color:var(--muted)}
.example-hint{margin-top:.6rem;display:inline-flex;align-items:center;gap:.35rem;font-family:var(--mono);font-size:11px;color:var(--muted-2);opacity:0;transition:opacity .2s}
.example-card:hover .example-hint,.example-card:focus-visible .example-hint{opacity:1}

/* ── example pager ────────────────────────────────────────────────── */
.pager{display:flex;align-items:center;justify-content:center;gap:.5rem;margin-top:2.25rem}
.pager button{font-family:var(--mono);font-size:13px;min-width:44px;min-height:44px;padding:0 .75rem;border:1px solid var(--line-strong);background:var(--surface);color:var(--muted);border-radius:var(--r-sm);cursor:pointer;transition:border-color .2s,color .2s}
.pager button:hover{border-color:var(--text);color:var(--text)}
.pager button[aria-current="true"]{background:var(--text);color:var(--bg);border-color:var(--text)}

.example-dialog{border:1px solid var(--line-strong);background:var(--surface);color:var(--text);border-radius:var(--r);padding:0;max-width:min(880px,calc(100vw - 1rem));width:880px}
.example-dialog::backdrop{background:rgba(0,0,0,.75)}
.dialog-scroll{overflow:auto;max-height:calc(100vh - 2rem)}
.dialog-head{display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;padding:1.1rem 1.25rem;border-bottom:1px solid var(--line)}
.dialog-title{font-size:17px;font-weight:600;letter-spacing:-.01em}
.dialog-desc{margin-top:.25rem;font-size:13px;color:var(--muted)}
.dialog-render{padding:0 1.25rem 1.25rem;font-size:12px;color:var(--muted-2)}

/* ── code frames — one pattern ─────────────────────────────────────── */
.code-frame{border:1px solid var(--line-strong);background:var(--surface);overflow:hidden;border-radius:var(--r-sm)}
.code-frame>.code-head:first-child{border-radius:var(--r-sm) var(--r-sm) 0 0}
.code-head{display:flex;align-items:center;justify-content:space-between;gap:.75rem;padding:.55rem .75rem;border-bottom:1px solid var(--line);background:var(--surface-2);font-size:11px;color:var(--muted)}
.copy{border:1px solid var(--line-strong);padding:.25rem .6rem;font-size:11px;color:var(--text);background:transparent;cursor:pointer;border-radius:999px;font-family:var(--mono)}
.copy:hover{background:#fff;color:#000;border-color:#fff}
.code-frame pre{margin:0;padding:.85rem 1rem;overflow:auto;background:var(--surface);font-size:clamp(11.5px,1.6vw,13px);line-height:1.7;max-height:440px}
.code-frame code{color:#e4e4e4;background:transparent}
.code-inline{display:inline;padding:.12em .34em;border-radius:4px;font-size:.86em;line-height:1.75;color:#e8e8e8;background:rgba(255,255,255,.07);box-decoration-break:clone;-webkit-box-decoration-break:clone;vertical-align:baseline;word-break:break-word}
pre::-webkit-scrollbar{height:6px;width:6px}
pre::-webkit-scrollbar-thumb{background:var(--line-strong)}
pre::-webkit-scrollbar-track{background:transparent}

/* monochrome code tokens (emitted by script.js highlighter) */
.hljs-comment{color:var(--muted-2)}
.hljs-string{color:#d4d4d4}
.hljs-keyword{color:#fff;font-weight:600}
.hljs-number,.hljs-literal{color:#fff}
.hljs-title,.hljs-function{color:#f5f5f4;font-weight:600}
.hljs-built_in,.hljs-attr{color:#a3a3a3}
.hljs-params,.hljs-variable{color:#c4c4c4}
.hljs-punctuation,.hljs-operator{color:#8a8a8a}

/* ── install ───────────────────────────────────────────────────────── */
.install-grid{display:grid;grid-template-columns:1fr;gap:clamp(20px,3vw,40px);align-items:start}
@media(min-width:1024px){.install-grid{grid-template-columns:420px 1fr}}
.chips{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:1.25rem}
.chip{border:1px solid var(--line-strong);padding:.35rem .7rem;font-size:11.5px;color:var(--muted)}
.term-out{padding:.75rem 1rem;border-top:1px solid var(--line);font-size:12px;color:var(--muted)}

/* ── quickstart tabs ───────────────────────────────────────────────── */
.tablist{display:flex;gap:2px;padding:3px;background:var(--surface);border:1px solid var(--line-strong);width:fit-content;max-width:100%;border-radius:999px;margin-top:1.5rem}
.tab-panel{border:1px solid var(--line-strong);background:var(--surface);border-radius:var(--r-sm);overflow:hidden;margin-top:12px}
.tab-panel .code-frame{border:0;border-radius:0}
.tab-panel .code-frame .code-head{border-radius:0}
.panel-note{padding:.75rem 1rem;font-size:13.5px;color:var(--muted);border-top:1px solid var(--line)}

/* ── bento features ────────────────────────────────────────────────── */
.bento{display:grid;grid-template-columns:1fr;gap:1px;background:var(--line-strong);border:1px solid var(--line-strong);border-radius:var(--r-sm);overflow:hidden;margin-top:1.5rem}
@media(min-width:640px){.bento{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.bento{grid-template-columns:repeat(3,1fr)}}
.bento-cell{background:var(--surface);padding:clamp(1.1rem,2.5vw,1.6rem)}
.bento-h{font-size:15px;font-weight:600;color:var(--text)}
.bento-p{margin-top:.45rem;font-size:13.5px;line-height:1.55;color:var(--muted);max-width:42ch}

/* ── cli table ─────────────────────────────────────────────────────── */
.cli-table{border:1px solid var(--line-strong);border-radius:var(--r-sm);overflow-x:auto;overflow-y:hidden;margin-top:1.5rem}
.cli-table table{border-collapse:collapse;width:100%;min-width:460px}
.cli-table thead{background:var(--surface-2)}
.cli-table th{padding:.8rem 1rem;font-size:11px;color:var(--muted);text-align:left;font-weight:600;border-bottom:1px solid var(--line)}
.cli-table td{padding:.8rem 1rem;font-size:13.5px;color:var(--muted);border-top:1px solid var(--line)}
.cli-table td.mono{font-size:12px;color:#d4d4d4}
.flagline{margin-top:.9rem;font-size:11.5px;word-break:break-word}

/* ── cta + footer ──────────────────────────────────────────────────── */
.cta{border:1px solid var(--line-strong);background:var(--surface);border-radius:var(--r);padding:clamp(1.5rem,4vw,2.5rem);display:flex;flex-direction:column;gap:1.25rem;align-items:flex-start}
@media(min-width:1024px){.cta{flex-direction:row;align-items:center;justify-content:space-between}}
.cta{border:1px solid var(--line-strong);background:linear-gradient(180deg,var(--surface-2) 0%,var(--surface) 55%,var(--bg) 100%);border-radius:var(--r);padding:clamp(1.5rem,4vw,2.5rem);display:flex;flex-direction:column;gap:1.5rem;align-items:flex-start}
@media(min-width:1024px){.cta{flex-direction:row;align-items:flex-end;justify-content:space-between}}
.cta-stats{font-family:var(--mono);font-size:clamp(1.15rem,2.6vw,1.5rem);line-height:1.5;color:var(--text);font-variant-numeric:tabular-nums;letter-spacing:-.02em}
.cta-h{font-size:clamp(1.6rem,4vw,2.4rem);font-weight:800;letter-spacing:-.03em;line-height:1.1}
.cta-btns{display:flex;flex-wrap:wrap;gap:.75rem;width:100%}
@media(min-width:640px){.cta-btns{width:auto}}
@media(max-width:480px){.cta-btns .btn{width:100%;justify-content:center}}
.site-foot{border-top:1px solid var(--line);position:relative;z-index:10}
.foot-inner{max-width:1220px;margin:0 auto;padding:1.5rem clamp(16px,4vw,32px) 2rem;display:flex;flex-wrap:wrap;gap:1.5rem 3rem;font-size:14px}
.foot-brand{display:flex;gap:.75rem;align-items:flex-start}
.foot-brand p{font-size:14px;line-height:1.6}
.foot-nav{display:flex;flex-direction:column;gap:.35rem}
.foot-head{font-weight:600;color:var(--text);font-size:14px;margin-bottom:.25rem}
.foot-link{color:var(--muted);text-decoration:none;font-size:14px}
.foot-link:hover{color:#fff}

/* ── motion discipline ─────────────────────────────────────────────── */
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{transition:none !important;animation:none !important}
  .tween-marker{opacity:1}
}

/* responsive guards: nothing may overflow horizontally */
.code-frame,.example-dialog,.cli-table{max-width:100%}
pre{max-width:100%}
table{min-width:100%}
@media(max-width:640px){
  .code-frame pre{font-size:12px;max-height:360px}
  .example-dialog{width:calc(100vw - .75rem);max-width:calc(100vw - .75rem);margin:.375rem}
  .dialog-scroll{max-height:calc(100vh - .75rem)}
}

/* ── docs sidebar/drawer (generated pages) ─────────────────────── */
.docs-bar{position:sticky;top:0;z-index:40;display:flex;align-items:center;justify-content:space-between;gap:.75rem;height:52px;padding:0 1rem;background:rgba(7,7,8,.92);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);border-bottom:1px solid #27272a}
@media (min-width:1024px){.docs-bar{display:none}}
.nav-sub{display:block;padding:.2rem .5rem;font-size:11.5px;line-height:1.35;color:#71717a;text-decoration:none}
.nav-sub:hover{color:#e4e4e7}
.drawer{display:flex;min-height:100vh;max-width:100vw;overflow-x:hidden}
.drawer-content{flex:1;min-width:0;max-width:100%;overflow-x:hidden}
.drawer-side{position:fixed;inset:0;z-index:40;pointer-events:none;visibility:hidden;overflow:auto}
.drawer-side .drawer-overlay{position:absolute;inset:0;background:rgba(0,0,0,.6)}
.drawer-side aside{position:absolute;left:0;top:0;bottom:0;width:18rem;background:var(--surface);border-right:1px solid var(--line-strong);overflow:auto;transform:translateX(-100%);transition:transform .2s}
.drawer-toggle:checked ~ .drawer-side{pointer-events:auto;visibility:visible}
.drawer-toggle:checked ~ .drawer-side aside{transform:translateX(0)}
@media (min-width:1024px){
  .drawer-side{position:sticky;top:0;align-self:flex-start;height:100vh;visibility:visible;pointer-events:auto;flex-shrink:0}
  .drawer-side .drawer-overlay{display:none}
  .drawer-side aside{position:sticky;top:0;width:18rem;height:100vh;transform:none;overflow:auto}
  .drawer-toggle{display:none}
}

/* ── docs search (docs pages only) ─────────────────────────────── */
.docs-search{position:relative}
.docs-search input{width:100%;background:#0f0f10;border:1px solid #27272a;border-radius:10px;padding:.55rem .75rem .55rem 2.1rem;color:#fafaf9;font-size:13px;outline:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.5' y2='16.5'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:11px center}
.docs-search input:focus-visible{border-color:#52525b}
.docs-search input::placeholder{color:#71717a}
.docs-results{position:absolute;top:calc(100% + 6px);left:0;right:0;background:#0f0f10;border:1px solid #27272a;border-radius:12px;overflow:hidden;z-index:60;display:none;box-shadow:0 16px 40px rgba(0,0,0,.55)}
.docs-results.open{display:block}
.docs-results ul{list-style:none;margin:0;padding:0;max-height:340px;overflow-y:auto}
.docs-results li a{display:block;padding:.6rem .8rem;border-bottom:1px solid #18181b;text-decoration:none}
.docs-results li a:hover,.docs-results li a.selected{background:#18181b}
.docs-results .r-title{display:flex;align-items:center;justify-content:space-between;gap:.5rem;color:#fafaf9;font-weight:600;font-size:13px}
.docs-results .r-title code{color:#a1a1aa;font-size:11px;font-weight:400}
.docs-results .r-desc{color:#a1a1aa;font-size:12px;margin-top:.15rem;line-height:1.4}
.docs-results .r-head{color:#71717a;font-size:11px;margin-top:.35rem;line-height:1.5}
.docs-results .r-head b{color:#d4d4d8;font-weight:500}
.docs-results .empty{padding:.6rem .8rem;color:#71717a;font-size:12px}

/* ==== utilities (generated by tools/build_css.py — do not edit) ==== */
.absolute{ position:absolute }
.aspect-\[16\/9\]{ aspect-ratio:16/9 }
.backdrop-blur{ backdrop-filter:blur(8px) }
.bg-\[#070708\]{ background-color:#070708 }
.bg-\[#0f0f10\]{ background-color:#0f0f10 }
.bg-\[#111113\]{ background-color:#111113 }
.bg-black{ background-color:#000000 }
.bg-black\/60{ background-color:rgba(0,0,0,0.60) }
.block{ display:block }
.border{ border:1px solid var(--line-strong) }
.border-b{ border-bottom:1px solid var(--line-strong) }
.border-l{ border-left:1px solid var(--line-strong) }
.border-t{ border-top:1px solid var(--line-strong) }
.border-zinc-800{ border-color:#27272a }
.cursor-pointer{ cursor:pointer }
.divide-y>*+*{ border-top:1px solid var(--line) }
.divide-zinc-800>*+*{ border-color:#27272a }
.duration-200{ transition-duration:200ms }
.flex{ display:flex }
.flex-wrap{ flex-wrap:wrap }
.font-bold{ font-weight:700 }
.font-medium{ font-weight:500 }
.font-mono{ font-family:var(--mono) }
.font-semibold{ font-weight:600 }
.gap-2{ gap:0.5rem }
.gap-3{ gap:0.75rem }
.gap-4{ gap:1rem }
.grid{ display:grid }
.group:hover .text-zinc-500{ color:#71717a }
.h-12{ height:3rem }
.h-14{ height:3.5rem }
.h-20{ height:5rem }
.h-9{ height:2.25rem }
.h-full{ height:100% }
.hidden{ display:none }
.hover\:bg-zinc-900:hover{ background-color:#18181b }
.hover\:border-zinc-600:hover{ border-color:#52525b }
.hover\:text-white:hover{ color:#ffffff }
.inset-0{ inset:0 }
.items-center{ align-items:center }
.justify-between{ justify-content:space-between }
.justify-center{ justify-content:center }
.leading-none{ line-height:1 }
.leading-relaxed{ line-height:1.625 }
.m-5{ margin:1.25rem }
.max-w-\[1220px\]{ max-width:1220px }
.max-w-\[620px\]{ max-width:620px }
.max-w-\[640px\]{ max-width:640px }
.max-w-\[760px\]{ max-width:760px }
.max-w-\[820px\]{ max-width:820px }
.mb-2{ margin-bottom:0.5rem }
.mb-5{ margin-bottom:1.25rem }
.mb-6{ margin-bottom:1.5rem }
.min-w-\[460px\]{ min-width:460px }
.min-w-\[520px\]{ min-width:520px }
.ml-3{ margin-left:0.75rem }
.mt-1{ margin-top:0.25rem }
.mt-1.5{ margin-top:0.375rem }
.mt-12{ margin-top:3rem }
.mt-14{ margin-top:3.5rem }
.mt-3{ margin-top:0.75rem }
.mt-4{ margin-top:1rem }
.mt-6{ margin-top:1.5rem }
.mt-8{ margin-top:2rem }
.mx-4{ margin-left:1rem;margin-right:1rem }
.mx-auto{ margin-inline:auto }
.object-cover{ object-fit:cover }
.opacity-0{ opacity:0.0 }
.overflow-hidden{ overflow:hidden }
.overflow-x-auto{ overflow-x:auto }
.p-3.5{ padding:0.875rem }
.p-4{ padding:1rem }
.pl-3{ padding-left:0.75rem }
.pointer-events-none{ pointer-events:none }
.pt-8{ padding-top:2rem }
.px-1.5{ padding-left:0.375rem;padding-right:0.375rem }
.px-2{ padding-left:0.5rem;padding-right:0.5rem }
.px-2.5{ padding-left:0.625rem;padding-right:0.625rem }
.px-4{ padding-left:1rem;padding-right:1rem }
.py-0.5{ padding-bottom:0.125rem;padding-top:0.125rem }
.py-1.5{ padding-bottom:0.375rem;padding-top:0.375rem }
.py-2{ padding-bottom:0.5rem;padding-top:0.5rem }
.py-3{ padding-bottom:0.75rem;padding-top:0.75rem }
.py-6{ padding-bottom:1.5rem;padding-top:1.5rem }
.relative{ position:relative }
.rounded-full{ border-radius:9999rem }
.rounded-lg{ border-radius:0.5rem }
.rounded-xl{ border-radius:0.75rem }
.scroll-mt-24{ scroll-margin-top:6rem }
.scroll-smooth{ scroll-behavior:smooth }
.shrink-0{ flex-shrink:0 }
.space-y-1>*+*{ margin-top:0.25rem }
.text-\[#fafaf9\]{ color:#fafaf9 }
.text-\[11px\]{ font-size:11px }
.text-\[13.5px\]{ font-size:13.5px }
.text-\[15px\]{ font-size:15px }
.text-\[32px\]{ font-size:32px }
.text-left{ text-wrap:left }
.text-right{ text-wrap:right }
.text-sm{ font-size:0.875rem }
.text-white{ color:#ffffff }
.text-xl{ font-size:1.25rem }
.text-xs{ font-size:0.75rem }
.text-zinc-200{ color:#e4e4e7 }
.text-zinc-300{ color:#d4d4d8 }
.text-zinc-400{ color:#a1a1aa }
.text-zinc-500{ color:#71717a }
.text-zinc-600{ color:#52525b }
.tracking-\[-0.01em\]{ letter-spacing:-0.01em }
.tracking-\[-0.02em\]{ letter-spacing:-0.02em }
.tracking-\[-0.03em\]{ letter-spacing:-0.03em }
.transition-colors{ transition:background-color .2s ease,color .2s ease,border-color .2s ease }
.transition-opacity{ transition:opacity .2s ease }
.w-9{ width:2.25rem }
.w-auto{ width:auto }
.w-fit{ width:fit-content }
.w-full{ width:100% }
.z-10{ z-index:10 }
.z-40{ z-index:40 }
@media(min-width:1024px){ .lg\:grid-cols-3 { grid-template-columns:repeat(3,minmax(0,1fr)) } }
@media(min-width:1024px){ .lg\:px-4 { padding-left:1rem;padding-right:1rem } }
@media(min-width:1024px){ .lg\:text-\[48px\] { font-size:48px } }
@media(min-width:640px){ .sm\:block { display:block } }
@media(min-width:640px){ .sm\:gap-8 { gap:2rem } }
@media(min-width:640px){ .sm\:grid-cols-2 { grid-template-columns:repeat(2,minmax(0,1fr)) } }
@media(min-width:640px){ .sm\:h-14 { height:3.5rem } }
@media(min-width:640px){ .sm\:hidden { display:none } }
@media(min-width:640px){ .sm\:mx-6 { margin-left:1.5rem;margin-right:1.5rem } }
@media(min-width:640px){ .sm\:px-6 { padding-left:1.5rem;padding-right:1.5rem } }
@media(min-width:640px){ .sm\:py-10 { padding-bottom:2.5rem;padding-top:2.5rem } }
@media(min-width:640px){ .sm\:text-\[17px\] { font-size:17px } }
@media(min-width:640px){ .sm\:text-\[40px\] { font-size:40px } }
