@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,700;0,9..144,900&family=Plus+Jakarta+Sans:wght@400;600;700&display=swap');

:root {
  --navy-900: #0B1E3D;
  --navy-700: #163359;
  --parchment-50: #F6F3EE;
  --parchment-100: #EDE8DF;
  --white-pure: #FFFFFF;
  --teal-cta: #1C8269;
  --teal-hover: #17705C;
  --text-dark-primary: #F0ECE3;
  --text-dark-muted: #8DAABB;
  --text-dark-accent: #4ECDB4;
  --text-light-primary: #0B1E3D;
  --text-light-muted: #3D5068;
  --text-light-accent: #166B59;
  --border-dark: #1E3A5F;
  --border-light: #D4CEC5;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;
  --space-9: 192px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --container-max: 1200px;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-light-primary);
  background: var(--parchment-50);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

button { cursor: pointer; border: none; background: none; font: inherit; }

input, textarea, select {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.1;
}

.bpr-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(var(--space-3), 4vw, var(--space-6));
}

.bpr-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.bpr-fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 200ms ease-out, transform 200ms ease-out;
}

.bpr-fade-in.bpr-visible {
  opacity: 1;
  transform: none;
}

.bpr-label-caps {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bpr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: 11px 22px;
  border-radius: var(--radius-md);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
  white-space: nowrap;
  text-decoration: none;
}

.bpr-btn--primary {
  background: var(--teal-hover);
  color: #fff;
  border: 1.5px solid var(--teal-hover);
}

.bpr-btn--primary:hover {
  background: #115e4a;
  border-color: #115e4a;
  color: #fff;
}

.bpr-btn--outline-dark {
  background: transparent;
  color: var(--text-light-primary);
  border: 1.5px solid var(--border-light);
}

.bpr-btn--outline-dark:hover {
  border-color: var(--text-light-primary);
  color: var(--text-light-primary);
}

.bpr-btn--ghost-on-dark {
  background: transparent;
  color: var(--text-dark-primary);
  border: 1px solid rgba(240, 236, 227, 0.5);
}

.bpr-btn--ghost-on-dark:hover {
  border-color: var(--text-dark-primary);
  background: rgba(240, 236, 227, 0.08);
  color: var(--text-dark-primary);
}

.bpr-btn--lg {
  padding: 14px 28px;
  font-size: 15px;
}

.bpr-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 200ms ease, box-shadow 200ms ease;
}

.bpr-page--dark-top .bpr-nav {
  background: transparent;
}

.bpr-page--light-top .bpr-nav {
  background: var(--parchment-50);
  box-shadow: 0 1px 0 var(--border-light);
}

.bpr-page--dark-top .bpr-nav.bpr-nav--scrolled {
  background: var(--navy-900);
  box-shadow: 0 1px 0 var(--border-dark);
}

.bpr-page--light-top .bpr-nav.bpr-nav--scrolled {
  background: var(--parchment-50);
  box-shadow: 0 1px 0 var(--border-light);
}

.bpr-nav__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(var(--space-3), 4vw, var(--space-6));
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.bpr-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.bpr-nav__logo-img {
  display: block;
}

.bpr-nav__logo-img--light {
  display: block;
}

.bpr-nav__logo-img--dark {
  display: none;
}

.bpr-page--light-top .bpr-nav .bpr-nav__logo-img--light {
  display: none;
}

.bpr-page--light-top .bpr-nav .bpr-nav__logo-img--dark {
  display: block;
}

.bpr-page--dark-top .bpr-nav--scrolled .bpr-nav__logo-img--light {
  display: block !important;
}

.bpr-page--dark-top .bpr-nav--scrolled .bpr-nav__logo-img--dark {
  display: none !important;
}

.bpr-nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: var(--space-4);
  flex: 1;
}

.bpr-nav__link {
  font-size: 14px;
  font-weight: 600;
  transition: color 150ms ease;
  text-decoration: none;
}

.bpr-page--dark-top .bpr-nav .bpr-nav__link {
  color: var(--text-dark-primary);
}

.bpr-page--dark-top .bpr-nav .bpr-nav__link:hover {
  color: var(--text-dark-accent);
}

.bpr-page--light-top .bpr-nav .bpr-nav__link {
  color: var(--text-light-primary);
}

.bpr-page--light-top .bpr-nav .bpr-nav__link:hover {
  color: var(--teal-cta);
}

.bpr-page--dark-top .bpr-nav--scrolled .bpr-nav__link {
  color: var(--text-dark-primary);
}

.bpr-nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-left: auto;
}

.bpr-page--dark-top .bpr-nav .bpr-btn--ghost-on-dark {
  color: var(--text-dark-primary);
  border-color: rgba(30, 58, 95, 0.5);
}

.bpr-page--light-top .bpr-nav .bpr-btn--ghost-on-dark {
  color: var(--text-light-primary);
  border-color: var(--border-light);
}

.bpr-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  margin-left: auto;
}

.bpr-nav__hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  transition: background 200ms ease, transform 200ms ease, opacity 200ms ease;
}

.bpr-page--dark-top .bpr-nav .bpr-nav__hamburger-bar {
  background: var(--text-dark-primary);
}

.bpr-page--light-top .bpr-nav .bpr-nav__hamburger-bar {
  background: var(--text-light-primary);
}

.bpr-page--dark-top .bpr-nav--scrolled .bpr-nav__hamburger-bar {
  background: var(--text-dark-primary);
}

.bpr-nav__hamburger[aria-expanded="true"] .bpr-nav__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.bpr-nav__hamburger[aria-expanded="true"] .bpr-nav__hamburger-bar:nth-child(2) {
  opacity: 0;
}

