/*
 * BPilot design system — one compiled stylesheet.
 *
 * Every value here is transcribed from design-export/*.dc.html. The export is
 * inline-styled; this file is the extraction of that into a system. Where the
 * export repeats a literal (the 1240px container, the 76px header, the eyebrow
 * pill, the card border) it appears here exactly once.
 *
 * Sections
 *   01  Fonts
 *   02  Tokens
 *   03  Base + reset
 *   04  Layout — container, section rhythm, grid-paper texture
 *   05  Conventions — eyebrow pill, kicker, buttons, cards, chips, pills, badge
 *   06  Header — sticky bar, dropdown, mobile drawer
 *   07  Footer
 *   08  Home
 *   09  Product pages
 *   10  About
 *   11  Insights + single post
 *   12  Contact + forms
 *   13  Legal
 *   14  Search + 404
 *   15  Responsive
 *   16  Motion + focus
 */

/* ========================================================== 01  Fonts ==== */
/*
 * Hanken Grotesk, self-hosted — the only typeface in the system. Google's build
 * is a variable font, so one file per subset covers the whole 400–800 range the
 * design uses. The CDN <link> from the export is gone; nothing external loads.
 *
 * Subsets: latin + latin-ext only, matching the ranges Google serves. A handful
 * of glyphs the design uses as decoration (→ ↗ ▾ ▲) sit outside both ranges and
 * fall back to a system font — exactly as they do in the export, which loads the
 * same subsets from the CDN.
 */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/hanken-grotesk-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/hanken-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ========================================================= 02  Tokens ==== */
:root {
  /* Brand */
  --bp-red: #C13A2B;
  --bp-red-hover: #A93325;
  --bp-red-tint: #FBEFED;
  --bp-red-light: #F0836F;

  /* The 5-step bar ramp — the Humavera hero chart, lightest to full brand. */
  --bp-ramp-1: #F0D9D5;
  --bp-ramp-2: #E5B4AC;
  --bp-ramp-3: #D98878;
  --bp-ramp-4: #CE614C;
  --bp-ramp-5: #C13A2B;

  /* Ink + dark surfaces */
  --bp-ink: #16181C;
  --bp-footer: #131418;
  --bp-dark-card: #1E2027;

  /* Gray text ramp, darkest to lightest */
  --bp-gray-700: #4A515C;
  --bp-gray-600: #565D68;
  --bp-gray-500: #6B7280;
  --bp-gray-450: #6D737D;
  --bp-gray-400: #8A8F98;
  --bp-gray-350: #9AA1AB;
  --bp-gray-300: #B4B9C0;
  --bp-gray-250: #C6CAD0;
  --bp-gray-200: #D3D6DA;

  /* Borders + surfaces */
  --bp-border: #E7E8EA;        /* cards */
  --bp-border-nav: #ECEDEF;    /* header, dropdown */
  --bp-border-warm: #EEEDEB;   /* warm-alt band edges */
  --bp-border-pill: #E4E3E0;   /* feature pills on warm */
  --bp-border-input: #DDDFE3;  /* inputs, secondary buttons */
  --bp-border-soft: #F0F1F2;   /* hero underline, progress track */
  --bp-grid-line: #ECEDEF;     /* light grid-paper rule */

  --bp-white: #fff;
  --bp-warm: #F8F7F6;          /* warm alternate band */
  --bp-warm-hover: #F6F4F2;    /* dropdown item hover */
  --bp-hero-top: #FAFAF9;      /* light hero gradient start */

  /* Semantic */
  --bp-success: #1E7F4F;
  --bp-success-bg: #EAF6EF;

  /* Layout */
  --bp-max: 1240px;
  --bp-pad: 32px;
  --bp-header-h: 76px;

  /*
   * The export sets max-width:1240px and padding:0 32px WITHOUT a border-box
   * reset, so in the browser 1240px is the CONTENT width and the padding sits
   * outside it — 1304px overall. This theme does reset to border-box (worth it
   * everywhere else), so the container has to add the padding back explicitly
   * or every band comes out 64px narrower than the design.
   *
   * That 64px is not cosmetic: the capability grid is 4 × minmax(280px) + 3 ×
   * 20px gap = 1180px, which fits in 1240 and does not fit in 1176 — losing it
   * silently wraps the fourth card onto a second row.
   */
  --bp-maxw: calc(var(--bp-max) + var(--bp-pad) * 2);

  /* Radii */
  --bp-r-band: 24px;
  --bp-r-card: 20px;
  --bp-r-card-sm: 18px;
  --bp-r-mock: 16px;
  --bp-r-nav: 14px;
  --bp-r-btn: 12px;
  --bp-r-btn-sm: 10px;
  --bp-r-pill: 100px;

  /* Shadows */
  --bp-sh-card: 0 12px 32px rgba(22, 24, 28, .08);
  --bp-sh-card-hover: 0 12px 32px rgba(22, 24, 28, .10);
  --bp-sh-mock: 0 16px 40px rgba(22, 24, 28, .09);
  --bp-sh-nav: 0 16px 40px rgba(22, 24, 28, .12);
  --bp-sh-form: 0 16px 48px rgba(22, 24, 28, .07);
  --bp-sh-dark: 0 20px 48px rgba(22, 24, 28, .24);
  --bp-sh-mock-dark: 0 24px 64px rgba(0, 0, 0, .4);
  --bp-sh-mock-dark-sm: 0 24px 56px rgba(0, 0, 0, .45);

  /* Type scale — clamp() ramps, one per role in the export */
  --bp-t-h1-home: clamp(40px, 4.6vw, 60px);
  --bp-t-h1-product: clamp(38px, 4.4vw, 58px);
  --bp-t-h1-about: clamp(38px, 4.4vw, 56px);
  --bp-t-h1-page: clamp(36px, 4vw, 52px);
  --bp-t-h2-lg: clamp(32px, 3.4vw, 44px);
  --bp-t-h2: clamp(30px, 3.2vw, 42px);
  --bp-t-h2-md: clamp(30px, 3vw, 40px);
  --bp-t-h2-sm: clamp(28px, 3vw, 40px);
  --bp-t-h2-xs: clamp(28px, 3vw, 38px);
  --bp-t-h3: clamp(26px, 2.6vw, 34px);
}

/*
 * A note on the grids below.
 *
 * The export writes every responsive grid as
 *   repeat(auto-fit, minmax(420px, 1fr))
 * which cannot shrink below its 420px floor. On a 360px phone that floor wins
 * and the page scrolls sideways — five of the six exported pages do exactly
 * that when opened at 360px. Every grid here is therefore written as
 *   repeat(auto-fit, minmax(min(420px, 100%), 1fr))
 * which behaves identically at every width where the column genuinely fits, and
 * collapses to the container width instead of overflowing when it does not.
 */

/* ==================================================== 03  Base + reset ==== */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bp-white);
  color: var(--bp-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img,
svg { max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4, h5, h6, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; }

button { font-family: inherit; }

/* Skip link — keyboard users land here first. */
.bp-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--bp-ink);
  color: var(--bp-white);
  padding: 12px 20px;
  border-radius: 0 0 var(--bp-r-btn-sm) 0;
  font-size: 15px;
  font-weight: 600;
}
.bp-skip:focus {
  left: 0;
  color: var(--bp-white);
}

.bp-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================================= 04  Layout ==== */
.bp-wrap {
  max-width: var(--bp-maxw);
  margin: 0 auto;
  padding-left: var(--bp-pad);
  padding-right: var(--bp-pad);
}

