/* BV-7X shared nav parity — makes every static page's nav match the live
   bv7x.ai homepage nav (measured 2026-07-10: wordmark = Plus Jakarta Sans 800,
   14px, uppercase, 0.2em tracking, white, NO logo image; links = Inter 400,
   14px, sentence case, -0.011em, rgba(255,255,255,0.65)).

   Injected into all standard-nav static pages by scripts/inject-nav-css.mjs
   (idempotent). The link tag sits after each page's inline <style>, and the
   props use !important to beat legacy per-page nav rules of varying
   specificity. Change the nav site-wide by editing THIS file only.

   The 5 overlay pages (/terminal /agents /cli /blog /performance) get the
   same treatment from public/css/bv7x-brand.css and do not load this file. */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@800&family=Inter:wght@400;500&display=swap');

/* the old avatar image is retired — the brand is the wordmark alone */
.nav-logo { display: none !important; }

/* wordmark */
.nav-name {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.2em !important;
  color: #ffffff !important;
}

/* nav links */
.nav-links a {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  letter-spacing: -0.011em !important;
  text-transform: none !important;
  color: rgba(255, 255, 255, 0.65) !important;
}
.nav-links a:hover,
.nav-links a.active {
  color: rgba(255, 255, 255, 0.92) !important;
}