.bpr-nav__hamburger[aria-expanded="true"] .bpr-nav__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
  .bpr-nav__hamburger {
    display: flex;
  }

  .bpr-nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-3) var(--space-3) var(--space-4);
    gap: var(--space-2);
    background: var(--navy-900);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  }

  .bpr-nav__links.bpr-nav__links--open {
    display: flex;
  }

  .bpr-nav__link {
    color: var(--text-dark-primary) !important;
    font-size: 16px;
    padding: var(--space-1) 0;
    width: 100%;
  }

  .bpr-nav__actions {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: var(--space-1);
    padding-top: var(--space-2);
    border-top: 1px solid var(--border-dark);
    margin-top: var(--space-2);
  }

  .bpr-nav__actions .bpr-btn {
    width: 100%;
    justify-content: center;
  }

  .bpr-nav__links--open + .bpr-nav__actions {
    display: flex;
  }

  .bpr-nav__links--open ~ .bpr-nav__actions {
    display: flex;
  }
}

.bpr-section {
  position: relative;
}

.bpr-section--dark {
  background: var(--navy-900);
}

.bpr-section--dark-alt {
  background: var(--navy-700);
}

.bpr-section--light {
  background: var(--parchment-50);
}

.bpr-section--light-alt {
  background: var(--parchment-100);
}

.bpr-section--white {
  background: var(--white-pure);
}

.bpr-section__eyebrow {
  display: inline-block;
  margin-bottom: var(--space-2);
}

.bpr-section--dark .bpr-section__eyebrow,
.bpr-section--dark-alt .bpr-section__eyebrow {
  color: var(--text-dark-accent);
}

.bpr-section--light .bpr-section__eyebrow,
.bpr-section--light-alt .bpr-section__eyebrow,
.bpr-section--white .bpr-section__eyebrow {
  color: var(--text-light-accent);
}

.bpr-section__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 36px);
  line-height: 1.15;
  margin-bottom: var(--space-3);
}

.bpr-section--dark .bpr-section__headline,
.bpr-section--dark-alt .bpr-section__headline {
  color: var(--text-dark-primary);
}

.bpr-section--light .bpr-section__headline,
.bpr-section--light-alt .bpr-section__headline,
.bpr-section--white .bpr-section__headline {
  color: var(--text-light-primary);
}

.bpr-section__subhead {
  font-size: 18px;
  line-height: 1.7;
  max-width: 640px;
}

.bpr-section--dark .bpr-section__subhead,
.bpr-section--dark-alt .bpr-section__subhead {
  color: var(--text-dark-muted);
}

.bpr-section--light .bpr-section__subhead,
.bpr-section--light-alt .bpr-section__subhead,
.bpr-section--white .bpr-section__subhead {
  color: var(--text-light-muted);
}

.bpr-section--dark .bpr-section__body-text,
.bpr-section--dark-alt .bpr-section__body-text {
  color: var(--text-dark-primary);
}

.bpr-section--light .bpr-section__body-text,
.bpr-section--light-alt .bpr-section__body-text,
.bpr-section--white .bpr-section__body-text {
  color: var(--text-light-primary);
}

.bpr-home-hero {
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + var(--space-7));
  padding-bottom: var(--space-7);
  background: linear-gradient(145deg, var(--navy-900) 60%, var(--navy-700) 100%);
  position: relative;
  overflow: hidden;
}

.bpr-home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 47px, rgba(255,255,255,0.025) 48px),
    repeating-linear-gradient(90deg, transparent, transparent 47px, rgba(255,255,255,0.025) 48px);
  pointer-events: none;
}

.bpr-home-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-6);
  align-items: center;
}

.bpr-home-hero__rule {
  width: 40px;
  height: 3px;
  background: var(--teal-cta);
  margin-bottom: var(--space-3);
  border-radius: 2px;
}

.bpr-home-hero__text {
  display: flex;
  flex-direction: column;
}

.bpr-home-hero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  color: var(--text-dark-primary);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.bpr-home-hero__sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark-muted);
  max-width: 560px;
  margin-bottom: var(--space-5);
}

.bpr-home-hero__ctas {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.bpr-home-hero__image {
  display: none;
}

.bpr-disclosure-form {
  background: var(--parchment-100);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  border: 1px solid rgba(240, 236, 227, 0.15);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  position: relative;
}

.bpr-disclosure-form__header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--border-light);
}

.bpr-disclosure-form__badge {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--teal-hover);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.bpr-disclosure-form__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-light-primary);
  line-height: 1.3;
}

.bpr-disclosure-form__section {
  margin-bottom: var(--space-3);
}

.bpr-disclosure-form__section-label {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light-accent);
  margin-bottom: var(--space-1);
  display: block;
}

.bpr-disclosure-form__field {
  margin-bottom: var(--space-1);
}

.bpr-disclosure-form__field-label {
  font-size: 11px;
  color: var(--text-light-muted);
  display: block;
  margin-bottom: 2px;
}

.bpr-disclosure-form__field-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light-primary);
  background: var(--white-pure);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 5px 8px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bpr-disclosure-form__typing::after {
  content: '|';
  color: var(--teal-cta);
  animation: bpr-blink 1s step-end infinite;
}

@keyframes bpr-blink {
  50% { opacity: 0; }
}

.bpr-disclosure-form__states {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: var(--space-1);
}

.bpr-disclosure-form__state-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--white-pure);
  background: var(--teal-cta);
  border-radius: var(--radius-sm);
  padding: 2px 6px;
}

