/* BCOM SMS — public site (landing, auth, marketing pages) */

:root {
  --bc-blue: #1e88e5;
  --bc-blue-dark: #0d47a1;
  --bc-navy: #003366;
  --bc-navy-deep: #002244;
  --bc-cyan: #4dd2ff;
  --bc-cyan-soft: #90e0ff;
  --bc-gradient: linear-gradient(135deg, #4dd2ff 0%, #1e88e5 48%, #003366 100%);
  --bc-gradient-btn: linear-gradient(90deg, #4dd2ff 0%, #29b6f6 30%, #1e88e5 65%, #1565c0 100%);
  --bc-gradient-hero: linear-gradient(165deg, #002244 0%, #003366 35%, #0d47a1 70%, #1565c0 100%);

  --bc-bg: #f4f9fd;
  --bc-bg-alt: #eef6fc;
  --bc-surface: #ffffff;
  --bc-text: #0a2540;
  --bc-text-muted: #5a7a94;
  --bc-border: #d4e8f7;
  --bc-border-soft: #e8edf3;

  --bc-radius: 12px;
  --bc-radius-lg: 18px;
  --bc-shadow: 0 1px 3px rgba(0, 51, 102, 0.06), 0 4px 16px rgba(30, 136, 229, 0.08);
  --bc-shadow-lg: 0 16px 48px rgba(0, 36, 68, 0.12);

  --bc-container: 1200px;
  --bc-nav-h: 64px;
  --bc-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--bc-nav-h);
}

body.bc-site {
  margin: 0;
  font-family: var(--bc-font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--bc-text);
  background: var(--bc-surface);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--bc-blue); text-decoration: none; }
a:hover { color: var(--bc-blue-dark); }

/* ── Layout ── */
.bc-container {
  width: min(100% - 2.5rem, var(--bc-container));
  margin-inline: auto;
}

.bc-main { min-height: 50vh; }

/* Fixed nav offset — hero/page-hero pull up so no white gap under header */
.bc-nav + .bc-main {
  padding-top: var(--bc-nav-h);
}

.bc-nav + .bc-main > .bc-hero:first-child {
  margin-top: calc(-1 * var(--bc-nav-h));
  padding-top: calc(4rem + var(--bc-nav-h));
}

.bc-nav + .bc-main > .bc-hero.bc-hero--centered:first-child {
  padding-top: calc(5rem + var(--bc-nav-h));
}

.bc-nav + .bc-main > .bc-hero.bc-hero--split:first-child {
  padding-top: calc(4rem + var(--bc-nav-h));
}

.bc-nav + .bc-main > .bc-hero.bc-hero--immersive:first-child {
  margin-top: calc(-1 * var(--bc-nav-h));
  padding-top: 0;
  min-height: unset;
  max-height: none;
}

.bc-nav + .bc-main > .bc-page-hero:first-child {
  margin-top: calc(-1 * var(--bc-nav-h));
  padding-top: calc(3.5rem + var(--bc-nav-h));
}

/* ── Logo ── */
.bc-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.bc-nav__brand .bc-logo { text-decoration: none; }

.bc-logo__frame,
.bc-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  border: 3px solid #4fc3f7;
  box-shadow: 0 4px 14px rgba(30, 136, 229, 0.22);
  animation: bc-logo-pop 2.6s ease-in-out infinite;
  will-change: transform;
}

.bc-logo__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bc-logo--nav .bc-logo__frame,
.bc-logo--nav .bc-logo__mark {
  width: 40px;
  height: 40px;
  border-width: 2px;
}

/* Nav logo: no pop animation — keeps header height fixed */
.bc-nav .bc-logo__frame,
.bc-nav .bc-logo__mark {
  animation: none;
  transform: none;
  box-shadow: 0 2px 8px rgba(30, 136, 229, 0.18);
}

.bc-logo--lg .bc-logo__frame {
  width: 52px;
  height: 52px;
}

.bc-logo--xl .bc-logo__frame {
  width: 88px;
  height: 88px;
  border-width: 4px;
  animation: bc-logo-pop-hero 2.4s ease-in-out infinite;
}

.bc-logo--xl .bc-logo__mark {
  width: 88px;
  height: 88px;
  border-width: 4px;
  animation: bc-logo-pop-hero 2.4s ease-in-out infinite;
}

.bc-logo__mark--on-dark {
  border-color: var(--bc-cyan);
  box-shadow: 0 4px 18px rgba(77, 210, 255, 0.35);
  animation-name: bc-logo-pop-hero;
  animation-duration: 2.4s;
}

.bc-logo__frame--on-dark {
  border-color: var(--bc-cyan);
  box-shadow: 0 4px 18px rgba(77, 210, 255, 0.35);
  animation-name: bc-logo-pop-hero;
  animation-duration: 2.4s;
}

.bc-logo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.bc-logo__mark--img {
  animation: none;
  transform: none;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  width: auto;
  height: auto;
}

.bc-logo__mark--img .bc-logo__img {
  width: auto;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.bc-logo--nav .bc-logo__mark--img .bc-logo__img {
  height: 48px;
}

.bc-logo--lg .bc-logo__mark--img .bc-logo__img {
  height: 52px;
}

.bc-logo--xl .bc-logo__mark--img .bc-logo__img {
  height: 80px;
}

.bc-logo__text--name-only {
  justify-content: center;
}

.bc-logo__text--name-only strong {
  font-size: 1rem;
}

@keyframes bc-logo-pop {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 14px rgba(30, 136, 229, 0.22);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 8px 22px rgba(77, 210, 255, 0.4);
  }
}

@keyframes bc-logo-pop-hero {
  0%, 100% {
    transform: scale(1) translateY(0);
    box-shadow: 0 4px 18px rgba(77, 210, 255, 0.35);
  }
  50% {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 28px rgba(77, 210, 255, 0.5);
  }
}

.bc-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.bc-logo__text strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--bc-navy);
  letter-spacing: -0.02em;
}

.bc-logo__text small {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--bc-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Navigation ── */
.bc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(0, 51, 102, 0.06);
  overflow: hidden;
}

.bc-nav__inner {
  width: min(100% - 2.5rem, var(--bc-container));
  margin-inline: auto;
  height: var(--bc-nav-h);
  min-height: var(--bc-nav-h);
  max-height: var(--bc-nav-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.bc-nav__brand {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: var(--bc-nav-h);
  max-height: var(--bc-nav-h);
  overflow: hidden;
}

.bc-nav__brand .bc-logo__text strong {
  font-size: 0.9rem;
  line-height: 1.15;
}

.bc-nav__brand .bc-logo__text small {
  font-size: 0.58rem;
  line-height: 1.2;
}

.bc-nav__right {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.bc-nav__menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.bc-nav__menu a,
.bc-nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bc-navy);
  white-space: nowrap;
  transition: color 0.15s;
  text-decoration: none;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}

.bc-nav__menu a:hover,
.bc-nav__link:hover { color: var(--bc-blue); }

.bc-nav__dropdown {
  position: relative;
}

.bc-nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bc-navy);
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}

