/* ═══ COLOR FLOW MAP (from design-spec.sections[].bg_context) ═══
 * index.html:
 *   nav        → transparent-on-dark (scrolled: solid #0F1117)
 *   hero       → DARK  (#0F1117)    | text: white
 *   trust-bar  → DARK  (#0F1117)    | text: white-muted
 *   problem-frame → DARK_ALT (#161B24) | text: white
 *   product-pitch → DARK_ALT (#161B24) | text: white
 *   workflow-demo → DARK  (#0F1117)    | text: white
 *   how-it-works-teaser → DARK_ALT (#161B24) | text: white
 *   social-proof-quotes → DARK (#0F1117) | text: white
 *   cta-band   → DARK (#0F1117)     | text: white
 *   footer     → DARK (#0F1117)     | text: white-muted
 *
 * pricing.html, customers.html, careers.html, contact.html, status.html:
 *   nav        → solid dark (light-top → force dark nav)
 *   hero       → LIGHT (#F8FAFC)    | text: dark
 *   content    → LIGHT/LIGHT_ALT    | text: dark
 *   footer     → DARK (#0F1117)     | text: white-muted
 *
 * blog/*, docs/*, legal/*:
 *   nav        → solid dark (light-top)
 *   page       → LIGHT             | text: dark
 *   footer     → DARK              | text: white-muted
 *
 * Adjacent dark→dark sections need visual separator (border or shade step)
 * ═══════════════════════════════════════════════════════════════ */

/* ═══ CSS Custom Properties ═══ */
:root {
  /* Palette */
  --bpth-bg-dark:         #0F1117;
  --bpth-bg-dark-alt:     #161B24;
  --bpth-bg-dark-card:    #1C2232;
  --bpth-bg-light:        #F8FAFC;
  --bpth-bg-light-alt:    #EEF2F7;
  --bpth-bg-white:        #FFFFFF;

  --bpth-accent:          #00C8A0;
  --bpth-accent-aa-light: #00875E;
  --bpth-warning:         #FBB01F;
  --bpth-danger:          #F87171;
  --bpth-success:         #34D399;

  --bpth-fg-dark-1:       #F0F2F5;
  --bpth-fg-dark-2:       #8B95A2;
  --bpth-fg-dark-3:       #5C6470;
  --bpth-fg-light-1:      #0F1117;
  --bpth-fg-light-2:      #374151;
  --bpth-fg-light-muted:  #6B7280;

  --bpth-border-dark:     #2A3040;
  --bpth-border-light:    #D1D5DB;

  /* Typography */
  --bpth-font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --bpth-font-mono:  'JetBrains Mono', 'Fira Code', Consolas, monospace;

  /* Spacing */
  --bpth-container: 1240px;
  --bpth-nav-h:     64px;
  --bpth-section-pad: clamp(64px, 8vw, 112px);

  /* Radius */
  --bpth-radius-sm: 6px;
  --bpth-radius:    10px;
  --bpth-radius-lg: 16px;

  /* Transitions */
  --bpth-trans:     150ms ease;
  --bpth-trans-med: 300ms ease;
}

/* ═══ Reset ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--bpth-font-sans);
  font-size: 1rem;
  line-height: 1.7;
  background: var(--bpth-bg-dark);
  color: var(--bpth-fg-dark-1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.bpth-page--light-top {
  background: var(--bpth-bg-light);
  color: var(--bpth-fg-light-1);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; }

/* ═══ Utility ═══ */
.bpth-container {
  width: 100%;
  max-width: var(--bpth-container);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.bpth-visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
.bpth-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bpth-section--dark .bpth-eyebrow,
.bpth-section--dark-alt .bpth-eyebrow,
.bpth-hero .bpth-eyebrow,
.bpth-footer .bpth-eyebrow { color: var(--bpth-accent); }
.bpth-section--light .bpth-eyebrow,
.bpth-section--light-alt .bpth-eyebrow { color: var(--bpth-accent-aa-light); }

/* ═══ NAVIGATION ═══ */
.bpth-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--bpth-nav-h);
  display: flex;
  align-items: center;
  transition: background var(--bpth-trans-med), backdrop-filter var(--bpth-trans-med),
              border-color var(--bpth-trans-med);
  border-bottom: 1px solid transparent;
}

/* dark-top pages: transparent at top, solid on scroll */
body.bpth-page--dark-top .bpth-nav { background: transparent; }
body.bpth-page--dark-top .bpth-nav.bpth-nav--scrolled {
  background: rgba(15, 17, 23, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--bpth-border-dark);
}
/* dark-top body bg so transparent nav shows dark behind it */
body.bpth-page--dark-top { background: var(--bpth-bg-dark); }

/* light-top pages: always solid dark nav */
body.bpth-page--light-top .bpth-nav {
  background: var(--bpth-bg-dark);
  border-bottom-color: var(--bpth-border-dark);
}

.bpth-nav__inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--bpth-container);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 48px);
  gap: 32px;
}
.bpth-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.bpth-nav__logo img {
  height: 28px;
  width: auto;
  max-width: 180px;
}
.bpth-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}
.bpth-nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bpth-fg-dark-2);
  padding: 6px 10px;
  border-radius: var(--bpth-radius-sm);
  transition: color var(--bpth-trans), background var(--bpth-trans);
  text-decoration: none;
}
.bpth-nav__link:hover { color: var(--bpth-fg-dark-1); background: rgba(255,255,255,0.06); }
.bpth-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.bpth-nav__signin {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bpth-fg-dark-2);
  padding: 6px 12px;
  border-radius: var(--bpth-radius-sm);
  transition: color var(--bpth-trans);
  text-decoration: none;
}
.bpth-nav__signin:hover { color: var(--bpth-fg-dark-1); }
.bpth-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--bpth-radius-sm);
}
.bpth-nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--bpth-fg-dark-2);
  border-radius: 1px;
  transition: var(--bpth-trans-med);
}
.bpth-mobile-menu {
  display: none;
  position: fixed;
  inset: var(--bpth-nav-h) 0 0 0;
  background: var(--bpth-bg-dark-alt);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 99;
  overflow-y: auto;
}
.bpth-mobile-menu.is-open { display: flex; }
.bpth-mobile-menu__link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--bpth-fg-dark-1);
  padding: 12px 16px;
  border-radius: var(--bpth-radius-sm);
  border: 1px solid var(--bpth-border-dark);
  text-decoration: none;
  transition: background var(--bpth-trans);
}
.bpth-mobile-menu__link:hover { background: rgba(255,255,255,0.06); }
.bpth-mobile-menu__divider { height: 1px; background: var(--bpth-border-dark); margin: 8px 0; }

