:root {
  --bb-bg: #f7f9ff;
  --bb-surface: #ffffff;
  --bb-surface-2: #eef4ff;
  --bb-surface-3: #dfe8f7;
  --bb-ink: #0b1c30;
  --bb-ink-soft: #586277;
  --bb-ink-muted: #778298;
  --bb-primary: #ff9900;
  --bb-primary-deep: #8a5100;
  --bb-navy: #0d2754;
  --bb-navy-deep: #07152c;
  --bb-navy-soft: #183663;
  --bb-success-bg: #e9f4ea;
  --bb-success: #2e7a3e;
  --bb-warning-bg: #fce8d6;
  --bb-warning: #a95f16;
  --bb-shadow-xl: 0 24px 60px rgba(11, 28, 48, 0.12);
  --bb-shadow-lg: 0 18px 44px rgba(11, 28, 48, 0.08);
  --bb-shadow-sm: 0 10px 24px rgba(11, 28, 48, 0.06);
  --bb-radius-xl: 28px;
  --bb-radius-lg: 22px;
  --bb-radius-md: 18px;
  --bb-max: 1200px;
  --bb-gap: clamp(20px, 3vw, 40px);
  --bb-pad-x: clamp(18px, 3vw, 30px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.bb-page {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #f9fbff 0%, #f5f8ff 100%);
  color: var(--bb-ink);
  text-rendering: optimizeLegibility;
}

.bb-page img { max-width: 100%; display: block; }

.bb-shell {
  width: min(var(--bb-max), calc(100% - 32px));
  margin-inline: auto;
}

.bb-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(247, 249, 255, 0.78);
  border-bottom: 1px solid rgba(215, 226, 244, 0.75);
}

.bb-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.bb-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--bb-ink);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.bb-brand img { width: 44px; height: 44px; }

.bb-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.bb-nav a {
  color: var(--bb-ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
}

.bb-nav a.is-active { color: var(--bb-primary-deep); }

.bb-topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.bb-topbar__cta-secondary {
  min-height: 48px;
  padding-inline: 18px;
}

.bb-lang--mobile,
.bb-topbar .hamburger-menu {
  display: none;
}

.bb-lang {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  min-height: 48px;
  border-radius: 14px;
  background: var(--bb-surface);
  box-shadow: var(--bb-shadow-sm);
  font-weight: 700;
  color: var(--bb-ink);
}

.bb-lang__select {
  appearance: none;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding-right: 2px;
  outline: none;
}

.bb-flag {
  width: 18px; height: 12px;
  border-radius: 3px;
  background: linear-gradient(180deg, #ffffff 0 50%, #d4213d 50% 100%);
  box-shadow: inset 0 0 0 1px rgba(11, 28, 48, 0.08);
}

.bb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.bb-btn:hover { transform: translateY(-1px); }
.bb-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--bb-primary) 0%, #ff8f00 55%, #e06b00 100%);
  box-shadow: 0 18px 36px rgba(255, 153, 0, 0.30);
}
.bb-btn--secondary {
  color: #fff;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.55);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.bb-btn--secondary-light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
}
.bb-btn--surface {
  color: var(--bb-ink);
  background: var(--bb-surface);
  border-color: rgba(170, 184, 208, 0.34);
  box-shadow: var(--bb-shadow-sm);
}
.bb-btn--ghost {
  color: var(--bb-ink);
  background: transparent;
  border-color: rgba(138, 163, 205, 0.36);
}

.bb-section { padding: 72px 0; }
.bb-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--bb-primary-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.bb-title {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}
.bb-lead {
  margin: 18px 0 0;
  color: var(--bb-ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.23rem);
  line-height: 1.7;
  max-width: 700px;
}

