/* ============================================================
   OPTION B — Ice Swiss (inspired by Stripe)
   Light ice-white page · Dark navy text · Blue accent (#2563EB)
   Clean, Swiss precision · Stats in hero · Dark CTA + footer
   Overrides sb-style.css :root tokens for all -b pages.
   ============================================================ */

/* ---- ICE SWISS PALETTE ---- */
:root {
  --sb-dark: #0F172A;            /* dark navy — for footer + CTA sections */
  --sb-dark-elevated: #1E293B;
  --sb-ink: #0F172A;             /* dark text on light */
  --sb-slate: #64748B;
  --sb-muted: #94A3B8;
  --sb-white: #F8FAFD;           /* ice-white page background */
  --sb-alt-start: #EEF2FF;      /* light blue tint */
  --sb-alt-end: #E0E7FF;
  --sb-border: #E2E8F0;
  --sb-border-light: #F1F5F9;
  --sb-accent: #2563EB;          /* Stripe blue */
  --sb-accent-light: #3B82F6;
  --sb-accent-glow: rgba(37,99,235,0.08);
  --sb-font-display: 'Inter', system-ui, sans-serif;
}

/* Enterprise variant: same blue, slightly muted */
.bb-enterprise {
  --sb-accent: #1D4ED8;
  --sb-accent-light: #2563EB;
}


/* ---- OPTION B BADGE (top-right indicator) ---- */
.bb-preview-badge {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9999;
  background: var(--sb-accent);
  color: #0F172A;
  font-family: var(--sb-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  
  pointer-events: none;
}

/* ---- LIGHT NAV (Ice Swiss) ---- */
.bb-nav {
  background: rgba(248,250,253,0.88) !important;
  border-bottom: 1px solid #E2E8F0 !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
}
.bb-nav.sb-scrolled { background: rgba(248,250,253,0.96) !important; }
.bb-nav .sb-nav-logo img { filter: none; /* native brand blue #0D4FD3 */ }
.bb-nav .sb-nav-link,
.bb-nav .sb-nav-link.sb-dropdown-toggle,
.bb-nav .sb-lang-toggle { color: #334155 !important; }
.bb-nav .sb-nav-link:hover { color: #0F172A !important; }
.bb-nav .sb-dropdown-menu {
  background: #FFFFFF !important; box-shadow: 0 8px 30px rgba(0,0,0,0.08) !important;
  border-color: #0F172A !important;
}
.bb-nav .sb-dropdown-item { color: #475569 !important; }
.bb-nav .sb-dropdown-item:hover { background: rgba(15,23,42,0.04) !important; color: #0F172A !important; }

/* ---- BUTTONS ---- */
.bb-btn-copper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sb-font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 10px;
  background: #0F172A;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}
.bb-btn-copper:hover {
  background: #1E293B;
  transform: translateY(-1px);
}
.bb-btn-copper--sm { padding: 10px 22px; font-size: 13px; box-shadow: none; }

.bb-btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sb-font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 10px;
  background: transparent;
  color: #0F172A;
  text-decoration: none;
  border: 1.5px solid #E2E8F0;
  transition: border-color 0.2s ease;
}
.bb-btn-ghost-dark:hover {
  background: rgba(15,23,42,0.05);
  border-color: #94A3B8;
}

.bb-btn-primary-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sb-font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 999px;
  background: var(--sb-ink);
  color: #0F172A;
  text-decoration: none;
  transition: all 0.25s ease;
}
.bb-btn-primary-light:hover {
  background: var(--sb-accent);
  transform: translateY(-2px);
  
}

.bb-btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sb-font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 999px;
  background: transparent;
  color: var(--sb-ink);
  border: 1px solid var(--sb-border);
  text-decoration: none;
  transition: all 0.25s ease;
}
.bb-btn-ghost-light:hover { border-color: var(--sb-ink); }

/* ---- HERO: Dark editorial with centered copy + product below ---- */
.bb-hero {
  background: var(--sb-white);
  color: var(--sb-ink);
  padding: 160px 0 0;
  position: relative;
  overflow: hidden;
}
.bb-hero--no-visual { padding: 160px 0 120px; }
.bb-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(37,99,235,0.06), transparent 65%);
  pointer-events: none;
}
.bb-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.bb-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sb-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sb-accent-light);
  margin-bottom: 32px;
  padding: 8px 16px;
  border: 1px solid rgba(96,165,250,0.3);
  border-radius: 999px;
  background: rgba(96,165,250,0.08);
}
.bb-hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sb-accent);
  
}
.bb-hero-h1 {
  font-family: 'Space Grotesk', var(--sb-font-display);
  font-size: 76px;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: #0F172A;
  margin: 0 0 24px;
}
.bb-hero-h1--md { font-size: 60px; }
.bb-accent-copper { /* solid — no gradient, no clip */
  color: var(--sb-accent);
}
.bb-hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: #64748B;
  letter-spacing: -0.01em;
  margin: 0 auto 40px;
  max-width: 620px;
}
.bb-hero-ctas {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 80px;
}
.bb-hero--no-visual .bb-hero-ctas { margin-bottom: 0; }
.bb-hero-visual-wrap {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 24px;
}
.bb-hero-visual {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  border-bottom: none;
  box-shadow: 0 30px 80px rgba(15,23,42,0.08), 0 0 0 1px rgba(15,23,42,0.04);
  background: #FFFFFF;
}
.bb-hero-visual img { width: 100%; display: block; }