/* ═══ BUTTONS ═══ */
.bpth-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--bpth-radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--bpth-trans), color var(--bpth-trans),
              border-color var(--bpth-trans), transform var(--bpth-trans),
              box-shadow var(--bpth-trans);
  text-decoration: none;
  white-space: nowrap;
}
.bpth-btn:hover { transform: translateY(-1px); }
.bpth-btn--primary {
  background: var(--bpth-accent);
  color: #0F1117;
  border-color: var(--bpth-accent);
}
.bpth-btn--primary:hover { background: #00ddb0; border-color: #00ddb0; }
.bpth-btn--sm { padding: 7px 14px; font-size: 0.8125rem; }
.bpth-btn--lg { padding: 14px 28px; font-size: 1rem; }
.bpth-btn--outline-dark {
  background: transparent;
  color: var(--bpth-fg-dark-1);
  border-color: var(--bpth-border-dark);
}
.bpth-btn--outline-dark:hover { background: rgba(255,255,255,0.06); border-color: var(--bpth-fg-dark-3); }
.bpth-btn--ghost-dark {
  background: transparent;
  color: var(--bpth-fg-dark-2);
  border-color: transparent;
}
.bpth-btn--ghost-dark:hover { color: var(--bpth-fg-dark-1); background: rgba(255,255,255,0.06); }
.bpth-btn--ghost-light {
  background: transparent;
  color: var(--bpth-fg-light-2);
  border-color: var(--bpth-border-light);
}
.bpth-btn--ghost-light:hover { background: var(--bpth-bg-light-alt); }

/* ═══ HERO — INDEX ═══ */
.bpth-hero {
  min-height: calc(100vh - 0px);
  display: flex;
  align-items: center;
  background: var(--bpth-bg-dark);
  padding-top: calc(var(--bpth-nav-h) + 48px);
  padding-bottom: 80px;
  overflow: hidden;
}
.bpth-hero__inner {
  max-width: var(--bpth-container);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.bpth-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(0, 200, 160, 0.3);
  background: rgba(0, 200, 160, 0.08);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bpth-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.bpth-hero__headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--bpth-fg-dark-1);
  line-height: 1.1;
  margin-bottom: 20px;
}
.bpth-hero__headline span { color: var(--bpth-accent); }
.bpth-hero__subhead {
  font-size: 1.125rem;
  color: var(--bpth-fg-dark-2);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.bpth-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.bpth-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dependency graph SVG */
.bpth-dep-graph {
  width: 100%;
  max-width: 560px;
}
.bpth-dep-graph__edge {
  stroke: var(--bpth-accent);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: bpth-draw-edge 0.6s ease-in forwards;
}
.bpth-dep-graph__edge--warn {
  stroke: var(--bpth-warning);
  animation: bpth-draw-edge 0.6s ease-in 0.2s forwards, bpth-pulse-edge 2s ease-in-out 1s infinite;
}
.bpth-dep-graph__node {
  rx: 6; ry: 6;
  fill: var(--bpth-bg-dark-card);
  stroke: var(--bpth-border-dark);
  stroke-width: 1;
}
.bpth-dep-graph__node--warn {
  fill: rgba(251, 176, 31, 0.12);
  stroke: var(--bpth-warning);
  animation: bpth-pulse-node 2s ease-in-out 1s infinite;
}
.bpth-dep-graph__label {
  font-family: var(--bpth-font-mono);
  font-size: 9px;
  fill: var(--bpth-fg-dark-2);
}
.bpth-dep-graph__badge {
  rx: 4; ry: 4;
  fill: var(--bpth-warning);
  opacity: 0;
  animation: bpth-fade-badge 0.4s ease 0.8s forwards;
}
.bpth-dep-graph__badge-text {
  font-family: var(--bpth-font-mono);
  font-size: 8px;
  font-weight: 700;
  fill: #0F1117;
  opacity: 0;
  animation: bpth-fade-badge 0.4s ease 0.8s forwards;
}

@keyframes bpth-draw-edge {
  to { stroke-dashoffset: 0; }
}
@keyframes bpth-pulse-edge {
  0%, 100% { stroke-opacity: 1; }
  50% { stroke-opacity: 0.4; }
}
@keyframes bpth-pulse-node {
  0%, 100% { stroke-width: 1; }
  50% { stroke-width: 2; }
}
@keyframes bpth-fade-badge {
  to { opacity: 1; }
}

/* ═══ TRUST BAR ═══ */
.bpth-trust-bar {
  padding: 32px 0;
  background: var(--bpth-bg-dark);
  border-top: 1px solid var(--bpth-border-dark);
  border-bottom: 1px solid var(--bpth-border-dark);
}
.bpth-trust-bar__inner {
  max-width: var(--bpth-container);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.bpth-trust-bar__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bpth-fg-dark-3);
}
.bpth-trust-bar__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.bpth-trust-bar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--bpth-fg-dark-3);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color var(--bpth-trans);
  cursor: default;
}
.bpth-trust-bar__logo:hover { color: var(--bpth-fg-dark-1); }
.bpth-trust-bar__logo i { font-size: 1rem; }

/* ═══ SECTIONS ═══ */
.bpth-section--dark {
  background: var(--bpth-bg-dark);
  color: var(--bpth-fg-dark-1);
}
.bpth-section--dark-alt {
  background: var(--bpth-bg-dark-alt);
  color: var(--bpth-fg-dark-1);
  border-top: 1px solid var(--bpth-border-dark);
  border-bottom: 1px solid var(--bpth-border-dark);
}
.bpth-section--light {
  background: var(--bpth-bg-light);
  color: var(--bpth-fg-light-1);
}
.bpth-section--light-alt {
  background: var(--bpth-bg-light-alt);
  color: var(--bpth-fg-light-1);
  border-top: 1px solid var(--bpth-border-light);
  border-bottom: 1px solid var(--bpth-border-light);
}
.bpth-section--white {
  background: var(--bpth-bg-white);
  color: var(--bpth-fg-light-1);
}

.bpth-section__body {
  padding-block: var(--bpth-section-pad);
}

/* ═══ SECTION HEADINGS ═══ */
.bpth-section__heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.bpth-section--dark .bpth-section__heading,
.bpth-section--dark-alt .bpth-section__heading { color: var(--bpth-fg-dark-1); }
.bpth-section--light .bpth-section__heading,
.bpth-section--light-alt .bpth-section__heading { color: var(--bpth-fg-light-1); }

.bpth-section__sub {
  font-size: 1.0625rem;
  max-width: 600px;
  line-height: 1.65;
}
.bpth-section--dark .bpth-section__sub,
.bpth-section--dark-alt .bpth-section__sub { color: var(--bpth-fg-dark-2); }
.bpth-section--light .bpth-section__sub,
.bpth-section--light-alt .bpth-section__sub { color: var(--bpth-fg-light-2); }

.bpth-section__header {
  margin-bottom: 48px;
}
.bpth-section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.bpth-section__header--center .bpth-section__sub {
  margin-left: auto;
  margin-right: auto;
}

/* ═══ PROBLEM FRAME ═══ */
.bpth-problem {
  max-width: 720px;
  margin-inline: auto;
}
.bpth-problem__body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--bpth-fg-dark-2);
}
.bpth-problem__body strong { color: var(--bpth-fg-dark-1); }

/* ═══ FEATURE CARDS ═══ */
.bpth-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bpth-feature-card {
  padding: 28px;
  border-radius: var(--bpth-radius);
  border: 1px solid var(--bpth-border-dark);
  background: var(--bpth-bg-dark-card);
  transition: border-color var(--bpth-trans), transform var(--bpth-trans);
}
.bpth-feature-card:hover {
  border-color: rgba(0, 200, 160, 0.3);
  transform: translateY(-2px);
}
.bpth-feature-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 160, 0.1);
  border-radius: var(--bpth-radius-sm);
  margin-bottom: 16px;
  color: var(--bpth-accent);
  font-size: 1.125rem;
}
.bpth-feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bpth-fg-dark-1);
  margin-bottom: 10px;
}
.bpth-feature-card__body {
  font-size: 0.9rem;
  color: var(--bpth-fg-dark-2);
  line-height: 1.65;
}

/* ═══ WORKFLOW DEMO / TABS ═══ */
.bpth-demo {
  border-radius: var(--bpth-radius-lg);
  border: 1px solid var(--bpth-border-dark);
  background: var(--bpth-bg-dark-alt);
  overflow: hidden;
}
.bpth-demo__tabs {
  display: flex;
  border-bottom: 1px solid var(--bpth-border-dark);
  padding: 0 20px;
}
.bpth-demo__tab {
  padding: 14px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bpth-fg-dark-3);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
  transition: color var(--bpth-trans), border-color var(--bpth-trans);
  margin-bottom: -1px;
}
.bpth-demo__tab.is-active {
  color: var(--bpth-accent);
  border-bottom-color: var(--bpth-accent);
}
.bpth-demo__tab:hover { color: var(--bpth-fg-dark-2); }
.bpth-demo__panel { display: none; padding: 0; }
.bpth-demo__panel.is-active { display: block; }
.bpth-demo__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.bpth-demo__cta {
  display: flex;
  justify-content: flex-end;
  padding: 16px 20px;
  border-top: 1px solid var(--bpth-border-dark);
}

/* ═══ HOW IT WORKS STEPS ═══ */
.bpth-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.bpth-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bpth-step__number {
  font-family: var(--bpth-font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bpth-accent);
  letter-spacing: 0.04em;
}
.bpth-step__body {
  font-size: 0.9375rem;
  color: var(--bpth-fg-dark-2);
  line-height: 1.65;
}

/* ═══ TESTIMONIALS ═══ */
.bpth-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.bpth-testimonial {
  padding: 32px;
  border-radius: var(--bpth-radius);
  border: 1px solid var(--bpth-border-dark);
  background: var(--bpth-bg-dark-card);
}
.bpth-testimonial__quote {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--bpth-fg-dark-2);
  margin-bottom: 24px;
}
.bpth-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bpth-testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bpth-border-dark);
}
.bpth-testimonial__avatar img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.bpth-testimonial__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bpth-fg-dark-1);
}
.bpth-testimonial__role {
  font-size: 0.8125rem;
  color: var(--bpth-fg-dark-3);
}

