/* geenius-mvp — vanilla CSS, BEM naming. No build step, no framework.
   Theme: edit the custom properties below. Dark is default; [data-theme="light"]
   overrides. The scaffolder sets --accent from your chosen accent. */

:root {
  --accent: #34d399;
  --accent-contrast: #04140d;
  --bg: #0e0f13;
  --surface: #16171d;
  --border: #2a2c35;
  --text: #eef0f6;
  --muted: #9aa0ae;
  --radius: 12px;
  --maxw: 1040px;
  color-scheme: dark;
}
[data-theme="light"] {
  --bg: #ffffff;
  --surface: #f6f7f9;
  --border: #e3e5ea;
  --text: #14161c;
  --muted: #5b616e;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 16px/1.6 system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); }
img { max-width: 100%; }

/* ── button ── */
.button {
  display: inline-block; padding: 10px 20px; border-radius: 999px;
  font-weight: 700; text-decoration: none; border: 1px solid transparent;
  transition: transform .12s, opacity .12s;
}
.button:hover { transform: translateY(-1px); }
.button--primary { background: var(--accent); color: var(--accent-contrast); }
.button--ghost { border-color: var(--border); color: var(--text); }
.button--large { padding: 13px 28px; font-size: 17px; }

/* ── site-header ── */
.site-header {
  position: sticky; top: 0; z-index: 30; display: flex; align-items: center;
  justify-content: space-between; gap: 14px; padding: 12px 20px;
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
}
.site-header__brand { font-weight: 800; text-decoration: none; color: var(--text); display: flex; align-items: center; gap: 8px; }
.site-header__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
.site-header__nav { display: flex; gap: 4px; align-items: center; }
.site-header__link { padding: 7px 12px; border-radius: 8px; text-decoration: none; color: var(--muted); font-size: 14.5px; }
.site-header__link:hover { color: var(--text); background: var(--surface); }
.site-header__link--cta { color: var(--accent); font-weight: 700; }
.site-header__actions { display: flex; gap: 8px; align-items: center; }
.site-header__burger { display: none; }
.theme-toggle, .site-header__burger {
  font: inherit; cursor: pointer; padding: 6px 10px; border-radius: 8px;
  border: 1px solid var(--border); background: none; color: var(--text);
}

/* ── hero ── */
.hero { max-width: var(--maxw); margin: 0 auto; padding: 84px 20px 56px; text-align: center; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700; color: var(--accent); margin: 0 0 12px; }
.hero__title { font-size: clamp(32px, 6vw, 56px); line-height: 1.08; margin: 0 0 16px; }
.hero__subtitle { color: var(--muted); font-size: 18px; max-width: 640px; margin: 0 auto 26px; }
.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.hero__bullets { display: flex; gap: 8px 22px; justify-content: center; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; color: var(--muted); font-size: 14px; }
.hero__bullet::before { content: "✓ "; color: var(--accent); font-weight: 700; }

/* ── logo-cloud ── */
.logo-cloud { padding: 28px 20px; text-align: center; }
.logo-cloud__heading { color: var(--muted); font-size: 13px; margin: 0 0 16px; }
.logo-cloud__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 36px; opacity: .75; }
.logo-cloud__logo { font-weight: 700; font-size: 17px; }

/* ── split ── */
.split { max-width: var(--maxw); margin: 0 auto; padding: 56px 20px; display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: center; }
.split--flip .split__text { order: 2; }
.split__eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 700; color: var(--accent); margin: 0 0 8px; }
.split__heading { font-size: clamp(24px, 4vw, 34px); margin: 0 0 10px; line-height: 1.15; }
.split__body { color: var(--muted); margin: 0 0 14px; }
.split__bullets { margin: 0; padding-left: 18px; line-height: 2; }
.split__visual {
  min-height: 220px; border-radius: 14px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 52px;
  background: linear-gradient(135deg, color-mix(in oklab, var(--accent) 16%, transparent), transparent), var(--surface);
}

/* ── stats ── */
.stats { border-block: 1px solid var(--border); background: var(--surface); display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); text-align: center; padding: 34px 20px; }
.stats__value { display: block; font-size: clamp(26px, 4vw, 38px); font-weight: 800; color: var(--accent); }
.stats__label { color: var(--muted); font-size: 13px; }