/* ---- LOGO STRIP ---- */
.bb-logos {
  padding: 64px 0;
  background: #F8FAFD;
  border-bottom: 1px solid var(--sb-border);
}
.bb-logos-label {
  text-align: center;
  font-family: var(--sb-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sb-muted);
  margin-bottom: 28px;
}
.bb-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.bb-logos-row img { height: 32px; width: auto; opacity: 0.55; filter: grayscale(1); transition: opacity 0.2s, filter 0.2s; }
.bb-logos-row img:hover { opacity: 0.85; filter: grayscale(0); }

/* ---- STAT CARDS ---- */
.bb-stats { padding: 120px 0 80px; background: var(--sb-white); }
.bb-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.bb-stat-card {
  padding: 40px 32px;
  background: var(--sb-white);
  border: 1px solid var(--sb-border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.bb-stat-card:hover {
  border-color: var(--sb-accent);
  transform: translateY(-4px);
}
.bb-stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--sb-accent);
  transition: width 0.4s ease;
}
.bb-stat-card:hover::after { width: 100%; }
.bb-stat-num {
  color: var(--sb-accent);
  font-family: var(--sb-font-display);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--sb-ink);
  margin-bottom: 12px;
}
.bb-stat-unit {
  font-size: 24px;
  color: var(--sb-accent);
  font-weight: 500;
}
.bb-stat-label {
  font-family: var(--sb-font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--sb-ink);
  margin-bottom: 6px;
}
.bb-stat-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--sb-slate);
}

/* ---- SECTION HEADER (shared) ---- */
.bb-section-eyebrow {
  font-family: var(--sb-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sb-accent);
  margin-bottom: 16px;
}
.bb-section-h2 {
  font-family: var(--sb-font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--sb-ink);
  margin: 0 0 16px;
}
.bb-section-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--sb-slate);
}

/* ---- PROBLEM/SOLUTION COMPARE ---- */
.bb-compare { padding: 120px 0; background: var(--sb-alt-start); }
.bb-compare-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}
.bb-compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.bb-compare-col {
  background: var(--sb-white);
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid var(--sb-border);
}
.bb-compare-col--bad { background: #FEF2F2; }
.bb-compare-col--good {
  background: rgba(96,165,250,0.06);
  border-color: rgba(96,165,250,0.3);
}
.bb-compare-col-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sb-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.bb-compare-col--bad .bb-compare-col-label { background: #FEE2E2; color: #EF4444; }
.bb-compare-col--good .bb-compare-col-label { background: rgba(96,165,250,0.15); color: var(--sb-accent); }
.bb-compare-col-title {
  font-family: var(--sb-font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--sb-ink);
  margin-bottom: 24px;
  line-height: 1.25;
}
.bb-compare-list { list-style: none; padding: 0; margin: 0; }
.bb-compare-list li {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--sb-slate);
  padding: 10px 0 10px 28px;
  position: relative;
  border-top: 1px solid var(--sb-border-light);
}
.bb-compare-list li:first-child { border-top: none; padding-top: 0; }
.bb-compare-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.bb-compare-list li:first-child::before { top: 4px; }
.bb-compare-col--bad .bb-compare-list li::before {
  background: #EF4444;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' fill='none' stroke='white' stroke-width='1.5'/%3E%3Cpath d='M5 5L11 11M11 5L5 11' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' fill='none' stroke='white' stroke-width='1.5'/%3E%3Cpath d='M5 5L11 11M11 5L5 11' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.bb-compare-col--good .bb-compare-list li::before {
  background: var(--sb-accent);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8L6.5 11.5L13 4.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8L6.5 11.5L13 4.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}
.bb-compare-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sb-font-display);
  color: var(--sb-accent);
  font-size: 32px;
  font-weight: 300;
}