/* ═══ CTA BAND ═══ */
.bpth-cta-band {
  background: var(--bpth-bg-dark);
  border-top: 1px solid var(--bpth-border-dark);
}
.bpth-cta-band__inner {
  max-width: var(--bpth-container);
  margin: 0 auto;
  padding: var(--bpth-section-pad) clamp(20px, 5vw, 48px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.bpth-cta-band__headline {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--bpth-fg-dark-1);
  max-width: 600px;
}
.bpth-cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ═══ FOOTER ═══ */
.bpth-footer {
  background: var(--bpth-bg-dark);
  border-top: 1px solid var(--bpth-border-dark);
}
.bpth-footer__grid {
  max-width: var(--bpth-container);
  margin: 0 auto;
  padding: 64px clamp(20px, 5vw, 48px) 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.bpth-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bpth-footer__logo img {
  height: 24px;
  width: auto;
}
.bpth-footer__tagline {
  font-size: 0.875rem;
  color: var(--bpth-fg-dark-3);
  max-width: 260px;
  line-height: 1.6;
}
.bpth-footer__col-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bpth-fg-dark-3);
  margin-bottom: 16px;
}
.bpth-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bpth-footer__col-link {
  font-size: 0.875rem;
  color: var(--bpth-fg-dark-3);
  transition: color var(--bpth-trans);
  text-decoration: none;
}
.bpth-footer__col-link:hover { color: var(--bpth-fg-dark-1); }
.bpth-footer__bottom {
  max-width: var(--bpth-container);
  margin: 0 auto;
  padding: 20px clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--bpth-border-dark);
}
.bpth-footer__copy {
  font-size: 0.8125rem;
  color: var(--bpth-fg-dark-3);
}
.bpth-footer__bottom-links {
  display: flex;
  gap: 20px;
}
.bpth-footer__bottom-link {
  font-size: 0.8125rem;
  color: var(--bpth-fg-dark-3);
  transition: color var(--bpth-trans);
  text-decoration: none;
}
.bpth-footer__bottom-link:hover { color: var(--bpth-fg-dark-1); }

/* ═══ SUB-PAGE HEROES ═══ */
.bpth-subhero {
  padding-top: calc(var(--bpth-nav-h) + 56px);
  padding-bottom: 56px;
}
.bpth-subhero--dark { background: var(--bpth-bg-dark); }
.bpth-subhero--light { background: var(--bpth-bg-light); }

.bpth-subhero__inner {
  max-width: var(--bpth-container);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.bpth-subhero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  margin-bottom: 20px;
}
.bpth-subhero--dark .bpth-subhero__breadcrumb { color: var(--bpth-fg-dark-3); }
.bpth-subhero--light .bpth-subhero__breadcrumb { color: var(--bpth-fg-light-muted); }
.bpth-subhero__breadcrumb a { text-decoration: none; transition: color var(--bpth-trans); }
.bpth-subhero--dark .bpth-subhero__breadcrumb a:hover { color: var(--bpth-accent); }
.bpth-subhero--light .bpth-subhero__breadcrumb a:hover { color: var(--bpth-accent-aa-light); }

.bpth-subhero__headline {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.bpth-subhero--dark .bpth-subhero__headline { color: var(--bpth-fg-dark-1); }
.bpth-subhero--light .bpth-subhero__headline { color: var(--bpth-fg-light-1); }

.bpth-subhero__sub {
  font-size: 1.0625rem;
  max-width: 640px;
  line-height: 1.65;
}
.bpth-subhero--dark .bpth-subhero__sub { color: var(--bpth-fg-dark-2); }
.bpth-subhero--light .bpth-subhero__sub { color: var(--bpth-fg-light-2); }

/* split hero */
.bpth-subhero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.bpth-subhero__img {
  border-radius: var(--bpth-radius);
  overflow: hidden;
}
.bpth-subhero__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══ PRODUCT PAGE ═══ */
.bpth-feature-alternating {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.bpth-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.bpth-feature-row--reversed .bpth-feature-row__visual { order: -1; }
.bpth-feature-row__content {}
.bpth-feature-row__title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.bpth-section--dark-alt .bpth-feature-row__title { color: var(--bpth-fg-dark-1); }
.bpth-feature-row__body {
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.bpth-section--dark-alt .bpth-feature-row__body { color: var(--bpth-fg-dark-2); }
.bpth-feature-row__visual {
  border-radius: var(--bpth-radius);
  overflow: hidden;
  border: 1px solid var(--bpth-border-dark);
}
.bpth-feature-row__visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══ INLINE MOCK (code/terminal) ═══ */
.bpth-term {
  border-radius: var(--bpth-radius);
  overflow: hidden;
  border: 1px solid var(--bpth-border-dark);
  background: #0D1117;
}
.bpth-term__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #161B24;
  border-bottom: 1px solid var(--bpth-border-dark);
}
.bpth-term__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.bpth-term__dot--red   { background: #FF5F57; }
.bpth-term__dot--yellow{ background: #FFBD2E; }
.bpth-term__dot--green { background: #28C940; }
.bpth-term__title {
  font-family: var(--bpth-font-mono);
  font-size: 0.75rem;
  color: var(--bpth-fg-dark-3);
  margin-left: 6px;
}
.bpth-term__body {
  padding: 16px;
  margin: 0;
  font-family: var(--bpth-font-mono);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--bpth-fg-dark-1);
  overflow-x: auto;
  white-space: pre;
}
.bpth-tt-prompt { color: var(--bpth-fg-dark-3); }
.bpth-tt-cmd    { color: var(--bpth-accent); }
.bpth-tt-meta   { color: var(--bpth-fg-dark-3); }
.bpth-tt-breaking { color: var(--bpth-danger); font-weight: 700; }
.bpth-tt-warning  { color: var(--bpth-warning); }
.bpth-tt-ok       { color: var(--bpth-success); }
.bpth-tt-label    { color: var(--bpth-fg-dark-2); }
.bpth-tt-dim      { color: var(--bpth-fg-dark-3); }

/* ═══ HOW IT WORKS — Full page ═══ */
.bpth-steps-vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}
.bpth-step-v {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding-bottom: 48px;
  position: relative;
}
.bpth-step-v:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 52px;
  bottom: 0;
  width: 1px;
  background: var(--bpth-border-dark);
}
.bpth-step-v__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--bpth-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bpth-font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bpth-accent);
  background: rgba(0, 200, 160, 0.06);
  flex-shrink: 0;
}
.bpth-step-v__content { padding-top: 10px; }
.bpth-step-v__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bpth-fg-dark-1);
  margin-bottom: 10px;
}
.bpth-step-v__body {
  font-size: 0.9375rem;
  color: var(--bpth-fg-dark-2);
  line-height: 1.65;
}

/* ═══ INTEGRATIONS ═══ */
.bpth-integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bpth-integration-card {
  padding: 24px;
  border-radius: var(--bpth-radius);
  border: 1px solid var(--bpth-border-dark);
  background: var(--bpth-bg-dark-card);
  transition: border-color var(--bpth-trans), transform var(--bpth-trans);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bpth-integration-card:hover {
  border-color: rgba(0, 200, 160, 0.3);
  transform: translateY(-2px);
}
.bpth-integration-card__logo {
  font-size: 1.5rem;
  color: var(--bpth-accent);
}
.bpth-integration-card__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--bpth-fg-dark-1);
}
.bpth-integration-card__desc {
  font-size: 0.8375rem;
  color: var(--bpth-fg-dark-2);
  line-height: 1.55;
  flex: 1;
}
.bpth-integration-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bpth-accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--bpth-trans);
}
.bpth-integration-card__link:hover { gap: 8px; }

/* ═══ PRICING ═══ */
.bpth-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.bpth-pricing-card {
  border-radius: var(--bpth-radius-lg);
  padding: 32px;
  border: 1px solid var(--bpth-border-light);
  background: var(--bpth-bg-white);
  position: relative;
}
.bpth-pricing-card--highlight {
  border-color: var(--bpth-accent-aa-light);
  box-shadow: 0 0 0 1px var(--bpth-accent-aa-light);
}
.bpth-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bpth-accent-aa-light);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.bpth-pricing-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bpth-fg-light-1);
  margin-bottom: 4px;
}
.bpth-pricing-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bpth-fg-light-1);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 12px 0 4px;
}
.bpth-pricing-card__billing {
  font-size: 0.8125rem;
  color: var(--bpth-fg-light-muted);
  margin-bottom: 4px;
}
.bpth-pricing-card__seats {
  font-size: 0.875rem;
  color: var(--bpth-fg-light-2);
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bpth-border-light);
}
.bpth-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.bpth-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--bpth-fg-light-2);
  line-height: 1.5;
}
.bpth-pricing-card__feature i {
  color: var(--bpth-accent-aa-light);
  margin-top: 3px;
  flex-shrink: 0;
}
.bpth-pricing-card__cta {
  display: block;
  text-align: center;
}