/*
 * Section rhythm: light hero → ink band → white → warm alt → red/ink CTA →
 * footer. These classes carry the band background; vertical padding is set by
 * the section itself so the export's per-section values survive.
 */
.bp-band--white { background: var(--bp-white); }
.bp-band--warm {
  background: var(--bp-warm);
  border-top: 1px solid var(--bp-border-warm);
  border-bottom: 1px solid var(--bp-border-warm);
}
.bp-band--warm-top {
  background: var(--bp-warm);
  border-top: 1px solid var(--bp-border-warm);
}
.bp-band--warm-plain { background: var(--bp-warm); }
.bp-band--warm-bottom {
  background: var(--bp-warm);
  border-bottom: 1px solid var(--bp-border-warm);
}
.bp-band--ink { background: var(--bp-ink); }
.bp-band--hero {
  background: linear-gradient(180deg, var(--bp-hero-top) 0%, var(--bp-white) 100%);
  border-bottom: 1px solid var(--bp-border-soft);
}
.bp-band--hero-plain {
  background: linear-gradient(180deg, var(--bp-hero-top) 0%, var(--bp-white) 100%);
}

/*
 * Grid-paper texture. Two variants: light rules on light surfaces (the home
 * hero mock backdrop, 36px) and white rules at low alpha on dark/red bands
 * (44px). --bp-paper-alpha lets a band tune the rule strength: the red CTA uses
 * .07, the ink CTA .05, the product hero .045.
 */
.bp-paper {
  background-image:
    linear-gradient(var(--bp-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--bp-grid-line) 1px, transparent 1px);
  background-size: 36px 36px;
}
.bp-paper-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, var(--bp-paper-alpha, .07)) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, var(--bp-paper-alpha, .07)) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.bp-paper-overlay--ink { --bp-paper-alpha: .05; }
.bp-paper-overlay--hero { --bp-paper-alpha: .045; }

/* ==================================================== 05  Conventions ==== */

/* --- eyebrow pill --- */
.bp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bp-red-tint);
  color: var(--bp-red-hover);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--bp-r-pill);
}
/* On dark bands the pill inverts to a translucent chip with a brand dot. */
.bp-eyebrow--dark {
  gap: 10px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--bp-gray-200);
  letter-spacing: normal;
  text-transform: none;
}
.bp-eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bp-red);
  display: inline-block;
  flex: none;
}

/* --- red section kicker --- */
.bp-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bp-red);
}
.bp-kicker--light { color: var(--bp-red-light); }
/* Audience cards use a slightly tighter tracking. */
.bp-kicker--tight { letter-spacing: .06em; }

/* --- buttons --- */
.bp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: var(--bp-r-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .15s, color .15s;
}
.bp-btn--primary { background: var(--bp-red); color: var(--bp-white); }
.bp-btn--primary:hover { background: var(--bp-red-hover); color: var(--bp-white); }

.bp-btn--secondary {
  background: var(--bp-white);
  color: var(--bp-ink);
  border-color: var(--bp-border-input);
}
.bp-btn--secondary:hover { border-color: #B9BDC4; color: var(--bp-ink); }

.bp-btn--ghost {
  background: transparent;
  color: var(--bp-white);
  border-color: rgba(255, 255, 255, .24);
}
.bp-btn--ghost:hover { border-color: rgba(255, 255, 255, .5); color: var(--bp-white); }

/* The white button on the red CTA band. */
.bp-btn--onred {
  background: var(--bp-white);
  color: var(--bp-red);
  font-weight: 700;
  padding: 16px 32px;
}
.bp-btn--onred:hover { color: var(--bp-red-hover); transform: translateY(-1px); }

/* CTA-band buttons on the product pages sit a touch larger. */
.bp-btn--lg { padding: 16px 30px; }

/* Text link with a trailing arrow that opens up on hover. */
.bp-arrowlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--bp-red);
  transition: gap .15s, color .15s;
}
.bp-arrowlink:hover { color: var(--bp-red-hover); gap: 11px; }
.bp-arrowlink__arrow { font-size: 18px; line-height: 1; }
.bp-arrowlink--onink { color: var(--bp-red-light); }
.bp-arrowlink--onink:hover { color: var(--bp-white); }
.bp-arrowlink--sm { font-size: 15px; gap: 6px; }
.bp-arrowlink--sm:hover { gap: 8px; }
.bp-arrowlink--md { font-size: 15.5px; gap: 7px; }

/* --- cards --- */
.bp-card {
  background: var(--bp-white);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-r-card);
}
.bp-card--sm { border-radius: var(--bp-r-card-sm); }

/* Hover lift — the export's .card-h. */
.bp-lift { transition: box-shadow .2s ease, transform .2s ease; }
.bp-lift:hover {
  box-shadow: var(--bp-sh-card-hover);
  transform: translateY(-2px);
}

/* --- icon chip --- */
.bp-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  background: var(--bp-red-tint);
}
.bp-chip--48 { width: 48px; height: 48px; border-radius: 14px; }
.bp-chip--44 { width: 44px; height: 44px; border-radius: 13px; background: var(--bp-red); }
.bp-chip--42 { width: 42px; height: 42px; border-radius: 12px; }
.bp-chip--38 { width: 38px; height: 38px; border-radius: 11px; }
.bp-chip svg { display: block; }

/* --- feature pills --- */
.bp-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.bp-pill {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--bp-gray-700);
  background: var(--bp-white);
  border: 1px solid var(--bp-border-pill);
  padding: 7px 14px;
  border-radius: var(--bp-r-pill);
}
.bp-pill--dark {
  color: var(--bp-gray-200);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .14);
}

/* --- "Sample" badge --- */
.bp-badge-sample {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--bp-red-hover);
  background: var(--bp-red-tint);
  padding: 2px 8px;
  border-radius: var(--bp-r-pill);
}

/* --- bullet list inside capability cards --- */
.bp-bullets {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
}
.bp-bullets li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
  color: var(--bp-gray-700);
}
.bp-bullets li::before {
  content: '';
  flex: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bp-red);
  transform: translateY(-2px);
}

/* --- shared headings --- */
.bp-h1 {
  font-size: var(--bp-t-h1-home);
  line-height: 1.06;
  letter-spacing: -.028em;
  font-weight: 800;
  color: var(--bp-ink);
  text-wrap: balance;
}
.bp-h2 {
  font-size: var(--bp-t-h2);
  line-height: 1.14;
  letter-spacing: -.022em;
  font-weight: 800;
  color: var(--bp-ink);
  text-wrap: balance;
}
.bp-lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--bp-gray-600);
  text-wrap: pretty;
}

/* Section intro block — kicker + h2 + optional lede, capped at 640px. */
.bp-intro { max-width: 640px; }
.bp-intro .bp-kicker { display: block; margin-bottom: 14px; }
.bp-intro__lede {
  margin-top: 18px;
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--bp-gray-600);
  text-wrap: pretty;
}