/* ---- BENTO GRID ---- */
.bb-bento-section { padding: 120px 0; background: var(--sb-white); }
.bb-bento-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
  padding: 0 24px;
}
.bb-bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.bb-bento-card {
  background: #FFFFFF;
  border: 1px solid var(--sb-border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
.bb-bento-card:hover {
  border-color: var(--sb-accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.bb-bento-card--lg { grid-column: span 4; grid-row: span 2; }
.bb-bento-card--md { grid-column: span 2; }
.bb-bento-card-body { padding: 36px 32px 24px; }
.bb-bento-card-tag {
  display: inline-block;
  font-family: var(--sb-font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sb-accent);
  margin-bottom: 14px;
}
.bb-bento-card-title {
  font-family: var(--sb-font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--sb-ink);
  margin: 0 0 12px;
  line-height: 1.2;
}
.bb-bento-card--lg .bb-bento-card-title { font-size: 32px; letter-spacing: -0.03em; }
.bb-bento-card-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--sb-slate);
  margin-bottom: 24px;
}
.bb-bento-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sb-font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--sb-ink);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.bb-bento-card-link:hover { color: var(--sb-accent); gap: 10px; }
.bb-bento-card-visual {
  margin: 0 -1px -1px;
  background: var(--sb-alt-start);
  border-top: 1px solid var(--sb-border-light);
  padding: 24px 32px;
  overflow: hidden;
}
.bb-bento-card-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.bb-bento-card-stats {
  display: flex;
  gap: 20px;
  padding: 0 32px 28px;
  border-top: 1px solid var(--sb-border-light);
  padding-top: 20px;
}
.bb-bento-card-stat-num {
  font-family: var(--sb-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--sb-accent);
  letter-spacing: -0.03em;
}
.bb-bento-card-stat-label {
  font-size: 11px;
  color: var(--sb-slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- TESTIMONIAL PULL-QUOTE ---- */
.bb-quote { padding: 120px 0; background: var(--sb-alt-start); }
.bb-quote-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.bb-quote-mark {
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--sb-accent);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.4;
}
.bb-quote-text {
  font-family: var(--sb-font-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--sb-ink);
  margin: 0 0 32px;
}
.bb-quote-author {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.bb-quote-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sb-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F172A;
  font-family: var(--sb-font-display);
  font-weight: 700;
  font-size: 17px;
}
.bb-quote-author-info { text-align: left; }
.bb-quote-author-name {
  font-family: var(--sb-font-display);
  font-weight: 700;
  color: var(--sb-ink);
  font-size: 15px;
}
.bb-quote-author-role {
  font-size: 13px;
  color: var(--sb-slate);
}

/* ---- CAPABILITIES TABS ---- */
.bb-caps { padding: 120px 0; background: var(--sb-white); }
.bb-caps-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.bb-caps-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  padding: 0 24px;
}
.bb-caps-tab {
  font-family: var(--sb-font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--sb-alt-start);
  color: var(--sb-slate);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.bb-caps-tab:hover { background: var(--sb-alt-end); color: var(--sb-ink); }
.bb-caps-tab--active {
  background: var(--sb-ink);
  color: #0F172A;
  border-color: var(--sb-ink);
}
.bb-caps-panel {
  display: none;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.bb-caps-panel--active { display: grid; }
.bb-caps-panel-content h3 {
  font-family: var(--sb-font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--sb-ink);
  margin: 0 0 20px;
}
.bb-caps-panel-content p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--sb-slate);
  margin: 0 0 28px;
}
.bb-caps-panel-features { list-style: none; padding: 0; margin: 0 0 32px; }
.bb-caps-panel-features li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--sb-ink);
  padding: 8px 0 8px 28px;
  position: relative;
}
.bb-caps-panel-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 14px;
  background: var(--sb-accent);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8L6.5 11.5L13 4.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8L6.5 11.5L13 4.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}