.bpr-disclosure-form__state-tag--pending {
  background: var(--border-light);
  color: var(--text-light-muted);
}

.bpr-disclosure-form__status {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: var(--space-2);
  border-top: 1px solid var(--border-light);
  margin-top: var(--space-2);
}

.bpr-disclosure-form__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-cta);
  flex-shrink: 0;
  animation: bpr-pulse 2s ease infinite;
}

@keyframes bpr-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.bpr-disclosure-form__status-text {
  font-size: 11px;
  color: var(--text-light-muted);
}

@media (max-width: 860px) {
  .bpr-home-hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .bpr-disclosure-form {
    order: 2;
  }
}

.bpr-home-problem {
  padding-block: var(--space-7);
}

.bpr-home-problem__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.bpr-home-problem__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.bpr-stat-card {
  padding: var(--space-3);
  border-radius: var(--radius-md);
}

.bpr-section--light .bpr-stat-card,
.bpr-section--light-alt .bpr-stat-card {
  background: var(--parchment-100);
  border: 1px solid var(--border-light);
}

.bpr-section--dark .bpr-stat-card,
.bpr-section--dark-alt .bpr-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
}

.bpr-stat-card__number {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 4px;
}

.bpr-section--light .bpr-stat-card__number,
.bpr-section--light-alt .bpr-stat-card__number {
  color: var(--teal-cta);
}

.bpr-section--dark .bpr-stat-card__number,
.bpr-section--dark-alt .bpr-stat-card__number {
  color: var(--text-dark-accent);
}

.bpr-stat-card__label {
  font-size: 13px;
  line-height: 1.4;
}

.bpr-section--light .bpr-stat-card__label,
.bpr-section--light-alt .bpr-stat-card__label {
  color: var(--text-light-muted);
}

.bpr-section--dark .bpr-stat-card__label,
.bpr-section--dark-alt .bpr-stat-card__label {
  color: var(--text-dark-muted);
}

@media (max-width: 860px) {
  .bpr-home-problem__inner {
    grid-template-columns: 1fr;
  }
}

.bpr-home-how {
  padding-block: var(--space-7);
}

.bpr-home-how__intro {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.bpr-process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  position: relative;
}

.bpr-process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(33.33% - 4px);
  width: calc(33.33%);
  height: 2px;
  background: var(--teal-cta);
  pointer-events: none;
}

.bpr-process-steps::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(66.66% - 4px);
  width: calc(33.33%);
  height: 2px;
  background: var(--teal-cta);
  pointer-events: none;
}

.bpr-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-4);
}

.bpr-process-step__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 1;
}

.bpr-section--light-alt .bpr-process-step__icon-wrap {
  background: var(--teal-cta);
}

.bpr-process-step__number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bpr-section--light-alt .bpr-process-step__number {
  background: var(--text-light-primary);
  color: var(--text-dark-primary);
}

.bpr-process-step__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: var(--space-1);
}

.bpr-section--light-alt .bpr-process-step__title {
  color: var(--text-light-primary);
}

.bpr-process-step__desc {
  font-size: 14px;
  line-height: 1.6;
}

.bpr-section--light-alt .bpr-process-step__desc {
  color: var(--text-light-muted);
}

@media (max-width: 720px) {
  .bpr-process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .bpr-process-steps::before,
  .bpr-process-steps::after {
    display: none;
  }
}

.bpr-home-features {
  padding-block: var(--space-7);
}

.bpr-home-features__intro {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.bpr-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.bpr-feature-card {
  padding: var(--space-4);
  border-radius: var(--radius-md);
}

.bpr-section--dark-alt .bpr-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
}

.bpr-section--light .bpr-feature-card,
.bpr-section--light-alt .bpr-feature-card {
  background: var(--white-pure);
  border: 1px solid var(--border-light);
}

.bpr-section--dark .bpr-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
}

.bpr-feature-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-3);
  color: var(--text-dark-accent);
}

.bpr-section--light .bpr-feature-card__icon,
.bpr-section--light-alt .bpr-feature-card__icon {
  color: var(--teal-cta);
}

.bpr-feature-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: var(--space-1);
}

.bpr-section--dark-alt .bpr-feature-card__title,
.bpr-section--dark .bpr-feature-card__title {
  color: var(--text-dark-primary);
}

.bpr-section--light .bpr-feature-card__title,
.bpr-section--light-alt .bpr-feature-card__title {
  color: var(--text-light-primary);
}

.bpr-feature-card__text {
  font-size: 14px;
  line-height: 1.65;
}

.bpr-section--dark-alt .bpr-feature-card__text,
.bpr-section--dark .bpr-feature-card__text {
  color: var(--text-dark-muted);
}

.bpr-section--light .bpr-feature-card__text,
.bpr-section--light-alt .bpr-feature-card__text {
  color: var(--text-light-muted);
}

@media (max-width: 860px) {
  .bpr-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .bpr-features-grid {
    grid-template-columns: 1fr;
  }
}

.bpr-home-proof {
  padding-block: var(--space-7);
}

.bpr-home-proof__intro {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.bpr-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.bpr-testimonial-card {
  padding: var(--space-5);
  border-radius: var(--radius-md);
}

.bpr-section--white .bpr-testimonial-card {
  background: var(--parchment-50);
  border: 1px solid var(--border-light);
}

.bpr-section--light .bpr-testimonial-card {
  background: var(--white-pure);
  border: 1px solid var(--border-light);
}

.bpr-testimonial-card__quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light-primary);
  margin-bottom: var(--space-4);
  font-style: italic;
}