/* --- CTA bands --- */
.bp-cta {
  border-radius: var(--bp-r-band);
  position: relative;
  overflow: hidden;
}
.bp-cta--red { background: var(--bp-red); padding: 72px 56px; text-align: center; }
.bp-cta--ink { background: var(--bp-ink); padding: 72px 56px; }
.bp-cta--red-sm { background: var(--bp-red); padding: 64px 56px; text-align: center; }
.bp-cta__inner { position: relative; }
.bp-cta__title {
  margin: 0 auto 16px;
  font-size: var(--bp-t-h2);
  line-height: 1.15;
  letter-spacing: -.022em;
  font-weight: 800;
  color: var(--bp-white);
  max-width: 640px;
  text-wrap: balance;
}
.bp-cta__title--xs { font-size: var(--bp-t-h2-xs); }
.bp-cta__text {
  margin: 0 auto 36px;
  font-size: 17.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .85);
  max-width: 500px;
}
.bp-cta__text--narrow { max-width: 480px; }
.bp-cta__text--sm { font-size: 17px; margin-bottom: 32px; max-width: 460px; }

/* Split CTA (product pages): copy left, buttons right. */
.bp-cta__split {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 40px;
  align-items: center;
}
.bp-cta__split h2 {
  margin: 0 0 16px;
  font-size: var(--bp-t-h2-sm);
  line-height: 1.15;
  letter-spacing: -.022em;
  font-weight: 800;
  color: var(--bp-white);
  text-wrap: balance;
}
.bp-cta__split p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--bp-gray-300);
  max-width: 460px;
  text-wrap: pretty;
}
.bp-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ========================================================= 06  Header ==== */
.bp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bp-border-nav);
}
.bp-header__inner {
  max-width: var(--bp-maxw);
  margin: 0 auto;
  padding: 0 var(--bp-pad);
  height: var(--bp-header-h);
  display: flex;
  align-items: center;
  gap: 40px;
}
.bp-logo {
  flex: none;
  display: flex;
  align-items: center;
}
.bp-logo img { height: 36px; width: auto; display: block; }

.bp-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 500;
}
.bp-nav__link {
  color: var(--bp-gray-700);
  transition: color .15s;
}
.bp-nav__link:hover { color: var(--bp-ink); }
/* The current page reads in ink. */
.bp-nav__link--current { color: var(--bp-ink); }

.bp-header__cta {
  flex: none;
  background: var(--bp-red);
  color: var(--bp-white);
  font-size: 14.5px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--bp-r-btn-sm);
  transition: background .15s;
}
.bp-header__cta:hover { background: var(--bp-red-hover); color: var(--bp-white); }

/* --- Products dropdown ---
 * DERIVED FROM THE SYSTEM. The export opens this on hover, which is unusable on
 * touch: a tap fires hover then immediately navigates. Here it is a real
 * <button> toggled by click/tap, with Enter/Space/Escape/arrow support. The
 * open panel is visually identical to the export's.
 */
.bp-dd { position: relative; }
.bp-nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--bp-gray-700);
  cursor: pointer;
  transition: color .15s;
}
.bp-nav__toggle:hover { color: var(--bp-ink); }
.bp-nav__toggle--current { color: var(--bp-ink); }
.bp-nav__caret {
  font-size: 10px;
  color: var(--bp-gray-350);
  transition: transform .18s ease;
}
.bp-nav__toggle[aria-expanded="true"] .bp-nav__caret { transform: rotate(180deg); }

.bp-nav__panel {
  position: absolute;
  top: 100%;
  left: -16px;
  padding-top: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  pointer-events: none;
}
.bp-nav__panel[data-open="true"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.bp-nav__panel-inner {
  /* content-box: the export's min-width:280px sits inside its 8px padding. */
  box-sizing: content-box;
  background: var(--bp-white);
  border: 1px solid var(--bp-border-nav);
  border-radius: var(--bp-r-nav);
  box-shadow: var(--bp-sh-nav);
  padding: 8px;
  min-width: 280px;
}
.bp-ddi {
  display: block;
  padding: 12px 14px;
  border-radius: var(--bp-r-btn-sm);
  transition: background .12s;
}
.bp-ddi:hover { background: var(--bp-warm-hover); }
.bp-ddi__name {
  display: block;
  font-weight: 600;
  color: var(--bp-ink);
  font-size: 15px;
}
.bp-ddi__desc {
  display: block;
  font-size: 13px;
  color: var(--bp-gray-500);
  margin-top: 2px;
}

/* --- mobile drawer ---
 * DERIVED FROM THE SYSTEM. The export has no mobile navigation at all.
 */
.bp-burger {
  display: none;
  flex: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--bp-border-input);
  border-radius: var(--bp-r-btn-sm);
  cursor: pointer;
  transition: border-color .15s;
}
.bp-burger:hover { border-color: #B9BDC4; }
.bp-burger__bars {
  display: block;
  position: relative;
  width: 18px;
  height: 12px;
}
.bp-burger__bars span {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--bp-ink);
  transition: transform .22s ease, opacity .18s ease;
}
.bp-burger__bars span:nth-child(1) { top: 0; }
.bp-burger__bars span:nth-child(2) { top: 5px; }
.bp-burger__bars span:nth-child(3) { top: 10px; }
.bp-burger[aria-expanded="true"] .bp-burger__bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.bp-burger[aria-expanded="true"] .bp-burger__bars span:nth-child(2) { opacity: 0; }
.bp-burger[aria-expanded="true"] .bp-burger__bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.bp-drawer {
  position: fixed;
  top: var(--bp-header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 49;
  background: var(--bp-white);
  border-top: 1px solid var(--bp-border-nav);
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.bp-drawer[data-open="true"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.bp-drawer__inner {
  padding: 24px var(--bp-pad) 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bp-drawer__link {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--bp-ink);
  border-bottom: 1px solid var(--bp-border-nav);
}
.bp-drawer__link--current { color: var(--bp-red); }
/* Products is expanded inline — no nested toggle to fight with on touch. */
.bp-drawer__group { border-bottom: 1px solid var(--bp-border-nav); padding: 14px 0 6px; }
.bp-drawer__grouplabel {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--bp-gray-350);
  margin-bottom: 8px;
}
.bp-drawer__sub {
  display: block;
  padding: 10px 0;
}
.bp-drawer__sub .bp-ddi__name { font-size: 17px; }
.bp-drawer__sub .bp-ddi__desc { font-size: 13.5px; }
.bp-drawer__cta {
  margin-top: 22px;
  width: 100%;
  background: var(--bp-red);
  color: var(--bp-white);
  font-size: 16px;
  font-weight: 700;
  padding: 15px;
  text-align: center;
  border-radius: var(--bp-r-btn);
}
.bp-drawer__cta:hover { background: var(--bp-red-hover); color: var(--bp-white); }

/* While the drawer is open the page behind it must not scroll. */
body.bp-noscroll { overflow: hidden; }

/* ========================================================= 07  Footer ==== */
.bp-footer { background: var(--bp-footer); }
.bp-footer__cols {
  max-width: var(--bp-maxw);
  margin: 0 auto;
  padding: 72px var(--bp-pad) 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 48px;
}
.bp-footer__brand { grid-column: span 1; min-width: 240px; }
/*
 * The export inverts the colour logo with a CSS filter. Reproduced here.
 * confirm before launch — a real white logo asset should replace this; the
 * filter flattens every colour in the mark to pure white.
 */
.bp-footer__logo {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .95;
  margin-bottom: 18px;
}
.bp-footer__tag {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--bp-gray-350);
  max-width: 280px;
}
.bp-footer__heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--bp-gray-450);
  margin-bottom: 18px;
}
.bp-footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
/*
 * The size goes on the <li>, not just the <a>. The export used bare anchors in
 * a flex column; this theme uses a real list, and an <li> left at the inherited
 * 16px builds a taller line box than the 14.5px link inside it — which quietly
 * grew the footer by several pixels against the reference.
 */