.bc-nav__dropdown-toggle:hover { color: var(--bc-blue); }

.bc-nav__dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 0;
  min-width: 15rem;
  max-width: 18rem;
  padding: 0.5rem;
  background: #fff;
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  box-shadow: var(--bc-shadow-lg);
  z-index: 300;
}

.bc-nav__dropdown-panel a {
  display: block;
  padding: 0.55rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--bc-text);
  border-radius: 8px;
  white-space: normal;
}

.bc-nav__dropdown-panel a:hover {
  background: var(--bc-bg);
  color: var(--bc-blue);
}

.bc-nav__dropdown-all {
  margin-top: 0.25rem;
  padding-top: 0.65rem !important;
  border-top: 1px solid var(--bc-border-soft);
  font-weight: 700 !important;
  color: var(--bc-blue) !important;
}

.bc-nav__dropdown.is-open .bc-nav__dropdown-panel,
.bc-nav__dropdown:hover .bc-nav__dropdown-panel,
.bc-nav__dropdown:focus-within .bc-nav__dropdown-panel {
  display: block;
}

.bc-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-left: 0.5rem;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(0, 51, 102, 0.1);
}

.bc-nav__signin {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bc-text-muted) !important;
  white-space: nowrap;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.bc-nav__signin:hover {
  color: var(--bc-blue) !important;
  background: rgba(30, 136, 229, 0.06);
}

.bc-nav__actions .bc-btn {
  flex-shrink: 0;
  position: relative;
  z-index: 0;
}

.bc-nav__actions .bc-btn:hover {
  transform: none;
}

.bc-nav__actions .bc-btn--primary {
  box-shadow: 0 3px 12px rgba(30, 136, 229, 0.26);
}

.bc-nav__actions .bc-btn--primary:hover {
  box-shadow: 0 5px 16px rgba(30, 136, 229, 0.34);
}

.bc-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}

.bc-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--bc-navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

body.bc-nav-open .bc-nav__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.bc-nav-open .bc-nav__toggle span:nth-child(2) { opacity: 0; }
body.bc-nav-open .bc-nav__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Buttons ── */
.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  -webkit-appearance: none;
  appearance: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.bc-btn:hover { transform: translateY(-1px); }

.bc-btn--primary {
  color: #fff;
  background: var(--bc-gradient-btn);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-shadow: 0 4px 14px rgba(30, 136, 229, 0.28);
}

.bc-btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 48%);
  pointer-events: none;
  z-index: 0;
}

.bc-btn--primary > * {
  position: relative;
  z-index: 1;
}

.bc-btn--primary:hover {
  color: #fff;
  background: linear-gradient(90deg, #5dd8ff 0%, #42bff8 30%, #2196f3 65%, #1976d2 100%);
  box-shadow: 0 6px 20px rgba(30, 136, 229, 0.38);
}

.bc-btn--secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.bc-page-hero .bc-btn--secondary,
.bc-section:not(.bc-hero) .bc-btn--secondary {
  color: var(--bc-navy);
  background: transparent;
  border-color: var(--bc-border);
}

.bc-page-hero .bc-btn--secondary:hover,
.bc-section:not(.bc-hero) .bc-btn--secondary:hover {
  color: var(--bc-blue-dark);
  background: var(--bc-bg);
  border-color: var(--bc-blue);
}

.bc-btn--white {
  color: var(--bc-navy);
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.bc-btn--white:hover { color: var(--bc-blue-dark); }

.bc-btn--nav {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.bc-btn--lg { padding: 0.85rem 1.75rem; font-size: 1rem; }
.bc-btn--block { width: 100%; }

/* ── Hero (landing) ── */
.bc-hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
  background: var(--bc-gradient-hero);
  color: #fff;
}

.bc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(77, 210, 255, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(30, 136, 229, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.bc-hero--immersive {
  padding: 0;
  background: #fff;
  min-height: unset;
  max-height: none;
  display: block;
  overflow: visible;
}

.bc-hero--immersive::before {
  display: none;
}

.bc-hero--immersive .bc-hero__media {
  position: relative;
  z-index: 0;
  width: 100%;
  height: clamp(300px, 44vw, 520px);
}

.bc-hero--immersive .bc-hero-carousel {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  min-height: clamp(300px, 44vw, 520px);
  max-width: none;
  margin: 0;
  aspect-ratio: auto;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: #eef2f6;
}

.bc-hero--immersive .bc-hero-carousel__track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bc-hero--immersive .bc-hero-carousel__slide {
  overflow: hidden;
  transition: opacity 0.45s ease;
}

.bc-hero--immersive .bc-hero-carousel__slide.is-active {
  opacity: 1;
}

.bc-hero--immersive .bc-hero-carousel__shade {
  display: none;
}

.bc-hero--immersive .bc-hero__body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2.5rem 0 3rem;
  background: #fff;
}

.bc-hero--immersive .bc-hero__copy {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: var(--bc-navy);
}

.bc-hero--immersive h1 {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  color: #003366;
  text-shadow: none;
}

.bc-hero--immersive .bc-hero__text {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  color: #3d5a73;
  text-shadow: none;
  opacity: 1;
}

.bc-hero--immersive .bc-actions {
  justify-content: center;
}

.bc-hero--immersive .bc-btn--secondary {
  color: #003366;
  background: #ffffff;
  border: 2px solid #cbd5e1;
  box-shadow: 0 2px 10px rgba(0, 51, 102, 0.06);
}

.bc-hero--immersive .bc-btn--secondary:hover {
  color: #094bb8;
  background: #f0f9ff;
  border-color: #0b6bff;
  box-shadow: 0 4px 14px rgba(11, 107, 255, 0.12);
}

.bc-hero--immersive .bc-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 2.5rem;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  opacity: 1;
  color: #64748b;
}

.bc-hero--immersive .bc-trust li {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-align: center;
  min-width: 5.5rem;
  color: #64748b;
  text-shadow: none;
}

.bc-hero--immersive .bc-trust strong {
  color: #0b6bff;
  text-shadow: none;
}

.bc-hero--immersive .bc-hero-carousel__dots {
  bottom: 1rem;
  z-index: 2;
}

.bc-hero--immersive .bc-hero-carousel__dot {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.4);
}

.bc-hero--immersive .bc-hero-carousel__dot.is-active {
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.55);
}

.bc-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Centered hero — home page */
.bc-hero--centered {
  padding: 5rem 0 4.5rem;
  text-align: center;
}