.bpr-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.bpr-testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.bpr-testimonial-card__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-light-primary);
  display: block;
}

.bpr-testimonial-card__role {
  font-size: 13px;
  color: var(--text-light-muted);
  display: block;
}

@media (max-width: 720px) {
  .bpr-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.bpr-home-pricing {
  padding-block: var(--space-7);
}

.bpr-home-pricing__intro {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.bpr-pricing-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.bpr-pricing-card {
  background: var(--white-pure);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
}

.bpr-pricing-card--featured {
  border-color: var(--teal-cta);
  border-width: 2px;
  position: relative;
}

.bpr-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-hover);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.bpr-pricing-card__name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-light-primary);
  margin-bottom: var(--space-1);
}

.bpr-pricing-card__target {
  font-size: 13px;
  color: var(--text-light-muted);
  margin-bottom: var(--space-3);
  line-height: 1.5;
}

.bpr-pricing-card__price-wrap {
  margin-bottom: var(--space-3);
}

.bpr-pricing-card__price {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--text-light-primary);
  line-height: 1;
}

.bpr-pricing-card__price-per {
  font-size: 13px;
  color: var(--text-light-muted);
}

.bpr-pricing-card__price-contact {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text-light-primary);
}

.bpr-pricing-card__features {
  flex: 1;
  margin-bottom: var(--space-4);
}

.bpr-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-1);
  font-size: 13px;
  color: var(--text-light-muted);
  padding-block: 5px;
  border-bottom: 1px solid var(--border-light);
}

.bpr-pricing-card__feature:last-child {
  border-bottom: none;
}

.bpr-pricing-card__feature-check {
  flex-shrink: 0;
  color: var(--teal-cta);
  margin-top: 2px;
}

.bpr-pricing-card__cta {
  display: block;
  width: 100%;
}

@media (max-width: 860px) {
  .bpr-pricing-preview {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .bpr-pricing-card--featured {
    order: -1;
  }
}

.bpr-pricing-view-all {
  text-align: center;
}

.bpr-pricing-view-all__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light-accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.bpr-pricing-view-all__link:hover {
  color: var(--teal-cta);
}

.bpr-home-cta {
  padding-block: var(--space-7);
  text-align: center;
}

.bpr-home-cta__inner {
  max-width: 640px;
  margin-inline: auto;
}

.bpr-home-cta .bpr-section__headline {
  margin-bottom: var(--space-2);
}

.bpr-home-cta .bpr-section__subhead {
  margin-inline: auto;
  margin-bottom: var(--space-5);
}

.bpr-home-cta__actions {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
}

.bpr-subpage-hero {
  padding-top: calc(var(--nav-h) + var(--space-6));
  padding-bottom: var(--space-6);
  background: linear-gradient(145deg, var(--navy-900) 60%, var(--navy-700) 100%);
  position: relative;
  overflow: hidden;
}

.bpr-subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 47px, rgba(255,255,255,0.025) 48px),
    repeating-linear-gradient(90deg, transparent, transparent 47px, rgba(255,255,255,0.025) 48px);
  pointer-events: none;
}

.bpr-subpage-hero__inner {
  position: relative;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(var(--space-3), 4vw, var(--space-6));
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.bpr-subpage-hero__text {
  max-width: 640px;
}

.bpr-subpage-hero__rule {
  width: 32px;
  height: 3px;
  background: var(--teal-cta);
  margin-bottom: var(--space-2);
  border-radius: 2px;
}

.bpr-subpage-hero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: var(--text-dark-primary);
  margin-bottom: var(--space-3);
}

.bpr-subpage-hero__sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark-muted);
}

.bpr-subpage-hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 860px) {
  .bpr-subpage-hero__inner {
    grid-template-columns: 1fr;
  }

  .bpr-subpage-hero__ornament {
    display: none;
  }
}

.bpr-subpage-section {
  padding-block: var(--space-7);
}

.bpr-subpage-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.bpr-subpage-section__inner--center {
  display: block;
  max-width: 720px;
  margin-inline: auto;
}

@media (max-width: 860px) {
  .bpr-subpage-section__inner {
    grid-template-columns: 1fr;
  }
}

.bpr-content-section {
  padding-block: var(--space-7);
}

.bpr-content-section__inner {
  max-width: 800px;
  margin-inline: auto;
}

.bpr-content-section h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  color: var(--text-light-primary);
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
}

.bpr-content-section h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-light-primary);
  margin-top: var(--space-4);
  margin-bottom: var(--space-1);
}

.bpr-content-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-light-primary);
  margin-bottom: var(--space-2);
}

.bpr-content-section ul,
.bpr-content-section ol {
  padding-left: var(--space-3);
  margin-bottom: var(--space-2);
  list-style: disc;
}

.bpr-content-section ol {
  list-style: decimal;
}

.bpr-content-section li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-light-primary);
  margin-bottom: var(--space-1);
}

.bpr-content-section blockquote {
  border-left: 3px solid var(--teal-cta);
  padding-left: var(--space-3);
  margin-block: var(--space-4);
  font-style: italic;
  color: var(--text-light-muted);
}

.bpr-content-section pre {
  background: var(--navy-900);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  overflow-x: auto;
  margin-block: var(--space-3);
  line-height: 1.5;
}

.bpr-content-section code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  color: var(--text-dark-primary);
}

.bpr-content-section pre code {
  background: transparent;
  padding: 0;
  border: none;
}

.bpr-content-section img {
  max-width: 100%;
  border-radius: var(--radius-md);
  margin-block: var(--space-4);
}