.bp-footer__list li { font-size: 14.5px; line-height: 1.45; }
.bp-footer__list a { font-size: 14.5px; color: var(--bp-gray-250); }
.bp-footer__list a:hover { color: var(--bp-white); }

.bp-footer__legal {
  max-width: var(--bp-maxw);
  margin: 56px auto 0;
  padding: var(--bp-pad);
  border-top: 1px solid rgba(255, 255, 255, .09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.bp-footer__copy { font-size: 13.5px; color: var(--bp-gray-400); }
.bp-footer__legallinks {
  display: flex;
  gap: 24px;
  list-style: none;
}
.bp-footer__legallinks li { font-size: 13.5px; line-height: 1.45; }
.bp-footer__legallinks a { font-size: 13.5px; color: var(--bp-gray-400); }
.bp-footer__legallinks a:hover { color: var(--bp-white); }

/* =========================================================== 08  Home ==== */
.bp-hero {
  max-width: var(--bp-maxw);
  margin: 0 auto;
  padding: 88px var(--bp-pad) 96px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 64px;
  align-items: center;
}
.bp-hero__eyebrow { margin-bottom: 28px; }
.bp-hero h1 { margin: 0 0 24px; }
.bp-hero__lede { margin: 0 0 36px; max-width: 520px; }
.bp-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- hero mock composition (home) --- */
.bp-mock {
  position: relative;
  min-height: 420px;
  border-radius: var(--bp-r-card);
}
.bp-mockcard {
  background: var(--bp-white);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-r-mock);
  box-shadow: var(--bp-sh-mock);
  padding: 22px 24px;
}
.bp-mock__readiness {
  position: absolute;
  top: 24px;
  left: 8%;
  right: 22%;
}
.bp-mock__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.bp-mock__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--bp-gray-500);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.bp-mock__tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--bp-success);
  background: var(--bp-success-bg);
  padding: 3px 9px;
  border-radius: var(--bp-r-pill);
  white-space: nowrap;
}
.bp-mock__big {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--bp-ink);
  margin-bottom: 16px;
}
.bp-meters { display: flex; flex-direction: column; gap: 10px; }
.bp-meter { display: flex; align-items: center; gap: 12px; }
.bp-meter__name {
  flex: none;
  width: 110px;
  font-size: 13px;
  color: var(--bp-gray-500);
}
.bp-meter__track {
  flex: 1;
  height: 6px;
  background: var(--bp-border-soft);
  border-radius: var(--bp-r-pill);
}
.bp-meter__fill {
  height: 6px;
  background: var(--bp-red);
  border-radius: var(--bp-r-pill);
}

/*
 * Vera agent card — dark, floats over the readiness card.
 *
 * content-box on purpose: the export is content-box throughout, so its
 * width:56% is 56% of the column PLUS the 44px of horizontal padding. Under the
 * border-box reset the card comes out 44px narrower and the message wraps onto
 * an extra line. The sibling cards positioned with left/right instead of width
 * are unaffected, which is why only the width-driven ones opt out here.
 */
.bp-mock__vera {
  box-sizing: content-box;
  position: absolute;
  bottom: 64px;
  right: 0;
  width: 56%;
  background: var(--bp-ink);
  border-radius: var(--bp-r-mock);
  box-shadow: var(--bp-sh-dark);
  padding: 20px 22px;
}
.bp-vera__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.bp-vera__avatar {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--bp-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bp-white);
  font-weight: 700;
  font-size: 14px;
  flex: none;
}
.bp-vera__name { font-size: 13.5px; font-weight: 600; color: var(--bp-white); }
.bp-vera__role { font-size: 11px; color: var(--bp-gray-350); }
.bp-vera__msg {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--bp-gray-200);
  background: rgba(255, 255, 255, .06);
  border-radius: var(--bp-r-btn-sm);
  padding: 12px 14px;
}

/* Match-rate stat card, bottom-left. */
.bp-mock__match {
  position: absolute;
  bottom: 0;
  left: 4%;
  background: var(--bp-white);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-r-nav);
  box-shadow: var(--bp-sh-card);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.bp-mock__match-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--bp-ink);
  letter-spacing: -.01em;
}
.bp-mock__match-sub { font-size: 12.5px; color: var(--bp-gray-500); }

/* --- credibility band --- */
.bp-cred {
  max-width: var(--bp-maxw);
  margin: 0 auto;
  padding: 64px var(--bp-pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 48px;
  align-items: center;
}
.bp-cred__lead { grid-column: span 1; min-width: 280px; }
.bp-cred__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--bp-white);
  line-height: 1.3;
  text-wrap: balance;
}
.bp-cred__sub {
  font-size: 15px;
  color: var(--bp-gray-350);
  margin-top: 10px;
  line-height: 1.55;
}
.bp-cred__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: space-between;
  grid-column: span 2;
  min-width: 280px;
}
.bp-stat__num {
  font-size: 40px;
  font-weight: 800;
  color: var(--bp-white);
  letter-spacing: -.02em;
}
.bp-stat__label {
  font-size: 14px;
  color: var(--bp-gray-350);
  margin-top: 4px;
}

/* --- product rows --- */
.bp-prow {
  border-radius: var(--bp-r-band);
  padding: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: 56px;
  align-items: center;
}
.bp-prow--warm { background: var(--bp-warm); border: 1px solid var(--bp-border-warm); }
.bp-prow--ink { background: var(--bp-ink); }
.bp-prow__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.bp-prow__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--bp-ink);
  letter-spacing: -.01em;
}
.bp-prow__name--light { color: var(--bp-white); }
.bp-prow h3 {
  margin: 0 0 16px;
  font-size: var(--bp-t-h3);
  line-height: 1.18;
  letter-spacing: -.02em;
  font-weight: 700;
  color: var(--bp-ink);
  text-wrap: balance;
}
.bp-prow h3.bp-prow__title--light { color: var(--bp-white); }
.bp-prow__text {
  margin: 0 0 28px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--bp-gray-600);
  text-wrap: pretty;
}
.bp-prow__text--light { color: var(--bp-gray-300); }
.bp-prow .bp-pills { margin-bottom: 32px; }

/*
 * Product screenshot placeholder — the export's diagonal hatch panel.
 * confirm before launch: replace with the real product screenshot.
 */
/* --- product screenshot stack (home product rows) ---
   A main panel inset from the right and bottom, with a smaller card lapping
   its bottom-right corner. Both images are object-fit: cover inside fixed
   geometry, so neither one's aspect ratio can change the row's height. */
.bp-shotstack {
  position: relative;
  min-height: 360px;
}
.bp-shotstack__main {
  position: absolute;
  inset: 0 12% 15% 0;
  border: 1px solid var(--bp-border-pill);
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(22, 24, 28, .14);
  overflow: hidden;
}
.bp-shotstack__over {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  background: var(--bp-white);
  border: 1px solid var(--bp-border-pill);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(22, 24, 28, .18);
  overflow: hidden;
}
.bp-shotstack img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}
.bp-shotstack__over img { height: 170px; }
.bp-shotstack--dark .bp-shotstack__main,
.bp-shotstack--dark .bp-shotstack__over {
  background: var(--bp-ink);
  border-color: rgba(255, 255, 255, .16);
}
.bp-shotstack--dark .bp-shotstack__main { box-shadow: 0 20px 48px rgba(0, 0, 0, .4); }
.bp-shotstack--dark .bp-shotstack__over { box-shadow: 0 16px 40px rgba(0, 0, 0, .45); }