/* Split hero — copy + image carousel */
.bc-hero--split {
  padding: 4.5rem 0 5rem;
}

.bc-hero--split .bc-hero__inner {
  position: relative;
  z-index: 1;
}

.bc-hero--split .bc-hero__copy {
  text-align: left;
  align-items: flex-start;
}

.bc-hero--split h1 {
  max-width: 12em;
  text-align: left;
}

.bc-hero--split .bc-hero__text {
  margin-inline: 0;
  max-width: 520px;
  text-align: left;
}

.bc-hero--split .bc-actions {
  justify-content: flex-start;
}

.bc-hero--split .bc-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
  max-width: 420px;
  margin-inline: 0;
  text-align: left;
}

.bc-hero--split .bc-trust li {
  text-align: left;
  min-width: 0;
}

.bc-hero__visual {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin-inline: auto;
}

/* Hero image carousel */
.bc-hero-carousel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(0, 20, 50, 0.4);
  border: 1px solid rgba(77, 210, 255, 0.25);
  box-shadow:
    0 28px 72px rgba(0, 15, 40, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.bc-hero-carousel__track {
  position: absolute;
  inset: 0;
}

.bc-hero-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
  pointer-events: none;
}

.bc-hero-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.bc-hero-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bc-hero--immersive .bc-hero-carousel__slide img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.bc-hero-carousel__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 36, 68, 0.05) 0%,
    rgba(0, 36, 68, 0) 40%,
    rgba(0, 20, 50, 0.35) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.bc-hero-carousel__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 2;
}

.bc-hero-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: transform 0.3s ease, background 0.3s ease;
}

.bc-hero-carousel__dot.is-active {
  background: var(--bc-cyan);
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(77, 210, 255, 0.6);
}

.bc-hero--centered .bc-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin-inline: auto;
}

.bc-hero--centered .bc-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bc-hero--centered h1 {
  max-width: 820px;
}

.bc-hero--centered .bc-hero__text {
  margin-inline: auto;
  max-width: 640px;
}

.bc-hero--centered .bc-actions {
  justify-content: center;
}

.bc-hero--centered .bc-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 2.5rem;
  max-width: 720px;
  margin-inline: auto;
}

.bc-hero--centered .bc-trust li {
  text-align: center;
  min-width: 5.5rem;
}

/* Live platform panel (replaces static preview card) */
.bc-hero--centered .bc-live-panel {
  max-width: 560px;
  margin: 3rem auto 0;
  text-align: left;
}

.bc-live-panel {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  box-shadow:
    0 24px 64px rgba(0, 20, 50, 0.35),
    0 0 0 1px rgba(77, 210, 255, 0.12) inset;
  overflow: hidden;
  color: var(--bc-text);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bc-live-panel:hover {
  transform: translateY(-4px);
  box-shadow:
    0 32px 72px rgba(0, 20, 50, 0.4),
    0 0 0 1px rgba(77, 210, 255, 0.2) inset;
}

.bc-live-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(90deg, #f0f9ff 0%, #fff 100%);
  border-bottom: 1px solid #e2e8f0;
}

.bc-live-panel__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--bc-navy);
}

.bc-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: bc-live-pulse 2s ease-in-out infinite;
}

@keyframes bc-live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.bc-live-panel__time {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--bc-text-muted);
  white-space: nowrap;
}

.bc-live-panel__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid #f1f5f9;
}

.bc-live-metric {
  padding: 1.15rem 0.75rem;
  text-align: center;
  border-right: 1px solid #f1f5f9;
}

.bc-live-metric:last-child { border-right: none; }

.bc-live-metric--highlight .bc-live-metric__value {
  background: linear-gradient(135deg, #0369a1, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bc-live-metric__value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--bc-navy);
  font-variant-numeric: tabular-nums;
}

.bc-live-metric__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bc-text-muted);
}

.bc-live-panel__feed {
  padding: 1rem 1.25rem 1.25rem;
  background: #fafcff;
}

.bc-live-panel__feed-title {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bc-text-muted);
}

.bc-live-feed {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.bc-live-feed__empty {
  padding: 1.25rem 1rem;
  text-align: center;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
}

.bc-live-feed__empty-icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.bc-live-feed__empty p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--bc-text-muted);
}

.bc-live-feed__item {
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  border-left: 3px solid #94a3b8;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bc-live-feed__item--delivered {
  border-left-color: #22c55e;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.08);
}

.bc-live-feed__item--failed { border-left-color: #ef4444; }
.bc-live-feed__item--sent,
.bc-live-feed__item--queued,
.bc-live-feed__item--pending { border-left-color: #f59e0b; }

.bc-live-feed__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.bc-live-feed__sender {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--bc-navy);
  letter-spacing: 0.04em;
}

.bc-live-feed__badge {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #f0fdf4;
  color: #15803d;
}

.bc-live-feed__item--failed .bc-live-feed__badge {
  background: #fef2f2;
  color: #b91c1c;
}

.bc-live-feed__item--sent .bc-live-feed__badge,
.bc-live-feed__item--queued .bc-live-feed__badge,
.bc-live-feed__item--pending .bc-live-feed__badge {
  background: #fffbeb;
  color: #b45309;
}

.bc-live-feed__text {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--bc-text);
}

.bc-live-feed__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--bc-text-muted);
}

.bc-trust strong {
  font-variant-numeric: tabular-nums;
}

/* Home page — professional centered sections */
.bc-home .bc-section-head {
  text-align: center;
  margin-inline: auto;
}

.bc-home .bc-step:not(.bc-step--pro) {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bc-home .bc-step__num {
  margin-bottom: 1rem;
}

.bc-home .bc-step--pro {
  text-align: initial;
}

.bc-home .bc-card {
  text-align: center;
}

.bc-home .bc-card--feature h3 {
  display: block;
  text-align: center;
}

.bc-home .bc-card h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.bc-home .pkg-grid {
  max-width: 1100px;
  margin-inline: auto;
}

.bc-section--pricing .bc-section-head {
  margin-bottom: 2rem;
}

.bc-section--pricing .pkg-grid {
  max-width: 1100px;
  margin-inline: auto;
}

.bc-home .bc-api-url--center {
  text-align: center;
}

.bc-home .bc-grid-2--center {
  max-width: 960px;
  margin-inline: auto;
}

.bc-home .bc-faq {
  margin-inline: auto;
  max-width: 1100px;
}

.bc-home .bc-cta .bc-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bc-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bc-cyan);
  background: rgba(77, 210, 255, 0.12);
  border: 1px solid rgba(77, 210, 255, 0.25);
  border-radius: 999px;
}

.bc-eyebrow--dark {
  color: var(--bc-blue);
  background: rgba(30, 136, 229, 0.08);
  border-color: rgba(30, 136, 229, 0.15);
}