.bpr-product-overview {
  padding-block: var(--space-7);
}

.bpr-product-overview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

@media (max-width: 860px) {
  .bpr-product-overview__inner {
    grid-template-columns: 1fr;
  }
}

.bpr-state-grid-mock {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-dark);
}

.bpr-state-grid-mock__header {
  background: rgba(255, 255, 255, 0.08);
  padding: var(--space-2) var(--space-3);
  display: grid;
  grid-template-columns: 60px 1fr 1fr 1fr;
  gap: var(--space-2);
  border-bottom: 1px solid var(--border-dark);
}

.bpr-state-grid-mock__col-head {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark-muted);
}

.bpr-state-grid-mock__row {
  padding: var(--space-1) var(--space-3);
  display: grid;
  grid-template-columns: 60px 1fr 1fr 1fr;
  gap: var(--space-2);
  align-items: center;
  border-bottom: 1px solid rgba(30, 58, 95, 0.5);
}

.bpr-state-grid-mock__row:last-child {
  border-bottom: none;
}

.bpr-state-grid-mock__state {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark-primary);
}

.bpr-state-grid-mock__cell {
  font-size: 11px;
  color: var(--text-dark-muted);
}

.bpr-state-grid-mock__cell--teal {
  color: var(--text-dark-accent);
  font-weight: 600;
}

.bpr-state-grid-mock__fade {
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--navy-700));
  margin-top: -24px;
}

.bpr-solutions-scenario {
  padding-block: var(--space-7);
}

.bpr-solutions-scenario__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: start;
}

.bpr-solutions-scenario__eyebrow {
  display: inline-block;
  margin-bottom: var(--space-2);
}

.bpr-solutions-scenario__h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 32px);
  margin-bottom: var(--space-2);
}

.bpr-solutions-scenario__intro {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.bpr-section--light .bpr-solutions-scenario__h2,
.bpr-section--light-alt .bpr-solutions-scenario__h2,
.bpr-section--white .bpr-solutions-scenario__h2 {
  color: var(--text-light-primary);
}

.bpr-section--dark .bpr-solutions-scenario__h2,
.bpr-section--dark-alt .bpr-solutions-scenario__h2 {
  color: var(--text-dark-primary);
}

.bpr-section--light .bpr-solutions-scenario__intro,
.bpr-section--light-alt .bpr-solutions-scenario__intro {
  color: var(--text-light-muted);
}

.bpr-section--dark .bpr-solutions-scenario__intro,
.bpr-section--dark-alt .bpr-solutions-scenario__intro {
  color: var(--text-dark-muted);
}

.bpr-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.bpr-checklist__item {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.6;
}

.bpr-section--light .bpr-checklist__item,
.bpr-section--light-alt .bpr-checklist__item {
  color: var(--text-light-primary);
}

.bpr-section--dark .bpr-checklist__item,
.bpr-section--dark-alt .bpr-checklist__item {
  color: var(--text-dark-primary);
}

.bpr-checklist__icon {
  flex-shrink: 0;
  color: var(--teal-cta);
  margin-top: 2px;
}

.bpr-section--dark .bpr-checklist__icon,
.bpr-section--dark-alt .bpr-checklist__icon {
  color: var(--text-dark-accent);
}

@media (max-width: 860px) {
  .bpr-solutions-scenario__inner {
    grid-template-columns: 1fr;
  }
}

.bpr-pricing-full {
  padding-block: var(--space-7);
}

.bpr-pricing-full__intro {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.bpr-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.bpr-pricing-toggle__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light-muted);
}

.bpr-pricing-toggle__switch {
  width: 48px;
  height: 24px;
  border-radius: 12px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  position: relative;
  cursor: pointer;
  transition: background 200ms;
}

.bpr-pricing-toggle__switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 200ms;
}

.bpr-pricing-toggle__switch--active {
  background: var(--teal-cta);
  border-color: var(--teal-cta);
}

.bpr-pricing-toggle__switch--active::after {
  transform: translateX(24px);
}

.bpr-pricing-toggle__save-badge {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--teal-cta);
  padding: 2px 8px;
  border-radius: 20px;
}

.bpr-pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.bpr-pricing-trial-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light-muted);
}

@media (max-width: 860px) {
  .bpr-pricing-tiers {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
}

.bpr-faq {
  padding-block: var(--space-7);
}

.bpr-faq__intro {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.bpr-faq__list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.bpr-faq__item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white-pure);
}

.bpr-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-light-primary);
  text-align: left;
  background: transparent;
  cursor: pointer;
  border: none;
  gap: var(--space-3);
}

.bpr-faq__question:hover {
  color: var(--teal-cta);
}

.bpr-faq__caret {
  flex-shrink: 0;
  color: var(--text-light-muted);
  transition: transform 200ms ease;
}

.bpr-faq__item--open .bpr-faq__caret {
  transform: rotate(180deg);
}

.bpr-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 200ms ease;
}

.bpr-faq__item--open .bpr-faq__answer {
  max-height: 400px;
}

.bpr-faq__answer-inner {
  padding: 0 var(--space-4) var(--space-3);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light-muted);
}

.bpr-about-story {
  padding-block: var(--space-7);
}

.bpr-about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.bpr-about-story__body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-light-primary);
}

.bpr-about-story__body p + p {
  margin-top: var(--space-2);
}

@media (max-width: 860px) {
  .bpr-about-story__inner {
    grid-template-columns: 1fr;
  }
}

.bpr-about-team {
  padding-block: var(--space-7);
}