/* --- "Inside the Platform" gallery (product pages) ---
   A radio group drives everything: no JavaScript, and arrow keys work because
   it is a real radio group. The nth-child pairs below map radio N to pill N
   and panel N; four is the most any product has. */
.bp-shotgal-band { padding-bottom: 104px; }
.bp-shotgal__tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.bp-shotgal__tab {
  font-size: 14.5px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 100px;
  cursor: pointer;
  background: var(--bp-white);
  color: var(--bp-gray-500);
  border: 1px solid var(--bp-border-pill);
  transition: background .15s, color .15s, border-color .15s;
}
.bp-shotgal__tab:hover { border-color: var(--bp-red); color: var(--bp-red); }

.bp-shotgal__stage {
  background: var(--bp-ink);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 24px 64px rgba(22, 24, 28, .18);
}
.bp-shotgal__item {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 20px;
  align-items: center;
}
.bp-shotgal__img {
  grid-column: span 2;
  min-width: min(320px, 100%);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
}
.bp-shotgal__img img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top left;
}
.bp-shotgal__body {
  padding: 20px 24px;
  min-width: min(260px, 100%);
}
.bp-shotgal__body .bp-kicker { display: block; margin-bottom: 12px; }
.bp-shotgal__title {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 700;
  color: var(--bp-white);
  letter-spacing: -.014em;
  line-height: 1.25;
}
.bp-shotgal__desc {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--bp-gray-300);
  text-wrap: pretty;
}

/* radio N → panel N */
.bp-shotgal__r1:checked ~ .bp-shotgal__stage .bp-shotgal__item:nth-child(1),
.bp-shotgal__r2:checked ~ .bp-shotgal__stage .bp-shotgal__item:nth-child(2),
.bp-shotgal__r3:checked ~ .bp-shotgal__stage .bp-shotgal__item:nth-child(3),
.bp-shotgal__r4:checked ~ .bp-shotgal__stage .bp-shotgal__item:nth-child(4) { display: grid; }

/* radio N → pill N */
.bp-shotgal__r1:checked ~ .bp-shotgal__tabs .bp-shotgal__tab:nth-child(1),
.bp-shotgal__r2:checked ~ .bp-shotgal__tabs .bp-shotgal__tab:nth-child(2),
.bp-shotgal__r3:checked ~ .bp-shotgal__tabs .bp-shotgal__tab:nth-child(3),
.bp-shotgal__r4:checked ~ .bp-shotgal__tabs .bp-shotgal__tab:nth-child(4) {
  background: var(--bp-red);
  color: var(--bp-white);
  border-color: var(--bp-red);
}

/* The radio is visually hidden, so its focus ring has to land on the pill. */
.bp-shotgal__r1:focus-visible ~ .bp-shotgal__tabs .bp-shotgal__tab:nth-child(1),
.bp-shotgal__r2:focus-visible ~ .bp-shotgal__tabs .bp-shotgal__tab:nth-child(2),
.bp-shotgal__r3:focus-visible ~ .bp-shotgal__tabs .bp-shotgal__tab:nth-child(3),
.bp-shotgal__r4:focus-visible ~ .bp-shotgal__tabs .bp-shotgal__tab:nth-child(4) {
  outline: 2px solid var(--bp-red);
  outline-offset: 3px;
}

/* --- insights teaser + listing cards --- */
.bp-cardgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 20px;
}
.bp-cardgrid--wide { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
.bp-cardgrid--280 { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.bp-cardgrid--340 { grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); }

/*
 * Home insights teaser: three posts, always one row.
 *
 * Fixed tracks rather than auto-fit, so the row cannot break to a second line
 * if a card's content grows or a future viewport lands between the auto-fit
 * steps. It steps down to two columns and then one; the breakpoints match the
 * grid's own comfortable width, not the theme's chrome breakpoints, which is
 * why they do not sit in the shared blocks at the end of this file.
 */
.bp-cardgrid--3up { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 940px) {
  .bp-cardgrid--3up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .bp-cardgrid--3up { grid-template-columns: minmax(0, 1fr); }
}

.bp-icard {
  display: flex;
  flex-direction: column;
  background: var(--bp-white);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-r-card-sm);
  padding: 26px;
  min-height: 240px;
}
.bp-icard--lg { padding: 30px; min-height: 260px; }
.bp-icard__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.bp-icard--lg .bp-icard__meta { margin-bottom: 16px; }
.bp-icard__tag {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--bp-gray-350);
}
.bp-icard__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--bp-ink);
  line-height: 1.4;
  letter-spacing: -.008em;
  margin-bottom: 10px;
  text-wrap: pretty;
}
.bp-icard--lg .bp-icard__title {
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}
.bp-icard__excerpt {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--bp-gray-500);
  margin-bottom: auto;
}
.bp-icard--lg .bp-icard__excerpt { font-size: 14.5px; line-height: 1.6; }
.bp-icard__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bp-red);
  margin-top: 20px;
}
.bp-icard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.bp-icard__foot .bp-icard__more { margin-top: 0; }
.bp-icard__read { font-size: 13px; color: var(--bp-gray-350); }

.bp-sectionhead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.bp-sectionhead__note {
  font-size: 14px;
  color: var(--bp-gray-350);
  font-style: italic;
}

/*
 * Empty state — DERIVED FROM THE SYSTEM. The export always had four sample
 * articles; a real site starts with none. Same card language, dashed edge to
 * read as a placeholder rather than content.
 */
.bp-empty {
  border: 1px dashed #D8DADE;
  border-radius: var(--bp-r-card-sm);
  background: var(--bp-white);
  padding: 44px 36px;
  text-align: center;
  grid-column: 1 / -1;
}
.bp-empty__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bp-red-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.bp-empty__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--bp-ink);
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.bp-empty__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--bp-gray-500);
  max-width: 460px;
  margin: 0 auto;
}

/* ======================================================= 09  Products ==== */
.bp-phero {
  background: var(--bp-ink);
  position: relative;
  overflow: hidden;
}
.bp-phero__inner {
  position: relative;
  max-width: var(--bp-maxw);
  margin: 0 auto;
  padding: 96px var(--bp-pad) 104px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 64px;
  align-items: center;
}
.bp-phero h1 {
  margin: 0 0 24px;
  font-size: var(--bp-t-h1-product);
  line-height: 1.06;
  letter-spacing: -.028em;
  font-weight: 800;
  color: var(--bp-white);
  text-wrap: balance;
}
.bp-phero__lede {
  margin: 0 0 36px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--bp-gray-300);
  max-width: 540px;
  text-wrap: pretty;
}

/* Product hero mocks */
.bp-pmock { position: relative; min-height: 400px; }
.bp-pmock__panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 14%;
  background: var(--bp-white);
  border-radius: var(--bp-r-mock);
  box-shadow: var(--bp-sh-mock-dark);
  padding: 24px 26px;
}
.bp-pmock__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
/* content-box for the same reason as .bp-mock__vera — see the note there. */
.bp-pmock__agent {
  box-sizing: content-box;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 62%;
  background: var(--bp-dark-card);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--bp-r-mock);
  box-shadow: var(--bp-sh-mock-dark-sm);
  padding: 20px 22px;
}
.bp-pmock__agent .bp-vera__avatar { width: 32px; height: 32px; border-radius: 10px; font-size: 15px; }
.bp-pmock__agent .bp-vera__name { font-size: 14px; }
.bp-pmock__agent .bp-vera__role { font-size: 11.5px; }
.bp-pmock__agent .bp-vera__msg { margin-bottom: 10px; }