/* ═══ FAQ ACCORDION ═══ */
.bpth-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.bpth-faq-item {
  border: 1px solid var(--bpth-border-light);
  border-radius: var(--bpth-radius-sm);
  background: var(--bpth-bg-white);
  overflow: hidden;
}
.bpth-faq-item__question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bpth-fg-light-1);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background var(--bpth-trans);
}
.bpth-faq-item__question:hover { background: var(--bpth-bg-light); }
.bpth-faq-item__question i {
  color: var(--bpth-fg-light-muted);
  flex-shrink: 0;
  margin-top: 3px;
  transition: transform var(--bpth-trans-med);
}
.bpth-faq-item.is-open .bpth-faq-item__question i { transform: rotate(180deg); }
.bpth-faq-item__answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--bpth-fg-light-2);
  line-height: 1.65;
  border-top: 1px solid var(--bpth-border-light);
  padding-top: 14px;
}
.bpth-faq-item.is-open .bpth-faq-item__answer { display: block; }

/* ═══ CUSTOMERS ═══ */
.bpth-customer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bpth-customer-card {
  padding: 32px;
  border-radius: var(--bpth-radius);
  border: 1px solid var(--bpth-border-light);
  background: var(--bpth-bg-white);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bpth-customer-card__company {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bpth-fg-light-1);
}
.bpth-customer-card__industry {
  font-size: 0.8125rem;
  color: var(--bpth-fg-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.bpth-customer-card__outcome {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bpth-accent-aa-light);
  line-height: 1.4;
}
.bpth-customer-card__team {
  font-size: 0.875rem;
  color: var(--bpth-fg-light-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ═══ METRICS BAR ═══ */
.bpth-metrics-bar {
  background: var(--bpth-bg-light-alt);
  border-top: 1px solid var(--bpth-border-light);
  border-bottom: 1px solid var(--bpth-border-light);
  padding: 48px 0;
}
.bpth-metrics-bar__inner {
  max-width: var(--bpth-container);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.bpth-metric__value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--bpth-fg-light-1);
  line-height: 1;
}
.bpth-metric__label {
  font-size: 0.875rem;
  color: var(--bpth-fg-light-muted);
  margin-top: 8px;
}

/* ═══ CHANGELOG ═══ */
.bpth-changelog {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bpth-changelog-entry {
  padding: 56px 0;
  border-bottom: 1px solid var(--bpth-border-dark);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0 40px;
}
.bpth-changelog-entry:first-child { padding-top: 0; }
.bpth-changelog-entry__meta {
  padding-top: 4px;
  border-right: 2px solid var(--bpth-border-dark);
  padding-right: 24px;
}
.bpth-changelog-entry__version {
  font-family: var(--bpth-font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bpth-accent);
  margin-bottom: 6px;
}
.bpth-changelog-entry__date {
  font-size: 0.8125rem;
  color: var(--bpth-fg-dark-3);
}
.bpth-changelog-entry__content {}
.bpth-changelog-entry__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bpth-changelog-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--bpth-fg-dark-2);
  line-height: 1.55;
}
.bpth-changelog-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-top: 2px;
}
.bpth-changelog-tag--new      { background: rgba(0, 200, 160, 0.15); color: var(--bpth-accent); }
.bpth-changelog-tag--fix      { background: rgba(248, 113, 113, 0.15); color: var(--bpth-danger); }
.bpth-changelog-tag--improved { background: rgba(251, 176, 31, 0.15); color: var(--bpth-warning); }

/* ═══ ABOUT ═══ */
.bpth-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bpth-team-card {
  padding: 24px;
  border-radius: var(--bpth-radius);
  border: 1px solid var(--bpth-border-dark);
  background: var(--bpth-bg-dark-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.bpth-team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bpth-bg-dark-alt);
  flex-shrink: 0;
}
.bpth-team-card__avatar img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}
.bpth-team-card__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--bpth-fg-dark-1);
}
.bpth-team-card__role {
  font-size: 0.8125rem;
  color: var(--bpth-fg-dark-2);
}

.bpth-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.bpth-value-card {
  padding: 28px;
  border-radius: var(--bpth-radius);
  border: 1px solid var(--bpth-border-dark);
  background: var(--bpth-bg-dark-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bpth-value-card__icon {
  color: var(--bpth-accent);
  font-size: 1.25rem;
}
.bpth-value-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bpth-fg-dark-1);
}
.bpth-value-card__body {
  font-size: 0.9rem;
  color: var(--bpth-fg-dark-2);
  line-height: 1.65;
}

/* ═══ CAREERS ═══ */
.bpth-roles-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bpth-role-card {
  padding: 24px 28px;
  border-radius: var(--bpth-radius-sm);
  border: 1px solid var(--bpth-border-light);
  background: var(--bpth-bg-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: border-color var(--bpth-trans);
}
.bpth-role-card:hover { border-color: var(--bpth-accent-aa-light); }
.bpth-role-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bpth-fg-light-1);
}
.bpth-role-card__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.bpth-role-card__tag {
  font-size: 0.8125rem;
  color: var(--bpth-fg-light-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.bpth-perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bpth-perk-card {
  padding: 24px;
  border-radius: var(--bpth-radius-sm);
  border: 1px solid var(--bpth-border-light);
  background: var(--bpth-bg-white);
}
.bpth-perk-card__icon { font-size: 1.5rem; color: var(--bpth-accent-aa-light); margin-bottom: 12px; }
.bpth-perk-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--bpth-fg-light-1);
  margin-bottom: 8px;
}
.bpth-perk-card__body { font-size: 0.875rem; color: var(--bpth-fg-light-2); line-height: 1.6; }

/* ═══ CONTACT ═══ */
.bpth-contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}
.bpth-contact-form { display: flex; flex-direction: column; gap: 20px; }
.bpth-form-group { display: flex; flex-direction: column; gap: 6px; }
.bpth-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bpth-fg-light-1);
}
.bpth-form-input, .bpth-form-textarea, .bpth-form-select {
  padding: 10px 14px;
  border-radius: var(--bpth-radius-sm);
  border: 1px solid var(--bpth-border-light);
  background: var(--bpth-bg-white);
  color: var(--bpth-fg-light-1);
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color var(--bpth-trans), box-shadow var(--bpth-trans);
  width: 100%;
  max-width: 480px;
}
.bpth-form-input:focus, .bpth-form-textarea:focus {
  outline: none;
  border-color: var(--bpth-accent-aa-light);
  box-shadow: 0 0 0 3px rgba(0, 135, 94, 0.12);
}
.bpth-form-textarea { resize: vertical; min-height: 120px; }
.bpth-contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bpth-contact-info__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.bpth-contact-info__icon { color: var(--bpth-accent-aa-light); margin-top: 3px; flex-shrink: 0; }
.bpth-contact-info__label { font-size: 0.8125rem; color: var(--bpth-fg-light-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.bpth-contact-info__value { font-size: 0.9375rem; color: var(--bpth-fg-light-1); }
.bpth-contact-info__value a { color: var(--bpth-accent-aa-light); }

/* ═══ SECURITY ═══ */
.bpth-security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.bpth-security-card {
  padding: 28px;
  border-radius: var(--bpth-radius);
  border: 1px solid var(--bpth-border-dark);
  background: var(--bpth-bg-dark-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bpth-security-card__icon { color: var(--bpth-accent); font-size: 1.25rem; }
.bpth-security-card__title { font-size: 1rem; font-weight: 700; color: var(--bpth-fg-dark-1); }
.bpth-security-card__body { font-size: 0.9rem; color: var(--bpth-fg-dark-2); line-height: 1.65; }

/* ═══ STATUS PAGE ═══ */
.bpth-status-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto;
}
.bpth-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--bpth-radius-sm);
  border: 1px solid var(--bpth-border-light);
  background: var(--bpth-bg-white);
}
.bpth-status-row__name { font-size: 0.9375rem; font-weight: 600; color: var(--bpth-fg-light-1); }
.bpth-status-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  font-weight: 600;
}
.bpth-status-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: bpth-pulse-green 2s ease-in-out infinite;
}
.bpth-status-badge--operational .bpth-status-badge__dot { background: var(--bpth-success); }
.bpth-status-badge--operational { color: var(--bpth-success); }
@keyframes bpth-pulse-green {
  0%, 100% { opacity: 1; } 50% { opacity: 0.5; }
}
.bpth-uptime-bar {
  display: flex;
  gap: 2px;
  margin-top: 6px;
}
.bpth-uptime-bar__seg {
  flex: 1;
  height: 6px;
  border-radius: 1px;
  background: var(--bpth-success);
  opacity: 0.35;
}
.bpth-uptime-bar__seg--active { opacity: 1; }