.bb-caps-panel-visual {
  background: var(--sb-alt-start);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--sb-border);
  padding: 24px;
}
.bb-caps-panel-visual img { width: 100%; display: block; border-radius: 12px; }

/* ---- AWARDS STRIP ---- */
.bb-awards { padding: 80px 0; background: var(--sb-white); border-top: 1px solid var(--sb-border); }
.bb-awards-label {
  text-align: center;
  font-family: var(--sb-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sb-muted);
  margin-bottom: 40px;
}
.bb-awards-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.bb-awards-row img {
  height: 56px;
  width: auto;
  opacity: 0.75;
  filter: grayscale(0.3);
  transition: opacity 0.2s, filter 0.2s;
}
.bb-awards-row img:hover { opacity: 1; filter: grayscale(0); }

/* ---- FINAL CTA ---- */
.bb-final-cta {
  padding: 120px 24px;
  background: var(--sb-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bb-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,79,211,0.08);
  pointer-events: none;
}
.bb-final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.bb-final-cta-h2 {
  font-family: var(--sb-font-display);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #F8FAFD;
  margin: 0 0 20px;
}
.bb-final-cta-h2 .bb-accent-copper { color: #60A5FA; }
.bb-final-cta-sub {
  font-size: 17px;
  color: rgba(248,250,253,0.55);
  margin: 0 0 36px;
  line-height: 1.6;
}
.bb-final-cta .bb-btn-copper { background: #2563EB; color: #fff; }
.bb-final-cta .bb-btn-copper:hover { background: #3B82F6; }
.bb-final-cta .bb-btn-ghost-dark { border-color: rgba(255,255,255,0.15); color: #F8FAFD; }
.bb-final-cta-ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ---- EDITORIAL TIMELINE (for about page) ---- */
.bb-timeline { padding: 120px 0; background: var(--sb-white); }
.bb-timeline-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.bb-timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--sb-border);
  align-items: start;
}
.bb-timeline-item:first-child { border-top: none; padding-top: 0; }
.bb-timeline-year {
  font-family: var(--sb-font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--sb-accent);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.bb-timeline-title {
  font-family: var(--sb-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--sb-ink);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.bb-timeline-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--sb-slate);
}

/* ---- FOUNDER CARDS (for about page) ---- */
.bb-founders { padding: 120px 0; background: var(--sb-alt-start); }
.bb-founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.bb-founder-card {
  background: var(--sb-white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--sb-border);
  transition: all 0.3s ease;
}
.bb-founder-card:hover {
  border-color: var(--sb-accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.bb-founder-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.bb-founder-card-body { padding: 32px 36px; }
.bb-founder-card-name {
  font-family: var(--sb-font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--sb-ink);
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.bb-founder-card-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--sb-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.bb-founder-card-bio {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--sb-slate);
  margin-bottom: 16px;
}
.bb-founder-card-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sb-font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--sb-ink);
  text-decoration: none;
  transition: color 0.2s;
}
.bb-founder-card-linkedin:hover { color: var(--sb-accent); }
.bb-founder-card-linkedin svg { width: 16px; height: 16px; fill: currentColor; }

/* ---- VALUES GRID (for about page) ---- */
.bb-values { padding: 120px 0; background: var(--sb-white); }
.bb-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.bb-value-card {
  padding: 40px 32px;
  border: 1px solid var(--sb-border);
  border-radius: 20px;
  background: var(--sb-white);
  transition: all 0.3s ease;
}
.bb-value-card:hover {
  border-color: var(--sb-accent);
  transform: translateY(-4px);
}
.bb-value-num {
  font-family: var(--sb-font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--sb-accent);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.bb-value-title {
  font-family: var(--sb-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--sb-ink);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.bb-value-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--sb-slate);
}

/* ---- SPLIT BLOCK (for platform/demo pages) ---- */
.bb-split { padding: 120px 0; background: var(--sb-white); }
.bb-split--dark { background: var(--sb-dark); color: #0F172A; }
.bb-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
}
.bb-split--reverse .bb-split-content { order: 2; }
.bb-split-content h2 {
  font-family: var(--sb-font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--sb-ink);
  margin: 0 0 20px;
}
.bb-split--dark .bb-split-content h2 { color: #0F172A; }
.bb-split-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--sb-slate);
  margin: 0 0 28px;
}
.bb-split--dark .bb-split-content p { color: #64748B; }
.bb-split-visual {
  background: var(--sb-alt-start);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--sb-border);
  padding: 20px;
}
.bb-split--dark .bb-split-visual {
  background: var(--sb-dark-elevated);
  border-color: #0F172A;
}
.bb-split-visual img { width: 100%; display: block; border-radius: 12px; }

/* ---- PAIN POINTS (for industry pages) ---- */
.bb-pains { padding: 120px 0; background: var(--sb-alt-start); }
.bb-pains-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
  padding: 0 24px;
}
.bb-pains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.bb-pain-card {
  padding: 40px 32px;
  background: var(--sb-white);
  border: 1px solid var(--sb-border);
  border-radius: 20px;
  transition: all 0.3s ease;
}
.bb-pain-card:hover { transform: translateY(-4px); border-color: var(--sb-accent); }
.bb-pain-icon {
  width: 48px;
  height: 48px;
  background: var(--sb-accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--sb-accent);
}
.bb-pain-title {
  font-family: var(--sb-font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--sb-ink);
  margin: 0 0 12px;
  line-height: 1.25;
}
.bb-pain-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--sb-slate);
  margin: 0 0 20px;
}
.bb-pain-solution {
  padding: 16px;
  background: rgba(96,165,250,0.06);
  border-left: 3px solid var(--sb-accent);
  border-radius: 0 8px 8px 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--sb-ink);
}
.bb-pain-solution strong { color: var(--sb-accent); font-weight: 700; }