.bb-hero { padding-top: 28px; }
.bb-hero__panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 153, 0, 0.26) 0, rgba(255, 153, 0, 0) 34%),
    radial-gradient(circle at 85% 15%, rgba(110, 168, 255, 0.18) 0, rgba(110, 168, 255, 0) 26%),
    linear-gradient(135deg, #0d2a57 0%, #07152c 100%);
  color: #fff;
  border-radius: 32px;
  min-height: 610px;
  padding: clamp(34px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(28px, 4vw, 48px);
  box-shadow: var(--bb-shadow-xl);
}
.bb-hero__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .34;
  pointer-events: none;
}
.bb-hero__aurora {
  position: absolute;
  inset: auto auto -140px -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.24) 0%, rgba(255, 153, 0, 0) 70%);
  pointer-events: none;
}
.bb-hero__content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bb-hero .bb-kicker { color: rgba(255, 193, 124, 0.96); }
.bb-hero__content h1,
.bb-hero .bb-title,
.bb-hero h1 { color: #fff !important; }
.bb-hero .bb-lead { color: rgba(229, 237, 255, 0.86); max-width: 560px; }
.bb-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.bb-proof-strip {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.bb-proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color: rgba(239, 245, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 700;
}
.bb-proof-strip span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffb865;
}
.bb-demo-hint {
  margin-top: 14px;
  color: rgba(230, 238, 255, 0.72);
  font-size: 0.95rem;
}
.bb-hero__stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bb-stat-card {
  width: min(380px, 100%);
  background: rgba(255,255,255,0.97);
  color: var(--bb-ink);
  padding: 30px;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(3, 12, 28, 0.24);
}
.bb-stat-card--product {
  width: min(460px, 100%);
}
.bb-stat-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.bb-stat-card__eyebrow {
  font-size: .82rem;
  font-weight: 800;
  color: var(--bb-primary-deep);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.bb-stat-card__title {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.bb-stat-card__copy {
  margin: 14px 0 0;
  color: var(--bb-ink-soft);
  line-height: 1.72;
}

.bb-canvas-board {
  margin: 22px 0 18px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
  box-shadow: inset 0 0 0 1px rgba(12, 29, 49, 0.06);
}

.bb-canvas-board__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--bb-ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.bb-canvas-board__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bb-canvas-board__grid article {
  min-height: 90px;
  padding: 14px;
  border-radius: 16px;
  background: var(--bb-surface);
  box-shadow: var(--bb-shadow-sm);
}

.bb-canvas-board__grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bb-primary-deep);
}

.bb-canvas-board__grid span {
  color: var(--bb-ink);
  font-weight: 700;
  line-height: 1.45;
}

.bb-checklist {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.bb-checklist__item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 16px;
  background: #f8fbff;
  box-shadow: inset 0 0 0 1px rgba(12, 29, 49, 0.05);
  font-size: 0.95rem;
}

.bb-checklist__item strong {
  color: var(--bb-ink);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 0.74rem;
}

.bb-checklist__item span {
  color: var(--bb-ink-soft);
  text-align: right;
}

/* MASSIVE PERCENTAGE FIX */
.bb-stat-card__value {
  font-size: 5.5rem !important;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bb-stat-card__value div {
    display: flex;
    align-items: baseline;
}

.bb-stat-card__value #hero-progress-num {
    font-size: inherit;
}

.bb-stat-card__value span[data-i18n="stat_stage"] {
  display: block;
  font-size: 1.1rem !important;
  font-weight: 800;
  color: var(--bb-navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 5px;
}

.bb-dot-menu {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bb-navy);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.bb-dot-menu::before {
  content: "";
  width: 4px;
  height: 18px;
  border-radius: 20px;
  background:
    radial-gradient(circle at center 3px, #fff 0 2px, transparent 2.5px),
    radial-gradient(circle at center 9px, #fff 0 2px, transparent 2.5px),
    radial-gradient(circle at center 15px, #fff 0 2px, transparent 2.5px);
  display: block;
}

.bb-progress {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: #e9edf4;
  overflow: hidden;
  margin-bottom: 24px;
}
.bb-progress__bar {
  width: 83%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--bb-primary) 0%, #ffbb54 100%);
}

.bb-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.bb-mini-card {
  min-height: 140px;
  border-radius: 18px;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: inset 0 0 0 1px rgba(12, 29, 49, 0.05), var(--bb-shadow-sm);
}

.bb-mini-card__icon {
  width: 56px !important; 
  height: 56px !important;
  display: flex !important; 
  align-items: center !important; 
  justify-content: center !important;
  border-radius: 16px;
  margin-bottom: 14px;
}
.bb-mini-card__icon svg { 
    width: 28px !important; 
    height: 28px !important; 
}

.bb-mini-card h4 {
  margin: 0 0 10px;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.bb-mini-card p {
  margin: 0;
  color: var(--bb-ink-soft);
  line-height: 1.6;
  font-size: 0.9rem;
}
.bb-mini-grid--hero {
  margin-bottom: 18px;
}
.bb-mini-card--compact {
  min-height: 0;
}
.bb-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 800;
}
.bb-pill--success { background: var(--bb-success-bg); color: var(--bb-success); }
.bb-pill--warning { background: var(--bb-warning-bg); color: var(--bb-warning); }

.bb-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.bb-inline-link {
  color: var(--bb-navy);
  font-weight: 800;
}

.bb-inline-link:hover {
  color: var(--bb-primary-deep);
}

.bb-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bb-card {
  background: var(--bb-surface);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--bb-shadow-sm);
}
.bb-card--bordered { box-shadow: inset 0 0 0 1px rgba(157, 176, 203, .16), var(--bb-shadow-sm); }

.bb-card__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(180deg, #153363 0%, #0c2244 100%);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 18px;
}
.bb-card__icon svg { width: 26px; height: 26px; stroke: #fff; }

.bb-solutions {
  padding-top: 28px;
}

.bb-solutions__intro {
  max-width: 760px;
  margin-bottom: 26px;
}

.bb-solutions__intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.bb-solutions__intro p {
  margin: 16px 0 0;
  color: var(--bb-ink-soft);
  font-size: 1.02rem;
  line-height: 1.72;
  max-width: 680px;
}

.bb-solutions__grid {
  align-items: stretch;
}

.bb-solution-card {
  min-height: 100%;
  padding: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #eff4ff 100%);
}

.bb-solution-card__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--bb-primary-deep);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .74rem;
  font-weight: 800;
}

.bb-solution-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 1.82rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.bb-solution-card p {
  margin: 14px 0 0;
  color: var(--bb-ink-soft);
  line-height: 1.72;
}

.bb-proof-module {
  padding-top: 8px;
}

.bb-proof-module__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(22px, 3.8vw, 38px);
  align-items: stretch;
  padding: clamp(30px, 4vw, 42px);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 153, 0, 0.18) 0, rgba(255, 153, 0, 0) 30%),
    linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
  box-shadow: var(--bb-shadow-lg);
}