.bc-hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.bc-hero__text {
  margin: 0 0 2rem;
  max-width: 520px;
  font-size: 1.1rem;
  line-height: 1.75;
  opacity: 0.92;
}

.bc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.bc-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

.bc-trust strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bc-cyan-soft);
}

/* Console preview mockup */
.bc-preview {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  transform: perspective(1200px) rotateY(-4deg) rotateX(3deg);
  transition: transform 0.4s ease;
}

.bc-preview:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(1deg);
}

.bc-preview__bar {
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bc-text-muted);
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}

.bc-preview__body { padding: 1.25rem; }

.bc-preview__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.bc-preview__row div {
  padding: 0.75rem;
  background: #f8fcff;
  border: 1px solid var(--bc-border);
  border-radius: 10px;
}

.bc-preview__row span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bc-text-muted);
}

.bc-preview__row strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bc-navy);
}

.bc-preview__msg {
  padding: 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--bc-text);
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 10px;
}

.bc-preview__msg em {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  color: #16a34a;
}

/* ── Page hero (inner pages) ── */
.bc-page-hero {
  padding: 3.5rem 0 3rem;
  background: linear-gradient(180deg, var(--bc-bg) 0%, var(--bc-surface) 100%);
  border-bottom: 1px solid var(--bc-border-soft);
  text-align: center;
}

.bc-page-hero .bc-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bc-page-hero .bc-eyebrow {
  margin-inline: auto;
}

.bc-page-hero h1 {
  margin: 0 0 1rem;
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--bc-navy);
}

.bc-page-hero__lead {
  margin: 0 0 1.75rem;
  max-width: 600px;
  font-size: 1.1rem;
  color: var(--bc-text-muted);
  line-height: 1.7;
}

.bc-page-hero .bc-actions {
  margin-bottom: 0;
  justify-content: center;
}

/* ── Sections ── */
.bc-section {
  padding: 4.5rem 0;
}

.bc-section--alt {
  background: var(--bc-bg);
}

.bc-section--soft {
  background: var(--bc-bg-alt);
}

.bc-section--center {
  text-align: center;
  padding: 6rem 0;
}

.bc-section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
  text-align: center;
  margin-inline: auto;
}

.bc-section--center .bc-section-head {
  margin-inline: auto;
}

.bc-section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--bc-navy);
}

.bc-section-head p:not(.bc-eyebrow):not(.bc-section-head__lead) {
  margin: 0;
  font-size: 1.05rem;
  color: var(--bc-text-muted);
}

.bc-section-head__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--bc-text-muted);
}

/* ── Premium section backgrounds ── */
.bc-section--platform,
.bc-section--features,
.bc-section--pricing,
.bc-section--api,
.bc-section--faq {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.bc-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bc-section__content {
  position: relative;
  z-index: 1;
}

.bc-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

.bc-blob--cyan {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  background: radial-gradient(circle, rgba(77, 210, 255, 0.55) 0%, transparent 70%);
  top: -15%;
  right: -10%;
  animation: bc-blob-drift 18s ease-in-out infinite;
}

.bc-blob--blue {
  width: min(45vw, 420px);
  height: min(45vw, 420px);
  background: radial-gradient(circle, rgba(30, 136, 229, 0.45) 0%, transparent 70%);
  bottom: -20%;
  left: -8%;
  animation: bc-blob-drift 22s ease-in-out infinite reverse;
}

.bc-blob--violet {
  width: min(50vw, 480px);
  height: min(50vw, 480px);
  background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, transparent 70%);
  top: 10%;
  left: -12%;
  animation: bc-blob-drift 20s ease-in-out infinite;
}

.bc-blob--mint {
  width: min(40vw, 400px);
  height: min(40vw, 400px);
  background: radial-gradient(circle, rgba(45, 212, 191, 0.28) 0%, transparent 70%);
  bottom: -5%;
  right: -5%;
  animation: bc-blob-drift 16s ease-in-out infinite reverse;
}

.bc-blob--gold {
  width: min(35vw, 360px);
  height: min(35vw, 360px);
  background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
  top: 5%;
  left: 15%;
  animation: bc-blob-drift 24s ease-in-out infinite;
}

.bc-blob--navy {
  width: min(60vw, 560px);
  height: min(60vw, 560px);
  background: radial-gradient(circle, rgba(0, 51, 102, 0.6) 0%, transparent 70%);
  bottom: -25%;
  right: -15%;
}

.bc-blob--sky {
  width: min(50vw, 460px);
  height: min(50vw, 460px);
  background: radial-gradient(circle, rgba(56, 189, 248, 0.35) 0%, transparent 70%);
  top: -10%;
  right: 5%;
  animation: bc-blob-drift 19s ease-in-out infinite;
}

.bc-blob--lavender {
  width: min(42vw, 400px);
  height: min(42vw, 400px);
  background: radial-gradient(circle, rgba(167, 139, 250, 0.25) 0%, transparent 70%);
  bottom: -15%;
  left: 10%;
  animation: bc-blob-drift 21s ease-in-out infinite reverse;
}

@keyframes bc-blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(2%, -3%) scale(1.05); }
  66% { transform: translate(-2%, 2%) scale(0.97); }
}

.bc-section__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77, 210, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 210, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 100%);
}

.bc-section__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(30, 136, 229, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}

.bc-section__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77, 210, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 210, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.6;
}

/* Platform — deep ocean gradient */
.bc-section--platform {
  padding: 5.5rem 0;
  background: linear-gradient(165deg, #001528 0%, #002244 28%, #003366 58%, #0d47a1 100%);
  color: #fff;
}

.bc-section-head--light h2 {
  color: #fff;
}

.bc-section-head--light .bc-section-head__lead {
  color: rgba(255, 255, 255, 0.88);
}

.bc-eyebrow--on-dark {
  color: var(--bc-cyan);
  background: rgba(77, 210, 255, 0.14);
  border-color: rgba(77, 210, 255, 0.35);
}

.bc-steps--connected {
  position: relative;
}

.bc-steps--connected::before {
  content: '';
  position: absolute;
  top: 2.75rem;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(77, 210, 255, 0.55), rgba(77, 210, 255, 0.55), transparent);
  z-index: 0;
}

/* Platform — compact step cards */
.bc-steps--pro {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.bc-steps--pro::before {
  display: none;
}

.bc-section--platform .bc-step.bc-step--pro {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1rem 1.35rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 24, 56, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: bc-step-in 0.5s ease backwards;
  animation-delay: calc(var(--bc-step-i, 0) * 0.1s);
}

@keyframes bc-step-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bc-section--platform .bc-step.bc-step--pro:hover {
  transform: translateY(-4px);
  border-color: #bae6fd;
  box-shadow: 0 12px 32px rgba(0, 36, 80, 0.12);
}

.bc-step__phase {
  position: absolute;
  top: 0.75rem;
  left: 0.85rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #64748b;
}

.bc-section--platform .bc-step--pro .bc-step__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0.35rem 0 0.65rem;
  color: var(--bc-blue);
  background: #f0f9ff;
  border: 1px solid #e0f2fe;
  border-radius: 10px;
  box-shadow: none;
}