/* The 5-step skills-coverage bar chart. */
.bp-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 110px;
  margin-bottom: 14px;
}
.bp-bars__bar { flex: 1; border-radius: 6px 6px 0 0; }
.bp-bars__bar--1 { background: var(--bp-ramp-1); }
.bp-bars__bar--2 { background: var(--bp-ramp-2); }
.bp-bars__bar--3 { background: var(--bp-ramp-3); }
.bp-bars__bar--4 { background: var(--bp-ramp-4); }
.bp-bars__bar--5 { background: var(--bp-ramp-5); }
.bp-bars__axis {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--bp-gray-350);
}

/* Mock action buttons (non-interactive — they are part of the picture). */
.bp-mockbtns { display: flex; gap: 8px; flex-wrap: wrap; }
.bp-mockbtn {
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
}
.bp-mockbtn--solid { color: var(--bp-white); background: var(--bp-red); }
.bp-mockbtn--outline {
  color: var(--bp-gray-250);
  border: 1px solid rgba(255, 255, 255, .18);
}

/* Eventorize live-stats row */
.bp-statrow { display: flex; gap: 24px; margin-bottom: 18px; flex-wrap: wrap; }
.bp-statrow__num {
  font-size: 30px;
  font-weight: 800;
  color: var(--bp-ink);
  letter-spacing: -.015em;
}
.bp-statrow__num--red { color: var(--bp-red); }
.bp-statrow__label { font-size: 12px; color: var(--bp-gray-350); }

/* Eventorize matchmaking card */
.bp-match__label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--bp-gray-350);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.bp-match__row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .06);
  border-radius: var(--bp-r-btn-sm);
  padding: 12px 14px;
  margin-bottom: 10px;
}
.bp-match__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bp-red);
  color: var(--bp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex: none;
}
.bp-match__name { font-size: 13.5px; font-weight: 600; color: var(--bp-white); }
.bp-match__sub { font-size: 12px; color: var(--bp-gray-350); }

/* --- value prop (two-column split) --- */
.bp-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: 64px;
  align-items: start;
}
.bp-split__body p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--bp-gray-600);
  text-wrap: pretty;
}
.bp-split__body p + p { margin-top: 20px; }

/* --- capability cards --- */
.bp-capcard {
  background: var(--bp-white);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-r-card);
  padding: 34px 30px;
}
.bp-capcard .bp-chip { margin-bottom: 24px; }
.bp-capcard__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--bp-ink);
  letter-spacing: -.012em;
  margin-bottom: 12px;
}
.bp-capcard__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--bp-gray-500);
  margin-bottom: 20px;
}

/* --- audience cards --- */
.bp-audcard {
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-r-card);
  padding: 34px 30px;
  background: var(--bp-white);
}
.bp-audcard .bp-kicker { display: block; margin-bottom: 14px; }
.bp-audcard__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--bp-ink);
  letter-spacing: -.01em;
  line-height: 1.35;
  margin-bottom: 12px;
}
.bp-audcard__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--bp-gray-500);
}

/* ========================================================== 10  About ==== */
.bp-ahero {
  max-width: var(--bp-maxw);
  margin: 0 auto;
  padding: 96px var(--bp-pad) 88px;
}
.bp-ahero__inner { max-width: 760px; }
.bp-ahero h1 {
  margin: 0 0 24px;
  font-size: var(--bp-t-h1-about);
  line-height: 1.08;
  letter-spacing: -.028em;
  font-weight: 800;
  color: var(--bp-ink);
  text-wrap: balance;
}
.bp-ahero__lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--bp-gray-600);
  max-width: 640px;
  text-wrap: pretty;
}

.bp-story h2 { margin: 0 0 24px; }
.bp-story p {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--bp-gray-600);
  text-wrap: pretty;
}
.bp-story p + p { margin-top: 20px; }

/* --- timeline --- */
.bp-timeline {
  display: flex;
  flex-direction: column;
  list-style: none;
}
.bp-timeline__item { display: flex; gap: 24px; }
.bp-timeline__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bp-timeline__dot {
  flex: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bp-red);
  border: 3px solid var(--bp-red-tint);
  margin-top: 4px;
}
.bp-timeline__line {
  flex: 1;
  width: 2px;
  background: #EEE5E3;
  margin: 6px 0;
}
.bp-timeline__body { padding-bottom: 36px; }
.bp-timeline__year {
  font-size: 14px;
  font-weight: 700;
  color: var(--bp-red);
  letter-spacing: .03em;
  margin-bottom: 6px;
}
.bp-timeline__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--bp-ink);
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.bp-timeline__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--bp-gray-500);
  max-width: 420px;
}

/* --- mission / vision --- */
.bp-mv {
  max-width: var(--bp-maxw);
  margin: 0 auto;
  padding: 96px var(--bp-pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 20px;
}
.bp-mvcard {
  background: var(--bp-white);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-r-card);
  padding: 40px 36px;
}
.bp-mvcard--ink { background: var(--bp-ink); border-color: transparent; }
.bp-mvcard .bp-kicker { display: block; margin-bottom: 16px; }
.bp-mvcard__text {
  font-size: 22px;
  font-weight: 700;
  color: var(--bp-ink);
  line-height: 1.4;
  letter-spacing: -.012em;
  text-wrap: pretty;
}
.bp-mvcard__text--light { color: var(--bp-white); }

/* --- portfolio cards --- */
.bp-pfcard {
  display: block;
  background: var(--bp-white);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-r-card);
  padding: 36px 32px;
}
.bp-pfcard .bp-chip { margin-bottom: 22px; }
/*
 * These are <span>s inside an <a> (an anchor may not contain block elements
 * here without nesting problems), and the card itself is display:block — so
 * they need blockifying explicitly or the name, description and link all run
 * together on one line. The .bp-icard equivalents get this for free because
 * that card is a flex column, which blockifies its children.
 */
.bp-pfcard__name,
.bp-pfcard__desc { display: block; }
.bp-pfcard__name {
  font-size: 21px;
  font-weight: 700;
  color: var(--bp-ink);
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.bp-pfcard__desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--bp-gray-500);
  margin-bottom: 20px;
}

/* ============================================ 11  Insights + single ==== */
.bp-pagehead {
  max-width: var(--bp-maxw);
  margin: 0 auto;
  padding: 88px var(--bp-pad) 72px;
}
.bp-pagehead__inner { max-width: 720px; }
.bp-pagehead h1 {
  margin: 0 0 20px;
  font-size: var(--bp-t-h1-page);
  line-height: 1.08;
  letter-spacing: -.028em;
  font-weight: 800;
  color: var(--bp-ink);
  text-wrap: balance;
}
.bp-pagehead__lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--bp-gray-600);
  max-width: 560px;
  text-wrap: pretty;
}
.bp-pagehead .bp-eyebrow { margin-bottom: 28px; }

