/* =========================================================================
   Boop — homepage (redesign 1a): "Deploy robots without the liability risk."
   Insurance-first, operator-focused, realistic photography. Lean 8-section
   page that replaces the long-form original homepage.

   Self-contained stylesheet for index.html. Palette, type, and the
   design-system finish (18px card corners, mono eyebrows, hairline KPI
   strip, scroll-reactive header) mirror the in-app brand system and the
   original styles.css tokens. Pure CSS — no JS. Motion is CSS
   scroll-driven and respects reduced-motion.
   ========================================================================= */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;450;500;600;700&display=swap");

@font-face {
  font-family: "Roobert";
  src: url("./assets/fonts/Roobert-TRIAL-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Roobert";
  src: url("./assets/fonts/Roobert-TRIAL-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Roobert";
  src: url("./assets/fonts/Roobert-TRIAL-SemiBold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Roobert";
  src: url("./assets/fonts/Roobert-TRIAL-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  /* Page margin system — matches the original site's .shell: a centered
     1360px column with a viewport-scaled gutter, no per-breakpoint overrides. */
  --maxw: 1360px;
  --gutter: clamp(20px, 4vw, 48px);

  /* Accent — baked default from the prototype (rust). Recolors accent spots
     site-wide: eyebrow dot, coverage/step kickers, quote arrows, nav hover,
     the USA footer line. */
  --accent: #0f0f0d;

  --ink: #0f0f0d;
  --panel: #141311;
  --paper: #ffffff;
  --cream: #faf7f1;
  --cream-deep: #efe7dc;
  --mist: #f2ede4;
  --line: #e6ded4;
  --line-2: #d9cfc2;
  --line-strong: #cfc4b5;
  --muted: #6f6f6a;
  --muted-2: #9a948b;
  --muted-on-ink: #c9c2ba;
  --peach: #e7bfa6;
  --ok: #559b6d;
  --ok-ink: #2e6f44;
  --warn: #c08a3e;

  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: Roobert, Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--panel);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--cream);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img { max-width: 100%; }

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--ink); }

/* ---- Page canvas: full-width surface ---- */
.bp {
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  letter-spacing: -0.011em;
  line-height: 1.5;
}

/* =========================================================================
   Header — sticky, fades from a dark scrim (over the hero) to solid cream
   on scroll. Pure CSS scroll-driven animation so nothing fights it.
   ========================================================================= */
.bp-hd {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  animation: bpHdBg linear both;
  animation-timeline: scroll(root);
  animation-range: 580px 680px;
}
/* Gradient scrim taller than the bar itself, feathering the hero underneath
   instead of ending at a hard edge — same treatment as the original design. */
.bp-hd__scrim {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 220%;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(to bottom,
    rgba(15,15,13,.94) 0%,
    rgba(15,15,13,.74) 34%,
    rgba(15,15,13,.36) 62%,
    rgba(15,15,13,0) 100%);
  opacity: 1;
  animation: bpFadeOut linear both;
  animation-timeline: scroll(root);
  animation-range: 580px 680px;
}
.bp-hd__in {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 15px;
  padding-inline: calc(var(--gutter) + max(0px, calc((100% - var(--maxw)) / 2)));
}
.bp-logos { position: relative; width: 70px; height: 22px; flex: none; }
.bp-logo-w, .bp-logo-b { position: absolute; left: 0; top: 0; height: 22px; width: auto; }
.bp-logo-w {
  opacity: 1;
  animation: bpFadeOut linear both;
  animation-timeline: scroll(root);
  animation-range: 580px 680px;
}
.bp-logo-b {
  opacity: 0;
  animation: bpFadeIn linear both;
  animation-timeline: scroll(root);
  animation-range: 580px 680px;
}
.bp-nav {
  display: flex;
  gap: 30px;
  font-size: 15px;
  color: rgba(255,255,255,.82);
  animation: bpNav linear both;
  animation-timeline: scroll(root);
  animation-range: 580px 680px;
}
.bp-nav a { color: inherit; opacity: .85; transition: opacity .15s ease; }
.bp-nav a:hover { color: inherit; opacity: 1; }
.bp-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.7);
  animation: bpCta linear both;
  animation-timeline: scroll(root);
  animation-range: 580px 680px;
}
.bp-cta:hover { filter: brightness(1.08); color: #fff; }

@keyframes bpHdBg {
  from {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }
  to {
    background: rgba(250,247,241,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 2px rgba(15,15,13,.05), 0 4px 12px rgba(15,15,13,.06), 0 12px 28px rgba(15,15,13,.05);
  }
}
@keyframes bpFadeOut { to { opacity: 0; } }
@keyframes bpFadeIn { to { opacity: 1; } }
@keyframes bpNav { to { color: #6f6f6a; } }
@keyframes bpCta { to { background: #0f0f0d; color: #fff; border-color: #0f0f0d; } }

/* =========================================================================
   Hero — full-bleed photo, editorial. Header sits over it via -60px pull.
   ========================================================================= */
.bp-hero {
  position: relative;
  margin-top: -80px;
  min-height: 730px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 116px 72px;
  padding-inline: calc(var(--gutter) + max(0px, calc((100% - var(--maxw)) / 2)));
}
.bp-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}
.bp-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(12,11,10,.48) 0%, rgba(12,11,10,.22) 42%, rgba(12,11,10,0) 66%);
}
.bp-hero__inner { position: relative; z-index: 2; max-width: 660px; }
.bp-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 6.4vw, 86px);
  line-height: .96;
  letter-spacing: -.05em;
  color: #fff;
  margin: 0;
  max-width: 16ch;
  text-wrap: balance;
  text-shadow: 0 1px 30px rgba(0,0,0,.25);
}
.bp-hero__sub {
  font-family: var(--font);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.5;
  color: rgba(255,255,255,.88);
  margin: clamp(22px, 3vw, 30px) 0 0;
  max-width: 54ch;
  text-wrap: pretty;
  text-shadow: 0 1px 20px rgba(0,0,0,.25);
}
.bp-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.bp-hero .bp-btn {
  font-size: 15px;
  padding: 12px 22px;
}
.bp-hero .bp-btn--light { background: #fff; color: var(--ink); border: 1px solid #fff; }
.bp-hero .bp-btn--light:hover { opacity: .9; color: var(--ink); }
.bp-hero .bp-btn--ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
}
.bp-hero .bp-btn--ghost:hover { background: rgba(255,255,255,.16); color: #fff; }

/* Eyebrow (mono kicker) */
.bp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  margin-bottom: 26px;
}
.bp-eyebrow__dot { width: 5px; height: 5px; border-radius: 999px; background: rgba(255,255,255,.8); }

/* Buttons */
.bp-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .18s ease, background-color .18s ease;
}
.bp-btn--light { background: #fff; color: var(--ink); }
.bp-btn--light:hover { opacity: .9; color: var(--ink); }
.bp-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.7);
}
.bp-btn--ghost:hover { background: rgba(255,255,255,.14); color: #fff; }
.bp-btn--dark {
  background: var(--ink);
  color: #fff;
  border: none;
  font-family: inherit;
}
.bp-btn--dark:hover { opacity: .9; color: #fff; }

/* =========================================================================
   Trust ribbon
   ========================================================================= */
.bp-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  background: var(--panel);
  color: var(--muted-on-ink);
  padding-block: 16px;
  padding-inline: calc(var(--gutter) + max(0px, calc((100% - var(--maxw)) / 2)));
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .02em;
}
.bp-ribbon__sep { opacity: .35; }

/* =========================================================================
   Section scaffolding
   ========================================================================= */
.bp-section { padding-block: 96px; padding-inline: calc(var(--gutter) + max(0px, calc((100% - var(--maxw)) / 2))); }
.bp-section--cream { background: var(--cream); }
.bp-section--paper { background: var(--paper); }
.bp-section--ink { background: #000; color: #fff; position: relative; overflow: hidden; isolation: isolate; }
/* Cinematic texture: soft tonal pools + film grain, matching the site's
   grainy photography. Grain overlays the whole frame like real film. */
.bp-section--ink::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(85rem 60rem at -12% 30%, rgba(255,255,255,.16), transparent 58%),
    radial-gradient(90rem 55rem at 108% 60%, rgba(255,255,255,.13), transparent 60%),
    radial-gradient(80rem 42rem at 40% 118%, rgba(255,255,255,.12), transparent 62%),
    radial-gradient(60rem 40rem at 55% -25%, rgba(0,0,0,.5), transparent 70%);
}
.bp-section--ink::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='300'%20height='300'%3E%3Cfilter%20id='n'%3E%3CfeTurbulence%20type='fractalNoise'%20baseFrequency='0.85'%20numOctaves='2'%20stitchTiles='stitch'/%3E%3CfeColorMatrix%20type='matrix'%20values='0%200%200%200%201%200%200%200%200%201%200%200%200%200%201%200.65%200%200%200%200'/%3E%3C/filter%3E%3Crect%20width='300'%20height='300'%20filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: .32;
  mix-blend-mode: screen;
}
.bp-section--hair { border-top: 1px solid var(--line); }