.bc-section--platform .bc-step--pro h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bc-navy);
  text-align: center;
}

.bc-section--platform .bc-step--pro p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
  text-align: center;
  max-width: 22ch;
}

/* Legacy glass cards (fallback) */
.bc-section--platform .bc-step.bc-step--glass {
  background: #ffffff;
  border: 1px solid rgba(186, 230, 253, 0.9);
  box-shadow:
    0 10px 40px rgba(0, 20, 50, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.bc-section--platform .bc-step.bc-step--glass:hover {
  transform: translateY(-6px);
  border-color: #38bdf8;
  box-shadow:
    0 20px 48px rgba(0, 30, 70, 0.28),
    0 0 0 1px rgba(56, 189, 248, 0.25) inset;
}

.bc-section--platform .bc-step h3 {
  color: var(--bc-navy);
}

.bc-section--platform .bc-step--glass p,
.bc-section--platform .bc-step p {
  color: #3d5a73;
  line-height: 1.7;
  max-width: 22rem;
}

.bc-step--glass {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bc-step--glass:hover {
  transform: translateY(-6px);
}

.bc-step__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.bc-section--platform .bc-step__num {
  background: linear-gradient(135deg, #4dd2ff 0%, #1e88e5 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(30, 136, 229, 0.35);
}

.bc-section--platform .bc-step__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  font-size: 1.4rem;
  background: linear-gradient(145deg, #e0f2fe 0%, #f0f9ff 100%);
  border: 1px solid #bae6fd;
  border-radius: 14px;
  filter: none;
}

/* Features — vibrant mesh */
.bc-section--features {
  padding: 5.5rem 0;
  background: linear-gradient(145deg, #dbeafe 0%, #e0f2fe 22%, #f0f9ff 45%, #ede9fe 72%, #e0f2fe 100%);
}

.bc-grid-3--features .bc-card--feature {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 4px 24px rgba(30, 136, 229, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  overflow: hidden;
}

.bc-grid-3--features .bc-card--feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bc-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bc-grid-3--features .bc-card--feature:hover {
  transform: translateY(-5px);
  border-color: #7dd3fc;
  box-shadow:
    0 20px 48px rgba(30, 136, 229, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.bc-grid-3--features .bc-card--feature:hover::before {
  opacity: 1;
}

.bc-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  font-size: 1.35rem;
  background: linear-gradient(135deg, rgba(77, 210, 255, 0.2), rgba(30, 136, 229, 0.15));
  border: 1px solid rgba(30, 136, 229, 0.15);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(30, 136, 229, 0.1);
}

.bc-home .bc-card--feature h3 {
  flex-direction: row;
  gap: 0;
}

/* Pricing — premium dark band */
.bc-section--pricing {
  padding: 5.5rem 0;
  background: linear-gradient(155deg, #001a33 0%, #002952 35%, #004080 65%, #1565c0 100%);
  color: #fff;
}

.bc-section--pricing .pkg-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  color: #fff;
}

.bc-section--pricing .pkg-card--featured {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow:
    0 20px 56px rgba(77, 210, 255, 0.2),
    0 0 0 1px rgba(56, 189, 248, 0.35);
  transform: scale(1.03);
}

.bc-section--pricing .pkg-card__name {
  color: rgba(255, 255, 255, 0.72);
}

.bc-section--pricing .pkg-card__credits {
  color: #fff;
}

.bc-section--pricing .pkg-card--featured .pkg-card__credits {
  background: linear-gradient(135deg, #7dd3fc, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bc-section--pricing .pkg-card__credits-label {
  color: rgba(255, 255, 255, 0.55);
}

.bc-section--pricing .pkg-card__pricing {
  border-top-color: rgba(255, 255, 255, 0.15);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.bc-section--pricing .pkg-card__price-amount {
  color: #fff;
}

.bc-section--pricing .pkg-card__price-currency {
  color: rgba(255, 255, 255, 0.65);
}

.bc-section--pricing .pkg-card__unit {
  color: #7dd3fc;
}

.bc-section--pricing .pkg-card__action {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.bc-section--pricing .pkg-card:hover .pkg-card__action,
.bc-section--pricing .pkg-card--featured .pkg-card__action {
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  border-color: transparent;
}

.bc-section--pricing .pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}

.bc-section--pricing .pkg-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

/* API — developer dark zone */
.bc-section--api {
  padding: 5.5rem 0;
  background: linear-gradient(168deg, #060d18 0%, #0a1628 30%, #0f2744 65%, #132d4a 100%);
  color: #e2e8f0;
}

.bc-api-url--on-dark {
  color: rgba(226, 232, 240, 0.75);
}

.bc-api-url--on-dark code {
  color: var(--bc-cyan);
  background: rgba(77, 210, 255, 0.1);
  border-color: rgba(77, 210, 255, 0.25);
}

.bc-api-list--glass .bc-api-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(77, 210, 255, 0.15);
  color: #e2e8f0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.bc-api-list--glass .bc-api-item:hover {
  background: rgba(77, 210, 255, 0.08);
  border-color: rgba(77, 210, 255, 0.35);
  transform: translateX(4px);
}

.bc-api-showcase {
  gap: 2rem;
}

.bc-code--glow {
  box-shadow:
    0 0 0 1px rgba(77, 210, 255, 0.15),
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(30, 136, 229, 0.15);
}

.bc-code__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.bc-code__dot:nth-child(1) { background: #ef4444; }
.bc-code__dot:nth-child(2) { background: #eab308; }
.bc-code__dot:nth-child(3) { background: #22c55e; }

.bc-code__bar .bc-code__dot:last-of-type {
  margin-right: 12px;
}

/* FAQ — enterprise style (Stripe / Apple inspired) */
.bc-faq-enterprise {
  padding: 4.5rem 0 3.5rem;
  background: #ffffff;
  border-top: 1px solid #e8edf3;
}

.bc-faq-enterprise__head {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.bc-faq-enterprise__head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--bc-navy);
}

.bc-faq-enterprise__head p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--bc-text-muted);
  line-height: 1.6;
}

.bc-faq-enterprise__head a {
  font-weight: 600;
  color: var(--bc-blue);
}

.bc-faq-enterprise__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 2.5rem;
  max-width: 1100px;
  margin-inline: auto;
}

@media (min-width: 1024px) {
  .bc-faq-enterprise__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bc-faq-enterprise__col {
  display: flex;
  flex-direction: column;
}

.bc-faq-enterprise__item {
  border-bottom: 1px solid #e2e8f0;
}

.bc-faq-enterprise__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bc-navy);
  cursor: pointer;
  line-height: 1.4;
}

.bc-faq-enterprise__item summary::-webkit-details-marker {
  display: none;
}

.bc-faq-enterprise__item summary::after {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--bc-blue);
  border-bottom: 2px solid var(--bc-blue);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -4px;
}

.bc-faq-enterprise__item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.bc-faq-enterprise__answer {
  padding: 0 0 1.15rem;
}

.bc-faq-enterprise__answer p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--bc-text-muted);
}

.bc-faq-enterprise + .bc-bcom-footer,
.bc-faq-enterprise {
  margin-bottom: 0;
}

/* CTA enhancement */
.bc-cta {
  position: relative;
  overflow: hidden;
}

.bc-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(77, 210, 255, 0.3) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(30, 136, 229, 0.25) 0%, transparent 50%);
  pointer-events: none;
}

.bc-cta .bc-container {
  position: relative;
  z-index: 1;
}

.bc-head {
  margin-bottom: 2rem;
}

.bc-head h2 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--bc-navy);
}