.bpr-about-team__intro {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.bpr-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.bpr-team-card {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.bpr-section--light-alt .bpr-team-card {
  background: var(--white-pure);
  border: 1px solid var(--border-light);
}

.bpr-team-card__photo {
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: auto;
}

.bpr-team-card__body {
  padding: var(--space-3);
}

.bpr-team-card__name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-light-primary);
  margin-bottom: 4px;
}

.bpr-team-card__title {
  font-size: 13px;
  color: var(--text-light-muted);
  margin-bottom: var(--space-2);
}

.bpr-team-card__bio {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-light-muted);
}

@media (max-width: 720px) {
  .bpr-team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .bpr-team-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-inline: auto;
  }
}

.bpr-about-mission {
  padding-block: var(--space-7);
}

.bpr-about-mission__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.bpr-about-mission__quote {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
  color: var(--text-dark-primary);
  margin-bottom: var(--space-4);
}

.bpr-contact-form {
  padding-block: var(--space-7);
}

.bpr-contact-form__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: start;
}

.bpr-contact-info__h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--text-light-primary);
  margin-bottom: var(--space-2);
}

.bpr-contact-info__intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light-muted);
  margin-bottom: var(--space-4);
}

.bpr-contact-info__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.bpr-contact-info__row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.bpr-contact-info__icon {
  flex-shrink: 0;
  color: var(--teal-cta);
  margin-top: 2px;
}

.bpr-contact-info__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light-primary);
}

.bpr-contact-info__text a {
  color: var(--teal-cta);
  text-decoration: none;
}

.bpr-contact-info__text a:hover {
  text-decoration: underline;
}

.bpr-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.bpr-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.bpr-form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.bpr-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light-primary);
}

.bpr-form__input {
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 14px;
  color: var(--text-light-primary);
  background: var(--white-pure);
  transition: border-color 150ms;
}

.bpr-form__input:focus {
  outline: none;
  border-color: var(--teal-cta);
}

.bpr-form__input::placeholder {
  color: var(--text-light-muted);
}

.bpr-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.bpr-form__submit {
  align-self: flex-start;
}

@media (max-width: 860px) {
  .bpr-contact-form__inner {
    grid-template-columns: 1fr;
  }

  .bpr-form__row {
    grid-template-columns: 1fr;
  }
}

.bpr-blog-hero {
  padding-top: calc(var(--nav-h) + var(--space-6));
  padding-bottom: var(--space-6);
  background: linear-gradient(145deg, var(--navy-900) 60%, var(--navy-700) 100%);
}

.bpr-blog-hero__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(var(--space-3), 4vw, var(--space-6));
}

.bpr-blog-hero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--text-dark-primary);
  margin-bottom: var(--space-2);
}

.bpr-blog-hero__sub {
  font-size: 18px;
  color: var(--text-dark-muted);
  max-width: 560px;
}

.bpr-blog-grid {
  padding-block: var(--space-7);
}

.bpr-blog-featured {
  margin-bottom: var(--space-5);
}

.bpr-blog-featured__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white-pure);
  border: 1px solid var(--border-light);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 200ms;
}

.bpr-blog-featured__card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.bpr-blog-featured__cover {
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: auto;
}

.bpr-blog-featured__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bpr-blog-featured__category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light-accent);
  margin-bottom: var(--space-2);
  display: block;
}

.bpr-blog-featured__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 28px);
  color: var(--text-light-primary);
  line-height: 1.2;
  margin-bottom: var(--space-2);
}

.bpr-blog-featured__excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light-muted);
  margin-bottom: var(--space-3);
}

.bpr-blog-featured__meta {
  font-size: 13px;
  color: var(--text-light-muted);
}

@media (max-width: 720px) {
  .bpr-blog-featured__card {
    grid-template-columns: 1fr;
  }
}

.bpr-blog-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.bpr-blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white-pure);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 200ms;
}

.bpr-blog-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bpr-blog-card__cover {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.bpr-blog-card__body {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bpr-blog-card__category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light-accent);
  margin-bottom: var(--space-1);
  display: block;
}

.bpr-blog-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-light-primary);
  line-height: 1.3;
  margin-bottom: var(--space-1);
  flex: 1;
}

.bpr-blog-card__meta {
  font-size: 12px;
  color: var(--text-light-muted);
  margin-top: var(--space-2);
}

@media (max-width: 640px) {
  .bpr-blog-cards {
    grid-template-columns: 1fr;
  }
}

.bpr-article-header {
  padding-top: calc(var(--nav-h) + var(--space-6));
  padding-bottom: var(--space-5);
  background: linear-gradient(145deg, var(--navy-900) 60%, var(--navy-700) 100%);
}

.bpr-article-header__inner {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: clamp(var(--space-3), 4vw, var(--space-6));
}

.bpr-article-header__breadcrumb {
  font-size: 13px;
  color: var(--text-dark-muted);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.bpr-article-header__breadcrumb a {
  color: var(--text-dark-muted);
  text-decoration: none;
}

.bpr-article-header__breadcrumb a:hover {
  color: var(--text-dark-accent);
}

.bpr-article-header__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark-accent);
  margin-bottom: var(--space-2);
}

.bpr-article-header__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-dark-primary);
  line-height: 1.15;
  margin-bottom: var(--space-3);
}

.bpr-article-header__meta {
  font-size: 14px;
  color: var(--text-dark-muted);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.bpr-article-body {
  padding-block: var(--space-6);
  background: var(--parchment-50);
}

.bpr-article-body__cover {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: clamp(var(--space-3), 4vw, var(--space-6));
  margin-bottom: var(--space-5);
}

.bpr-article-body__cover img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  aspect-ratio: 16/9;
  object-fit: cover;
}