/* ═══ BLOG ═══ */
.bpth-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.bpth-blog-card {
  border-radius: var(--bpth-radius);
  border: 1px solid var(--bpth-border-light);
  background: var(--bpth-bg-white);
  overflow: hidden;
  transition: border-color var(--bpth-trans), box-shadow var(--bpth-trans), transform var(--bpth-trans);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.bpth-blog-card:hover {
  border-color: var(--bpth-accent-aa-light);
  box-shadow: 0 4px 20px rgba(0, 135, 94, 0.1);
  transform: translateY(-2px);
}
.bpth-blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  height: auto;
  display: block;
}
.bpth-blog-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.bpth-blog-card__category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bpth-accent-aa-light);
}
.bpth-blog-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bpth-fg-light-1);
  line-height: 1.4;
  flex: 1;
}
.bpth-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--bpth-fg-light-muted);
  margin-top: 4px;
}
.bpth-blog-card__read-time::before { content: '·'; margin-right: 10px; }

/* ═══ BLOG ARTICLE ═══ */
.bpth-blog-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}
.bpth-blog-article__cover {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--bpth-radius);
  margin-bottom: 40px;
}
.bpth-blog-article__header { margin-bottom: 40px; }
.bpth-blog-article__category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bpth-accent-aa-light);
  margin-bottom: 14px;
}
.bpth-blog-article__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--bpth-fg-light-1);
  line-height: 1.2;
  margin-bottom: 16px;
}
.bpth-blog-article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.875rem;
  color: var(--bpth-fg-light-muted);
  flex-wrap: wrap;
}
.bpth-blog-article__author { font-weight: 600; color: var(--bpth-fg-light-2); }
.bpth-blog-article__body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--bpth-fg-light-2);
}
body.bpth-page--light-top .bpth-blog-article__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--bpth-fg-light-1);
  margin: 36px 0 16px;
  letter-spacing: -0.02em;
}
body.bpth-page--light-top .bpth-blog-article__body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bpth-fg-light-1);
  margin: 28px 0 12px;
}
body.bpth-page--light-top .bpth-blog-article__body p { margin-bottom: 20px; }
body.bpth-page--light-top .bpth-blog-article__body ul,
body.bpth-page--light-top .bpth-blog-article__body ol {
  padding-left: 24px;
  margin-bottom: 20px;
  list-style: disc;
}
body.bpth-page--light-top .bpth-blog-article__body a { color: var(--bpth-accent-aa-light); }
body.bpth-page--light-top .bpth-blog-article__body code {
  font-family: var(--bpth-font-mono);
  font-size: 0.875em;
  background: var(--bpth-bg-light-alt);
  padding: 2px 5px;
  border-radius: 3px;
  color: var(--bpth-fg-light-1);
}

.bpth-related { margin-top: 64px; border-top: 1px solid var(--bpth-border-light); padding-top: 48px; }
.bpth-related__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bpth-fg-light-1);
  margin-bottom: 24px;
}

/* ═══ DOCS ═══ */
.bpth-docs-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  min-height: calc(100vh - var(--bpth-nav-h));
}
.bpth-docs-sidebar {
  background: var(--bpth-bg-light-alt);
  border-right: 1px solid var(--bpth-border-light);
  padding: 32px 20px;
  position: sticky;
  top: var(--bpth-nav-h);
  max-height: calc(100vh - var(--bpth-nav-h));
  overflow-y: auto;
}
.bpth-docs-sidebar__section { margin-bottom: 28px; }
.bpth-docs-sidebar__heading {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bpth-fg-light-muted);
  padding: 0 12px;
  margin-bottom: 8px;
}
.bpth-docs-sidebar__link {
  display: block;
  padding: 7px 12px;
  border-radius: var(--bpth-radius-sm);
  font-size: 0.875rem;
  color: var(--bpth-fg-light-2);
  text-decoration: none;
  transition: background var(--bpth-trans), color var(--bpth-trans);
}
.bpth-docs-sidebar__link:hover { background: var(--bpth-border-light); color: var(--bpth-fg-light-1); }
.bpth-docs-sidebar__link.is-active {
  background: var(--bpth-bg-white);
  color: var(--bpth-accent-aa-light);
  font-weight: 600;
  box-shadow: 0 0 0 1px var(--bpth-border-light);
}
.bpth-docs-content {
  padding: 40px 48px;
  max-width: 780px;
}
body.bpth-page--light-top .bpth-docs-content h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--bpth-fg-light-1);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
body.bpth-page--light-top .bpth-docs-content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--bpth-fg-light-1);
  margin: 32px 0 14px;
  letter-spacing: -0.02em;
}
body.bpth-page--light-top .bpth-docs-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--bpth-fg-light-1);
  margin: 24px 0 10px;
}
body.bpth-page--light-top .bpth-docs-content p { color: var(--bpth-fg-light-2); margin-bottom: 16px; line-height: 1.75; }
body.bpth-page--light-top .bpth-docs-content ul { padding-left: 24px; list-style: disc; margin-bottom: 16px; }
body.bpth-page--light-top .bpth-docs-content ul li { color: var(--bpth-fg-light-2); margin-bottom: 6px; }
body.bpth-page--light-top .bpth-docs-content a { color: var(--bpth-accent-aa-light); }
body.bpth-page--light-top .bpth-docs-content code {
  font-family: var(--bpth-font-mono);
  font-size: 0.875em;
  background: var(--bpth-bg-light-alt);
  padding: 2px 5px;
  border-radius: 3px;
  color: var(--bpth-fg-light-1);
}
body.bpth-page--light-top .bpth-docs-content pre {
  background: var(--bpth-bg-dark);
  border-radius: var(--bpth-radius-sm);
  padding: 16px 20px;
  overflow-x: auto;
  margin-bottom: 20px;
  border: 1px solid var(--bpth-border-dark);
}
body.bpth-page--light-top .bpth-docs-content pre code {
  background: none;
  padding: 0;
  color: var(--bpth-fg-dark-1);
  font-size: 0.875rem;
  line-height: 1.5;
}