/* ── features ── */
.features { max-width: var(--maxw); margin: 0 auto; padding: 56px 20px; text-align: center; }
.features__eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 700; color: var(--accent); margin: 0 0 8px; }
.features__heading { font-size: clamp(24px, 4vw, 34px); margin: 0 0 28px; }
.features__grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); text-align: left; }
.feature-card { padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.feature-card__icon { font-size: 24px; }
.feature-card__title { margin: 10px 0 6px; font-size: 16.5px; }
.feature-card__body { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ── quotes ── */
.quotes { max-width: var(--maxw); margin: 0 auto; padding: 56px 20px; }
.quotes__heading { text-align: center; font-size: clamp(24px, 4vw, 34px); margin: 0 0 28px; }
.quotes__grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.quote-card { margin: 0; padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.quote-card__text { margin: 0 0 14px; line-height: 1.6; }
.quote-card__author { display: flex; align-items: center; gap: 10px; font-size: 13.5px; }
.quote-card__avatar { width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; background: color-mix(in oklab, var(--accent) 25%, transparent); }

/* ── steps ── */
.steps { max-width: 720px; margin: 0 auto; padding: 56px 20px; }
.steps__heading { text-align: center; font-size: clamp(24px, 4vw, 34px); margin: 0 0 24px; }
.steps__list { margin: 0; padding-left: 22px; display: grid; gap: 12px; line-height: 1.65; }
.steps__item::marker { color: var(--accent); font-weight: 800; }

/* ── faq ── */
.faq { max-width: 720px; margin: 0 auto; padding: 56px 20px; }
.faq__heading { text-align: center; font-size: clamp(24px, 4vw, 34px); margin: 0 0 24px; }
.faq__item { border: 1px solid var(--border); border-radius: 10px; background: var(--surface); margin-bottom: 8px; padding: 0 16px; }
.faq__question { padding: 13px 0; font-weight: 600; cursor: pointer; }
.faq__answer { margin: 0; padding: 0 0 14px; color: var(--muted); }

/* ── cta ── */
.cta { text-align: center; padding: 72px 20px; border-top: 1px solid var(--border); background: linear-gradient(180deg, transparent, color-mix(in oklab, var(--accent) 10%, transparent)); }
.cta__title { font-size: clamp(26px, 5vw, 40px); margin: 0 0 8px; }
.cta__subtitle { color: var(--muted); margin: 0 0 24px; }

/* ── site-footer ── */
.site-footer { border-top: 1px solid var(--border); background: var(--surface); }
.site-footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 44px 20px 28px; display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.site-footer__brand { font-weight: 800; }
.site-footer__tagline { color: var(--muted); font-size: 13px; font-weight: 400; margin: 6px 0 0; line-height: 1.6; }
.site-footer__col { display: grid; gap: 6px; align-content: start; }
.site-footer__col a { color: var(--text); font-size: 14px; text-decoration: none; }
.site-footer__colhead { font-weight: 700; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.site-footer__legal { text-align: center; color: var(--muted); font-size: 12.5px; padding: 0 20px 22px; margin: 0; }

/* ── blog ── */
.blog { max-width: 760px; margin: 0 auto; padding: 40px 20px; }
.blog__title { font-size: 34px; margin: 0 0 24px; }
.post-card { display: block; padding: 18px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); text-decoration: none; color: inherit; margin-bottom: 16px; }
.post-card__meta { font-size: 12.5px; color: var(--muted); margin-bottom: 4px; }
.post-card__title { font-weight: 700; font-size: 18px; margin: 0 0 6px; }
.post-card__excerpt { color: var(--muted); line-height: 1.6; margin: 0; }
.post { max-width: 760px; margin: 0 auto; padding: 40px 20px; }
.post__meta { font-size: 13px; color: var(--muted); }
.post__title { font-size: 34px; margin: 6px 0 20px; line-height: 1.15; }
.post__body p { line-height: 1.75; }
.post__body h2 { margin: 28px 0 10px; }
.post__body pre { padding: 14px; border-radius: 10px; overflow-x: auto; background: var(--surface); border: 1px solid var(--border); font-size: 13px; }
.post__body blockquote { margin: 16px 0; padding: 10px 16px; border-left: 3px solid var(--accent); color: var(--muted); }
.post__back { display: inline-block; margin-top: 30px; }

/* ── hero (home page extras) ── */
.hero--home { padding-bottom: 40px; position: relative; }
.hero--home::before {
  content: ""; position: absolute; inset: -80px 0 auto; height: 420px; z-index: -1;
  background: radial-gradient(600px 320px at 50% 0%, color-mix(in oklab, var(--accent) 16%, transparent), transparent 70%);
  pointer-events: none;
}
.hero__accent {
  background: linear-gradient(100deg, var(--accent), color-mix(in oklab, var(--accent) 55%, var(--text)));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__media { margin: 44px auto 0; max-width: 860px; }
.hero__media[hidden] { display: none; }
.hero__video {
  display: block; width: 100%; border-radius: 16px;
  border: 1px solid color-mix(in oklab, var(--accent) 35%, var(--border));
  box-shadow: 0 24px 70px -30px color-mix(in oklab, var(--accent) 45%, transparent);
  background: var(--surface);
}

/* ── terminal ── */
.terminal {
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  background: #0b0c10; box-shadow: 0 18px 50px -28px rgba(0,0,0,.7);
  text-align: left;
}
.terminal--wide { max-width: 860px; margin: 0 auto; }
.terminal__bar {
  display: flex; align-items: center; gap: 7px; padding: 10px 14px;
  background: #14151b; border-bottom: 1px solid #22242d;
}
.terminal__dot { width: 11px; height: 11px; border-radius: 50%; background: #33353f; }
.terminal__bar .terminal__dot:first-child { background: color-mix(in oklab, var(--accent) 65%, #33353f); }
.terminal__title { margin-left: 6px; font-size: 12px; color: #6d7280; }
.terminal__pre {
  margin: 0; padding: 18px; overflow-x: auto;
  font: 13px/1.7 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: #d7dae2;
}
.terminal__prompt { color: var(--accent); font-weight: 700; }
.terminal__dim { color: #6d7280; }
.terminal__ok { color: var(--accent); font-weight: 700; }

/* ── agents ── */
.agents {
  max-width: var(--maxw); margin: 0 auto; padding: 72px 20px;
  display: grid; gap: 40px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: center;
}
.agents__eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 700; color: var(--accent); margin: 0 0 8px; }
.agents__heading { font-size: clamp(24px, 4vw, 34px); margin: 0 0 10px; line-height: 1.15; }
.agents__body { color: var(--muted); margin: 0 0 18px; }
.agents__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.agents__item {
  padding: 12px 14px 12px 16px; border-left: 2px solid var(--accent);
  background: var(--surface); border-radius: 0 10px 10px 0;
  font-size: 14.5px; line-height: 1.6; color: var(--muted);
}
.agents__item strong { color: var(--text); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 13.5px; }

/* ── features (product grid) ── */
.features__lede { color: var(--muted); max-width: 640px; margin: 0 auto 30px; }
.features__grid--wide { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.features--product .feature-card { transition: border-color .15s, transform .15s; }
.features--product .feature-card:hover { border-color: color-mix(in oklab, var(--accent) 45%, var(--border)); transform: translateY(-2px); }
.features--product .feature-card__title { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 15px; }
.feature-card--highlight {
  border-color: color-mix(in oklab, var(--accent) 55%, var(--border));
  background: linear-gradient(150deg, color-mix(in oklab, var(--accent) 12%, var(--surface)), var(--surface));
}

/* ── views mosaic ── */
.views { max-width: var(--maxw); margin: 0 auto; padding: 72px 20px; text-align: center; }
.views__eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 700; color: var(--accent); margin: 0 0 8px; }
.views__heading { font-size: clamp(24px, 4vw, 34px); margin: 0 0 10px; }
.views__lede { color: var(--muted); max-width: 680px; margin: 0 auto 30px; }
.views__lede code, .choices code, .deploy__lede code, .agents__item code {
  font: 13px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 1px 6px;
}
.views__mosaic { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.view-tile {
  border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface);
  padding: 14px; display: grid; gap: 10px; transition: border-color .15s;
}
.view-tile:hover { border-color: color-mix(in oklab, var(--accent) 45%, var(--border)); }
.view-tile__name { font-size: 12.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.view-tile__art { display: grid; gap: 5px; min-height: 64px; align-content: start; }
.view-tile__art i { display: block; border-radius: 3px; background: color-mix(in oklab, var(--accent) 24%, var(--border)); min-height: 8px; }
.view-tile__art i:nth-child(odd) { background: color-mix(in oklab, var(--accent) 45%, var(--border)); }
.view-tile__art--table i { height: 10px; }
.view-tile__art--list { grid-auto-rows: 14px; }
.view-tile__art--grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 28px; }
.view-tile__art--board { grid-template-columns: 1fr 1fr 1fr; align-content: stretch; }
.view-tile__art--board i:nth-child(1) { height: 100%; }
.view-tile__art--board i:nth-child(2) { height: 70%; }
.view-tile__art--board i:nth-child(3) { height: 45%; }
.view-tile__art--gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 28px; }
.view-tile__art--gallery i { border-radius: 6px; }
.view-tile__art--timeline { grid-auto-rows: 12px; }
.view-tile__art--timeline i:nth-child(1) { width: 55%; }
.view-tile__art--timeline i:nth-child(2) { width: 80%; margin-left: 12%; }
.view-tile__art--timeline i:nth-child(3) { width: 45%; margin-left: 40%; }
.view-tile__art--calendar { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 16px; }
.view-tile__art--stats { grid-template-columns: 1fr 1fr 1fr; align-items: end; align-content: end; }
.view-tile__art--stats i:nth-child(1) { height: 26px; }
.view-tile__art--stats i:nth-child(2) { height: 52px; }
.view-tile__art--stats i:nth-child(3) { height: 38px; }
.view-tile__art--canvas { position: relative; }
.view-tile__art--canvas i { position: absolute; width: 34%; height: 20px; border-radius: 6px; }
.view-tile__art--canvas i:nth-child(1) { left: 4%; top: 6%; }
.view-tile__art--canvas i:nth-child(2) { left: 48%; top: 34%; }
.view-tile__art--canvas i:nth-child(3) { left: 16%; top: 66%; }

/* ── choices ── */
.choices { max-width: var(--maxw); margin: 0 auto; padding: 72px 20px; text-align: center; }
.choices__eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 700; color: var(--accent); margin: 0 0 8px; }
.choices__heading { font-size: clamp(24px, 4vw, 34px); margin: 0 0 28px; }
.choices__grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); text-align: left; }
.choice-card { padding: 22px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: border-color .15s; }
.choice-card:hover { border-color: color-mix(in oklab, var(--accent) 45%, var(--border)); }
.choice-card--wide { grid-column: 1 / -1; background: linear-gradient(150deg, color-mix(in oklab, var(--accent) 10%, var(--surface)), var(--surface)); }
.choice-card__title { margin: 0 0 8px; font-size: 17px; }
.choice-card__body { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.65; }
.choice-card__body strong { color: var(--text); }

/* ── deploy ── */
.deploy { border-block: 1px solid var(--border); background: var(--surface); text-align: center; padding: 56px 20px; }
.deploy__heading { font-size: clamp(24px, 4vw, 34px); margin: 0 0 10px; }
.deploy__lede { color: var(--muted); max-width: 660px; margin: 0 auto 26px; }
.deploy__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.deploy__provider {
  padding: 9px 18px; border: 1px solid var(--border); border-radius: 999px;
  background: var(--bg); font-weight: 700; font-size: 14px; transition: border-color .15s, transform .15s;
}
.deploy__provider:hover { border-color: color-mix(in oklab, var(--accent) 50%, var(--border)); transform: translateY(-1px); }

/* ── quickstart ── */
.quickstart { max-width: var(--maxw); margin: 0 auto; padding: 72px 20px; text-align: center; }
.quickstart__heading { font-size: clamp(24px, 4vw, 34px); margin: 0 0 10px; }
.quickstart__lede { color: var(--muted); margin: 0 0 26px; }

/* ── outro ── */
.outro {
  text-align: center; padding: 88px 20px; border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, color-mix(in oklab, var(--accent) 12%, transparent));
}
.outro__eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700; color: var(--accent); margin: 0 0 10px; }
.outro__title { font-size: clamp(26px, 5vw, 40px); margin: 0 0 12px; }
.outro__body { color: var(--muted); max-width: 620px; margin: 0 auto 26px; line-height: 1.7; }

/* ── post-video (used by generated blog/docs pages) ── */
.post-video { margin: 24px 0; }
.post-video video { width: 100%; border-radius: 12px; border: 1px solid var(--border); }
.post-video figcaption { font-size: 13px; opacity: .7; margin-top: 6px; }

/* ── responsive ── */
@media (max-width: 760px) {
  .site-header__nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; padding: 10px;
    background: var(--bg); border-bottom: 1px solid var(--border);
  }
  .site-header__nav.is-open { display: flex; }
  .site-header__burger { display: inline-flex; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button:hover { transform: none; }
}

/* ── docs ── */
.docs { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 220px 1fr; }
.docs__side { border-right: 1px solid var(--border); padding: 28px 16px; }
.docs__section { margin-bottom: 18px; }
.docs__sectionhead { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 6px; }
.docs__link { display: block; padding: 5px 8px; border-radius: 6px; text-decoration: none; color: var(--muted); font-size: 13.5px; }
.docs__link:hover { color: var(--text); background: var(--surface); }
.docs__link--active { color: var(--accent); font-weight: 600; }
.docs__article { padding: 36px 26px; min-width: 0; }
.docs__title { font-size: 28px; margin: 0 0 16px; }
@media (max-width: 720px) {
  .docs { grid-template-columns: 1fr; }
  .docs__side { border-right: none; border-bottom: 1px solid var(--border); }
}
/* ── docs: breadcrumb, toc, pager, search ── */
.docs__crumbs { font-size: 12.5px; color: var(--muted); margin-bottom: 10px; }
.docs__crumb--here { color: var(--text); }
.docs__toc { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 12px 14px; margin: 0 0 20px; max-width: 340px; }
.docs__tochead { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 6px; }
.docs__toclink { display: block; font-size: 13.5px; color: var(--muted); text-decoration: none; padding: 3px 0; }
.docs__toclink:hover { color: var(--accent); }
.docs__pager { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 34px; }
.docs__pagercard { display: flex; flex-direction: column; gap: 3px; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); text-decoration: none; color: inherit; }
a.docs__pagercard:hover { border-color: var(--accent); }
.docs__pagercard--next { text-align: right; align-items: flex-end; }
.docs__pagercard--empty { border: none; background: none; }
.docs__pagerlabel { font-size: 12px; color: var(--muted); }
.docs__pagertitle { font-weight: 600; font-size: 14px; }
.docs__search { position: relative; margin-bottom: 16px; }
.docs__searchinput { width: 100%; box-sizing: border-box; padding: 7px 10px; font: inherit; font-size: 13.5px; color: var(--text); background: var(--surface); border: 1px solid var(--border); border-radius: 8px; outline: none; }
.docs__searchinput:focus { border-color: var(--accent); }
.docs__searchresults { position: absolute; top: 100%; left: 0; right: 0; z-index: 20; margin-top: 4px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg); box-shadow: 0 8px 24px rgba(0,0,0,.25); overflow: hidden; }
.docs__searchhit { display: block; padding: 8px 10px; text-decoration: none; color: inherit; }
.docs__searchhit:hover, .docs__searchhit--active { background: var(--surface); }
.docs__searchhit-title { display: block; font-size: 13.5px; font-weight: 600; }
.docs__searchhit-section { display: block; font-size: 11.5px; color: var(--muted); }
.docs__searchempty { padding: 8px 10px; font-size: 13px; color: var(--muted); }

/* code copy button */
.post__body pre { position: relative; }
.copy-btn { position: absolute; top: 6px; right: 6px; padding: 3px 9px; font: inherit; font-size: 11.5px; color: var(--muted); background: var(--bg); border: 1px solid var(--border); border-radius: 6px; cursor: pointer; opacity: .75; }
.copy-btn:hover { opacity: 1; color: var(--text); }
.copy-btn--ok { color: var(--accent); border-color: var(--accent); opacity: 1; }