.bp-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.0;
  letter-spacing: -.04em;
  margin: 0;
}
.bp-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  margin: 20px 0 0;
}
.bp-section--ink .bp-lede { color: var(--muted-on-ink); }

/* =========================================================================
   Warranty vs Boop
   ========================================================================= */
.bp-vs {
  display: grid;
  gap: clamp(24px, 3vw, 36px);
  margin-top: clamp(36px, 5vw, 52px);
}
.bp-vs__note {
  margin: clamp(20px, 2.6vw, 28px) 0 0;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .01em;
  color: var(--muted);
  text-align: center;
}
@media (min-width: 760px) {
  .bp-vs { grid-template-columns: 1fr 1fr; }
}
.bp-vs__card {
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.bp-vs__kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.bp-vs__h {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.9vw, 20px);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 0;
}
.bp-vs__list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.bp-vs__list li {
  display: flex;
  gap: 11px;
  font-size: 14px;
}
.bp-vs__list li::before {
  content: "";
  flex: none;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  background-color: currentColor;
  opacity: .55;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.2 8.6l3.4 3.4 6.2-7.2' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.2 8.6l3.4 3.4 6.2-7.2' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
.bp-vs__card--muted { background: var(--cream); }
.bp-vs__card--muted .bp-vs__kicker { color: var(--muted); }
.bp-vs__card--muted .bp-vs__list li { color: var(--muted); }
.bp-vs__card--ink { background: var(--panel); color: #fff; }
.bp-vs__card--ink .bp-vs__kicker { color: var(--muted-on-ink); }
.bp-vs__card--ink .bp-vs__h { color: #fff; }
.bp-vs__card--ink .bp-vs__list li { color: var(--muted-on-ink); }

/* =========================================================================
   GL-exclusion card (single ink card replacing warranty-vs-Boop pair)
   ========================================================================= */
.bp-gl {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  margin-top: clamp(36px, 5vw, 52px);
  color: var(--ink);
}
.bp-gl__txt {
  padding: clamp(28px, 3.4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bp-gl__logo { height: 22px; width: auto; align-self: flex-start; margin-bottom: 12px; }
.bp-gl__p {
  margin: 0;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.42;
  letter-spacing: -.015em;
  color: var(--muted);
  max-width: 30ch;
}
.bp-gl__p strong { color: var(--ink); font-weight: 600; }
.bp-gl__p--sub { font-size: clamp(15px, 1.4vw, 16.5px); line-height: 1.55; }
.bp-gl__cta {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 500;
  font-size: 14.5px;
  transition: color .18s ease, gap .18s ease;
}
.bp-gl__cta:hover { color: var(--ink); gap: 12px; }
.bp-gl__art { min-height: 300px; }
.bp-gl__art img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 760px) {
  .bp-gl { grid-template-columns: 1fr; }
  .bp-gl__art { min-height: 220px; order: -1; }
  .bp-gl__cta { margin-top: 8px; }
}

/* =========================================================================
   Deployment environments
   ========================================================================= */
.bp-envs {
  margin-top: 48px;
  display: grid;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 32px 32px;
  background: var(--paper);
}
.bp-envs__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.bp-envgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}
.bp-envgrid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.bp-envgrid__icon {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.bp-envgrid__label {
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
  letter-spacing: -.01em;
}
@media (min-width: 640px) {
  .bp-envgrid { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================================================
   Coverage grid
   ========================================================================= */
.bp-covgrid {
  display: grid;
  gap: clamp(32px, 4vw, 48px);
  margin-top: clamp(40px, 5vw, 64px);
}
@media (min-width: 640px) {
  .bp-covgrid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .bp-covgrid { grid-template-columns: repeat(3, 1fr); }
}
.bp-cov {
  padding: clamp(12px, 2vw, 20px) 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 12px;
  min-height: 0;
  transition: opacity .14s cubic-bezier(.22,1,.36,1);
}
.bp-cov:hover { opacity: .88; }
.bp-cov__icon {
  width: 56px;
  height: 56px;
  display: block;
  margin: 0 0 6px;
  color: var(--ink);
  flex: none;
  overflow: visible;
}
/* Hover motion — one gesture per icon, keyed to what the coverage means */
.g-gear, .g-arcs, .g-spark, .g-bolt, .g-box, .g-lean {
  transform-box: fill-box;
  transform-origin: center;
}
@media (prefers-reduced-motion: no-preference) {
  .bp-cov:hover .g-gear { animation: covSpin 3.2s linear infinite; }
  .bp-cov:hover .g-arcs { animation: covSpin 1.9s cubic-bezier(.45,.05,.35,1) infinite; }
  .bp-cov:hover .g-spark { animation: covSpark 1s ease-in-out infinite; }
  .bp-cov:hover .g-bolt { animation: covBolt 1.05s ease-in-out infinite; }
  .bp-cov:hover .g-box { animation: covBelt 1.6s ease-in-out infinite; }
  .bp-cov:hover .g-lean { animation: covLean 1.3s ease-in-out infinite; }
}
@keyframes covSpin { to { transform: rotate(360deg); } }
@keyframes covSpark {
  0%, 100% { transform: scale(.75); opacity: .35; }
  45% { transform: scale(1.12); opacity: 1; }
}
@keyframes covBolt {
  0%, 100% { transform: translateY(0); opacity: 1; }
  40% { transform: translateY(2.5px); opacity: .45; }
  55% { transform: translateY(1px); opacity: 1; }
}
@keyframes covBelt {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(13px); }
}
@keyframes covLean {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(4deg) translateX(1.4px); }
}
.bp-cov__h {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -.02em;
  max-width: 22ch;
  margin: 0;
}
.bp-cov__p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  max-width: 28ch;
}
.bp-pkg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin: -4px 0 2px;
}
.bp-pkg svg { width: 13px; height: 13px; flex: none; }
.bp-pkg--caged { color: #6e5f45; background: rgba(138,122,95,.14); }
.bp-pkg--core { color: #3a3833; background: rgba(15,15,13,.07); }
.bp-pkg--cyber { color: #4f5f4a; background: rgba(95,111,90,.14); }
.bp-pkg--ent { color: #f4f1ec; background: var(--ink); }
.bp-pkg--soon { color: var(--muted-2); background: transparent; box-shadow: inset 0 0 0 1px var(--line-strong); }
.bp-cov--soon .bp-cov__icon { color: var(--muted-2); }
.bp-cov--soon .bp-cov__h { color: var(--muted); }

/* =========================================================================
   Platform — fleet dashboard mock
   ========================================================================= */
.bp-h2--w22 { max-width: 22ch; }
.bp-h2--w20 { max-width: 20ch; }

.bp-app {
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 1px 2px rgba(15,15,13,.04), 0 12px 32px rgba(15,15,13,.07), 0 32px 72px rgba(15,15,13,.05);
}
.bp-app__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.bp-app__dot { width: 10px; height: 10px; border-radius: 999px; background: var(--line-strong); }
.bp-app__url {
  margin-left: 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 4px 12px;
}
.bp-app__body { display: grid; grid-template-columns: 210px 1fr; }
.bp-side {
  background: var(--panel);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bp-side__logo { height: 17px; width: auto; margin: 2px 0 16px 5px; }
.bp-side__item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  color: #8f887e;
  font-size: 12px;
  font-weight: 500;
}
.bp-side__item--active { border-radius: 10px; background: rgba(255,255,255,.1); color: #fff; }
.bp-side__foot {
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--mono);
  font-size: 10px;
  color: #6a635a;
  display: flex;
  align-items: center;
  gap: 7px;
}
.bp-side__foot i { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }

.bp-app__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 26px 16px;
}
.bp-app__top h5 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -.02em;
  margin: 0;
}
.bp-app__org {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  background: var(--mist);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
}
.bp-app__org img { height: 9px; width: auto; filter: grayscale(1) opacity(.75); }

.bp-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}
.bp-kpi {
  padding: 13px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bp-kpi + .bp-kpi { border-left: 1px solid var(--line); }
.bp-kpi__k { font-size: 10.5px; color: var(--muted); }
.bp-kpi__v {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -.03em;
}
.bp-kpi__d { font-size: 10px; color: var(--muted); }
.bp-kpi__d--ok { color: var(--ok); }
.bp-kpi__d--warn { color: var(--warn); }

.bp-app__pad { padding: 20px 26px 26px; }
.bp-tbl { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.bp-tbl__h {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: -.01em;
}
.bp-tbl__h span {
  font-family: var(--font);
  font-weight: 400;
  font-size: 11px;
  color: var(--muted);
}
.bp-tr {
  display: grid;
  grid-template-columns: 1.7fr .6fr .8fr .7fr;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--mist);
  font-size: 13px;
}
.bp-tr:last-child { border-bottom: none; }
.bp-tr--flag { background: #fdf6ee; }
.bp-tr__id { display: flex; align-items: center; gap: 10px; min-width: 0; }
.bp-tr__bot {
  width: 40px; height: 40px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--cream);
}
.bp-tr__name { display: flex; flex-direction: column; gap: 1px; line-height: 1.25; }
.bp-tr__name b { font-weight: 600; }
.bp-tr__name em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: .02em;
}
.bp-tr__chip {
  justify-self: start;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 9px;
}
.bp-tr__chip--muted { color: var(--muted); }
.bp-tr__amt { color: var(--muted); justify-self: end; font-variant-numeric: tabular-nums; }
.bp-tr__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-self: end;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ok-ink);
}
.bp-tr__status i { width: 5px; height: 5px; border-radius: 999px; background: var(--ok); }
.bp-tr__status--rev { color: var(--warn); }
.bp-tr__status--rev i { background: #d8a24e; }

.bp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.bp-step__n { font-family: var(--mono); font-size: 11px; letter-spacing: .02em; color: var(--muted); }
.bp-step__h {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  letter-spacing: -.02em;
  margin: 8px 0 4px;
}
.bp-step__p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.5; }

/* =========================================================================
   Pricing
   ========================================================================= */
.bp-pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.bp-pricing--3 { grid-template-columns: repeat(3, 1fr); max-width: 1080px; }
/* Pricing page: keep badges neutral, no green or orange */
.bp--pricing .bp-pkg--caged,
.bp--pricing .bp-pkg--core,
.bp--pricing .bp-pkg--cyber { color: #3a3833; background: rgba(15,15,13,.07); }
.bp-tier {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bp-tier--feature { border-color: var(--line-2); position: relative; background: var(--paper); }
.bp-tier__flag {
  position: absolute;
  top: -13px;
  left: 26px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line-2);
  box-shadow: 0 2px 8px rgba(15,15,13,.06);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 5px 12px;
  border-radius: 999px;
}
.bp-tier__head { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.bp-pkg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.bp-pkg--caged { color: #6e5f45; background: rgba(138,122,95,.14); }
.bp-pkg--core { color: #3a3833; background: rgba(15,15,13,.07); }
.bp-pkg--cyber { color: #4f5f4a; background: rgba(95,111,90,.14); }
.bp-pkg--ent { color: #f4f1ec; background: var(--panel); }
.bp-tier__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 36px);
  letter-spacing: -.04em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.bp-tier__price small {
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.bp-tier__desc { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0; }
.bp-tier__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  font-size: 13.5px;
  color: var(--ink);
}
.bp-tier__list li { display: flex; gap: 10px; align-items: flex-start; }
.bp-tier__list svg { flex: none; margin-top: 2px; opacity: .55; }

/* =========================================================================
   Flywheel (ink)
   ========================================================================= */
.bp-flygrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.bp-fly {
  border: 1px solid #2a2824;
  border-radius: 18px;
  padding: 30px 28px;
}
.bp-fly__n { font-family: var(--mono); font-size: 11px; letter-spacing: .03em; color: var(--muted-on-ink); }
.bp-fly__h {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -.02em;
  margin: 14px 0 8px;
}
.bp-fly__p { font-size: 14px; line-height: 1.55; color: #a9a299; margin: 0; }

/* =========================================================================
   Quote
   ========================================================================= */
.bp-quote { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.bp-quote__h {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 40px);
  line-height: 1.04;
  letter-spacing: -.035em;
  margin: 0;
  max-width: 16ch;
}
.bp-quote__sub {
  margin: 16px 0 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 40ch;
}
.bp-quote__sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 46ch;
  margin: 20px 0 0;
}
.bp-quote__list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
  color: #3a3833;
}
.bp-quote__list li { display: flex; gap: 12px; }
.bp-quote__list li span { color: var(--muted-2); }

.bp-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
}
.bp-form__in { display: flex; flex-direction: column; gap: 16px; }
.bp-label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: #3a3833;
}
.bp-input, .bp-select {
  border: 1px solid var(--line-2);
  background: var(--cream);
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  border-radius: 10px;
}
.bp-textarea { resize: vertical; min-height: 84px; font-family: inherit; }
.bp-input:focus, .bp-select:focus, .bp-textarea:focus { outline: 2px solid var(--ink); outline-offset: 1px; border-color: transparent; }
.bp-form__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bp-form__note { font-size: 12.5px; color: var(--muted-2); text-align: center; }
.bp-form .bp-btn--dark { margin-top: 6px; justify-content: center; padding: 14px 22px; font-size: 15.5px; }
.bp-form__success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 24px 8px;
  color: var(--ok-ink);
}
.bp-form__success h4 { margin: 0; font-size: 19px; color: var(--ink); }
.bp-form__success p { margin: 0; font-size: 14px; color: var(--muted); max-width: 34ch; }
.bp-form--sent .bp-form__in { display: none; }
.bp-form--sent .bp-form__success { display: flex; }

/* =========================================================================
   Footer
   ========================================================================= */
.bp-footer {
  padding-block: clamp(48px, 6vw, 72px) 36px;
  padding-inline: calc(var(--gutter) + max(0px, calc((100% - var(--maxw)) / 2)));
  background: var(--cream);
  border-top: none;
  overflow-x: clip;
}
.bp-footer__cols {
  display: grid;
  gap: 32px;
  align-items: start;
}
@media (min-width: 840px) { .bp-footer__cols { grid-template-columns: 1.4fr 1fr 1fr; } }
.bp-footer__mark { height: 24px; margin-bottom: 16px; }
.bp-footer__blurb { font-size: 14px; line-height: 1.55; color: var(--muted); max-width: 34ch; margin: 0; }
.bp-fcol h5 {
  font-family: var(--font);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--muted);
  margin: 0 0 14px;
}
.bp-fcol ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.bp-fcol a { font-size: 14.5px; color: var(--ink); opacity: .8; }
.bp-fcol a:hover { opacity: 1; }
.bp-fcol__social { display: flex; gap: 14px; }
.bp-fcol__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  opacity: .75;
}
.bp-fcol__social a:hover { opacity: 1; background: var(--cream-deep); }
/* Closing photo strip — letterbox crop, graded to match the hero, with the
   legal line overlaid so the page ends on one quiet photographic gesture. */