.bc-head p {
  margin: 0;
  color: var(--bc-text-muted);
}

.bc-head__action { margin-top: 1.25rem; }

/* ── Grids & cards ── */
.bc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.bc-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.bc-card {
  padding: 1.5rem;
  background: var(--bc-surface);
  border: 1px solid var(--bc-border-soft);
  border-radius: var(--bc-radius-lg);
  box-shadow: var(--bc-shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.bc-section--alt .bc-card,
.bc-section--soft .bc-card {
  background: var(--bc-surface);
}

.bc-card:hover {
  transform: translateY(-3px);
  border-color: #bae6fd;
  box-shadow: var(--bc-shadow-lg);
}

.bc-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bc-navy);
}

.bc-card p {
  margin: 0;
  font-size: 0.925rem;
  color: var(--bc-text-muted);
  line-height: 1.6;
}

.bc-card a { font-weight: 600; }

/* ── Steps ── */
.bc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bc-steps--grid {
  grid-template-columns: repeat(4, 1fr);
}

.bc-step {
  position: relative;
  padding: 1.5rem;
  background: var(--bc-surface);
  border: 1px solid var(--bc-border-soft);
  border-radius: var(--bc-radius-lg);
  box-shadow: var(--bc-shadow);
}

.bc-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  background: var(--bc-gradient);
  border-radius: 50%;
}

.bc-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bc-navy);
}

.bc-step p {
  margin: 0;
  font-size: 0.925rem;
  color: var(--bc-text-muted);
}

.bc-home .bc-section--platform .bc-step p {
  width: 100%;
  color: #3d5a73;
}

.bc-home .bc-section--platform .bc-step h3 {
  color: var(--bc-navy);
}

.bc-steps--grid .bc-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.bc-steps--grid .bc-step__num {
  flex-shrink: 0;
  margin-bottom: 0;
}

/* ── API blocks ── */
.bc-api-url {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--bc-text-muted);
}

.bc-api-url code,
.bc-inline-code {
  padding: 0.2rem 0.5rem;
  font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
  font-size: 0.875em;
  color: var(--bc-navy);
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 6px;
}

.bc-api-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.bc-api-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.875rem;
  background: var(--bc-surface);
  border: 1px solid var(--bc-border-soft);
  border-radius: var(--bc-radius);
}

.bc-api-intro {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bc-surface);
  border: 1px solid var(--bc-border-soft);
  border-radius: var(--bc-radius-lg);
}

.bc-api-intro__label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bc-text-muted);
}

.bc-api-intro__note {
  margin: 1rem 0 0;
  font-size: 0.925rem;
  color: var(--bc-text-muted);
}

.bc-api-endpoints {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bc-method {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  margin-right: 0.35rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 4px;
  vertical-align: middle;
}

.bc-method--get {
  color: #0369a1;
  background: #e0f2fe;
}

.bc-method--post {
  color: #15803d;
  background: #dcfce7;
}

.bc-code {
  background: #0f172a;
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.2);
}

.bc-code__bar {
  padding: 0.65rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  background: #1e293b;
  border-bottom: 1px solid #334155;
}

.bc-code pre {
  margin: 0;
  padding: 1.25rem;
  overflow-x: auto;
}

.bc-code code {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #e2e8f0;
  white-space: pre-wrap;
  word-break: break-word;
}

/* ── Chips ── */
.bc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.bc-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bc-navy);
  background: var(--bc-surface);
  border: 1px solid var(--bc-border);
  border-radius: 999px;
  box-shadow: var(--bc-shadow);
}

/* ── FAQ ── */
.bc-faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 720px;
  margin-inline: auto;
}