/* Pagination — DERIVED: the export listing had no pager. */
.bp-pager {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 44px;
}
.bp-pager .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-r-btn-sm);
  font-size: 15px;
  font-weight: 600;
  color: var(--bp-gray-700);
  background: var(--bp-white);
  transition: border-color .15s, color .15s;
}
.bp-pager .page-numbers:hover { border-color: #B9BDC4; color: var(--bp-ink); }
.bp-pager .page-numbers.current {
  background: var(--bp-red);
  border-color: var(--bp-red);
  color: var(--bp-white);
}

/*
 * Single post — DERIVED FROM THE SYSTEM. The export never designed an article
 * page. Built from the Insights card language: eyebrow tag, the page-head H1
 * ramp, a ~720px reading column, and the same gray text ramp.
 */
.bp-article { max-width: var(--bp-maxw); margin: 0 auto; padding: 0 var(--bp-pad); }
.bp-article__head { max-width: 720px; margin: 0 auto; padding: 72px 0 0; }
.bp-article__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.bp-article h1 {
  margin: 0 0 18px;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.14;
  letter-spacing: -.024em;
  font-weight: 800;
  color: var(--bp-ink);
  text-wrap: balance;
}
.bp-article__byline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14.5px;
  color: var(--bp-gray-350);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--bp-border);
}
.bp-article__thumb {
  max-width: 720px;
  margin: 32px auto 0;
  border-radius: var(--bp-r-card-sm);
  overflow: hidden;
  border: 1px solid var(--bp-border);
}
.bp-article__thumb img { display: block; width: 100%; }

.bp-prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 0 72px;
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--bp-gray-600);
}
.bp-prose > * + * { margin-top: 24px; }
.bp-prose h2 {
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -.018em;
  font-weight: 800;
  color: var(--bp-ink);
  margin-top: 48px;
}
.bp-prose h3 {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -.012em;
  font-weight: 700;
  color: var(--bp-ink);
  margin-top: 36px;
}
.bp-prose h4 { font-size: 18px; font-weight: 700; color: var(--bp-ink); margin-top: 28px; }
.bp-prose ul,
.bp-prose ol { padding-left: 24px; }
.bp-prose li + li { margin-top: 10px; }
.bp-prose a { text-decoration: underline; text-underline-offset: 2px; }
.bp-prose blockquote {
  border-left: 3px solid var(--bp-red);
  padding: 4px 0 4px 24px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--bp-ink);
  font-weight: 500;
}
.bp-prose img,
.bp-prose figure { border-radius: var(--bp-r-mock); }
.bp-prose figcaption {
  font-size: 13.5px;
  color: var(--bp-gray-350);
  margin-top: 10px;
}
.bp-prose code {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: .9em;
  background: var(--bp-warm);
  border: 1px solid var(--bp-border-pill);
  border-radius: 6px;
  padding: 2px 6px;
}
.bp-prose pre {
  background: var(--bp-ink);
  color: var(--bp-gray-200);
  border-radius: var(--bp-r-btn);
  padding: 20px 22px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
}
.bp-prose pre code { background: none; border: 0; padding: 0; color: inherit; }
.bp-prose table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.bp-prose th,
.bp-prose td { border: 1px solid var(--bp-border); padding: 12px 14px; text-align: left; }
.bp-prose th { background: var(--bp-warm); font-weight: 700; color: var(--bp-ink); }

/* Prev / next */
/* Route back to the listing, above the previous/next pair. */
.bp-article__back {
  max-width: 720px;
  margin: 0 auto;
  padding: 8px 0 28px;
}
.bp-article__back .bp-arrowlink__arrow { margin-right: 2px; }

.bp-postnav {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 0 72px;
  border-top: 1px solid var(--bp-border);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 20px;
}
.bp-postnav__item {
  display: block;
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-r-card-sm);
  padding: 22px 24px;
  background: var(--bp-white);
}
/* Same blockifying as .bp-pfcard — spans inside a display:block anchor. */
.bp-postnav__dir,
.bp-postnav__title { display: block; }
.bp-postnav__dir {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--bp-gray-350);
  margin-bottom: 8px;
}
.bp-postnav__title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--bp-ink);
  line-height: 1.4;
  letter-spacing: -.008em;
}
.bp-postnav__item--next { text-align: right; }

/* ============================================= 12  Contact + forms ==== */
.bp-contact {
  max-width: var(--bp-maxw);
  margin: 0 auto;
  padding: 88px var(--bp-pad) 104px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: 72px;
  align-items: start;
}
.bp-contact h1 {
  margin: 0 0 24px;
  font-size: var(--bp-t-h1-page);
  line-height: 1.08;
  letter-spacing: -.028em;
  font-weight: 800;
  color: var(--bp-ink);
  text-wrap: balance;
}
.bp-contact__lede {
  margin: 0 0 40px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--bp-gray-600);
  max-width: 480px;
  text-wrap: pretty;
}
.bp-infolist { display: flex; flex-direction: column; gap: 18px; }
.bp-info { display: flex; align-items: center; gap: 16px; }
.bp-info__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--bp-gray-350);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.bp-info__value { font-size: 16px; font-weight: 600; color: var(--bp-ink); }
.bp-info__value a { color: var(--bp-ink); }
.bp-info__value a:hover { color: var(--bp-red); }

.bp-formcard {
  background: var(--bp-white);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-r-card);
  box-shadow: var(--bp-sh-form);
  padding: 40px 36px;
}
.bp-formcard__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--bp-ink);
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.bp-formcard__sub {
  font-size: 14.5px;
  color: var(--bp-gray-500);
  margin-bottom: 28px;
}
.bp-field { margin-bottom: 16px; }
.bp-fieldrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.bp-fieldrow .bp-field { margin-bottom: 0; }
.bp-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--bp-gray-700);
  margin-bottom: 7px;
}
.bp-input {
  font-family: inherit;
  font-size: 15px;
  color: var(--bp-ink);
  background: var(--bp-white);
  border: 1px solid var(--bp-border-input);
  border-radius: var(--bp-r-btn-sm);
  padding: 13px 16px;
  width: 100%;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.bp-input::placeholder { color: var(--bp-gray-350); }
.bp-input:focus {
  border-color: var(--bp-red);
  box-shadow: 0 0 0 3px rgba(193, 58, 43, .12);
}
textarea.bp-input { resize: vertical; min-height: 110px; }

/* A field that failed validation. */
.bp-input--error { border-color: var(--bp-red); background: #FFFCFC; }
.bp-fielderror {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bp-red-hover);
}

/* Pill radios — the "I'm interested in" group. */
.bp-radios { display: flex; gap: 10px; flex-wrap: wrap; }
.bp-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--bp-ink);
  border: 1px solid var(--bp-border-input);
  border-radius: var(--bp-r-pill);
  padding: 9px 16px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.bp-radio:hover { border-color: #B9BDC4; }
.bp-radio input {
  accent-color: var(--bp-red);
  margin: 0;
}
/* Selected state — the export never showed one; derived from the pill system. */
.bp-radio:has(input:checked) {
  border-color: var(--bp-red);
  background: var(--bp-red-tint);
}
.bp-radio:focus-within {
  outline: 2px solid var(--bp-red);
  outline-offset: 2px;
}

.bp-submit {
  width: 100%;
  background: var(--bp-red);
  color: var(--bp-white);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 15px;
  border: none;
  border-radius: var(--bp-r-btn);
  cursor: pointer;
  transition: background .15s;
}
.bp-submit:hover { background: var(--bp-red-hover); }
.bp-formcard__fine {
  font-size: 12.5px;
  color: var(--bp-gray-350);
  text-align: center;
  margin-top: 14px;
}

/* Result notices — DERIVED: the export only toggled the button label. */
.bp-notice {
  border-radius: var(--bp-r-btn-sm);
  padding: 14px 18px;
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.55;
}
.bp-notice--ok {
  color: var(--bp-success);
  background: var(--bp-success-bg);
  border: 1px solid #BCE5CB;
}
.bp-notice--err {
  color: var(--bp-red-hover);
  background: var(--bp-red-tint);
  border: 1px solid #F1CFC9;
}
.bp-notice ul { margin: 8px 0 0; padding-left: 20px; }
.bp-notice li + li { margin-top: 4px; }

/* ========================================================== 13  Legal ==== */
.bp-legal { max-width: var(--bp-maxw); margin: 0 auto; padding: 0 var(--bp-pad); }
.bp-legal__body { max-width: 760px; margin: 0 auto 0 0; padding: 8px 0 72px; }
/*
 * The opening paragraph carries no heading, so it is set slightly larger than
 * the numbered sections to read as the document's preamble rather than as an
 * unnumbered section that lost its title.
 */
.bp-legal__intro {
  padding-top: 8px;
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--bp-gray-600);
  text-wrap: pretty;
}
.bp-legal__section { padding-top: 40px; }
.bp-legal__section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--bp-ink);
  letter-spacing: -.012em;
  line-height: 1.3;
  margin-bottom: 12px;
}
.bp-legal__section p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--bp-gray-600);
}
/* Sits between the H1 and the lede, quieter than both. */
.bp-pagehead__updated {
  margin: -8px 0 16px;
  font-size: 14px;
  color: var(--bp-gray-350);
}