.bpr-article-body__content {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(var(--space-3), 4vw, var(--space-6));
}

.bpr-article-body__content h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 28px);
  color: var(--text-light-primary);
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}

.bpr-article-body__content h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-light-primary);
  margin-top: var(--space-4);
  margin-bottom: var(--space-1);
}

.bpr-article-body__content p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-light-primary);
  margin-bottom: var(--space-3);
}

.bpr-article-body__content ul,
.bpr-article-body__content ol {
  padding-left: var(--space-3);
  margin-bottom: var(--space-3);
  list-style: disc;
}

.bpr-article-body__content ol {
  list-style: decimal;
}

.bpr-article-body__content li {
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-light-primary);
  margin-bottom: var(--space-1);
}

.bpr-article-body__content blockquote {
  border-left: 3px solid var(--teal-cta);
  padding-left: var(--space-3);
  margin-block: var(--space-4);
  font-style: italic;
  color: var(--text-light-muted);
}

.bpr-article-related {
  padding-block: var(--space-6);
  background: var(--parchment-100);
}

.bpr-article-related__h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text-light-primary);
  margin-bottom: var(--space-4);
}

.bpr-page--auth {
  min-height: 100vh;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5) var(--space-3);
}

.bpr-auth-card {
  background: var(--parchment-50);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  width: 100%;
  max-width: 440px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.bpr-auth-card__logo {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.bpr-auth-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--text-light-primary);
  text-align: center;
  margin-bottom: var(--space-1);
}

.bpr-auth-card__sub {
  font-size: 14px;
  color: var(--text-light-muted);
  text-align: center;
  margin-bottom: var(--space-4);
}

.bpr-auth-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.bpr-auth-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bpr-auth-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light-primary);
}

.bpr-auth-form__input {
  padding: 11px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 14px;
  color: var(--text-light-primary);
  background: var(--white-pure);
  transition: border-color 150ms;
}

.bpr-auth-form__input:focus {
  outline: none;
  border-color: var(--teal-cta);
}

.bpr-auth-form__input::placeholder {
  color: var(--text-light-muted);
}

.bpr-auth-form__submit {
  width: 100%;
  padding: 13px;
  font-size: 15px;
  margin-top: var(--space-1);
}

.bpr-auth-card__links {
  margin-top: var(--space-3);
  text-align: center;
  font-size: 13px;
  color: var(--text-light-muted);
}

.bpr-auth-card__links a {
  color: var(--teal-cta);
  text-decoration: none;
  font-weight: 600;
}

.bpr-auth-card__links a:hover {
  text-decoration: underline;
}

.bpr-auth-card__legal {
  margin-top: var(--space-3);
  text-align: center;
  font-size: 12px;
  color: var(--text-light-muted);
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-3);
}

.bpr-auth-card__legal a {
  color: var(--text-light-accent);
  text-decoration: none;
}

.bpr-auth-card__legal a:hover {
  text-decoration: underline;
}

.bpr-legal-header {
  padding-top: calc(var(--nav-h) + var(--space-5));
  padding-bottom: var(--space-5);
  background: var(--navy-900);
}

.bpr-legal-header__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(var(--space-3), 4vw, var(--space-6));
}

.bpr-legal-header__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--text-dark-primary);
  margin-bottom: var(--space-2);
}

.bpr-legal-header__sub {
  font-size: 16px;
  color: var(--text-dark-muted);
}

.bpr-legal-content {
  background: var(--parchment-50);
  padding-block: var(--space-6);
}

.bpr-legal-content__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(var(--space-3), 4vw, var(--space-6));
  color: var(--text-light-primary);
}

.bpr-legal-content__inner h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text-light-primary);
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
}

.bpr-legal-content__inner h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-light-primary);
  margin-top: var(--space-3);
  margin-bottom: var(--space-1);
}

.bpr-legal-content__inner p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--text-light-primary);
  margin-bottom: var(--space-2);
}

.bpr-legal-content__inner ul,
.bpr-legal-content__inner ol {
  padding-left: var(--space-3);
  margin-bottom: var(--space-2);
  list-style: disc;
}

.bpr-legal-content__inner ol {
  list-style: decimal;
}

.bpr-legal-content__inner li {
  font-size: 15px;
  line-height: 1.78;
  color: var(--text-light-primary);
  margin-bottom: var(--space-1);
}

.bpr-footer {
  background: var(--navy-900);
  padding-block: var(--space-6);
  border-top: 1px solid var(--border-dark);
}

.bpr-footer__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(var(--space-3), 4vw, var(--space-6));
}

.bpr-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border-dark);
}

.bpr-footer__brand-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark-muted);
  margin-top: var(--space-2);
  margin-bottom: var(--space-3);
}

.bpr-footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.bpr-footer__contact-row {
  font-size: 13px;
  color: var(--text-dark-muted);
  line-height: 1.5;
}

.bpr-footer__contact-row a {
  color: var(--text-dark-muted);
  text-decoration: none;
}

.bpr-footer__contact-row a:hover {
  color: var(--text-dark-primary);
}

.bpr-footer__col-heading {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark-primary);
  margin-bottom: var(--space-2);
}

.bpr-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.bpr-footer__link {
  font-size: 14px;
  color: var(--text-dark-muted);
  text-decoration: none;
  transition: color 150ms;
}

.bpr-footer__link:hover {
  color: var(--text-dark-primary);
}

.bpr-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.bpr-footer__copyright {
  font-size: 13px;
  color: var(--text-dark-muted);
}