.bc-faq details {
  background: var(--bc-surface);
  border: 1px solid var(--bc-border-soft);
  border-radius: var(--bc-radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bc-faq details[open] {
  border-color: #bae6fd;
  box-shadow: var(--bc-shadow);
}

.bc-faq summary {
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  color: var(--bc-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.bc-faq summary::-webkit-details-marker { display: none; }

.bc-faq summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--bc-blue);
  transition: transform 0.2s;
}

.bc-faq details[open] summary::after {
  content: '−';
}

.bc-faq details p {
  margin: 0;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.925rem;
  color: var(--bc-text-muted);
  line-height: 1.65;
}

/* ── CTA band ── */
.bc-cta {
  padding: 4rem 0;
  text-align: center;
  color: #fff;
  background: var(--bc-gradient-hero);
}

.bc-cta h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bc-cta p {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  opacity: 0.9;
}

/* ── Footer ── */
.bc-footer {
  padding: 3.5rem 0 0;
  background: var(--bc-navy-deep);
  color: rgba(255, 255, 255, 0.85);
}

.bc-footer a { color: rgba(255, 255, 255, 0.85); }
.bc-footer a:hover { color: var(--bc-cyan); }

.bc-footer .bc-logo__text strong { color: #fff; }
.bc-footer .bc-logo__text small { color: rgba(255, 255, 255, 0.55); }

.bc-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.bc-footer__brand p {
  margin: 1rem 0 0;
  max-width: 280px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.bc-footer h4 {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

.bc-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bc-footer li { margin-bottom: 0.5rem; }

.bc-footer li a {
  font-size: 0.9rem;
  font-weight: 500;
}

.bc-footer__bar {
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ── Auth pages ── */
.bc-auth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.bc-auth__panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

.bc-auth__brand {
  color: #fff;
  background: var(--bc-gradient-hero);
}

.bc-auth__brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 20% 30%, rgba(77, 210, 255, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.bc-auth__brand {
  position: relative;
  overflow: hidden;
}

.bc-auth__brand-inner {
  position: relative;
  z-index: 1;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bc-auth__brand-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.bc-auth__brand-mark .bc-logo {
  flex-direction: column;
  align-items: center;
}

.bc-auth__brand-copy {
  width: 100%;
}

.bc-auth__brand h1 {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bc-auth__brand p {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.bc-auth__list {
  list-style: none;
  margin: 0 auto 1.5rem;
  padding: 0;
  max-width: 20rem;
}

.bc-auth__list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.5rem;
  margin-bottom: 0.35rem;
  font-size: 0.925rem;
  opacity: 0.92;
  text-align: left;
}

.bc-auth__brand-back {
  display: inline-block;
  color: var(--bc-cyan);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.bc-auth__brand-back:hover {
  text-decoration: underline;
}

.bc-auth__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bc-cyan);
  font-weight: 700;
}

.bc-auth__form {
  width: min(100%, 400px);
}

.bc-auth__form h2 {
  margin: 0 0 0.35rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--bc-navy);
  text-align: center;
}

.bc-auth__sub {
  margin: 0 0 1.75rem;
  color: var(--bc-text-muted);
}

.bc-auth__foot {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--bc-text-muted);
  text-align: center;
}

.bc-field {
  margin-bottom: 1.15rem;
}

.bc-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bc-navy);
}

.bc-field input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--bc-text);
  background: var(--bc-surface);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.bc-field input:focus {
  outline: none;
  border-color: var(--bc-blue);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.15);
}

.bc-password-field {
  position: relative;
}

.bc-password-field input {
  padding-right: 2.85rem;
}

.bc-password-field__toggle {
  position: absolute;
  top: 50%;
  right: 0.55rem;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--bc-text-muted, #64748b);
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

.bc-password-field__toggle:hover {
  color: var(--bc-navy, #003366);
  background: rgba(30, 136, 229, 0.08);
}

.bc-password-field__toggle:focus-visible {
  outline: 2px solid var(--bc-blue, #1e88e5);
  outline-offset: 2px;
}

.bc-password-field__icon {
  width: 1.15rem;
  height: 1.15rem;
}

.bc-password-field.is-visible .bc-password-field__icon--show {
  display: none;
}

.bc-password-field.is-visible .bc-password-field__icon--hide {
  display: block;
}

.bc-password-field:not(.is-visible) .bc-password-field__icon--hide {
  display: none;
}

.bc-alert {
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--bc-radius);
}

.bc-field-error {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #dc2626;
}

.bc-field-help {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: var(--bc-text-muted);
}

.bc-reg-steps {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.bc-reg-step {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: var(--bc-border-soft);
  transition: background 0.2s;
}

.bc-reg-step.is-done { background: var(--bc-blue); }

.bc-reg-step.is-active {
  background: linear-gradient(90deg, var(--bc-blue), var(--bc-cyan));
}

.bc-reg-hint {
  margin-bottom: 1rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.8125rem;
  color: var(--bc-text-muted);
  background: var(--bc-bg);
  border-radius: 8px;
}

.bc-reg-hint a {
  font-weight: 600;
  color: var(--bc-blue);
}

/* ── Credit packages (landing pricing) ── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.pkg-grid__form {
  margin: 0;
  display: contents;
}

.pkg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  padding: 1.5rem 1.25rem 1.15rem;
  background: var(--bc-surface);
  border: 1px solid var(--bc-border-soft);
  border-radius: var(--bc-radius-lg);
  text-align: left;
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--bc-shadow);
}

.pkg-card:hover {
  border-color: #7dd3fc;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30, 136, 229, 0.12);
}

.pkg-card--featured {
  border-color: #38bdf8;
  background: linear-gradient(165deg, #f0f9ff 0%, #fff 45%, #fff 100%);
  box-shadow: 0 8px 32px rgba(30, 136, 229, 0.14);
}

.pkg-card__badge {
  align-self: flex-start;
  margin-bottom: 0.85rem;
  padding: 0.32rem 0.65rem;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  border-radius: 999px;
}

.pkg-card__name {
  margin-bottom: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bc-text-muted);
}

.pkg-card__credits {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--bc-navy);
}

.pkg-card--featured .pkg-card__credits {
  background: linear-gradient(135deg, #0369a1, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pkg-card__credits-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pkg-card__credits-block { margin-bottom: 1rem; }

.pkg-card__pricing {
  padding: 1rem 0;
  margin-bottom: 0.5rem;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.pkg-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.pkg-card__price-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--bc-navy);
}

.pkg-card__price-currency {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--bc-text-muted);
}

.pkg-card__unit {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0ea5e9;
}

.pkg-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: auto;
  padding: 0.75rem 1rem;
  border-radius: var(--bc-radius);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0369a1;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  transition: background 0.2s, color 0.2s;
}

.pkg-card:hover .pkg-card__action,
.pkg-card--featured .pkg-card__action {
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  border-color: transparent;
}

/* ── Scroll reveal ── */
[data-bc-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-bc-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bc-hero__grid,
  .bc-grid-3,
  .bc-steps,
  .bc-steps--grid {
    grid-template-columns: 1fr 1fr;
  }

  .bc-hero--split .bc-hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .bc-hero--immersive .bc-hero__media {
    height: clamp(240px, 52vw, 380px);
  }

  .bc-hero--immersive .bc-hero-carousel {
    min-height: clamp(240px, 52vw, 380px);
  }

  .bc-hero--immersive .bc-hero__body {
    padding: 2rem 0 2.5rem;
  }

  .bc-hero--immersive {
    padding: 0;
    min-height: unset;
    max-height: none;
  }

  .bc-nav + .bc-main > .bc-hero.bc-hero--immersive:first-child {
    min-height: unset;
    max-height: none;
  }

  .bc-hero--split .bc-hero__visual {
    order: -1;
    max-width: 480px;
  }

  .bc-hero--split .bc-hero__copy {
    text-align: center;
    align-items: center;
  }

  .bc-hero--split h1,
  .bc-hero--split .bc-hero__text {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
  }

  .bc-hero--split .bc-actions {
    justify-content: center;
  }

  .bc-hero--split .bc-trust {
    margin-inline: auto;
    text-align: center;
  }

  .bc-hero--split .bc-trust li {
    text-align: center;
  }

  .bc-steps--pro {
    grid-template-columns: 1fr;
  }

  .bc-steps--pro::before {
    display: none;
  }

  .bc-grid-2 { grid-template-columns: 1fr; }

  .bc-hero:not(.bc-hero--centered) .bc-preview {
    display: none;
  }

  .bc-home .bc-hero--centered .bc-live-panel {
    max-width: 100%;
  }

  .bc-live-panel__metrics {
    grid-template-columns: 1fr;
  }

  .bc-live-metric {
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
  }

  .bc-live-metric:last-child { border-bottom: none; }

  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .bc-nav__toggle { display: flex; }

  .bc-nav__right {
    position: fixed;
    inset: var(--bc-nav-h) 0 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem;
    margin-left: 0;
    background: var(--bc-surface);
    border-top: 1px solid var(--bc-border-soft);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }

  body.bc-nav-open .bc-nav__right {
    transform: translateX(0);
  }

  body.bc-nav-open { overflow: hidden; }

  .bc-nav__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .bc-nav__menu a {
    padding: 0.85rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--bc-border-soft);
  }

  .bc-nav__dropdown {
    border-bottom: 1px solid var(--bc-border-soft);
  }

  .bc-nav__dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 0;
    font-size: 1rem;
  }

  .bc-nav__link {
    display: block;
    padding: 0.85rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--bc-border-soft);
  }

  .bc-nav__actions {
    flex-direction: column;
    margin-top: 1.25rem;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--bc-border-soft);
    padding-top: 1.25rem;
  }

  .bc-nav__actions .bc-btn { width: 100%; }

  .bc-hero { padding: 2.5rem 0 3.5rem; }

  .bc-hero--immersive {
    padding: 0;
    min-height: unset;
    max-height: none;
  }

  .bc-nav + .bc-main > .bc-hero.bc-hero--immersive:first-child {
    min-height: unset;
    max-height: none;
  }

  .bc-hero--immersive .bc-hero__body {
    padding: 1.75rem 0 2rem;
  }

  .bc-hero--centered { padding: 3rem 0 2.5rem; }

  .bc-hero--split { padding: 3rem 0 2.5rem; }

  .bc-hero__grid,
  .bc-grid-3,
  .bc-steps,
  .bc-steps--grid,
  .bc-footer__grid,
  .bc-auth {
    grid-template-columns: 1fr;
  }

  .bc-auth__brand { display: none; }

  .bc-hero--centered .bc-trust {
    gap: 1.25rem 1.75rem;
  }

  .bc-trust { grid-template-columns: 1fr 1fr; }

  .bc-section { padding: 3rem 0; }

  .bc-section--platform,
  .bc-section--features,
  .bc-section--pricing,
  .bc-section--api,
  .bc-section--faq {
    padding: 3.5rem 0;
  }

  .bc-steps--connected::before { display: none; }

  .bc-steps--pro::before { display: none; }

  .bc-steps--pro {
    grid-template-columns: 1fr;
  }

  .bc-step__arrow { display: none !important; }

  .bc-faq--columns {
    grid-template-columns: 1fr;
  }

  .bc-section--pricing .pkg-card--featured {
    transform: none;
  }

  .bc-section--pricing .pkg-card--featured:hover {
    transform: translateY(-4px);
  }

  .pkg-grid { grid-template-columns: 1fr; }
}

/* ── BCOM marketing landing (legacy bc-hero variant, no hero images) ── */
.bc-nav + .bc-main > .bc-hero.bc-hero--landing:first-child {
  margin-top: calc(-1 * var(--bc-nav-h));
  padding-top: calc(5rem + var(--bc-nav-h));
  padding-bottom: 4rem;
  min-height: auto;
}

.bc-hero--landing {
  position: relative;
  overflow: hidden;
  background: var(--bc-gradient-hero);
  color: #fff;
}

.bc-hero--landing::before { display: none; }

.bc-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bc-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}

