/* ==========================================================================
   BLACK_OFFICE · shared stylesheet
   Tokens (from design handoff):
   bg #070808 · raised #0a0b0b · code #0d0e0e · ink #F2F1EC · white #FFFFFF
   Zero border-radius. No shadows. Hierarchy via borders + background steps.
   Type: Space Grotesk (display) · IBM Plex Mono (labels/UI) · Archivo (body)
   ========================================================================== */

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { background: #070808; scroll-behavior: smooth; }
body {
  margin: 0;
  background: #070808;
  color: #F2F1EC;
  font-family: 'Space Grotesk', sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: #F2F1EC; text-decoration: none; }
a:hover { color: #FFFFFF; }
::selection { background: #F2F1EC; color: #070808; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: inherit;
}
:focus-visible { outline: 1px solid #FFFFFF; outline-offset: 3px; }

.mono { font-family: 'IBM Plex Mono', monospace; }

.bo-pad { padding-left: 56px; padding-right: 56px; }
.bo-wrap { max-width: 1160px; margin: 0 auto; }
.bo-section { padding-top: 110px; }

/* ---------- keyframes ---------- */
@keyframes bo-blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
@keyframes bo-pulse { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }
@keyframes bo-fade { 0% { opacity: 0; transform: translateY(26px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes bo-lift { 0% { opacity: 0; transform: translateY(110%); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes bo-marq { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes bo-dash { to { stroke-dashoffset: -40; } }
@keyframes bo-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes bo-float2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
@keyframes bo-barY { from { transform: scaleY(.12); } to { transform: scaleY(1); } }
@keyframes bo-barX { from { transform: scaleX(.05); } to { transform: scaleX(1); } }
@keyframes bo-sweep { 0% { left: -35%; } 100% { left: 115%; } }
@keyframes bo-rot { to { transform: rotate(360deg); } }
@keyframes bo-arrow { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(8px); } }

.bo-caret { animation: bo-blink 1.1s step-end infinite; }
.a-fade { animation: bo-fade .5s ease both; }
.a-arrow { animation: bo-arrow 2.2s ease-in-out infinite; display: inline-block; }

/* ---------- scroll reveal ---------- */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.rv.on { opacity: 1; transform: none; }
/* gated animations start only once the enclosing .rv has revealed */
.rv:not(.on) .gate { animation-play-state: paused; }
.rv.on .gate { animation-play-state: running; }

/* ---------- buttons ---------- */
.btn {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  gap: 6px;
}
.btn-solid { background: #FFFFFF; color: #070808; }
.btn-solid:hover { background: #D9D9D6; color: #070808; }
.btn-ghost { border: 1px solid rgba(242,241,236,.3); color: #F2F1EC; }
.btn-ghost:hover { border-color: #FFFFFF; color: #F2F1EC; }
.btn-sm { font-size: 13.5px; padding: 11px 22px; }
.btn-md { font-size: 14px; padding: 16px 30px; }
.btn-lg { font-size: 15px; padding: 17px 34px; }

/* magnetic buttons + shine sweep (home) */
.bo-mag { transition: transform .25s ease; position: relative; }
.btn-shine { position: relative; overflow: hidden; }
.btn-shine .shine {
  position: absolute; top: 0; bottom: 0; width: 44px;
  background: linear-gradient(90deg, transparent, rgba(7,8,8,.18), transparent);
  animation: bo-sweep 2.8s 1.4s ease-in-out infinite;
}

/* ---------- nav ---------- */
.bo-nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px; padding-bottom: 18px;
  background: rgba(7,8,8,.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.bo-nav-left { display: flex; align-items: center; gap: 44px; }
.bo-logo {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 15px; letter-spacing: .08em; color: #F2F1EC;
}
.bo-logo .bo-caret { color: #FFFFFF; }
.bo-navlinks {
  display: flex; gap: 26px;
  font-size: 13.5px; color: rgba(242,241,236,.6);
  font-family: 'IBM Plex Mono', monospace;
}
.bo-navlinks a, .bo-navlinks span { color: inherit; cursor: pointer; }
.bo-navlinks a:hover, .bo-navlinks span:hover { color: #FFFFFF; }
.bo-navlinks .active { color: #FFFFFF; border-bottom: 1px solid #FFFFFF; padding-bottom: 2px; }
.bo-nav-right { display: flex; gap: 12px; align-items: center; }
.bo-signin {
  font-size: 13.5px; color: rgba(242,241,236,.7);
  padding: 10px 14px; font-family: 'IBM Plex Mono', monospace; cursor: pointer;
}
.bo-signin:hover { color: #FFFFFF; }
#bo-progress {
  position: absolute; left: 0; bottom: -1px; height: 2px; width: 0%;
  background: #FFFFFF; pointer-events: none;
}

/* burger */
.bo-burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.35);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px; cursor: pointer;
}
.bo-burger span { width: 16px; height: 2px; background: #F2F1EC; }

/* mobile menu overlay */
#bo-mmenu {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(7,8,8,.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  display: none; flex-direction: column;
  padding: 18px 22px;
}
.menu-open #bo-mmenu { display: flex; }
.menu-open { overflow: hidden; }
.bo-mmenu-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.14);
}
.bo-mmenu-close {
  width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; color: #F2F1EC;
  font-family: 'IBM Plex Mono', monospace;
}
.bo-mmenu-links {
  display: flex; flex-direction: column;
  font-family: 'IBM Plex Mono', monospace; font-size: 24px; font-weight: 600;
  margin-top: 10px;
}
.bo-mmenu-links a {
  padding: 20px 4px; border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(242,241,236,.7);
  animation: bo-fade .45s ease both;
}
.bo-mmenu-links a:hover { color: #FFFFFF; }
.bo-mmenu-links a.active { color: #FFFFFF; }
.bo-mmenu-links a .arr { font-size: 16px; color: rgba(242,241,236,.4); }
.bo-mmenu-links a.active .arr { color: rgba(242,241,236,.5); }
.bo-mmenu-links a:nth-child(1) { animation-delay: .04s; }
.bo-mmenu-links a:nth-child(2) { animation-delay: .1s; }
.bo-mmenu-links a:nth-child(3) { animation-delay: .16s; }
.bo-mmenu-links a:nth-child(4) { animation-delay: .22s; }
.bo-mmenu-links a:nth-child(5) { animation-delay: .28s; }
.bo-mmenu-foot {
  margin-top: auto; display: flex; flex-direction: column; gap: 12px;
  animation: bo-fade .45s .34s ease both;
}
.bo-mmenu-foot .btn { width: 100%; padding: 15px; font-size: 13.5px; }

/* ---------- hero ---------- */
.bo-hero {
  position: relative;
  padding-top: 110px; padding-bottom: 70px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
}
.bo-hero-glow {
  position: absolute; left: 50%; top: -260px; transform: translateX(-50%);
  width: 900px; height: 520px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.08), transparent 65%);
  pointer-events: none;
}
.bo-kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; letter-spacing: .2em; color: rgba(242,241,236,.5);
  margin-bottom: 20px;
  animation: bo-fade .7s ease both;
}
.bo-hero-h { font-size: 84px; line-height: 1.02; font-weight: 700; letter-spacing: -.04em; }
.bo-hero-h .line { overflow: hidden; padding-bottom: .05em; }
.bo-hero-h .line > span { display: block; animation: bo-lift .9s cubic-bezier(.2,.8,.2,1) both; }
.bo-hero-h .line:nth-child(1) > span { animation-delay: .12s; }
.bo-hero-h .line:nth-child(2) > span { animation-delay: .28s; }
.outline { color: transparent; -webkit-text-stroke: 2px #FFFFFF; }
.bo-hero-sub {
  margin-top: 26px; font-size: 16.5px; line-height: 1.7;
  color: rgba(242,241,236,.6); max-width: 540px;
  font-family: 'Archivo', sans-serif;
  animation: bo-fade .8s .5s ease both;
}

/* ---------- section labels + heads ---------- */
.bo-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; letter-spacing: .2em; color: rgba(242,241,236,.5);
  margin-bottom: 16px;
}
.bo-sec-h { font-size: 44px; font-weight: 700; letter-spacing: -.02em; }
.bo-dim-h { color: rgba(242,241,236,.5); }
.bo-lead {
  font-size: 14.5px; color: rgba(242,241,236,.55);
  font-family: 'Archivo', sans-serif; line-height: 1.65;
}

/* ---------- marquees ---------- */
.bo-marquee { overflow: hidden; }
.bo-marquee .track {
  display: flex; width: max-content; white-space: nowrap;
  animation: bo-marq 30s linear infinite;
}
.bo-marq-hover:hover .track { animation-play-state: paused; }
.bo-marquee--statement { border-bottom: 1px solid rgba(255,255,255,.1); padding: 26px 0; }
.bo-marquee--statement .track {
  gap: 64px; font-size: 22px; font-weight: 500; color: rgba(242,241,236,.55);
}
.bo-marquee--statement .sep { color: rgba(242,241,236,.25); }
.bo-marquee--logos { border-bottom: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.bo-marquee--logos .track {
  gap: 72px; animation-duration: 26s;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; letter-spacing: .18em; color: rgba(242,241,236,.45);
}
.bo-marquee--integrations { margin-top: 36px; border: 1px solid rgba(255,255,255,.16); padding: 14px 0; }
.bo-marquee--integrations .track {
  gap: 40px; animation: bo-marq 24s linear infinite reverse;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px; letter-spacing: .14em; color: rgba(242,241,236,.5);
}

/* ---------- cell grids (1px gap = border color) ---------- */
.bo-cells {
  display: grid; gap: 1px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.14);
}
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.bo-cell { background: #070808; padding: 32px 28px; }

.bo-stat-n { font-size: 48px; font-weight: 700; letter-spacing: -.03em; }
.bo-stat-n--lg { font-size: 56px; }
.bo-stat-d {
  margin-top: 8px; font-size: 12.5px;
  color: rgba(242,241,236,.55); font-family: 'Archivo', sans-serif;
}

/* ---------- row lists ---------- */
.bo-rows { border-bottom: 1px solid rgba(255,255,255,.16); }
.bo-row {
  display: flex; align-items: baseline; gap: 24px;
  padding: 26px 22px;
  border-top: 1px solid rgba(255,255,255,.16);
  cursor: pointer; width: 100%;
  transition: background .3s ease, padding-left .3s ease;
}
.bo-row:hover { background: rgba(255,255,255,.04); padding-left: 34px; }
.row-idx { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: rgba(242,241,236,.45); }
.row-title { font-size: 24px; font-weight: 700; letter-spacing: -.01em; }
.row-meta { flex: 1; font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: rgba(242,241,236,.5); text-align: left; }
.row-kpi { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: rgba(242,241,236,.6); }
.row-x {
  font-family: 'IBM Plex Mono', monospace; font-size: 20px;
  color: rgba(242,241,236,.6);
  transition: transform .3s ease; display: inline-block;
}
.bo-open .row-x { transform: rotate(45deg); }

/* service lanes (home): inverted hover */
.bo-lane {
  display: flex; align-items: baseline; gap: 24px;
  padding: 24px 22px;
  border-top: 1px solid rgba(255,255,255,.16);
  cursor: pointer; color: #F2F1EC;
  transition: background .3s ease, color .3s ease, padding-left .3s ease;
}
.bo-lane:hover { background: #F2F1EC; color: #070808; padding-left: 42px; }
.bo-lane .lane-idx { font-family: 'IBM Plex Mono', monospace; font-size: 12px; opacity: .45; color: inherit; }
.bo-lane .lane-name { font-size: 30px; font-weight: 700; letter-spacing: -.02em; color: inherit; }
.bo-lane .lane-desc { flex: 1; font-size: 13.5px; opacity: .55; font-family: 'Archivo', sans-serif; color: inherit; }
.bo-lane .lane-arrow { font-size: 20px; color: inherit; }

/* ---------- accordions ---------- */
.bo-acc-a { max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(.2,.7,.2,1); }
.bo-case-row.bo-open .bo-acc-a { max-height: 560px; }
.bo-role.bo-open .bo-acc-a { max-height: 300px; }
.bo-faq.bo-open .bo-acc-a { max-height: 240px; }
.bo-acc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding: 8px 22px 30px 70px; }
.bo-acc-copy { font-size: 14px; line-height: 1.7; color: rgba(242,241,236,.6); font-family: 'Archivo', sans-serif; }
.bo-acc-facts { font-family: 'IBM Plex Mono', monospace; font-size: 12px; display: flex; flex-direction: column; gap: 10px; }
.bo-acc-facts .q { margin-top: 8px; color: rgba(242,241,236,.5); }

/* FAQ (home) */
.bo-faq { border: 1px solid rgba(255,255,255,.16); margin-bottom: 10px; background: #0a0b0b; }
.bo-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer;
  font-size: 16.5px; font-weight: 600; width: 100%;
  font-family: 'Space Grotesk', sans-serif;
}
.bo-faq-body {
  padding: 0 24px 22px; font-size: 14.5px; line-height: 1.7;
  color: rgba(242,241,236,.6); font-family: 'Archivo', sans-serif;
}

/* ---------- chips + tags ---------- */
.bo-chips {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px; letter-spacing: .14em;
}
.bo-chip-tag { border: 1px solid rgba(255,255,255,.25); padding: 8px 16px; color: rgba(242,241,236,.75); }
.bo-chip-tag:hover { border-color: #FFFFFF; color: #FFFFFF; }
.bo-minitag { border: 1px solid rgba(255,255,255,.3); padding: 6px 10px; }
.bo-tagrow { display: flex; gap: 10px; flex-wrap: wrap; font-family: 'IBM Plex Mono', monospace; font-size: 11px; }

/* ---------- terminal / code blocks ---------- */
.bo-term {
  border: 1px solid rgba(255,255,255,.18);
  background: #0d0e0e;
  font-family: 'IBM Plex Mono', monospace; font-size: 13px;
}
.bo-term-head {
  display: flex; justify-content: space-between;
  padding: 9px 16px; border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 10.5px; color: rgba(242,241,236,.4);
}
.bo-term-head .copy { cursor: pointer; font-family: inherit; font-size: inherit; color: inherit; letter-spacing: inherit; }
.bo-term-head .copy:hover { color: #FFFFFF; }
.bo-term-body { padding: 16px; line-height: 1.8; }
.dim { color: rgba(242,241,236,.4); }
.dim2 { color: rgba(242,241,236,.55); }
.wt { color: #FFFFFF; }

/* terminal feed header (LIVE etc.) */
.bo-feed-head {
  display: flex; justify-content: space-between;
  color: rgba(242,241,236,.4); font-size: 10.5px; letter-spacing: .14em;
  margin-bottom: 12px; font-family: 'IBM Plex Mono', monospace;
}
.bo-live { display: flex; align-items: center; gap: 7px; }
.bo-live .dotp { width: 6px; height: 6px; background: #FFFFFF; animation: bo-pulse 1.4s infinite; }

/* ---------- CTA band + newsletter ---------- */
.bo-band { border: 1px solid rgba(255,255,255,.7); padding: 64px 40px; text-align: center; }
.bo-band-h { font-size: 48px; font-weight: 700; letter-spacing: -.03em; line-height: 1.05; }
.bo-band-sub { margin-top: 14px; font-size: 14.5px; color: rgba(242,241,236,.55); font-family: 'Archivo', sans-serif; }
.bo-band-cta { display: flex; gap: 12px; justify-content: center; margin-top: 30px; }

.bo-news {
  border: 1px solid rgba(255,255,255,.7); background: #070808;
  padding: 56px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
}
.bo-news-h { font-size: 40px; font-weight: 700; letter-spacing: -.02em; line-height: 1.08; }
.bo-news-form { display: flex; gap: 10px; }
.bo-input {
  flex: 1; min-width: 0;
  border: 1px solid rgba(255,255,255,.3); background: transparent;
  padding: 16px 18px;
  font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: #F2F1EC;
}
.bo-input::placeholder { color: rgba(242,241,236,.45); }
.bo-input:focus { outline: none; border-color: #FFFFFF; }

/* ---------- footers ---------- */
.bo-foot { border-top: 1px solid rgba(255,255,255,.12); }
.bo-foot-cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-top: 64px; padding-bottom: 64px;
}
.bo-foot-col { display: flex; flex-direction: column; gap: 12px; font-size: 13.5px; font-family: 'IBM Plex Mono', monospace; }
.bo-foot-label { font-size: 11px; letter-spacing: .18em; color: rgba(242,241,236,.4); margin-bottom: 4px; }
.bo-foot-col a, .bo-foot-col span { color: rgba(242,241,236,.65); cursor: pointer; }
.bo-foot-col a:hover, .bo-foot-col span:hover { color: #FFFFFF; }
.bo-foot-col .inert { cursor: default; }
.bo-foot-col .inert:hover { color: rgba(242,241,236,.65); }
.bo-footrow > div { flex-wrap: wrap; justify-content: center; }
.bo-footrow {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding-top: 22px; padding-bottom: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px; color: rgba(242,241,236,.4);
}
.bo-footrow a, .bo-footrow .flink { color: rgba(242,241,236,.6); cursor: pointer; }
.bo-footrow a:hover, .bo-footrow .flink:hover { color: #FFFFFF; }
.bo-foot-slim {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding-top: 26px; padding-bottom: 26px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px; color: rgba(242,241,236,.4);
}
.bo-foot-slim a { color: rgba(242,241,236,.6); }
.bo-foot-slim a:hover { color: #FFFFFF; }
.bo-foot-slim .links { display: flex; gap: 14px 22px; flex-wrap: wrap; justify-content: center; }

/* ==========================================================================
   HOME
   ========================================================================== */

/* cursor follower */
#bo-cursor-dot {
  position: fixed; top: 0; left: 0; width: 7px; height: 7px; border-radius: 50%;
  background: #FFFFFF; mix-blend-mode: difference;
  pointer-events: none; z-index: 99; transform: translate(-100px, -100px);
}
#bo-cursor-ring {
  position: fixed; top: 0; left: 0; width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid #FFFFFF; mix-blend-mode: difference;
  pointer-events: none; z-index: 99; transform: translate(-100px, -100px);
  transition: width .25s, height .25s;
}

.bo-hero--home { padding-top: 104px; padding-bottom: 84px; text-align: center; }
.bo-hero--home .bo-hero-glow {
  top: -260px; left: 50%; transform: none; margin-left: -450px;
  width: 900px; height: 560px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.09), transparent 65%);
  transition: transform .3s ease-out;
}
#bo-hero-spot {
  position: absolute; top: 0; left: 0; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.07), transparent 65%);
  pointer-events: none; transform: translate(-500px, -500px);
}
.bo-hero--home .bo-chips { position: relative; margin-bottom: 40px; animation: bo-fade .7s ease both; transition: transform .3s ease-out; }
.bo-hero-h--xl { position: relative; font-size: 104px; line-height: 1; transition: transform .3s ease-out; }
.bo-hero--home .bo-hero-sub { position: relative; margin-left: auto; margin-right: auto; font-size: 17px; line-height: 1.65; }
.bo-herocta { position: relative; display: flex; gap: 14px; justify-content: center; margin-top: 38px; animation: bo-fade .8s .62s ease both; }
[data-depth] { transition: transform .3s ease-out; }

/* services intro grid + radar */
.bo-svc-head { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; margin-bottom: 44px; }
.bo-radar {
  position: relative; width: 260px; height: 260px;
  border: 1px solid rgba(255,255,255,.25);
  overflow: hidden; background: #0d0e0e;
}
.bo-radar .ring { position: absolute; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.bo-radar .r1 { inset: 20px; }
.bo-radar .r2 { inset: 60px; }
.bo-radar .r3 { inset: 100px; border-color: rgba(255,255,255,.18); }
.bo-radar .ax-v { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,.1); }
.bo-radar .ax-h { position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: rgba(255,255,255,.1); }
.bo-radar .sweep {
  position: absolute; inset: 0;
  background: conic-gradient(from 0deg, rgba(242,241,236,.22), transparent 70deg);
  animation: bo-rot 4.5s linear infinite;
}
.bo-radar .blip {
  position: absolute; border-radius: 50%; background: #F2F1EC;
  box-shadow: 0 0 12px rgba(242,241,236,.8);
  animation: bo-pulse 2.2s infinite;
}
.bo-radar .center {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 4px; pointer-events: none;
}
.bo-radar .center .n { font-size: 26px; font-weight: 700; line-height: 1; }
.bo-radar .center .t { font-family: 'IBM Plex Mono', monospace; font-size: 9.5px; letter-spacing: .2em; color: rgba(242,241,236,.55); }
.bo-radar .corner {
  position: absolute; left: 10px; bottom: 8px;
  font-family: 'IBM Plex Mono', monospace; font-size: 9px; letter-spacing: .16em; color: rgba(242,241,236,.4);
}

/* spotlight cards */
.bo-spot { position: relative; overflow: hidden; }
.bo-spot::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.10), transparent 65%);
  opacity: 0; transition: opacity .35s; pointer-events: none;
}
.bo-spot:hover::after { opacity: 1; }

/* case teaser rows (home) */
.bo-case-teaser {
  display: grid; grid-template-columns: 200px 1fr 1fr; gap: 40px;
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 34px 16px; align-items: baseline;
}
.bo-case-teaser:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.bo-case-teaser .y { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; color: rgba(242,241,236,.45); }
.bo-case-teaser .t { font-size: 26px; font-weight: 700; letter-spacing: -.01em; }
.bo-case-teaser .d { font-size: 14px; line-height: 1.65; color: rgba(242,241,236,.55); font-family: 'Archivo', sans-serif; }

/* node canvas */
.bo-canvas-wrap { perspective: 1100px; }
#bo-canvas {
  position: relative;
  border: 1px solid rgba(255,255,255,.16);
  background-color: #0a0b0b;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 26px 26px;
  height: 400px; overflow: hidden;
  transition: transform .35s ease-out;
  transform-style: preserve-3d;
}
.bo-canvas-toolbar {
  position: absolute; top: 14px; left: 16px; display: flex; gap: 8px;
  font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; z-index: 3;
}
.bo-canvas-toolbar .tb1 { border: 1px solid rgba(255,255,255,.3); padding: 6px 12px; background: rgba(7,8,8,.9); }
.bo-canvas-toolbar .tb2 { border: 1px solid rgba(255,255,255,.14); padding: 6px 12px; background: rgba(7,8,8,.9); color: rgba(242,241,236,.55); }
.bo-canvas-live {
  position: absolute; top: 14px; right: 16px;
  font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; color: rgba(242,241,236,.55);
  display: flex; align-items: center; gap: 8px; z-index: 3;
}
.bo-canvas-live .dotp { width: 6px; height: 6px; background: #FFFFFF; animation: bo-pulse 1.5s infinite; }
#bo-canvas svg { position: absolute; inset: 0; width: 100%; height: 100%; }
#bo-canvas svg path { animation: bo-dash 2s linear infinite; }
.bo-node {
  position: absolute;
  border: 1px solid rgba(255,255,255,.35); background: #0e0f0f;
  cursor: pointer;
  transition: border-color .25s, box-shadow .25s;
  animation: bo-float 6s ease-in-out infinite;
}
.bo-node:hover { border-color: #FFFFFF; box-shadow: 0 0 24px rgba(255,255,255,.15); }
.bo-node--dim { border-color: rgba(255,255,255,.2); }
.bo-node--f2 { animation-name: bo-float2; }
.bo-node .nh {
  padding: 9px 13px; border-bottom: 1px solid rgba(255,255,255,.12);
  font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; color: rgba(242,241,236,.5);
}
.bo-node .nb { padding: 11px 13px; font-size: 13.5px; font-weight: 600; }
.bo-node .nm { font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; font-weight: 400; color: rgba(242,241,236,.5); margin-top: 4px; }
.bo-node-check {
  position: absolute; top: 118px; left: 968px; width: 56px; height: 56px;
  border: 1px solid rgba(255,255,255,.4); background: #0e0f0f;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  animation: bo-float2 5.5s ease-in-out infinite;
}

/* product feature cards under canvas */
.bo-featcells { border-top: none; }
.bo-featcells .bo-cell { padding: 26px 24px; }
.bo-featcells .ft { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.bo-featcells .fd { font-size: 13px; line-height: 1.6; color: rgba(242,241,236,.55); font-family: 'Archivo', sans-serif; }

/* CORE_FOCUS tabs + panels */
.bo-tabs { display: flex; gap: 8px; flex-wrap: wrap; font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; }
.bo-tab {
  cursor: pointer; padding: 12px 22px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent; color: rgba(242,241,236,.6); font-weight: 600;
  font-family: inherit; font-size: inherit;
}
.bo-tab.active { border-color: #F2F1EC; background: #F2F1EC; color: #070808; }
.bo-panelbox { border: 1px solid rgba(255,255,255,.25); background: #0a0b0b; overflow: hidden; }
.bo-panel { display: none; grid-template-columns: .85fr 1.15fr; gap: 0; }
.bo-panel.active { display: grid; }
.bo-panel-left { padding: 36px; border-right: 1px solid rgba(255,255,255,.14); }
.bo-panel-left .ph { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.bo-panel-left .pd { font-size: 14px; line-height: 1.7; color: rgba(242,241,236,.6); font-family: 'Archivo', sans-serif; margin-bottom: 20px; }
.bo-panel-left .pl { display: flex; flex-direction: column; gap: 10px; font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; color: rgba(242,241,236,.75); }
.bo-panel-left .bo-tagrow { margin-top: 24px; }
.bo-panel-feed { padding: 28px 32px; font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; line-height: 2.15; }
.bo-panel-chat { padding: 28px 32px; }
.bo-chat-in {
  border: 1px solid rgba(255,255,255,.25); padding: 12px 16px; max-width: 82%;
  font-size: 13.5px; line-height: 1.55; font-family: 'Archivo', sans-serif; color: rgba(242,241,236,.85);
}
.bo-chat-out {
  background: #F2F1EC; color: #070808; padding: 12px 16px; max-width: 82%;
  font-size: 13.5px; line-height: 1.55; font-family: 'Archivo', sans-serif;
  margin: 12px 0 0 auto;
}
.bo-chat-status { text-align: center; margin-top: 18px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: rgba(242,241,236,.6); }
.bo-tag-badge { border: 1px solid rgba(255,255,255,.4); padding: 1px 8px; }
.diff-add { border-left: 2px solid rgba(255,255,255,.8); padding-left: 12px; }
.diff-del { border-left: 2px solid rgba(255,255,255,.25); padding-left: 12px; color: rgba(242,241,236,.45); text-decoration: line-through; }

/* telemetry */
.bo-tele { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.bo-tele .bo-cell { padding: 30px 28px; }
.bo-tele .th { font-size: 15px; font-weight: 700; }
.bo-tele .td { font-size: 12.5px; color: rgba(242,241,236,.5); font-family: 'Archivo', sans-serif; }
.bo-tele .flexcol { display: flex; flex-direction: column; }
.bo-tele .big { margin-top: auto; font-size: 46px; font-weight: 700; letter-spacing: -.03em; }
.bo-chart { display: flex; align-items: flex-end; gap: 7px; height: 88px; margin-top: 20px; }
.bo-chart div { flex: 1; transform-origin: bottom; animation: bo-barY 1.2s ease both; }
.bo-track { margin-top: 14px; height: 5px; background: rgba(255,255,255,.12); overflow: hidden; }
.bo-track .fill { height: 100%; background: #FFFFFF; transform-origin: left; animation: bo-barX 1.6s ease both; }
.bo-tele .foot { margin-top: 12px; font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; color: rgba(242,241,236,.4); }
.bo-tele .foot.split { display: flex; justify-content: space-between; margin-top: 14px; }

/* approach */
.bo-approach { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.bo-approach > div { border-top: 2px solid rgba(255,255,255,.25); padding-top: 20px; }
.bo-approach > div:first-child { border-top-color: #FFFFFF; }
.bo-approach .ah { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.bo-approach .ad { font-size: 14px; line-height: 1.65; color: rgba(242,241,236,.55); font-family: 'Archivo', sans-serif; }

/* testimonials */
.bo-testis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.bo-testi { border: 1px solid rgba(255,255,255,.16); padding: 28px; }
.bo-testi:hover { border-color: rgba(255,255,255,.4); }
.bo-testi .tt { display: flex; justify-content: space-between; margin-bottom: 16px; font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; }
.bo-testi .tt .stars { color: rgba(242,241,236,.5); }
.bo-testi .th2 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.bo-testi .tq { font-size: 14px; line-height: 1.65; color: rgba(242,241,236,.6); font-family: 'Archivo', sans-serif; }

/* ==========================================================================
   CUSTOMERS
   ========================================================================== */
.bo-feat { border: 1px solid rgba(255,255,255,.25); background: #0a0b0b; }
.bo-feat-head {
  display: flex; justify-content: space-between; padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px; letter-spacing: .14em; color: rgba(242,241,236,.45);
}
.bo-feat-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 0; }
.bo-feat-left { padding: 38px; border-right: 1px solid rgba(255,255,255,.14); }
.bo-feat-h { font-size: 30px; font-weight: 700; letter-spacing: -.01em; line-height: 1.15; margin-bottom: 16px; }
.bo-feat-copy { font-size: 14.5px; line-height: 1.75; color: rgba(242,241,236,.6); font-family: 'Archivo', sans-serif; margin-bottom: 22px; }
.bo-pull { font-size: 15.5px; line-height: 1.6; font-family: 'Archivo', sans-serif; border-left: 2px solid #F2F1EC; padding-left: 16px; margin-bottom: 22px; }
.bo-person { display: flex; align-items: center; gap: 12px; }
.bo-avatar {
  width: 40px; height: 40px; border: 1px solid #F2F1EC;
  display: flex; align-items: center; justify-content: center;
  font-family: 'IBM Plex Mono', monospace; font-size: 13px; flex: none;
}
.bo-person .pn { font-size: 13.5px; font-weight: 700; }
.bo-person .pt { font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; color: rgba(242,241,236,.5); }
.bo-feat-right { padding: 38px; font-family: 'IBM Plex Mono', monospace; }
.bo-ba-label { font-size: 10.5px; letter-spacing: .18em; color: rgba(242,241,236,.45); margin-bottom: 24px; }
.bo-ba-metric { font-size: 12px; margin: 24px 0 8px; }
.bo-ba-metric:first-of-type { margin-top: 0; }
.bo-ba-row { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.bo-ba-row .track { flex: 1; height: 13px; background: rgba(255,255,255,.1); }
.bo-ba-row .fill { height: 100%; background: rgba(255,255,255,.3); transform-origin: left; animation: bo-barX 1.4s ease both; }
.bo-ba-row .fill.hi { background: #F2F1EC; }
.bo-ba-row .val { font-size: 11.5px; color: rgba(242,241,236,.5); }
.bo-ba-row .val.hi { font-weight: 600; color: #F2F1EC; }
.bo-feat-tags { margin-top: 26px; display: flex; gap: 8px; flex-wrap: wrap; font-size: 10.5px; }

.bo-quoteband { text-align: center; }
.bo-quoteband .q { font-size: 32px; line-height: 1.4; font-weight: 500; max-width: 800px; margin: 0 auto; }
.bo-quoteband .q .half { color: rgba(242,241,236,.5); }
.bo-quoteband .att { margin-top: 24px; font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; letter-spacing: .18em; color: rgba(242,241,236,.5); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.bo-story { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.bo-story-copy { font-size: 15.5px; line-height: 1.8; color: rgba(242,241,236,.65); font-family: 'Archivo', sans-serif; display: flex; flex-direction: column; gap: 22px; }
.bo-story-copy b { color: #F2F1EC; }

.bo-principle { padding: 30px 24px; }
.bo-principle:hover { background: #101011; }
.bo-principle .num { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: rgba(242,241,236,.45); margin-bottom: 40px; }
.bo-principle .ph2 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.bo-principle .pd2 { font-size: 13.5px; line-height: 1.65; color: rgba(242,241,236,.55); font-family: 'Archivo', sans-serif; }

.bo-team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bo-member { border: 1px solid rgba(255,255,255,.16); padding: 26px 22px; }
.bo-member:hover { border-color: rgba(255,255,255,.45); }
.bo-member .bo-avatar { width: 54px; height: 54px; font-size: 15px; margin-bottom: 18px; }
.bo-member .mn { font-size: 16px; font-weight: 700; }
.bo-member .mt { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: rgba(242,241,236,.5); margin-top: 6px; }

.bo-role-body { padding: 4px 22px 26px 70px; max-width: 660px; font-size: 14px; line-height: 1.7; color: rgba(242,241,236,.6); font-family: 'Archivo', sans-serif; }
.bo-apply {
  margin-top: 14px; display: inline-block;
  border: 1px solid #F2F1EC; padding: 10px 18px;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: #F2F1EC; cursor: pointer;
}
.bo-apply:hover { background: #F2F1EC; color: #070808; }
.bo-benefits { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .12em; }
.bo-benefits span { border: 1px solid rgba(255,255,255,.25); padding: 8px 14px; color: rgba(242,241,236,.7); }
.bo-openroles { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: rgba(242,241,236,.5); display: flex; align-items: center; gap: 8px; }
.bo-openroles .dotp { width: 7px; height: 7px; background: #FFFFFF; animation: bo-pulse 1.6s infinite; }

/* ==========================================================================
   DOCS
   ========================================================================== */
.bo-doc-layout { display: grid; grid-template-columns: 250px 1fr 200px; flex: 1; max-width: 1360px; margin: 0 auto; width: 100%; }
.bo-doc-side {
  border-right: 1px solid rgba(255,255,255,.1);
  padding: 36px 24px;
  font-family: 'IBM Plex Mono', monospace; font-size: 13px;
  position: sticky; top: 65px; align-self: start;
  height: calc(100vh - 65px); overflow-y: auto;
}
.bo-side-label { font-size: 10.5px; letter-spacing: .18em; color: rgba(242,241,236,.4); margin-bottom: 12px; }
.bo-side-group { display: flex; flex-direction: column; gap: 2px; margin-bottom: 26px; }
.bo-side-group:last-child { margin-bottom: 0; }
.bo-side-item { padding: 8px 12px; color: rgba(242,241,236,.6); cursor: pointer; }
.bo-side-item:hover { color: #FFFFFF; }
.bo-side-item.active { background: rgba(255,255,255,.12); color: #FFFFFF; }
.bo-doc-main { padding: 48px 56px; min-width: 0; }
.bo-crumb { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: rgba(242,241,236,.45); margin-bottom: 20px; }
.bo-doc-main h1 { font-size: 44px; font-weight: 700; letter-spacing: -.02em; margin: 0 0 16px; }
.bo-doc-main h2 { font-size: 24px; font-weight: 700; margin: 0 0 12px; display: flex; align-items: baseline; gap: 12px; scroll-margin-top: 90px; }
.bo-doc-main h2 .stepnum { font-family: 'IBM Plex Mono', monospace; font-size: 14px; color: rgba(242,241,236,.45); }
.bo-doc-intro { font-size: 16px; line-height: 1.7; color: rgba(242,241,236,.65); font-family: 'Archivo', sans-serif; max-width: 640px; }
.bo-doc-p { font-size: 14.5px; line-height: 1.7; color: rgba(242,241,236,.6); font-family: 'Archivo', sans-serif; max-width: 640px; margin-bottom: 16px; }
.bo-doc-chips { display: flex; gap: 10px; margin: 24px 0 40px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; }
.bo-doc-chips span { border: 1px solid rgba(255,255,255,.25); padding: 6px 10px; color: rgba(242,241,236,.6); }
.bo-doc-main .bo-term { margin-bottom: 36px; }
.bo-callout {
  border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.04);
  padding: 16px 20px; font-size: 14px; line-height: 1.65;
  font-family: 'Archivo', sans-serif; color: rgba(242,241,236,.75);
  max-width: 640px; margin-bottom: 40px;
}
.bo-callout .code { font-family: 'IBM Plex Mono', monospace; font-size: 13px; }
.bo-nextcards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 640px; margin-bottom: 60px; }
.bo-nextcard { border: 1px solid rgba(255,255,255,.18); padding: 20px; cursor: pointer; }
.bo-nextcard:hover { border-color: #FFFFFF; }
.bo-nextcard .nk { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: rgba(242,241,236,.45); margin-bottom: 8px; }
.bo-nextcard .nt { font-size: 16px; font-weight: 700; }
.bo-nextcard .nd { font-size: 13px; color: rgba(242,241,236,.55); font-family: 'Archivo', sans-serif; margin-top: 6px; }
.bo-doc-foot {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px;
  display: flex; justify-content: space-between;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: rgba(242,241,236,.45);
}
.bo-doc-foot .edit { cursor: pointer; }
.bo-doc-foot .edit:hover { color: #FFFFFF; }
.bo-doc-toc { padding: 48px 24px; font-family: 'IBM Plex Mono', monospace; font-size: 12px; position: sticky; top: 65px; align-self: start; }
.bo-toc-links { display: flex; flex-direction: column; gap: 10px; border-left: 1px solid rgba(255,255,255,.15); padding-left: 14px; }
.bo-toc-links a { color: rgba(242,241,236,.55); }
.bo-toc-links a:hover, .bo-toc-links a.active { color: #FFFFFF; }
.bo-docfoot-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; padding-bottom: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: rgba(242,241,236,.4);
}
.bo-docfoot-bar a { color: rgba(242,241,236,.6); }
.bo-docfoot-bar a:hover { color: #FFFFFF; }

/* ==========================================================================
   ARTICLES
   ========================================================================== */
.bo-featart { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; border: 1px solid rgba(255,255,255,.25); background: #0a0b0b; cursor: pointer; }
.bo-featart:hover { border-color: rgba(255,255,255,.6); }
.bo-featart-left { padding: 40px; border-right: 1px solid rgba(255,255,255,.14); }
.bo-featart-tags { display: flex; gap: 10px; margin-bottom: 22px; font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; letter-spacing: .14em; }
.bo-featart-tags .tag { border: 1px solid rgba(255,255,255,.35); padding: 5px 10px; color: rgba(242,241,236,.7); }
.bo-featart-tags .date { padding: 5px 0; color: rgba(242,241,236,.45); }
.bo-featart-h { font-size: 34px; font-weight: 700; letter-spacing: -.02em; line-height: 1.12; margin-bottom: 16px; }
.bo-featart-dek { font-size: 14.5px; line-height: 1.75; color: rgba(242,241,236,.6); font-family: 'Archivo', sans-serif; margin-bottom: 26px; }
.bo-featart .bo-person .arr { margin-left: auto; font-size: 20px; }
.bo-featart-brief { padding: 32px 34px; font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; line-height: 2.1; background: #0d0e0e; }
.bo-featart-brief .needs { margin-top: 10px; border: 1px solid rgba(255,255,255,.35); padding: 8px 12px; }

.bo-filterbar { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.bo-cats { display: flex; gap: 8px; flex-wrap: wrap; font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; }
.bo-cat {
  cursor: pointer; padding: 9px 16px;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(242,241,236,.6); font-weight: 600; letter-spacing: .1em;
  font-family: inherit; font-size: inherit; background: transparent;
}
.bo-cat.active { border-color: #F2F1EC; background: #F2F1EC; color: #070808; }

.bo-art { align-items: baseline; }
.bo-art .adate { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: rgba(242,241,236,.45); min-width: 96px; }
.bo-art .atitle { font-size: 22px; font-weight: 700; letter-spacing: -.01em; }
.bo-art .ameta { flex: 1; font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: rgba(242,241,236,.5); }
.bo-art .aarr { font-size: 18px; }
.bo-empty { display: none; padding: 44px 22px; font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: rgba(242,241,236,.5); }

/* ==========================================================================
   CONTACT / SUPPORT
   ========================================================================== */
.bo-channel .ch-k { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .18em; color: rgba(242,241,236,.45); margin-bottom: 14px; }
.bo-channel .ch-t { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.bo-channel .ch-d { font-size: 13.5px; line-height: 1.65; color: rgba(242,241,236,.55); font-family: 'Archivo', sans-serif; margin-bottom: 14px; }
.bo-channel .ch-a { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; color: rgba(242,241,236,.75); }
.bo-channel .ch-a:hover { color: #FFFFFF; }
.bo-form { display: flex; flex-direction: column; gap: 12px; }
.bo-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bo-textarea {
  border: 1px solid rgba(255,255,255,.3); background: transparent;
  padding: 16px 18px; min-height: 150px; resize: vertical;
  font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: #F2F1EC;
}
.bo-textarea::placeholder { color: rgba(242,241,236,.45); }
.bo-textarea:focus { outline: none; border-color: #FFFFFF; }
.bo-form-note { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: rgba(242,241,236,.4); }
.bo-contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; }
.bo-office { border: 1px solid rgba(255,255,255,.16); padding: 26px 24px; }
.bo-office .of-city { font-size: 17px; font-weight: 700; }
.bo-office .of-d { margin-top: 8px; font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: rgba(242,241,236,.5); line-height: 1.9; }

/* ==========================================================================
   LEGAL (terms / privacy)
   ========================================================================== */
.bo-legal { max-width: 800px; margin: 0 auto; padding-top: 80px; padding-bottom: 90px; }
.bo-legal h1 { font-size: 44px; font-weight: 700; letter-spacing: -.02em; margin: 0 0 10px; }
.bo-legal .bo-legal-meta {
  font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; letter-spacing: .1em;
  color: rgba(242,241,236,.45); margin-bottom: 8px;
}
.bo-legal .bo-legal-intro { font-size: 15.5px; line-height: 1.75; color: rgba(242,241,236,.65); font-family: 'Archivo', sans-serif; margin: 18px 0 0; }
.bo-legal h2 {
  font-size: 20px; font-weight: 700; letter-spacing: -.01em;
  margin: 44px 0 12px; display: flex; align-items: baseline; gap: 12px;
  scroll-margin-top: 90px;
}
.bo-legal h2 .n { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: rgba(242,241,236,.45); }
.bo-legal p, .bo-legal li { font-size: 14.5px; line-height: 1.75; color: rgba(242,241,236,.6); font-family: 'Archivo', sans-serif; }
.bo-legal p { margin: 0 0 12px; }
.bo-legal ul { margin: 0 0 12px; padding-left: 20px; }
.bo-legal li { margin-bottom: 6px; }
.bo-legal b { color: rgba(242,241,236,.85); }
.bo-legal a { text-decoration: underline; text-underline-offset: 3px; }
.bo-legal .bo-legal-toc {
  border: 1px solid rgba(255,255,255,.16); background: #0a0b0b;
  padding: 20px 24px; margin-top: 28px;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px;
}
.bo-legal .bo-legal-toc a { color: rgba(242,241,236,.6); text-decoration: none; }
.bo-legal .bo-legal-toc a:hover { color: #FFFFFF; }
.bo-legal .bo-legal-foot { margin-top: 44px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: rgba(242,241,236,.45); }

/* ==========================================================================
   404
   ========================================================================== */
.bo-404 {
  min-height: calc(100vh - 140px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 60px 20px;
}
.bo-404 .code { font-size: 120px; font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.bo-404 .msg { margin-top: 18px; font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: rgba(242,241,236,.55); }

/* ==========================================================================
   responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .bo-pad { padding-left: 32px; padding-right: 32px; }
  .bo-navlinks { display: none; }
  .bo-burger { display: flex; }
  #bo-cursor-dot, #bo-cursor-ring { display: none; }

  .bo-hero-h { font-size: 58px; }
  .bo-hero-h--xl { font-size: 64px; }
  .bo-sec-h { font-size: 36px; }

  .cols-4 { grid-template-columns: 1fr 1fr; }
  .cols-3 { grid-template-columns: 1fr 1fr; }
  .bo-approach { grid-template-columns: 1fr; }
  .bo-testis { grid-template-columns: 1fr; }
  .bo-tele { grid-template-columns: 1fr; }
  .bo-team { grid-template-columns: 1fr 1fr; }

  .bo-svc-head { grid-template-columns: 1fr; gap: 14px; }
  .bo-case-teaser { grid-template-columns: 1fr; gap: 14px; }
  .bo-canvas-wrap { display: none; }
  .bo-featcells { border-top: 1px solid rgba(255,255,255,.14); }
  .bo-panel, .bo-panel.active { grid-template-columns: 1fr; }
  .bo-panel-left { border-right: none; }
  .bo-foot-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .bo-news { grid-template-columns: 1fr; gap: 24px; text-align: left; }

  .bo-contact-grid { grid-template-columns: 1fr; }
  .bo-feat-grid { grid-template-columns: 1fr; }
  .bo-feat-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,.14); }
  .row-meta { display: none; }
  .bo-acc-grid { grid-template-columns: 1fr; }
  .bo-story { grid-template-columns: 1fr; }

  .bo-doc-layout { grid-template-columns: 1fr; }
  .bo-doc-side, .bo-doc-toc { display: none; }

  .bo-featart { grid-template-columns: 1fr; }
  .bo-featart-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,.14); }
  .bo-art .ameta { display: none; }
}

@media (max-width: 640px) {
  .bo-pad { padding-left: 20px; padding-right: 20px; }
  .bo-signin { display: none; }
  .bo-section { padding-top: 90px; }

  /* fluid type: scales down smoothly on narrow phones (≤400px) */
  .bo-hero-h { font-size: clamp(29px, 9.7vw, 38px); }
  .bo-hero-h--xl { font-size: clamp(32px, 11vw, 44px); }
  .bo-hero-h--about { font-size: clamp(30px, 10.2vw, 40px); }
  .bo-sec-h { font-size: clamp(25px, 7.8vw, 30px); }
  .bo-band-h { font-size: clamp(29px, 9.8vw, 38px); }
  .bo-legal h1 { font-size: clamp(28px, 8.6vw, 34px); }
  .bo-legal .bo-legal-toc { grid-template-columns: 1fr; }
  .bo-form-row { grid-template-columns: 1fr; }
  .bo-featart-brief { padding: 24px 20px; font-size: 11.5px; }
  .bo-panel-feed { padding: 22px 18px; font-size: 11.5px; }
  .bo-panel-left { padding: 26px 22px; }
  .bo-band { padding: 48px 22px; }
  .bo-radar { width: 220px; height: 220px; }
  .bo-radar .r2 { inset: 50px; }
  .bo-radar .r3 { inset: 84px; }
  .bo-news { padding: 36px 24px; }
  .bo-news-h { font-size: 30px; }
  .bo-news-form { flex-direction: column; }

  .cols-4 { grid-template-columns: 1fr; }
  .cols-3 { grid-template-columns: 1fr; }
  .bo-team { grid-template-columns: 1fr; }
  .bo-cell { padding: 28px 22px; }

  .bo-lane { gap: 14px; padding: 20px 14px; }
  .bo-lane .lane-name { font-size: 20px; }
  .bo-lane .lane-desc { display: none; }
  .bo-marquee--statement .track { font-size: 16px; }
  .bo-herocta { flex-wrap: wrap; }

  .bo-row { flex-wrap: wrap; gap: 12px; }
  .row-kpi { display: none; }
  .bo-acc-grid { padding-left: 22px; }
  .bo-role-body { padding-left: 22px; }
  .bo-art .atitle { font-size: 18px; }

  .bo-band-cta, .bo-footrow, .bo-foot-slim { flex-direction: column; gap: 10px; align-items: center; }
  .bo-foot-cols { grid-template-columns: 1fr; gap: 32px; }
  .bo-nav .btn-sm { font-size: 12.5px; padding: 11px 14px; }
  .bo-doc-main { padding: 28px 20px; }
  .bo-quoteband .q { font-size: 24px; }
  .bo-feat-left, .bo-feat-right { padding: 26px 22px; }
  .bo-featart-left { padding: 28px 22px; }
  .bo-featart-h { font-size: 26px; }
}

/* ==========================================================================
   reduced motion: show everything statically, kill loops
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .bo-caret { animation: none; opacity: 1; }
  .rv { opacity: 1; transform: none; }
  #bo-cursor-dot, #bo-cursor-ring { display: none; }
  .bo-marquee .track { animation: none; }
}