.bb-proof-module__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bb-proof-module__copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 12ch;
}

.bb-proof-module__copy p {
  margin: 18px 0 0;
  color: var(--bb-ink-soft);
  line-height: 1.78;
  font-size: 1.02rem;
  max-width: 58ch;
}

.bb-proof-module__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 0;
}

.bb-proof-module__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(13, 39, 84, 0.06);
  color: var(--bb-navy);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.bb-proof-module .bb-card-actions {
  margin-top: 26px;
}

.bb-proof-story {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(160deg, #0d2a57 0%, #07152c 100%);
  color: #fff;
  box-shadow: 0 22px 54px rgba(7, 21, 44, 0.26);
}

.bb-proof-story::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.28) 0%, rgba(255, 153, 0, 0) 70%);
  pointer-events: none;
}

.bb-proof-story > * {
  position: relative;
  z-index: 1;
}

.bb-proof-story__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.bb-proof-story__eyebrow {
  color: rgba(255, 193, 124, 0.98);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.bb-proof-story h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.bb-proof-story p {
  margin: 14px 0 0;
  color: rgba(230, 238, 255, 0.84);
  line-height: 1.74;
}

.bb-proof-story__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.bb-proof-story__grid article,
.bb-proof-story__timeline > div {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.bb-proof-story__grid article {
  min-height: 112px;
  padding: 16px;
}

.bb-proof-story__grid strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bb-proof-story__grid span {
  color: rgba(232, 239, 255, 0.9);
  font-weight: 700;
  line-height: 1.52;
}

.bb-proof-story__timeline {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.bb-proof-story__timeline > div {
  padding: 16px 18px;
}

.bb-proof-story__timeline span {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(255, 193, 124, 0.98);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.bb-proof-story__timeline strong {
  display: block;
  color: #fff;
  line-height: 1.42;
}

.bb-proof-story__timeline p {
  margin-top: 8px;
}

.bb-band {
  background: linear-gradient(135deg, #0d2a57 0%, #08172f 100%);
  color: #fff;
  border-radius: 26px;
  padding: clamp(34px, 5vw, 54px);
  box-shadow: var(--bb-shadow-lg);
}
.bb-band h2 {
  margin: 0 0 28px;
  color: #fff !important;
  text-align: center;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.bb-band .bb-grid-3 .bb-card { background: transparent; border: 1px solid rgba(208, 224, 255, 0.24); box-shadow: none; }
.bb-band .bb-card h3, .bb-band .bb-card p { color: #fff; }
.bb-band .bb-card p { color: rgba(224, 235, 255, .84); }
.bb-card__eyebrow {
  display: block;
  color: rgba(224, 235, 255, .72);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.bb-showcase { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(26px, 4vw, 54px); align-items: center; }
.bb-showcase__art > .bb-asset { width: 100%; border-radius: 28px; box-shadow: var(--bb-shadow-xl); }
.bb-showcase__copy h2 { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.04; margin: 0; }
.bb-showcase__copy p { margin: 18px 0 0; color: var(--bb-ink-soft); line-height: 1.75; font-size: 1.05rem; }
.bb-bullets { margin: 32px 0 0; list-style: none; display: grid; gap: 16px; }
.bb-bullets li { display: flex; align-items: center; gap: 14px; font-weight: 700; }
.bb-bullets svg { flex: none; width: 32px; height: 32px; stroke: var(--bb-ink); }
.bb-bullets small { display: block; color: var(--bb-ink-soft); font-size: .95rem; font-weight: 500; margin-top: 3px; }

.bb-tools .bb-title { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 8px; }
.bb-underline { width: 64px; height: 4px; border-radius: 999px; background: linear-gradient(90deg, var(--bb-primary) 0%, #f6b25a 100%); margin-top: 10px; }
.bb-tools-grid { margin-top: 34px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 18px; }
.bb-tools-grid__stack, .bb-tools-grid__two { display: grid; gap: 18px; }
.bb-tools-grid__two { grid-template-columns: 1fr 1fr; }

.bb-panel { position: relative; min-height: 260px; overflow: hidden; }
.bb-panel--light { background: #fff; }
.bb-panel--navy { background: linear-gradient(180deg, #0d2450 0%, #09162d 100%); color: #fff; }
.bb-panel--soft { background: linear-gradient(180deg, #dfe9ff 0%, #eef4ff 100%); }
.bb-panel__sub { color: var(--bb-primary-deep); text-transform: uppercase; font-weight: 800; letter-spacing: .12em; font-size: .76rem; }
.bb-panel--navy .bb-panel__sub { color: #ffb865; }
.bb-panel h3 { margin: 16px 0 12px; font-size: clamp(1.45rem, 2.2vw, 2rem); line-height: 1.06; letter-spacing: -0.04em; }
.bb-panel p { max-width: 420px; color: var(--bb-ink-soft); line-height: 1.7; margin: 0; }
.bb-panel--navy p { color: rgba(228, 238, 255, .8); }

.bb-client-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.16) 0%, rgba(96, 165, 250, 0) 32%),
    radial-gradient(circle at bottom left, rgba(255, 153, 0, 0.16) 0%, rgba(255, 153, 0, 0) 34%),
    linear-gradient(180deg, #0d2450 0%, #09162d 100%);
  box-shadow: 0 30px 68px rgba(5, 12, 28, 0.28);
}

.bb-client-panel__intro,
.bb-client-panel__surface {
  position: relative;
  z-index: 2;
}

.bb-client-panel__intro p {
  max-width: 430px;
  color: rgba(216, 229, 248, 0.84);
  font-size: 0.98rem;
}

.bb-client-panel__surface {
  border-radius: 24px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(17, 30, 54, 0.92) 0%, rgba(8, 18, 36, 0.94) 100%);
  border: 1px solid rgba(103, 131, 178, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 40px rgba(3, 10, 24, 0.32);
}

.bb-client-panel__surface-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(103, 131, 178, 0.22);
}

.bb-client-panel__eyebrow,
.bb-client-panel__card-label,
.bb-client-panel__timeline span,
.bb-client-panel__progress-meta span {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bb-client-panel__eyebrow,
.bb-client-panel__progress-meta span,
.bb-client-panel__timeline span {
  color: rgba(153, 184, 227, 0.72);
}

.bb-client-panel__surface-head strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.35;
  color: #f8fbff;
}

.bb-client-panel__status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(29, 78, 63, 0.55);
  color: #6ee7b7;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(52, 211, 153, 0.18);
}

.bb-client-panel__progress {
  margin-top: 18px;
}

.bb-client-panel__progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.bb-client-panel__progress-meta strong {
  color: #f8fbff;
  font-size: 0.95rem;
}

.bb-client-panel__progress-track {
  height: 8px;
  margin-top: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(51, 65, 85, 0.92);
}

.bb-client-panel__progress-bar {
  height: 100%;
  width: 65%;
  border-radius: inherit;
  background: linear-gradient(90deg, #60a5fa 0%, #38bdf8 100%);
}

.bb-client-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.bb-client-panel__card {
  min-height: 122px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(71, 85, 105, 0.45);
}

.bb-client-panel__card-label {
  color: rgba(165, 188, 221, 0.72);
}

.bb-client-panel__card strong {
  display: block;
  margin-top: 10px;
  font-size: 0.98rem;
  line-height: 1.35;
  color: #f8fbff;
}

.bb-client-panel__card p {
  margin-top: 8px;
  color: rgba(171, 188, 214, 0.78);
  font-size: 0.88rem;
  line-height: 1.55;
}

.bb-client-panel__card--signal {
  background: linear-gradient(180deg, rgba(59, 36, 14, 0.82) 0%, rgba(35, 23, 12, 0.92) 100%);
  border-color: rgba(245, 158, 11, 0.26);
}

.bb-client-panel__timeline {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.bb-client-panel__timeline div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(103, 131, 178, 0.16);
}

.bb-client-panel__timeline strong {
  display: block;
  margin-top: 8px;
  color: #f8fbff;
  font-size: 0.94rem;
  line-height: 1.45;
}

.bb-client-panel__glow {
  position: absolute;
  width: 240px;
  height: 240px;
  right: -72px;
  bottom: -84px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(30, 58, 138, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.bb-process .bb-title, .bb-personas .bb-title { font-size: clamp(2rem, 4vw, 3rem); }
.bb-process__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
}

.bb-process__panel {
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(255, 153, 0, 0.18) 0%, rgba(255, 153, 0, 0) 32%),
    linear-gradient(160deg, #0d2a57 0%, #07152c 100%);
  box-shadow: 0 22px 54px rgba(7, 21, 44, 0.22);
  color: #fff;
}

.bb-process__panel-eyebrow {
  display: inline-block;
  color: rgba(255, 193, 124, 0.98);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
}

.bb-process__panel h3 {
  margin: 14px 0 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.bb-process__chips {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.bb-process__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: rgba(239, 245, 255, 0.94);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.bb-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.bb-steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 32px;
  right: 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(17, 42, 88, 0.08) 0%, rgba(17, 42, 88, 0.24) 12%, rgba(17, 42, 88, 0.24) 88%, rgba(17, 42, 88, 0.08) 100%);
  z-index: 0;
}

.bb-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px 22px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #eff4ff 100%);
  box-shadow: var(--bb-shadow-sm);
}

.bb-step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(157, 176, 203, 0.12);
  pointer-events: none;
}

.bb-step__number {
   width: 52px; height: 52px; border-radius: 16px;
   display: flex !important; align-items: center !important; justify-content: center !important;
   background: linear-gradient(180deg, #153363 0%, #0c2244 100%);
   font-weight: 900; color: #fff;
   margin-bottom: 18px;
   box-shadow: 0 14px 30px rgba(12, 34, 68, 0.18);
}

.bb-step__label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--bb-primary-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.73rem;
  font-weight: 800;
}

.bb-step h3 { margin: 0 0 10px; font-size: 1.25rem; line-height: 1.16; }
.bb-step p { margin: 0; color: var(--bb-ink-soft); line-height: 1.68; }

.bb-step__meta {
  margin-top: auto;
  padding-top: 18px;
  color: var(--bb-navy);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

.bb-personas .bb-grid-3 { margin-top: 32px; }
.bb-persona__role { display: inline-block; margin-bottom: 10px; font-size: .8rem; font-weight: 800; color: var(--bb-ink-soft); text-transform: uppercase; letter-spacing: .09em; }
.bb-persona__title { margin: 0 0 10px; font-size: clamp(1.45rem, 2.1vw, 1.9rem); line-height: 1.04; }
.bb-persona__copy { margin: 0; color: var(--bb-ink-soft); line-height: 1.65; }

.bb-cta-band__box {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #08172f 0%, #0d2754 100%);
  border-radius: 30px; padding: clamp(34px, 5vw, 64px); color: #fff; text-align: center;
}
.bb-cta-band__box h2 { color: #fff !important; font-size: clamp(2.2rem, 5vw, 4.1rem); line-height: .98; margin: 0; }
.bb-cta-band__box p { margin: 18px auto 0; max-width: 640px; color: rgba(230, 238, 255, .82); font-size: 1.06rem; line-height: 1.7; }
.bb-cta-band__actions { margin-top: 28px; display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.bb-cta-band__actions--left { justify-content: flex-start; }

.bb-faq__intro {
  max-width: 840px;
  margin-bottom: 30px;
}

.bb-faq-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.bb-faq-list {
  display: grid;
  gap: 18px;
}

.bb-faq-item,
.bb-contact-card {
  background: var(--bb-surface);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--bb-shadow-sm);
  border: 1px solid rgba(157, 176, 203, .22);
}

.bb-faq-item h3,
.bb-contact-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.bb-faq-item p,
.bb-contact-card p {
  margin: 0;
  color: var(--bb-ink-soft);
  line-height: 1.75;
}

.bb-contact-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bb-contact-card__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--bb-primary-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bb-contact-card__meta {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.bb-contact-card__meta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(12, 29, 49, 0.08);
}

.bb-contact-card__meta strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bb-ink-muted);
}

.bb-contact-card__meta span {
  color: var(--bb-ink);
  font-size: 1rem;
  font-weight: 700;
}

.bb-resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
}

.bb-resource-links a {
  color: var(--bb-primary-deep);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .bb-hero__panel, .bb-showcase, .bb-tools-grid, .bb-faq-grid, .bb-proof-module__panel { grid-template-columns: 1fr; }

  .bb-hero__panel {
    min-height: auto;
  }
}

@media (max-width: 940px) {
  .bb-shell {
    width: min(var(--bb-max), calc(100% - 24px));
  }

  .bb-topbar__inner {
    gap: 12px;
    min-height: 74px;
  }

  .bb-brand {
    font-size: 1.2rem;
    min-width: 0;
  }

  .bb-nav,
  .bb-topbar__actions .bb-lang--desktop,
  .bb-topbar__actions .bb-topbar__cta-secondary,
  .bb-topbar__actions .bb-btn--surface {
    display: none;
  }

  .bb-lang--mobile,
  .bb-topbar .hamburger-menu {
    display: inline-flex !important;
    align-items: center;
  }

  .bb-lang--mobile {
    margin-left: auto;
    padding: 0 10px;
    min-height: 42px;
    border-radius: 12px;
  }

  .bb-lang--mobile .bb-lang__select {
    max-width: 56px;
    font-size: 0.9rem;
  }

  .bb-topbar .hamburger-menu {
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(138, 163, 205, 0.28);
    background: var(--bb-surface);
    box-shadow: var(--bb-shadow-sm);
    flex-shrink: 0;
  }

  .bb-grid-3,
  .bb-steps,
  .bb-tools-grid__two,
  .bb-process__intro,
  .bb-client-panel__grid {
    grid-template-columns: 1fr;
  }

  .bb-steps::before {
    display: none;
  }

  .bb-hero__panel {
    padding: 28px 20px;
    border-radius: 24px;
    gap: 22px;
  }

  .bb-hero__content,
  .bb-hero__stats {
    max-width: 100%;
  }

  .bb-title,
  .bb-showcase__copy h2,
  .bb-tools .bb-title,
  .bb-cta-band__box h2 {
    max-width: none;
  }

  .bb-card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .bb-card-actions .bb-btn,
  .bb-card-actions .bb-inline-link {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .bb-proof-story,
  .bb-proof-module__panel {
    padding: 24px;
  }

  .bb-proof-story__topline,
  .bb-client-panel__surface-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .bb-client-panel {
    padding: 24px;
  }
}

@media (max-width: 760px) {
  .bb-section {
    padding: 52px 0;
  }

  .bb-shell {
    width: min(var(--bb-max), calc(100% - 20px));
  }

  .bb-topbar__inner {
    min-height: 68px;
  }

  .bb-brand {
    font-size: 1.05rem;
  }

  .bb-hero {
    padding-top: 16px;
  }

  .bb-hero__panel {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .bb-hero__buttons,
  .bb-proof-strip,
  .bb-card-actions {
    gap: 12px;
  }

  .bb-hero__buttons .bb-btn,
  .bb-proof-strip span,
  .bb-checklist__item,
  .bb-card-actions .bb-btn,
  .bb-card-actions .bb-inline-link {
    width: 100%;
  }

  .bb-hero__buttons .bb-btn,
  .bb-card-actions .bb-btn {
    min-height: 50px;
  }

  .bb-mini-grid,
  .bb-tools-grid__stack,
  .bb-tools-grid__two,
  .bb-proof-story__grid {
    grid-template-columns: 1fr;
  }

  .bb-stat-card,
  .bb-stat-card--product {
    width: 100%;
    padding: 22px 16px;
    border-radius: 20px;
  }

  .bb-stat-card__topline,
  .bb-canvas-board__header,
  .bb-checklist__item {
    flex-direction: column;
    align-items: flex-start;
  }

  .bb-canvas-board {
    padding: 14px;
    border-radius: 16px;
  }

  .bb-canvas-board__grid {
    grid-template-columns: 1fr;
  }

  .bb-canvas-board__grid article {
    min-height: 0;
  }

  .bb-checklist__item span {
    text-align: left;
  }

  .bb-stat-card__title {
    font-size: clamp(1.4rem, 7vw, 1.9rem);
    line-height: 1.08;
  }

  .bb-stat-card__copy {
    line-height: 1.55;
  }

  .bb-proof-module__copy h2 {
    max-width: none;
  }

  .bb-proof-module__chips span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .bb-mini-card,
  .bb-card,
  .bb-panel,
  .bb-faq details,
  .bb-steps-v2 > div,
  .bb-proof-story,
  .bb-proof-module__panel {
    border-radius: 20px;
  }
}