.bc-hero__glow--left {
  width: 28rem;
  height: 28rem;
  top: -6rem;
  left: -8rem;
  background: var(--bc-cyan);
}

.bc-hero__glow--right {
  width: 22rem;
  height: 22rem;
  bottom: -4rem;
  right: -4rem;
  background: #7c4dff;
}

.bc-hero__copy--center {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

.bc-hero--landing h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.bc-hero--landing .bc-hero__text {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.75rem;
}

.bc-actions--center { justify-content: center; }

.bc-hero--landing .bc-btn--secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.bc-hero--landing .bc-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.bc-hero__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.bc-hero__pill {
  display: inline-flex;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.bc-hero__pill:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.bc-home-stats {
  padding: 2.5rem 0;
  background: var(--bc-bg);
  border-bottom: 1px solid var(--bc-border-soft);
}

.bc-home-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.bc-home-stats__item strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
  color: var(--bc-navy);
  letter-spacing: -0.03em;
}

.bc-home-stats__item span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.88rem;
  color: var(--bc-text-muted);
  font-weight: 600;
}

.bc-home-omni {
  padding: 4rem 0 1rem;
  background: var(--bc-surface);
}

.bc-section-head--center {
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
}

.bc-home-offerings {
  padding: 2rem 0 4.5rem;
  background: var(--bc-surface);
}

.bc-home-offerings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.bc-offering-card {
  padding: 1.5rem;
  border-radius: var(--bc-radius-lg);
  border: 1px solid var(--bc-border);
  background: var(--bc-bg);
  box-shadow: var(--bc-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.bc-offering-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--bc-shadow-lg);
}

.bc-offering-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  color: var(--bc-navy);
}

.bc-offering-card p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--bc-text-muted);
  line-height: 1.55;
}

.bc-offering-card__link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bc-blue);
}

.bc-split-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.bc-checklist {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.bc-checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

.bc-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bc-cyan);
  font-weight: 800;
}

.bc-checklist--light li { color: rgba(255, 255, 255, 0.9); }

.bc-checklist--light li::before { color: var(--bc-cyan-soft); }

@media (max-width: 960px) {
  .bc-home-stats__grid,
  .bc-home-offerings__grid,
  .bc-split-intro {
    grid-template-columns: 1fr;
  }

  .bc-nav__dropdown-panel {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    padding: 0.25rem 0 0.5rem 0.75rem;
    min-width: 0;
    max-width: none;
  }

  .bc-nav__dropdown.is-open .bc-nav__dropdown-panel { display: block; }

  .bc-nav__dropdown:hover .bc-nav__dropdown-panel,
  .bc-nav__dropdown:focus-within .bc-nav__dropdown-panel {
    display: none;
  }

  .bc-nav__dropdown.is-open:hover .bc-nav__dropdown-panel,
  .bc-nav__dropdown.is-open:focus-within .bc-nav__dropdown-panel {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-bc-reveal] { opacity: 1; transform: none; transition: none; }
  .bc-preview { transform: none; }
  .bc-live-panel:hover { transform: none; }
  .bc-live-dot { animation: none; }
  .bc-blob { animation: none; }
  .bc-steps--pro::before { animation: none; }
  .bc-step__pulse { animation: none; }
  .bc-section--platform .bc-step.bc-step--pro { animation: none; }
  .bc-btn:hover, .bc-card:hover, .pkg-card:hover, .bc-step--glass:hover { transform: none; }
  .bc-logo__frame,
  .bc-logo__mark { animation: none; }
}