.bpr-footer__bottom-links {
  display: flex;
  gap: var(--space-3);
}

.bpr-footer__bottom-link {
  font-size: 13px;
  color: var(--text-dark-muted);
  text-decoration: none;
  transition: color 150ms;
}

.bpr-footer__bottom-link:hover {
  color: var(--text-dark-primary);
}

@media (max-width: 860px) {
  .bpr-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
}

@media (max-width: 480px) {
  .bpr-footer__grid {
    grid-template-columns: 1fr;
  }

  .bpr-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--navy-700);
  border-top: 1px solid var(--border-dark);
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--space-3) clamp(var(--space-3), 4vw, var(--space-6));
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dark-primary);
  min-width: 200px;
}

.cookie-banner__text a {
  color: var(--text-dark-accent);
  text-decoration: none;
}

.cookie-banner__text a:hover {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-2);
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 150ms, color 150ms;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.cookie-banner__btn--primary {
  background: var(--teal-hover);
  color: #fff;
  border: 1.5px solid var(--teal-hover);
}

.cookie-banner__btn--primary:hover {
  background: #115e4a;
  border-color: #115e4a;
  color: #fff;
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--text-dark-primary);
  border: 1.5px solid var(--border-dark);
}

.cookie-banner__btn--secondary:hover {
  border-color: var(--text-dark-primary);
  color: var(--text-dark-primary);
}

.bpr-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bpr-form__select {
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 14px;
  color: var(--text-light-primary);
  background: var(--white-pure);
  transition: border-color 150ms;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.bpr-form__select:focus {
  outline: none;
  border-color: var(--teal-cta);
}

.bpr-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.bpr-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: 14px;
  color: var(--text-light-primary);
  line-height: 1.6;
}

.bpr-contact-info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.bpr-contact-info-item a {
  color: var(--teal-cta);
  text-decoration: none;
}

.bpr-contact-info-item a:hover {
  text-decoration: underline;
}

.bpr-blog-listing {
  padding-top: 0;
}

.bpr-blog-featured__img-link {
  display: block;
  overflow: hidden;
}

.bpr-blog-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms;
}

.bpr-blog-featured__img-link:hover .bpr-blog-featured__img {
  transform: scale(1.02);
}

.bpr-blog-featured__content {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bpr-blog-featured__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 28px);
  color: var(--text-light-primary);
  line-height: 1.2;
  margin-bottom: var(--space-2);
}

.bpr-blog-featured__link {
  color: inherit;
  text-decoration: none;
}

.bpr-blog-featured__link:hover {
  color: var(--teal-cta);
}

.bpr-blog-featured__summary {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light-muted);
  margin-bottom: var(--space-3);
}

.bpr-blog-card__img-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.bpr-blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms;
}

.bpr-blog-card__img-link:hover .bpr-blog-card__img {
  transform: scale(1.03);
}

.bpr-blog-card__summary {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light-muted);
  margin-top: var(--space-1);
  flex: 1;
}

.bpr-blog-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-2);
  padding-top: var(--space-2);
  border-top: 1px solid var(--border-light);
  font-size: 12px;
  color: var(--text-light-muted);
}

.bpr-blog-card__author {
  font-weight: 600;
  color: var(--text-light-muted);
}

.bpr-blog-card__link {
  color: var(--text-light-primary);
  text-decoration: none;
}

.bpr-blog-card__link:hover {
  color: var(--teal-cta);
}

.bpr-blog-card__sep {
  color: var(--text-light-muted);
  opacity: 0.5;
  margin-inline: 4px;
}

.bpr-blog-card__date {
  color: var(--text-light-muted);
  font-size: 12px;
}

.bpr-blog-card__read-time {
  color: var(--text-light-muted);
  font-size: 12px;
}

.bpr-article-hero {
  padding-top: calc(var(--nav-h) + var(--space-6));
  padding-bottom: var(--space-5);
}

.bpr-article-hero__inner {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: clamp(var(--space-3), 4vw, var(--space-6));
}

.bpr-article-hero__meta {
  font-size: 13px;
  color: var(--text-dark-muted);
  margin-bottom: var(--space-2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.bpr-article-hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-dark-primary);
  line-height: 1.15;
  margin-bottom: var(--space-3);
}

.bpr-article-hero__byline {
  font-size: 14px;
  color: var(--text-dark-muted);
}

.bpr-breadcrumb {
  margin-bottom: var(--space-3);
}

.bpr-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--text-dark-muted);
}

.bpr-breadcrumb__item + .bpr-breadcrumb__item::before {
  content: '/';
  color: var(--text-dark-muted);
  opacity: 0.5;
}

.bpr-breadcrumb__link {
  color: var(--text-dark-muted);
  text-decoration: none;
}

.bpr-breadcrumb__link:hover {
  color: var(--text-dark-accent);
}

.bpr-breadcrumb__item--current {
  color: var(--text-dark-muted);
  opacity: 0.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}

.bpr-article-cover {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: clamp(var(--space-3), 4vw, var(--space-6));
  margin-bottom: var(--space-5);
  padding-top: var(--space-5);
}

.bpr-article-cover__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  aspect-ratio: 16/9;
  object-fit: cover;
}

.bpr-article-footer {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: clamp(var(--space-3), 4vw, var(--space-6));
  padding-block: var(--space-4);
  border-top: 1px solid var(--border-light);
}


.bpr-contact-form__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.bpr-pricing-card__price-annual {
  font-size: 13px;
  color: var(--text-light-muted);
  margin-top: 4px;
  line-height: 1.4;
}