.bpth-docs-shortcut-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.bpth-docs-shortcut {
  padding: 20px;
  border-radius: var(--bpth-radius-sm);
  border: 1px solid var(--bpth-border-light);
  background: var(--bpth-bg-white);
  text-decoration: none;
  transition: border-color var(--bpth-trans), transform var(--bpth-trans);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bpth-docs-shortcut:hover { border-color: var(--bpth-accent-aa-light); transform: translateY(-1px); }
.bpth-docs-shortcut__icon { color: var(--bpth-accent-aa-light); font-size: 1.125rem; }
.bpth-docs-shortcut__title { font-size: 0.9375rem; font-weight: 700; color: var(--bpth-fg-light-1); }
.bpth-docs-shortcut__desc { font-size: 0.8375rem; color: var(--bpth-fg-light-muted); line-height: 1.5; }

/* ═══ AUTH PAGES ═══ */
.bpth-auth-page {
  min-height: 100vh;
  background: var(--bpth-bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px clamp(20px, 5vw, 40px);
}
.bpth-auth-page__logo {
  margin-bottom: 40px;
}
.bpth-auth-page__logo img {
  height: 28px;
  width: auto;
}
.bpth-auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--bpth-bg-dark-card);
  border: 1px solid var(--bpth-border-dark);
  border-radius: var(--bpth-radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bpth-auth-card__title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--bpth-fg-dark-1);
  letter-spacing: -0.025em;
}
.bpth-auth-card__sub { font-size: 0.875rem; color: var(--bpth-fg-dark-2); }
.bpth-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--bpth-fg-dark-3);
}
.bpth-auth-divider::before,
.bpth-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--bpth-border-dark);
}
.bpth-auth-oauth {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bpth-auth-oauth__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--bpth-radius-sm);
  border: 1px solid var(--bpth-border-dark);
  background: var(--bpth-bg-dark-alt);
  color: var(--bpth-fg-dark-1);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--bpth-trans), border-color var(--bpth-trans);
}
.bpth-auth-oauth__btn:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--bpth-fg-dark-3);
}
.bpth-auth-form { display: flex; flex-direction: column; gap: 14px; }
.bpth-auth-form__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bpth-fg-dark-2);
  display: block;
  margin-bottom: 5px;
}
.bpth-auth-form__input {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--bpth-radius-sm);
  border: 1px solid var(--bpth-border-dark);
  background: var(--bpth-bg-dark-alt);
  color: var(--bpth-fg-dark-1);
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color var(--bpth-trans), box-shadow var(--bpth-trans);
}
.bpth-auth-form__input:focus {
  outline: none;
  border-color: var(--bpth-accent);
  box-shadow: 0 0 0 3px rgba(0, 200, 160, 0.15);
}
.bpth-auth-form__input::placeholder { color: var(--bpth-fg-dark-3); }
.bpth-auth-form__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
}
.bpth-auth-form__link { color: var(--bpth-accent); text-decoration: none; font-weight: 500; }
.bpth-auth-form__link:hover { color: #00ddb0; }
.bpth-auth-card__footer-text {
  font-size: 0.8125rem;
  color: var(--bpth-fg-dark-3);
  text-align: center;
}
.bpth-auth-card__footer-text a { color: var(--bpth-accent); text-decoration: none; }
.bpth-auth-demo-note {
  background: rgba(251, 176, 31, 0.1);
  border: 1px solid rgba(251, 176, 31, 0.3);
  border-radius: var(--bpth-radius-sm);
  padding: 12px 14px;
  font-size: 0.8125rem;
  color: var(--bpth-warning);
  text-align: center;
  display: none;
}
.bpth-auth-demo-note.is-visible { display: block; }

/* ═══ LEGAL PAGES ═══ */
.bpth-legal-page {
  min-height: 100vh;
}
.bpth-legal-main {
  max-width: 780px;
  margin: 0 auto;
  padding: calc(var(--bpth-nav-h) + 48px) clamp(20px, 5vw, 48px) 80px;
}
.legal-article {}
.legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--bpth-border-light);
}
.legal-header h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--bpth-fg-light-1);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.legal-meta {
  font-size: 0.875rem;
  color: var(--bpth-fg-light-muted);
}
.legal-article section { margin-bottom: 40px; }
.legal-article h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bpth-fg-light-1);
  margin-bottom: 14px;
  padding-top: 8px;
}
.legal-article h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bpth-fg-light-1);
  margin: 20px 0 10px;
}
.legal-article p {
  font-size: 0.9375rem;
  color: var(--bpth-fg-light-2);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-article ul {
  padding-left: 24px;
  list-style: disc;
  margin-bottom: 14px;
}
.legal-article ul li {
  font-size: 0.9375rem;
  color: var(--bpth-fg-light-2);
  line-height: 1.65;
  margin-bottom: 6px;
}
.legal-article a { color: var(--bpth-accent-aa-light); }
.legal-article address {
  font-style: normal;
  padding: 16px 20px;
  background: var(--bpth-bg-light-alt);
  border-radius: var(--bpth-radius-sm);
  font-size: 0.9rem;
  color: var(--bpth-fg-light-2);
  line-height: 1.75;
  border-left: 3px solid var(--bpth-accent-aa-light);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 16px;
}
.legal-table th {
  text-align: left;
  padding: 10px 14px;
  background: var(--bpth-bg-light-alt);
  color: var(--bpth-fg-light-1);
  font-weight: 700;
  border: 1px solid var(--bpth-border-light);
}
.legal-table td {
  padding: 10px 14px;
  color: var(--bpth-fg-light-2);
  border: 1px solid var(--bpth-border-light);
  vertical-align: top;
}

/* ═══ COOKIE BANNER ═══ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bpth-bg-dark-alt);
  border-top: 1px solid var(--bpth-border-dark);
  padding: 14px 0;
}
.cookie-banner__inner {
  max-width: var(--bpth-container);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: 0.875rem;
  color: var(--bpth-fg-dark-2);
  flex: 1;
}
.cookie-banner__text a { color: var(--bpth-accent); text-decoration: none; }
.cookie-banner__text a:hover { text-decoration: underline; }
.cookie-banner__btn--primary {
  padding: 8px 18px;
  border-radius: var(--bpth-radius-sm);
  background: var(--bpth-accent);
  color: #0F1117;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: background var(--bpth-trans);
}
.cookie-banner__btn--primary:hover { background: #00ddb0; }

/* ═══ FADE-IN ANIMATIONS ═══ */
.bpth-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.bpth-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Failsafe: after 1.2s reveal everything */
@keyframes bpth-failsafe-reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .bpth-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .bpth-hero__visual { justify-content: flex-start; }
  .bpth-feature-grid { grid-template-columns: 1fr 1fr; }
  .bpth-integration-grid { grid-template-columns: repeat(2, 1fr); }
  .bpth-pricing-grid { grid-template-columns: 1fr 1fr; }
  .bpth-testimonials { grid-template-columns: 1fr; }
  .bpth-feature-row { grid-template-columns: 1fr; gap: 32px; }
  .bpth-feature-row--reversed .bpth-feature-row__visual { order: 0; }
  .bpth-footer__grid { grid-template-columns: 1fr 1fr; }
  .bpth-contact-layout { grid-template-columns: 1fr; }
  .bpth-subhero__split { grid-template-columns: 1fr; }
  .bpth-changelog-entry { grid-template-columns: 140px 1fr; gap: 0 24px; }
}

@media (max-width: 768px) {
  .bpth-nav__links,
  .bpth-nav__actions .bpth-btn,
  .bpth-nav__signin { display: none; }
  .bpth-nav__hamburger { display: flex; }
  .bpth-feature-grid { grid-template-columns: 1fr; }
  .bpth-steps { grid-template-columns: 1fr; }
  .bpth-team-grid { grid-template-columns: 1fr 1fr; }
  .bpth-values-grid { grid-template-columns: 1fr; }
  .bpth-security-grid { grid-template-columns: 1fr; }
  .bpth-blog-grid { grid-template-columns: 1fr; }
  .bpth-faq-grid { grid-template-columns: 1fr; }
  .bpth-customer-grid { grid-template-columns: 1fr; }
  .bpth-pricing-grid { grid-template-columns: 1fr; }
  .bpth-docs-layout { grid-template-columns: 1fr; }
  .bpth-docs-sidebar { position: static; max-height: none; border-right: none; border-bottom: 1px solid var(--bpth-border-light); }
  .bpth-docs-content { padding: 24px 20px; }
  .bpth-metrics-bar__inner { grid-template-columns: 1fr; }
  .bpth-perks-grid { grid-template-columns: 1fr 1fr; }
  .bpth-footer__grid { grid-template-columns: 1fr 1fr; }
  .bpth-changelog-entry { grid-template-columns: 1fr; gap: 12px; }
  .bpth-changelog-entry__title,
  .bpth-changelog-entry__body { grid-column: 1; }
  .bpth-changelog-entry__meta { border-right: none; padding-right: 0; border-bottom: 1px solid var(--bpth-border-dark); padding-bottom: 12px; }
}

@media (max-width: 480px) {
  .bpth-team-grid { grid-template-columns: 1fr; }
  .bpth-perks-grid { grid-template-columns: 1fr; }
  .bpth-footer__grid { grid-template-columns: 1fr; }
  .bpth-docs-shortcut-cards { grid-template-columns: 1fr; }
  .bpth-hero__actions { flex-direction: column; align-items: flex-start; }
}

/* ═══ MISSING TOKENS + SUPPLEMENTAL CLASSES ═══ */

/* Token: fg-light-3 (tertiary muted text on light bg) */
:root {
  --bpth-fg-light-3: #9CA3AF;
}

/* ═══ AUTH PAGE — supplemental ═══ */
.bpth-auth-page__header {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: 8px;
}
.bpth-auth-page__main {
  display: flex;
  justify-content: center;
  width: 100%;
  flex: 1;
  align-items: center;
}
.bpth-auth-page__footer {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding-top: 24px;
}
.bpth-auth-page__footer-link {
  font-size: 0.8125rem;
  color: var(--bpth-fg-dark-3);
  text-decoration: none;
  transition: color var(--bpth-trans);
}
.bpth-auth-page__footer-link:hover { color: var(--bpth-fg-dark-2); }

.bpth-auth-card__oauth { display: flex; flex-direction: column; gap: 10px; }
.bpth-auth-oauth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--bpth-radius-sm);
  border: 1px solid var(--bpth-border-dark);
  background: var(--bpth-bg-dark-alt);
  color: var(--bpth-fg-dark-1);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--bpth-trans), border-color var(--bpth-trans);
}
.bpth-auth-oauth-btn:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--bpth-fg-dark-3);
}
.bpth-auth-card__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--bpth-fg-dark-3);
}
.bpth-auth-card__divider::before,
.bpth-auth-card__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--bpth-border-dark);
}
.bpth-auth-form__field { display: flex; flex-direction: column; gap: 5px; }
.bpth-auth-form__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bpth-auth-form__forgot {
  font-size: 0.8125rem;
  color: var(--bpth-accent);
  text-decoration: none;
}
.bpth-auth-form__forgot:hover { color: #00ddb0; }
.bpth-auth-form__submit {
  width: 100%;
  justify-content: center;
  padding: 11px 20px;
  font-size: 0.9375rem;
}
.bpth-auth-card__switch {
  font-size: 0.875rem;
  color: var(--bpth-fg-dark-3);
  text-align: center;
}
.bpth-auth-card__switch a { color: var(--bpth-accent); text-decoration: none; }
.bpth-auth-card__terms {
  font-size: 0.8125rem;
  color: var(--bpth-fg-dark-3);
  text-align: center;
  line-height: 1.65;
}
.bpth-auth-card__terms a { color: var(--bpth-accent); text-decoration: none; }

/* ═══ DOCS — supplemental classes used in docs/ HTML ═══ */
.bpth-docs-sidebar__group { margin-bottom: 24px; }
.bpth-docs-sidebar__group-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bpth-fg-light-muted);
  padding: 0 12px;
  margin-bottom: 6px;
}
.bpth-docs-sidebar__link--active {
  background: var(--bpth-bg-white);
  color: var(--bpth-accent-aa-light);
  font-weight: 600;
  box-shadow: 0 0 0 1px var(--bpth-border-light);
}