/* ==================================================== 14  Search + 404 ==== */
.bp-searchform { display: flex; gap: 10px; flex-wrap: wrap; }
.bp-searchform .bp-input { flex: 1; min-width: 200px; width: auto; }
.bp-searchform__btn {
  flex: none;
  background: var(--bp-red);
  color: var(--bp-white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border: 0;
  border-radius: var(--bp-r-btn-sm);
  cursor: pointer;
  transition: background .15s;
}
.bp-searchform__btn:hover { background: var(--bp-red-hover); }

.bp-results { max-width: var(--bp-maxw); margin: 0 auto; padding: 72px var(--bp-pad) 96px; }
.bp-404 {
  max-width: var(--bp-maxw);
  margin: 0 auto;
  padding: 96px var(--bp-pad) 104px;
  text-align: center;
}
.bp-404__inner { max-width: 560px; margin: 0 auto; }
.bp-404__code {
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--bp-red);
  line-height: 1;
  margin-bottom: 16px;
}
.bp-404 .bp-searchform { justify-content: center; margin-top: 32px; }
.bp-404__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
  list-style: none;
}
.bp-404__links a { font-size: 15.5px; font-weight: 600; }

/* ===================================================== 15  Responsive ==== */

/*
 * Below 1000px the inline nav no longer fits beside the logo and the CTA.
 * DERIVED: swap it for the burger + drawer. The export has no mobile nav.
 */
@media (max-width: 1000px) {
  .bp-nav,
  .bp-header__cta { display: none; }
  .bp-burger { display: inline-flex; }
  .bp-header__inner { gap: 16px; }
}

/* Roomier bands become tighter as the viewport narrows. */
@media (max-width: 900px) {
  :root { --bp-pad: 24px; }
  .bp-prow { padding: 40px 32px; gap: 40px; }
  .bp-cta--red,
  .bp-cta--ink { padding: 56px 32px; }
  .bp-cta--red-sm { padding: 48px 32px; }
  .bp-cta__actions { justify-content: flex-start; }
  .bp-mv { padding: 72px var(--bp-pad); }
  .bp-hero { padding: 64px var(--bp-pad) 72px; gap: 48px; }
  .bp-phero__inner { padding: 72px var(--bp-pad) 80px; gap: 48px; }
  .bp-ahero { padding: 72px var(--bp-pad) 64px; }
  .bp-pagehead { padding: 64px var(--bp-pad) 56px; }
  .bp-contact { padding: 64px var(--bp-pad) 80px; gap: 48px; }
  .bp-cred { padding: 48px var(--bp-pad); gap: 32px; }
  .bp-cred__stats { gap: 32px; }
  .bp-split { gap: 40px; }
}

/*
 * Screenshots shrink with the viewport. design-export-v2/CLAUDE.md asks that
 * embedded screenshots stay modestly sized; at these widths the fixed desktop
 * heights would otherwise dominate the section.
 */
@media (max-width: 900px) {
  .bp-shotgal-band { padding-bottom: 80px; }
  .bp-shotgal__img img { height: 320px; }
}

@media (max-width: 620px) {
  .bp-shotstack { min-height: 260px; }
  .bp-shotstack__over img { height: 120px; }
  .bp-shotgal__stage { padding: 14px; border-radius: 18px; }
  .bp-shotgal__img img { height: 220px; }
  .bp-shotgal__body { padding: 6px 4px 10px; }
  .bp-shotgal__title { font-size: 21px; }
  .bp-formcard { padding: 28px 22px; }
  .bp-fieldrow { grid-template-columns: 1fr; }
  .bp-mvcard { padding: 32px 26px; }
  .bp-capcard,
  .bp-audcard { padding: 28px 24px; }
  .bp-prow { padding: 32px 24px; }
  .bp-cta--red,
  .bp-cta--ink,
  .bp-cta--red-sm { padding: 44px 24px; }
  .bp-cred__stats { gap: 28px 40px; }
  .bp-stat__num { font-size: 34px; }
  .bp-404__code { font-size: 64px; }
  .bp-postnav__item--next { text-align: left; }
}

/*
 * DERIVED: mobile treatment for the absolutely-positioned hero mock
 * compositions. Below 560px the overlapping cards would collide, so the stack
 * unwinds into normal flow — same cards, same content, no overlap.
 *
 * 560px is measured, not guessed: the composition starts colliding there, not
 * at the ~460px originally estimated. Reviewed and confirmed 2026-08-10.
 */
@media (max-width: 560px) {
  .bp-mock,
  .bp-pmock {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .bp-mock__readiness,
  .bp-mock__vera,
  .bp-mock__match,
  .bp-pmock__panel,
  .bp-pmock__agent {
    position: static;
    width: auto;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
  /* The deep drop shadows read as smudges at this size. */
  .bp-mock__vera,
  .bp-pmock__panel,
  .bp-pmock__agent { box-shadow: 0 10px 28px rgba(0, 0, 0, .28); }
  .bp-mock__match { justify-content: flex-start; }
  .bp-mock__big { font-size: 34px; }
  .bp-meter__name { width: 88px; }
  .bp-statrow { gap: 16px; }
  .bp-statrow__num { font-size: 24px; }
  .bp-bars { height: 88px; }
}

@media (max-width: 380px) {
  .bp-meter__name { width: 76px; font-size: 12px; }
  .bp-pill { font-size: 13px; padding: 6px 12px; }
}

/* ==================================================== 16  Motion + focus ==== */
:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--bp-red);
  outline-offset: 3px;
  border-radius: 4px;
}
/* On dark bands the brand red does not separate from the background. */
.bp-band--ink :where(a, button):focus-visible,
.bp-phero :where(a, button):focus-visible,
.bp-cta--ink :where(a, button):focus-visible,
.bp-cta--red :where(a, button):focus-visible,
.bp-cta--red-sm :where(a, button):focus-visible,
.bp-prow--ink :where(a, button):focus-visible,
.bp-footer :where(a, button):focus-visible {
  outline-color: var(--bp-white);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .bp-lift:hover,
  .bp-btn--onred:hover { transform: none; }
}