.bp-footer__strip {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: clamp(40px, 6vw, 72px);
  margin-bottom: -36px; /* swallow the footer's bottom padding so the strip meets the page edge */
  height: clamp(170px, 22vw, 260px);
  overflow: hidden;
}
.bp-footer__strip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 72% keeps the farmer, truck, and drone in frame while cropping out the empty sky */
  object-position: center 72%;
  filter: saturate(.88) brightness(.82);
}
.bp-footer__strip-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--cream) 0%, rgba(250,247,241,0) 18%),
    linear-gradient(to bottom, rgba(12,11,10,0) 55%, rgba(12,11,10,.62) 100%);
}
.bp-footer__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0 calc(var(--gutter) + max(0px, calc((100% - var(--maxw)) / 2))) 18px;
  font-size: 12.5px;
  color: var(--muted-on-ink);
}
.bp-footer__usa { color: inherit; font-weight: inherit; }

/* =========================================================================
   Motion — scroll reveal (heading → lede → grid) + hover, JS-free.
   Guarded so browsers without scroll-driven animations always show content.
   ========================================================================= */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    @keyframes bpRise {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: none; }
    }
    .bp-reveal > * {
      animation: bpRise both;
      animation-timeline: view();
      animation-range: entry 4% cover 24%;
    }
  }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1000px) {
  .bp-pricing { grid-template-columns: repeat(2, 1fr); }
  .bp-app__body { grid-template-columns: 1fr; }
  .bp-side {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
  }
  .bp-side__logo { margin: 0 8px 0 0; }
  .bp-side__foot { margin-top: 0; margin-left: auto; padding-top: 0; }
  .bp-kpis { grid-template-columns: repeat(2, 1fr); }
  .bp-kpi:nth-child(3) { border-left: none; border-top: 1px solid var(--line); }
  .bp-kpi:nth-child(4) { border-top: 1px solid var(--line); }
}
@media (max-width: 760px) {
  .bp-hd__in { padding-block: 14px; }
  .bp-nav { display: none; }
  .bp-hero { padding-block: 88px 56px; min-height: 620px; }
  .bp-section { padding-block: 64px; }
  .bp-vs,
  .bp-covgrid,
  .bp-steps,
  .bp-flygrid,
  .bp-pricing,
  .bp-quote { grid-template-columns: 1fr; }
  .bp-footer { padding-block: 48px 36px; }
  .bp-footer__cols { grid-template-columns: 1fr 1fr; }
  .bp-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .bp-ribbon { gap: 16px 24px; padding-block: 16px; }
  .bp-app__top { flex-direction: column; align-items: flex-start; gap: 10px; }
  .bp-kpis { grid-template-columns: 1fr; }
  .bp-kpi + .bp-kpi { border-left: none; border-top: 1px solid var(--line); }
  .bp-tr {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .bp-tr__amt,
  .bp-tr__status { justify-self: start; }
  .bp-form__pair { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .bp-footer__cols { grid-template-columns: 1fr; }
}

/* =========================================================================
   Research page — same system, editorial list layout
   ========================================================================= */
.bp-hero--page { min-height: 520px; padding-block: 150px 72px; }
.bp-hero--page .bp-hero__title { font-size: clamp(32px, 4.6vw, 60px); max-width: 22ch; }
.bp-hero--page .bp-hero__sub { max-width: 56ch; }
/* Shorter hero → the header's cream transition fires earlier */
.bp--page .bp-hd,
.bp--page .bp-hd__scrim,
.bp--page .bp-logo-w,
.bp--page .bp-logo-b,
.bp--page .bp-nav,
.bp--page .bp-cta { animation-range: 300px 400px; }

/* Mono kicker with accent dot, for light backgrounds */
.bp-kick {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}

/* Publication rows — hairline list, no images */
.bp-publist { border-bottom: 1px solid var(--line); }
.bp-pubrow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 28px;
  align-items: baseline;
  padding-block: 24px;
  border-top: 1px solid var(--line);
}
.bp-pubrow__t {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.9vw, 21px);
  letter-spacing: -.02em;
  color: var(--ink);
  max-width: 30ch;
  transition: color .15s ease;
}
.bp-pubrow__x {
  grid-column: 1;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 62ch;
}
.bp-pubrow__m {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted-2);
  white-space: nowrap;
}
.bp-pubrow__m { transition: color .15s ease; }
.bp-pubrow__m i { font-style: normal; display: inline-block; color: var(--muted-2); transition: transform .15s ease, color .15s ease; }
.bp-pubrow__t { transition: transform .18s ease, color .15s ease; display: inline-block; }
.bp-pubrow:hover .bp-pubrow__t { transform: translateX(6px); }
.bp-pubrow:hover .bp-pubrow__m { color: var(--ink); }
.bp-pubrow:hover .bp-pubrow__m i { transform: translateX(3px); color: var(--ink); }
.bp-pubs + .bp-kick,
.bp-publist + .bp-kick { margin-top: clamp(44px, 5.6vw, 64px); }
@media (max-width: 640px) {
  .bp-pubrow { grid-template-columns: 1fr; }
  .bp-pubrow__m { grid-column: 1; grid-row: auto; margin-top: 6px; }
}

/* Research hero: solid ink, no photo */
.bp-hero--ink { background: var(--panel); }
.bp-hero--ink .bp-hero__sub { color: var(--muted-on-ink); }

/* Featured white paper card */
.bp-papercard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 72px);
}
.bp-papercard__link { margin: 28px 0 0; text-align: right; }
.bp-papercard__link a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -.01em;
  color: var(--ink);
}
.bp-papercard__link i { font-style: normal; display: inline-block; transition: transform .18s ease; }
.bp-papercard__link a:hover { color: var(--ink); }
.bp-papercard__link a:hover i { transform: translateX(3px); }