/* docs-article: article content wrapper */
.bpth-docs-article { max-width: 680px; }
.bpth-docs-article__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--bpth-fg-light-1);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.bpth-docs-article__lead {
  font-size: 1.0625rem;
  color: var(--bpth-fg-light-2);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* docs-card: shortcut cards on docs index */
.bpth-docs-card {
  padding: 20px;
  border-radius: var(--bpth-radius-sm);
  border: 1px solid var(--bpth-border-light);
  background: var(--bpth-bg-white);
  text-decoration: none;
  transition: border-color var(--bpth-trans), transform var(--bpth-trans);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bpth-docs-card:hover { border-color: var(--bpth-accent-aa-light); transform: translateY(-1px); }
.bpth-docs-card__icon { color: var(--bpth-accent-aa-light); font-size: 1.125rem; }
.bpth-docs-card__title { font-size: 0.9375rem; font-weight: 700; color: var(--bpth-fg-light-1); }
.bpth-docs-card__body { font-size: 0.875rem; color: var(--bpth-fg-light-muted); line-height: 1.55; }

/* API endpoint styling (inline method badge, path) */
.bpth-api-endpoint {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--bpth-radius-sm);
  border: 1px solid var(--bpth-border-light);
  background: var(--bpth-bg-light-alt);
  margin: 24px 0 12px;
  font-family: var(--bpth-font-mono);
}
.bpth-api-endpoint__method {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.bpth-api-endpoint__method--get {
  background: rgba(0, 135, 94, 0.15);
  color: var(--bpth-accent-aa-light);
}
.bpth-api-endpoint__method--post {
  background: rgba(59, 130, 246, 0.15);
  color: #2563EB;
}
.bpth-api-endpoint__method--delete {
  background: rgba(248, 113, 113, 0.15);
  color: var(--bpth-danger);
}
.bpth-api-endpoint code { font-size: 0.9rem; color: var(--bpth-fg-light-1); }

/* ═══ BLOG ARTICLE ARTICLE/COVER supplemental (article page) ═══ */
.bpth-article { display: flex; flex-direction: column; }
.bpth-article__header { background: var(--bpth-bg-light); }
.bpth-article__title {
  font-size: clamp(1.625rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--bpth-fg-light-1);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-top: 8px;
  margin-bottom: 20px;
}
.bpth-article__byline { display: flex; align-items: center; gap: 10px; }
.bpth-article__cover-figure {
  margin: 0;
  line-height: 0;
}
.bpth-article__cover {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
}
.bpth-article__body {
  font-size: 1.0625rem;
  color: var(--bpth-fg-light-2);
  line-height: 1.8;
}
.bpth-section--light {
  background: var(--bpth-bg-light);
}

/* blog-card__tag: inline category tag */
.bpth-blog-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(0, 135, 94, 0.1);
  color: var(--bpth-accent-aa-light);
}

/* subhero breadcrumb */
.bpth-subhero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}

/* bpth-nav--solid: explicit class for always-solid nav variant */
.bpth-nav--solid {
  background: var(--bpth-bg-dark) !important;
  border-bottom-color: var(--bpth-border-dark) !important;
}

/* ═══ Terminal token colors (diff / output spans) ═══ */
.bpth-tt-insert { color: #34D399; }   /* green — added/success lines */
.bpth-tt-delete { color: var(--bpth-danger); }  /* red — removed/error lines */
.bpth-tt-equal  { color: var(--bpth-fg-dark-2); } /* grey unchanged context */

/* ═══ Legal page table ═══ */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 24px;
  font-size: 0.9375rem;
}
.legal-table th {
  text-align: left;
  padding: 10px 14px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bpth-fg-light-muted);
  border-bottom: 2px solid var(--bpth-border-light);
}
.legal-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--bpth-border-light);
  vertical-align: top;
  color: var(--bpth-fg-light-2);
  line-height: 1.6;
}
.legal-table tr:last-child td { border-bottom: none; }

/* ═══ Legal page header / meta ═══ */
.legal-header { margin-bottom: 40px; padding-bottom: 24px; border-bottom: 2px solid var(--bpth-border-light); }
.legal-header h1 { font-size: clamp(1.625rem, 3.5vw, 2.25rem); font-weight: 800; color: var(--bpth-fg-light-1); margin-bottom: 8px; }
.legal-meta { font-size: 0.875rem; color: var(--bpth-fg-light-muted); margin: 4px 0; }