/* ---- DEMO FORM SECTION ---- */
.bb-demo-section {
  padding: 160px 0 120px;
  background: var(--sb-white);
  color: #0F172A;
  position: relative;
  overflow: hidden;
}
.bb-demo-section::before { display: none; }
.bb-demo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}
.bb-demo-content h1 {
  font-family: var(--sb-font-display);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #0F172A;
  margin: 0 0 24px;
}
.bb-demo-content p.lead {
  font-size: 18px;
  line-height: 1.6;
  color: #64748B;
  margin: 0 0 40px;
}
.bb-demo-bullets { list-style: none; padding: 0; margin: 0 0 48px; }
.bb-demo-bullets li {
  padding: 16px 0 16px 44px;
  position: relative;
  border-top: 1px solid rgba(15,23,42,0.08);
  font-size: 15px;
  line-height: 1.5;
  color: #475569;
}
.bb-demo-bullets li:first-child { border-top: none; padding-top: 16px; }
.bb-demo-bullets li strong { display: block; font-family: var(--sb-font-display); color: #0F172A; margin-bottom: 4px; font-weight: 700; }
.bb-demo-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 28px;
  height: 28px;
  background: rgba(96,165,250,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bb-demo-bullets li::after {
  content: '';
  position: absolute;
  left: 10px;
  top: 30px;
  width: 8px;
  height: 4px;
  border-left: 1.5px solid var(--sb-accent);
  border-bottom: 1.5px solid var(--sb-accent);
  transform: rotate(-45deg);
}
.bb-demo-form-wrap {
  background: rgba(15,23,42,0.03);
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 40px 36px;
  backdrop-filter: blur(12px);
}
.bb-demo-form-wrap h3 {
  font-family: var(--sb-font-display);
  font-size: 20px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.bb-demo-form-wrap .bb-demo-form-sub {
  font-size: 14px;
  color: #64748B;
  margin-bottom: 24px;
}

/* Trust strip on dark */
.bb-trust-dark {
  padding: 60px 24px;
  background: var(--sb-dark);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.bb-trust-dark-label {
  font-family: var(--sb-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.bb-trust-dark-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 16px;
  flex-wrap: wrap;
}
.bb-trust-dark-row img {
  height: 40px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(1) brightness(1.4);
  transition: opacity 0.2s, filter 0.2s;
}
.bb-trust-dark-row img:hover { opacity: 0.85; filter: grayscale(0) brightness(1); }

/* ---- FAQ LIST ---- */
.bb-faq { padding: 120px 0; background: var(--sb-white); }
.bb-faq-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.bb-faq-header { text-align: center; margin-bottom: 48px; }
.bb-faq-item {
  border-top: 1px solid var(--sb-border);
  padding: 28px 0;
}
.bb-faq-item:last-child { border-bottom: 1px solid var(--sb-border); }
.bb-faq-q {
  font-family: var(--sb-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--sb-ink);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.bb-faq-a {
  font-size: 15px;
  line-height: 1.7;
  color: var(--sb-slate);
  margin: 0;
}

/* ---- Footer on Option B: dark variant ---- */
.bb-footer {
  background: var(--sb-dark);
  color: rgba(248,250,253,0.6);
  padding: 80px 24px 32px;
}
.bb-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
.bb-footer-brand img { height: 18px; filter: brightness(0) invert(1); margin-bottom: 16px; /* pure white */ }
.bb-footer-tagline { font-size: 13px; color: #94A3B8; margin-bottom: 20px; line-height: 1.55; }
.bb-footer-contact { font-size: 13px; line-height: 1.8; }
.bb-footer-contact a { color: #64748B; text-decoration: none; }
.bb-footer-contact a:hover { color: var(--sb-accent-light); }
.bb-footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.bb-footer-col h4 {
  font-family: var(--sb-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin: 0 0 16px;
}
.bb-footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(226,232,240,0.45);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s;
}
.bb-footer-col a:hover { color: #0F172A; }
.bb-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 16px;
}
.bb-footer-bottom a { color: #94A3B8; text-decoration: none; margin-left: 20px; }
.bb-footer-bottom a:hover { color: #0F172A; }

/* ---- Fade-in animation ---- */
.bb-fade { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.bb-visible { opacity: 1; transform: none; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .bb-hero { padding: 120px 0 0; }
  .bb-hero--no-visual { padding: 120px 0 80px; }
  .bb-hero-h1 { font-size: 52px; }
  .bb-hero-h1--md { font-size: 44px; }
  .bb-hero-sub { font-size: 17px; }
  .bb-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bb-compare-grid { grid-template-columns: 1fr; gap: 20px; }
  .bb-compare-arrow { transform: rotate(90deg); }
  .bb-bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bb-bento-card--lg, .bb-bento-card--md { grid-column: span 2; grid-row: auto; }
  .bb-quote-text { font-size: 24px; }
  .bb-caps-panel { grid-template-columns: 1fr; gap: 32px; }
  .bb-final-cta-h2 { font-size: 38px; }
  .bb-demo-grid { grid-template-columns: 1fr; gap: 48px; }
  .bb-split-grid { grid-template-columns: 1fr; gap: 48px; }
  .bb-split--reverse .bb-split-content { order: 0; }
  .bb-section-h2 { font-size: 34px; }
  .bb-founders-grid { grid-template-columns: 1fr; }
  .bb-values-grid { grid-template-columns: 1fr; }
  .bb-pains-grid { grid-template-columns: 1fr; }
  .bb-timeline-item { grid-template-columns: 80px 1fr; gap: 24px; }
  .bb-footer-top { grid-template-columns: 1fr; gap: 40px; }
  .bb-footer-links { grid-template-columns: repeat(2, 1fr); }
  .bb-demo-content h1 { font-size: 40px; }
}
@media (max-width: 640px) {
  .bb-hero-h1 { font-size: 38px; }
  .bb-hero-h1--md { font-size: 34px; }
  .bb-stats-grid { grid-template-columns: 1fr; }
  .bb-bento-grid { grid-template-columns: 1fr; }
  .bb-bento-card--lg, .bb-bento-card--md { grid-column: span 1; }
  .bb-section-h2 { font-size: 28px; }
  .bb-quote-text { font-size: 20px; }
  .bb-stat-num { font-size: 42px; }
  .bb-awards-row, .bb-trust-dark-row { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .bb-timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .bb-final-cta-h2 { font-size: 30px; }
  .bb-preview-badge { top: auto; bottom: 20px; right: 12px; }
}