/* ═══ Cookie banner class styles (banner-notice.js emits these) ═══ */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--bpth-bg-dark-card); border-top: 1px solid var(--bpth-border-dark); padding: 14px 24px; }
.cookie-banner--notice { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cookie-banner__text { font-size: 0.875rem; color: var(--bpth-fg-dark-2); line-height: 1.5; flex: 1; min-width: 200px; }
.cookie-banner__text a { color: var(--bpth-accent); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-banner__btn { padding: 8px 18px; border-radius: var(--bpth-radius-sm); border: none; cursor: pointer; font-size: 0.875rem; font-weight: 600; font-family: inherit; transition: background var(--bpth-trans), color var(--bpth-trans); }
.cookie-banner__btn--primary { background: var(--bpth-accent); color: var(--bpth-bg-dark); }
.cookie-banner__btn--primary:hover { background: #00b08d; }

/* ═══ Light-top variant typography helpers ═══ */
.bpth-eyebrow--light { color: var(--bpth-accent-aa-light); }
.bpth-subhero__headline--light { color: var(--bpth-fg-light-1); }
.bpth-subhero__sub--light { color: var(--bpth-fg-light-2); }
.bpth-section__heading--light { color: var(--bpth-fg-light-1); }
.bpth-btn--full { width: 100%; text-align: center; justify-content: center; }
.bpth-btn--outline-light {
  background: transparent;
  border: 1.5px solid var(--bpth-border-light);
  color: var(--bpth-fg-light-1);
  padding: 9px 20px;
  border-radius: var(--bpth-radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color var(--bpth-trans), background var(--bpth-trans);
}
.bpth-btn--outline-light:hover { border-color: var(--bpth-accent-aa-light); background: rgba(0, 135, 94, 0.06); }

/* ═══ Pricing cards ═══ */
.bpth-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 800px) { .bpth-pricing-grid { grid-template-columns: 1fr; } }
.bpth-pricing-card {
  background: var(--bpth-bg-white);
  border: 1.5px solid var(--bpth-border-light);
  border-radius: var(--bpth-radius);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.bpth-pricing-card--featured {
  border-color: var(--bpth-accent-aa-light);
  box-shadow: 0 0 0 3px rgba(0, 135, 94, 0.12);
}
.bpth-pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bpth-accent-aa-light);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.bpth-pricing-card__header { margin-bottom: 20px; }
.bpth-pricing-card__tier { font-size: 0.875rem; font-weight: 700; color: var(--bpth-fg-light-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.bpth-pricing-card__price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 8px; }
.bpth-pricing-card__amount { font-size: 2.25rem; font-weight: 800; color: var(--bpth-fg-light-1); letter-spacing: -0.03em; }
.bpth-pricing-card__period { font-size: 0.875rem; color: var(--bpth-fg-light-muted); }
.bpth-pricing-card__desc { font-size: 0.875rem; color: var(--bpth-fg-light-2); line-height: 1.55; }
.bpth-pricing-card__features {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.bpth-pricing-card__features li { font-size: 0.875rem; color: var(--bpth-fg-light-2); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.bpth-pricing-card__features li::before { content: "✓"; color: var(--bpth-accent-aa-light); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ═══ Customer cards ═══ */
.bpth-customers-grid { display: flex; flex-direction: column; gap: 24px; max-width: 760px; margin: 0 auto; }
.bpth-customer-card {
  background: var(--bpth-bg-white);
  border: 1px solid var(--bpth-border-light);
  border-radius: var(--bpth-radius);
  padding: 28px;
}
.bpth-customer-card__quote {
  font-size: 1.0625rem;
  color: var(--bpth-fg-light-2);
  line-height: 1.7;
  margin: 0 0 20px;
  font-style: italic;
}
.bpth-customer-card__quote cite { display: block; font-size: 0.8125rem; color: var(--bpth-fg-light-muted); margin-top: 6px; font-style: normal; }
.bpth-customer-card__author { display: flex; align-items: center; gap: 14px; }
.bpth-customer-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.bpth-customer-card__avatar--letter {
  background: var(--bpth-bg-dark-card);
  color: var(--bpth-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  border: 1.5px solid var(--bpth-border-dark);
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  font-family: var(--bpth-font-mono);
}
.bpth-customer-card__name { font-size: 0.9375rem; font-weight: 700; color: var(--bpth-fg-light-1); }
.bpth-customer-card__role { font-size: 0.875rem; color: var(--bpth-fg-light-muted); }
.bpth-customer-card__company { font-size: 0.8125rem; color: var(--bpth-fg-light-muted); margin-top: 2px; }

/* ═══ Integration cards ═══ */
.bpth-integration-card {
  background: var(--bpth-bg-dark-card);
  border: 1px solid var(--bpth-border-dark);
  border-radius: var(--bpth-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bpth-integration-card__header { display: flex; align-items: center; justify-content: space-between; }
.bpth-integration-card__icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); font-size: 1.25rem; }
.bpth-integration-card__badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
}
.bpth-integration-card__badge--native { background: rgba(0, 200, 160, 0.15); color: var(--bpth-accent); }
.bpth-integration-card__badge--coming { background: rgba(251, 176, 31, 0.15); color: var(--bpth-warning); }
.bpth-integration-card__body { font-size: 0.875rem; color: var(--bpth-fg-dark-2); line-height: 1.55; }

/* ═══ Changelog tags ═══ */
.bpth-changelog-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.bpth-changelog-tag--feature { background: rgba(0, 200, 160, 0.15); color: var(--bpth-accent); }
.bpth-changelog-tag--fix { background: rgba(248, 113, 113, 0.15); color: var(--bpth-danger); }
.bpth-changelog-tag--improvement { background: rgba(251, 176, 31, 0.15); color: var(--bpth-warning); }
.bpth-changelog-entry__title { font-size: 1.125rem; font-weight: 700; color: var(--bpth-fg-dark-1); margin: 0 0 10px; grid-column: 2; }
.bpth-changelog-entry__body { font-size: 0.9375rem; color: var(--bpth-fg-dark-2); line-height: 1.65; grid-column: 2; margin: 0; }

/* ═══ Security page items ═══ */
.bpth-security-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 640px) { .bpth-security-grid { grid-template-columns: 1fr; } }
.bpth-security-item {
  background: var(--bpth-bg-dark-card);
  border: 1px solid var(--bpth-border-dark);
  border-radius: var(--bpth-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bpth-security-item__icon { color: var(--bpth-accent); font-size: 1.5rem; }
.bpth-security-item__title { font-size: 1rem; font-weight: 700; color: var(--bpth-fg-dark-1); }
.bpth-security-item__body { font-size: 0.875rem; color: var(--bpth-fg-dark-2); line-height: 1.6; }

/* ═══ Status page rows + uptime bars ═══ */
.bpth-status-grid { display: flex; flex-direction: column; gap: 16px; max-width: 640px; }
.bpth-status-row {
  background: var(--bpth-bg-white);
  border: 1px solid var(--bpth-border-light);
  border-radius: var(--bpth-radius-sm);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bpth-status-row__top { display: flex; align-items: center; justify-content: space-between; }
.bpth-status-row__label { font-size: 0.9375rem; font-weight: 600; color: var(--bpth-fg-light-1); }
.bpth-status-row__badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(52, 211, 153, 0.12);
  color: #059669;
}
.bpth-uptime-bars { display: flex; gap: 2px; height: 24px; align-items: flex-end; }
.bpth-uptime-bar {
  flex: 1;
  border-radius: 2px;
  min-width: 3px;
}
.bpth-uptime-bar--up { background: #34D399; height: 100%; }
.bpth-uptime-bar--degraded { background: var(--bpth-warning); height: 70%; }
.bpth-status-row__uptime { font-size: 0.8125rem; color: var(--bpth-fg-light-muted); }
.bpth-uptime-pct { font-size: 0.75rem; color: var(--bpth-fg-light-muted); }

/* ═══ Team cards (about page) ═══ */
.bpth-team-card {
  background: var(--bpth-bg-dark-card);
  border: 1px solid var(--bpth-border-dark);
  border-radius: var(--bpth-radius);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.bpth-team-card__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--bpth-border-dark);
}
.bpth-team-card__info {}
.bpth-team-card__name { font-size: 1rem; font-weight: 700; color: var(--bpth-fg-dark-1); }
.bpth-team-card__role { font-size: 0.875rem; color: var(--bpth-accent); margin-bottom: 8px; }
.bpth-team-card__bio { font-size: 0.875rem; color: var(--bpth-fg-dark-2); line-height: 1.6; }

/* ═══ Job cards (careers page) ═══ */
.bpth-job-card {
  background: var(--bpth-bg-white);
  border: 1px solid var(--bpth-border-light);
  border-radius: var(--bpth-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bpth-job-card__header { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.bpth-job-card__title { font-size: 1.125rem; font-weight: 700; color: var(--bpth-fg-light-1); }
.bpth-job-card__meta { display: flex; flex-wrap: wrap; gap: 6px; }
.bpth-job-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(0, 135, 94, 0.1);
  color: var(--bpth-accent-aa-light);
}
.bpth-job-card__body { font-size: 0.9375rem; color: var(--bpth-fg-light-2); line-height: 1.65; }

/* ═══ Contact form ═══ */
.bpth-contact-form { display: flex; flex-direction: column; gap: 16px; }
.bpth-contact-form__field { display: flex; flex-direction: column; gap: 6px; }
.bpth-contact-form__label { font-size: 0.875rem; font-weight: 600; color: var(--bpth-fg-light-1); }
.bpth-contact-form__input,
.bpth-contact-form__select,
.bpth-contact-form__textarea {
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--bpth-fg-light-1);
  background: var(--bpth-bg-white);
  border: 1.5px solid var(--bpth-border-light);
  border-radius: var(--bpth-radius-sm);
  padding: 10px 14px;
  transition: border-color var(--bpth-trans);
  outline: none;
  max-width: 100%;
}
.bpth-contact-form__input:focus,
.bpth-contact-form__select:focus,
.bpth-contact-form__textarea:focus { border-color: var(--bpth-accent-aa-light); box-shadow: 0 0 0 3px rgba(0, 135, 94, 0.1); }
.bpth-contact-form__textarea { resize: vertical; min-height: 120px; }
.bpth-contact-section { padding: var(--bpth-section-padding) 0; }

/* ═══ Hero content container (bpth-hero__content) ═══ */
.bpth-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ═══ Pricing enterprise row + FAQ light variant ═══ */
.bpth-pricing-enterprise {
  background: var(--bpth-bg-white);
  border: 1.5px solid var(--bpth-border-light);
  border-radius: var(--bpth-radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.bpth-pricing-enterprise__content { flex: 1; min-width: 280px; }
.bpth-pricing-enterprise__title { font-size: 1.125rem; font-weight: 700; color: var(--bpth-fg-light-1); margin-bottom: 8px; }
.bpth-pricing-enterprise__body { font-size: 0.9375rem; color: var(--bpth-fg-light-2); line-height: 1.65; max-width: 560px; }

/* FAQ light variant (pricing page — light bg) */
.bpth-faq-list { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.bpth-faq-item__question--light {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--bpth-border-light);
  width: 100%;
  text-align: left;
  padding: 16px 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bpth-fg-light-1);
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.bpth-faq-item__question--light::after { content: "+"; font-size: 1.25rem; color: var(--bpth-accent-aa-light); flex-shrink: 0; }
.bpth-faq-item__question--light[aria-expanded="true"]::after { content: "−"; }
.bpth-faq-item__answer--light {
  display: none;
  padding: 12px 0 16px;
  font-size: 0.9375rem;
  color: var(--bpth-fg-light-2);
  line-height: 1.7;
}
.bpth-faq-item__answer--light.is-open { display: block; }

/* ═══ Blog card parts ═══ */
.bpth-blog-card__img-link { display: block; text-decoration: none; overflow: hidden; border-radius: var(--bpth-radius-sm) var(--bpth-radius-sm) 0 0; }
.bpth-blog-card__date { font-size: 0.8125rem; color: var(--bpth-fg-light-muted); }
.bpth-blog-card__excerpt { font-size: 0.9375rem; color: var(--bpth-fg-light-2); line-height: 1.65; }
