/*
 * BlackCloak Blocks — page styles
 *
 * Three layers:
 *   1. Global tokens & keyframes (no selectors that target generic elements).
 *   2. Page-scoped rules (every selector starts with .bc-product-main).
 *   3. BC-prefixed components (.bc-btn*, .bc-card--*, .bc-body-*) — global by
 *      design because the prefix avoids collision with Enfold / other plugins.
 *
 * Anything that lived in the index.html mockup but doesn't render on the WP
 * page (legacy iphone/laptop/app-* mockup atoms, stats-bar, trust-bar,
 * industries, callout-band, .nav, .footer, .awards-row legacy variant)
 * has been dropped.
 */

/* ============================================================
 * 1. Global tokens
 * ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&family=Red+Hat+Text:wght@400;500;600;700&family=Red+Hat+Display:wght@400;500;600;700;800&display=swap');

:root {
  --bc-primary-1: #151722;
  --bc-primary-2: #1F2338;
  --bc-primary-3: #2A2F4D;
  --bc-primary-4: #414870;
  --bc-primary-5: #5B638C;
  --bc-primary-6: #7981AD;
  --bc-primary-7: #ADB3D9;
  --bc-primary-8: #E6E8F5;

  --bc-secondary-1: #80725B;
  --bc-secondary-2: #948771;
  --bc-secondary-3: #B2A58F;
  --bc-secondary-4: #C4B7A1;
  --bc-secondary-5: #D9CFBF;
  --bc-secondary-6: #E5DFD3;
  --bc-secondary-7: #F0EDE6;
  --bc-secondary-8: #FAF8F5;

  --bc-neutral-1: #19191A;
  --bc-neutral-2: #323234;
  --bc-neutral-3: #4D4D51;
  --bc-neutral-4: #7F7F86;
  --bc-neutral-5: #B3B3B7;
  --bc-neutral-6: #CBCBCD;
  --bc-neutral-7: #E5E5E6;
  --bc-neutral-8: #F2F2F3;

  --bc-bg: var(--bc-primary-1);
  --bc-bg-elevated: var(--bc-primary-2);
  --bc-bg-elevated-hover: var(--bc-primary-3);
  --bc-border-subtle: rgba(231, 234, 248, 0.08);
  --bc-border-muted: rgba(231, 234, 248, 0.16);

  --bc-text-primary: #FFFFFF;
  --bc-text-secondary: var(--bc-primary-7);
  --bc-text-muted: var(--bc-primary-6);
  --bc-text-on-gold: var(--bc-primary-1);

  --bc-accent: var(--bc-secondary-3);
  --bc-accent-hover: var(--bc-secondary-4);
  --bc-accent-soft: var(--bc-secondary-8);

  --bc-font-display: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --bc-font-body: 'Open Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --bc-text-h1: 3rem;
  --bc-text-h2: 2.5rem;
  --bc-text-h3: 2rem;
  --bc-text-h4: 1.75rem;
  --bc-text-h5: 1.5rem;
  --bc-text-h6: 1.1875rem;
  --bc-text-body-l: 1.125rem;
  --bc-text-body-m: 1rem;
  --bc-text-body-s: 0.875rem;
  --bc-text-caption: 0.75rem;

  --bc-lh-display: 1.15;
  --bc-lh-heading: 1.25;
  --bc-lh-body: 1.6;
  --bc-lh-tight: 1.4;

  --bc-fw-regular: 400;
  --bc-fw-medium: 500;
  --bc-fw-semibold: 600;
  --bc-fw-bold: 600;
  --bc-fw-extra: 800;

  --bc-ls-tight: -0.01em;
  --bc-ls-normal: 0;
  --bc-ls-wide: 0.08em;

  --bc-radius-sm: 8px;
  --bc-radius-md: 12px;
  --bc-radius-lg: 20px;
  --bc-radius-xl: 24px;
  --bc-radius-pill: 999px;

  --bc-space-1: 0.25rem;
  --bc-space-2: 0.5rem;
  --bc-space-3: 0.75rem;
  --bc-space-4: 1rem;
  --bc-space-5: 1.5rem;
  --bc-space-6: 2rem;
  --bc-space-7: 3rem;
  --bc-space-8: 4rem;
  --bc-space-9: 6rem;

  --bc-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.25);
  --bc-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --bc-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);

  --bc-stroke-gradient: linear-gradient(155deg, #7981AD 5.57%, #2A2F4D 95.51%);

  --bc-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --bc-dur-fast: 160ms;
  --bc-dur-med: 240ms;

  --bc-max-w: 1200px;
  --bc-section-pad: 100px;
}

/* ============================================================
 * 2. Page-scoped reset, typography, layout
 * ============================================================ */

.bc-product-main {
  background: var(--bc-bg);
  color: var(--bc-text-primary);
  font-family: var(--bc-font-body);
  font-size: var(--bc-text-body-m);
  line-height: var(--bc-lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
.bc-product-main *,
.bc-product-main *::before,
.bc-product-main *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.bc-product-main .container {
  max-width: var(--bc-max-w);
  margin: 0 auto;
  padding: 0 16px;
}
.bc-product-main h1,
.bc-product-main h2,
.bc-product-main h3,
.bc-product-main h4,
.bc-product-main h5,
.bc-product-main h6 {
  font-family: var(--bc-font-display);
  color: var(--bc-text-primary);
  line-height: var(--bc-lh-heading);
  letter-spacing: var(--bc-ls-tight);
  font-weight: var(--bc-fw-bold);
  margin: 0;
}
.bc-product-main h1 { font-size: var(--bc-text-h1); line-height: var(--bc-lh-display); font-weight: var(--bc-fw-extra); }
.bc-product-main h2 { font-size: var(--bc-text-h2); font-weight: var(--bc-fw-bold); }
.bc-product-main h3 { font-size: var(--bc-text-h3); font-weight: var(--bc-fw-bold); }
.bc-product-main h4 { font-size: var(--bc-text-h4); font-weight: var(--bc-fw-semibold); }
.bc-product-main h5 { font-size: var(--bc-text-h5); font-weight: var(--bc-fw-semibold); }
.bc-product-main h6 { font-size: var(--bc-text-h6); font-weight: var(--bc-fw-semibold); }
.bc-product-main p { margin: 0 0 var(--bc-space-4); color: var(--bc-text-secondary); }
.bc-product-main a { color: var(--bc-accent); text-decoration: none; }

/* Typography utility classes — BC-prefixed, scope is fine to leave page-bound */
.bc-product-main .bc-body-l { font-size: var(--bc-text-body-l); }
.bc-product-main .bc-body-m { font-size: var(--bc-text-body-m); }
.bc-product-main .bc-body-s { font-size: var(--bc-text-body-s); }
.bc-product-main .bc-caption { font-size: var(--bc-text-caption); color: var(--bc-text-muted); }

.bc-product-main .section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--bc-accent); margin-bottom: 20px;
}

.bc-product-main .pill-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: var(--bc-radius-pill);
  border: 1px solid rgba(178, 165, 143, 0.25);
  background: rgba(178, 165, 143, 0.1);
  color: var(--bc-accent);
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 14px;
}

/* ============================================================
 * 3. BC-prefixed components (global — the prefix avoids collision)
 * ============================================================ */

.bc-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--bc-space-2);
  padding: 0.875rem 1.5rem;
  border-radius: var(--bc-radius-pill);
  font-family: var(--bc-font-body);
  font-size: var(--bc-text-body-s);
  font-weight: var(--bc-fw-semibold);
  letter-spacing: var(--bc-ls-wide);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--bc-dur-fast) var(--bc-ease),
              color var(--bc-dur-fast) var(--bc-ease),
              border-color var(--bc-dur-fast) var(--bc-ease);
}
.bc-btn .bc-btn__icon { width: 1em; height: 1em; display: inline-flex; align-items: center; justify-content: center; }
.bc-btn--primary { background: var(--bc-secondary-3); color: var(--bc-text-on-gold); position: relative; overflow: hidden; isolation: isolate; }
.bc-btn--primary:hover { background: var(--bc-secondary-4); }
.bc-btn--primary::after { content:''; position:absolute; top:0; left:0; width:40%; height:100%; background:linear-gradient(90deg,transparent,rgba(255,255,255,0.35),transparent); transform:translateX(-120%) skewX(-12deg); transition:transform 0.7s var(--bc-ease); pointer-events:none; z-index:-1; }
.bc-btn--primary:hover::after { animation: bcShimmer 0.9s var(--bc-ease); }
.bc-btn--primary-alt { background: var(--bc-secondary-8); color: var(--bc-text-on-gold); }
.bc-btn--primary-alt:hover { background: var(--bc-secondary-7); }
.bc-btn--secondary { background: transparent; color: var(--bc-secondary-3); border-color: var(--bc-secondary-3); }
.bc-btn--secondary:hover { background: rgba(178, 165, 143, 0.08); border-color: var(--bc-secondary-4); color: var(--bc-secondary-4); }
.bc-btn--secondary-solid { background: transparent; color: var(--bc-text-primary); border-color: var(--bc-text-primary); }
.bc-btn--secondary-solid:hover { background: rgba(255, 255, 255, 0.08); }
.bc-btn--sm { padding: 0.5rem 1rem; font-size: var(--bc-text-caption); }

.bc-btn__icon--circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid currentColor; margin-left: 4px;
}
.bc-btn__icon--circle svg { width: 10px; height: 10px; display: block; }

.bc-card--bento {
  border-radius: var(--bc-radius-lg);
  border: 1px solid var(--bc-border-subtle);
  background: linear-gradient(145deg, rgba(65,72,112,0.22) 0%, rgba(31,35,56,0.6) 60%, rgba(21,23,34,0.8) 100%);
  padding: var(--bc-space-6);
  min-height: 420px;
  transition: border-color var(--bc-dur-med) var(--bc-ease), transform var(--bc-dur-med) var(--bc-ease);
}
.bc-card--bento:hover { border-color: var(--bc-border-muted); }
.bc-card--hover {
  border-radius: var(--bc-radius-lg);
  border: 1px solid var(--bc-border-subtle);
  background: linear-gradient(180deg, rgba(42,47,77,0.55) 0%, rgba(31,35,56,0.75) 100%);
  padding: var(--bc-space-6);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: var(--bc-space-4);
  transition: border-color var(--bc-dur-med) var(--bc-ease), background var(--bc-dur-med) var(--bc-ease), transform var(--bc-dur-med) var(--bc-ease);
}
.bc-card--hover:hover { border-color: var(--bc-secondary-3); transform: translateY(-2px); }

/* ============================================================
 * 4. Hero
 * ============================================================ */

.bc-product-main .hero { padding: 120px 0 calc(var(--bc-section-pad) - 16px); position: relative; overflow: hidden; }
.bc-product-main .hero--orbit { text-align: center; }
.bc-product-main .hero--orbit::before {
  content: ''; position: absolute; top: 58%; left: 50%;
  width: 980px; height: 980px;
  background: radial-gradient(circle, rgba(166,214,70,0.18) 0%, rgba(166,214,70,0.06) 40%, transparent 72%);
  transform: translate(-50%, -50%); pointer-events: none; z-index: 0; filter: blur(10px);
  animation: bcHeroAuraDrift 18s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
.bc-product-main .hero-orbit { position: relative; z-index: 1; }
.bc-product-main .hero-orbit__copy { max-width: 880px; margin: 0 auto 32px; position: relative; z-index: 2; }
.bc-product-main .hero-orbit__copy--top { max-width: 1100px; }
.bc-product-main .hero-orbit__copy--top h1 { margin-bottom: 0; }
.bc-product-main .hero-orbit__copy--bottom { margin: 32px auto 0; }
.bc-product-main .hero-orbit__copy--bottom .hero-sub { margin-top: 0; }
.bc-product-main .hero-orbit__copy .section-label { margin-bottom: 22px; }
.bc-product-main .hero-orbit__copy .hero-ctas { justify-content: center; }
.bc-product-main .hero h1 {
  font-size: var(--bc-text-h1); letter-spacing: var(--bc-ls-tight);
  line-height: var(--bc-lh-display); font-weight: var(--bc-fw-semibold); margin-bottom: 24px;
}
.bc-product-main .hero h1 em { font-style: normal; color: var(--bc-accent); }
.bc-product-main .hero .section-label { color: var(--bc-text-muted); letter-spacing: 0.2em; font-weight: var(--bc-fw-medium); margin-bottom: 28px; }
.bc-product-main .hero .hero-sub { font-size: var(--bc-text-body-l); line-height: var(--bc-lh-body); margin: 0 auto 36px; max-width: 720px; color: var(--bc-text-secondary); }
.bc-product-main .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }

.bc-product-main .hero-stage {
  position: relative; width: 100%; max-width: 1080px; margin: 0 auto;
  aspect-ratio: 1080/570; --px: 0; --py: 0;
}
.bc-product-main .hero-stage__core {
  position: absolute; top: 50%; left: 50%; width: 52%; max-width: 570px; max-height: 570px; height: auto;
  transform: translate(-50%, -50%) scale(1); z-index: 2;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.55));
  animation: bcCoreBreath 9s ease-in-out infinite;
  will-change: transform, filter; pointer-events: none; user-select: none; object-fit: contain;
}
.bc-product-main .hero-float {
  position: absolute; margin: 0; transform: rotate(var(--r, 0deg));
  transition: transform 780ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 600ms ease-out;
  will-change: transform, filter;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
  opacity: 0; cursor: pointer;
}
.bc-product-main .hero-float__inner {
  display: block; width: 100%; height: auto;
  animation: bcFloatIdle var(--t, 7s) ease-in-out infinite alternate;
  animation-delay: var(--dl, 0s); will-change: transform;
}
.bc-product-main .hero-float img { width: 100%; height: auto; display: block; }
.bc-product-main .hero-float.is-in {
  opacity: 1;
  animation: bcHeroFloatIn 1100ms cubic-bezier(0.22, 0.9, 0.32, 1.18) backwards;
  animation-delay: var(--in-dl, 0ms);
}
@media (hover: hover) and (pointer: fine) {
  .bc-product-main .hero-float:hover {
    z-index: 10;
    transition: transform 480ms cubic-bezier(0.33, 1, 0.68, 1), filter 420ms cubic-bezier(0.33, 1, 0.68, 1);
    transform: translate3d(0, -4px, 0) rotate(var(--r, 0deg)) scale(1.018);
    filter: drop-shadow(0 34px 52px rgba(0, 0, 0, 0.48)) drop-shadow(0 0 14px rgba(167, 213, 65, 0.08));
  }
  .bc-product-main .hero-stage:has(.hero-float:hover) .hero-float:not(:hover) {
    opacity: 0.85;
    filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.42)) saturate(0.95);
  }
}
.bc-product-main .hero-float--concierge { top: 4%; left: 2%; width: 24%; --r: -3deg; --t: 8s; --dl: -1s; --in-dl: 980ms; z-index: 4; }
.bc-product-main .hero-float--protection { top: 62%; left: 3%; width: 22%; --r: 0deg; --t: 7s; --dl: -3.4s; --in-dl: 1480ms; z-index: 3; }
.bc-product-main .hero-float--phone { top: 10%; left: 24%; width: 22%; --r: -2deg; --t: 9s; --dl: -2s; --in-dl: 240ms; z-index: 5; }
.bc-product-main .hero-float--dashboard { top: 8%; right: 2%; width: 30%; --r: 3deg; --t: 8.5s; --dl: -1.7s; --in-dl: 560ms; z-index: 4; }
.bc-product-main .hero-float--chart { top: 56%; right: 6%; width: 24%; --r: 2deg; --t: 7.5s; --dl: -0.5s; --in-dl: 1240ms; z-index: 3; }

.bc-product-main .hero-card {
  border-radius: var(--bc-radius-md); border: 1px solid var(--bc-border-subtle);
  background: linear-gradient(180deg, rgba(22, 24, 30, 0.92), rgba(14, 16, 20, 0.88));
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: var(--bc-text-secondary); font-family: var(--bc-font-body); text-align: left;
}
.bc-product-main .hero-float--concierge .hero-card { min-width: 240px; }
.bc-product-main .hero-float--protection .hero-card { min-width: 220px; }
.bc-product-main .hero-float--chart .hero-card { min-width: 240px; }

.bc-product-main .hero-card--concierge {
  padding: 18px 20px; display: flex; flex-direction: column; gap: 14px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, rgba(22,24,30,0.92), rgba(14,16,20,0.88)) padding-box, var(--bc-stroke-gradient) border-box;
}
.bc-product-main .hero-card__head { display: flex; gap: 14px; align-items: center; }
.bc-product-main .hero-card__avatar {
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(10, 12, 16, 0.9); border: 2px solid #A7D541; color: #F7F7F7;
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
  flex: none; box-shadow: 0 0 0 4px rgba(167, 213, 65, 0.08);
}
.bc-product-main .hero-card__avatar svg { width: 30px; height: 30px; }
.bc-product-main .hero-card__online {
  position: absolute; right: -1px; bottom: -1px; width: 10px; height: 10px;
  border-radius: 50%; background: #4ade80; border: 2px solid #0b0d0b;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.8);
  animation: bcHeroGlowPulse 2.4s ease-in-out infinite;
  transform-origin: center;
}
.bc-product-main .hero-card__who { min-width: 0; }
.bc-product-main .hero-card__name { font-size: 13px; font-weight: 600; color: var(--bc-text-primary); line-height: 1.2; }
.bc-product-main .hero-card__role { font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--bc-text-muted); margin-top: 3px; }
.bc-product-main .hero-card__msg { margin: 0; font-size: 13px; line-height: 1.5; color: var(--bc-text-secondary); }
.bc-product-main .hero-card__foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.bc-product-main .hero-card__pill {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em;
  color: #B2A58F; padding: 8px 18px; border-radius: var(--bc-radius-pill);
  background: rgba(15, 18, 28, 0.7); border: 1px solid rgba(178, 165, 143, 0.28);
  white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.bc-product-main .hero-card--concierge .hero-card__role { color: #7981AD; font-weight: 600; letter-spacing: 0.16em; font-size: 11px; }
.bc-product-main .hero-card--concierge .hero-card__name { font-size: 15px; }
.bc-product-main .hero-card--concierge .hero-card__msg { color: #ADB3D9; line-height: 1.55; font-size: 13px; min-height: calc(1.55em * 3); margin: 0; }
.bc-product-main .hero-card__msg.is-typing::after {
  content: ""; display: inline-block; width: 2px; height: 0.95em; background: #A7D541;
  margin-left: 2px; vertical-align: -2px;
  animation: bcCaretBlink 0.9s steps(2, end) infinite;
}
.bc-product-main .hero-card--concierge .hero-card__online { display: none; }
.bc-product-main .hero-card--concierge .hero-card__typing { display: none; }
.bc-product-main .hero-card--concierge .hero-card__foot { justify-content: center; margin-top: 2px; }
.bc-product-main .hero-card__typing { display: inline-flex; gap: 3px; align-items: center; }
.bc-product-main .hero-card__typing i {
  display: block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--bc-accent); opacity: 0.35;
  animation: bcTypingDot 1.2s ease-in-out infinite;
}
.bc-product-main .hero-card__typing i:nth-child(2) { animation-delay: 0.2s; }
.bc-product-main .hero-card__typing i:nth-child(3) { animation-delay: 0.4s; }

.bc-product-main .hero-card--protection {
  padding: 14px 16px; display: flex; flex-direction: column; gap: 10px;
  position: relative; overflow: hidden; border: 1px solid transparent;
  background: linear-gradient(180deg, rgba(22,24,30,0.92), rgba(14,16,20,0.88)) padding-box, var(--bc-stroke-gradient) border-box;
}
.bc-product-main .hero-card__label {
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--bc-text-muted); display: flex; align-items: center; gap: 8px;
}
.bc-product-main .hero-card__info {
  display: inline-flex; align-items: center; justify-content: center;
  width: 12px; height: 12px; border-radius: 50%;
  border: 1px solid currentColor; font-size: 8px; font-style: italic;
  font-family: var(--bc-font-display); color: var(--bc-text-muted); line-height: 1;
}
.bc-product-main .hero-card__bars { display: flex; gap: 3px; height: 22px; align-items: stretch; position: relative; z-index: 1; }
.bc-product-main .hero-card__bars > i { flex: 1; background: #A7D541; border-radius: 1px; }
.bc-product-main .hero-card__bars > i.bar-pending { background: #5FB6C4; }
.bc-product-main .hero-float--protection.is-in .hero-card__bars > i.bar-pending {
  animation: bcBarFill 6s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

.bc-product-main .hero-card--chart {
  padding: 18px 20px; display: flex; flex-direction: row; gap: 18px; align-items: flex-start;
  border: 1px solid transparent;
  background: linear-gradient(180deg, rgba(22,24,30,0.92), rgba(14,16,20,0.88)) padding-box, var(--bc-stroke-gradient) border-box;
}
.bc-product-main .hero-card__chart-info { display: flex; flex-direction: column; gap: 8px; flex: 0 0 auto; max-width: 88px; }
.bc-product-main .hero-card__chart-graph { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.bc-product-main .hero-card__chart-axis { display: flex; justify-content: space-between; font-size: 7px; color: rgba(255,255,255,0.35); font-variant-numeric: tabular-nums; letter-spacing: 0.02em; padding: 0 1px; }
.bc-product-main .hero-card__stat { font-family: var(--bc-font-display); font-size: 34px; font-weight: 700; color: var(--bc-text-primary); line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.bc-product-main .hero-card__sparkbars { width: 100%; height: 60px; display: block; overflow: visible; }
.bc-product-main .hero-card__sparkbars rect {
  fill: rgba(255,255,255,0.14);
  transform: scaleY(0); transform-origin: center bottom; transform-box: fill-box;
  transition: transform 0.9s var(--bc-ease);
  transition-delay: calc(var(--i, 0) * 45ms);
}
.bc-product-main .hero-card__sparkbars rect.is-active { fill: #A7D541; }
.bc-product-main .hero-float--chart.is-in .hero-card__sparkbars rect {
  transform: scaleY(var(--h, 1));
  animation: bcBarBreath 4.2s ease-in-out infinite alternate;
  animation-delay: calc(1200ms + var(--i, 0) * 140ms);
}

@media (max-width: 760px) {
  .bc-product-main .h1-break { display: none; }
}

/* ============================================================
 * 5. Awards
 * ============================================================ */

.bc-product-main .awards-section { padding: 24px 0 56px; position: relative; z-index: 2; }
.bc-product-main .awards-heading { display: flex; align-items: center; gap: 24px; margin-bottom: 32px; }
.bc-product-main .awards-heading::before,
.bc-product-main .awards-heading::after { content: ''; flex: 1; height: 1px; background: var(--bc-border-muted); }
.bc-product-main .awards-heading span {
  color: var(--bc-accent); text-align: center;
  font-family: 'Red Hat Text', system-ui, sans-serif;
  font-size: 14px; font-weight: 500; line-height: 140%; letter-spacing: 1.4px;
  text-transform: uppercase; white-space: nowrap;
}
.bc-product-main .awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bc-product-main .awards-grid.awards-grid--badges { grid-template-columns: repeat(6, minmax(0, 1fr)); max-width: 960px; margin: 0 auto; gap: 20px; }
.bc-product-main .awards-grid.awards-grid--press { max-width: 880px; margin: 0 auto; gap: 48px; align-items: center; }
.bc-product-main .awards-heading--press { margin-top: 48px; }
.bc-product-main .award-square {
  aspect-ratio: 1/1; border-radius: var(--bc-radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.bc-product-main .award-square img { max-width: 100%; max-height: 100%; height: auto; object-fit: contain; }
.bc-product-main .press-mark { display: flex; align-items: center; justify-content: center; height: 40px; }
.bc-product-main .press-mark img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  opacity: 0.72; transition: opacity 0.2s;
}
.bc-product-main .press-mark:hover img { opacity: 1; }

/* ============================================================
 * 6. Tour
 * ============================================================ */

.bc-product-main .tour-section { padding: var(--bc-section-pad) 0; }
.bc-product-main .tour-section .section-label {
  color: var(--bc-accent); text-align: center;
  font-family: 'Red Hat Text', system-ui, sans-serif;
  font-size: 14px; font-weight: 500; line-height: 140%; letter-spacing: 1.4px;
  justify-content: center;
}
.bc-product-main .tour-section .section-header h2 {
  color: #F7F7F7; text-align: center;
  font-family: 'Red Hat Display', system-ui, sans-serif;
  font-size: 40px; font-weight: 600; line-height: 130%; letter-spacing: normal;
}
.bc-product-main .tour-video-wrap { max-width: 880px; margin: 0 auto; }

/* ============================================================
 * 7. Use cases
 * ============================================================ */

.bc-product-main .use-cases-section { padding: var(--bc-section-pad) 0; position: relative; overflow: hidden; }
.bc-product-main .use-cases-grid {
  --item-h: 84px;
  display: grid; grid-template-columns: max-content max-content;
  gap: 16px; align-items: start; justify-content: center;
}
.bc-product-main .use-cases-left { display: flex; flex-direction: column; position: relative; z-index: 1; }
.bc-product-main .use-cases-left .section-label { height: var(--item-h); display: inline-flex; align-items: center; margin: 0; }
.bc-product-main .use-cases-left h2 {
  font-family: 'Red Hat Display', system-ui, sans-serif;
  font-size: 40px; letter-spacing: var(--bc-ls-tight); line-height: 130%;
  font-weight: 600; white-space: nowrap; margin: 0;
  height: var(--item-h); display: flex; align-items: center;
}
.bc-product-main .use-cases-detail { display: flex; flex-direction: column; gap: 16px; min-height: 220px; margin-top: 32px; }
.bc-product-main .use-cases-detail-title {
  font-family: var(--bc-font-body); font-size: var(--bc-text-body-l);
  font-weight: var(--bc-fw-semibold); color: var(--bc-text-primary);
  line-height: var(--bc-lh-tight); margin: 0;
  transition: opacity 0.3s var(--bc-ease);
}
.bc-product-main .use-cases-detail-body {
  font-size: var(--bc-text-body-m); line-height: var(--bc-lh-body);
  color: var(--bc-text-secondary); margin: 0; max-width: 520px;
  transition: opacity 0.3s var(--bc-ease);
}
.bc-product-main .use-cases-detail-bullets-heading {
  font-family: var(--bc-font-body); font-size: 13px; font-weight: var(--bc-fw-semibold);
  color: var(--bc-text-primary); letter-spacing: 0; text-transform: none;
  margin: 12px 0 0 0; transition: opacity 0.3s var(--bc-ease);
}
.bc-product-main .use-cases-detail-bullets { display: grid; gap: 12px; margin-top: 8px; transition: opacity 0.3s var(--bc-ease); }
.bc-product-main .use-cases-detail.is-swapping .use-cases-detail-title,
.bc-product-main .use-cases-detail.is-swapping .use-cases-detail-body,
.bc-product-main .use-cases-detail.is-swapping .use-cases-detail-bullets-heading,
.bc-product-main .use-cases-detail.is-swapping .use-cases-detail-bullets { opacity: 0; }
.bc-product-main .use-cases-detail-bullet {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; line-height: 1.55;
  color: var(--bc-text-secondary); font-family: var(--bc-font-body);
  max-width: 520px;
}
.bc-product-main .use-cases-detail-bullet-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bc-accent); margin-top: 7px; flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(178,165,143,0.12);
}
.bc-product-main .use-cases-right { position: relative; cursor: default; }
.bc-product-main .use-cases-viewport {
  --visible-slots: 7; position: relative;
  height: calc(var(--item-h) * var(--visible-slots));
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent 0, rgba(0,0,0,0.25) 5%, #000 15%, #000 85%, rgba(0,0,0,0.25) 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0,0,0,0.25) 5%, #000 15%, #000 85%, rgba(0,0,0,0.25) 95%, transparent 100%);
}
.bc-product-main .use-cases-list {
  --active-index: 0; list-style: none; margin: 0; padding: 0;
  transform: translateY(calc(var(--item-h) * (1 - var(--active-index))));
  transition: transform 700ms var(--bc-ease);
}
.bc-product-main .use-cases-list.no-anim { transition: none; }
.bc-product-main .use-cases-item { height: var(--item-h); display: flex; align-items: center; }
.bc-product-main .use-cases-item button {
  appearance: none; background: transparent; border: 0; padding: 0; margin: 0; cursor: pointer;
  font-family: 'Red Hat Display', system-ui, sans-serif;
  font-size: 40px; font-weight: 600; letter-spacing: var(--bc-ls-tight); line-height: 130%;
  color: var(--bc-primary-4); text-align: left;
  transition: color 500ms var(--bc-ease), opacity 500ms var(--bc-ease);
  width: 100%; white-space: nowrap;
}
.bc-product-main .use-cases-item.is-active button { color: var(--bc-accent); }
.bc-product-main .use-cases-item.is-prev button { opacity: 0.45; }
.bc-product-main .use-cases-item.is-far button { opacity: 0.2; }
.bc-product-main .use-cases-right.is-paused .use-cases-item button:hover { color: var(--bc-text-primary); }
.bc-product-main .use-cases-mobile-select { display: none; margin-top: 20px; }
.bc-product-main .use-cases-select {
  width: 100%; appearance: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid var(--bc-border-subtle); border-radius: 14px;
  color: var(--bc-text-primary); font: 600 16px var(--bc-font-body);
  padding: 14px 44px 14px 16px; outline: none;
  background-image: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025)),
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3 5l4 4 4-4' stroke='%23B2A58F' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, right 14px center;
  background-size: auto, 14px;
}
.bc-product-main .use-cases-select:focus-visible { border-color: var(--bc-accent); box-shadow: 0 0 0 3px rgba(166,214,70,0.18); }

/* ============================================================
 * 8. Pillars (intro + dock + sections + bento + concern explorer)
 * ============================================================ */

.bc-product-main .pillars-intro-section { padding: var(--bc-section-pad) 0 calc(var(--bc-section-pad) / 2); }
.bc-product-main .pillars-intro-section .section-header { margin-bottom: 0; }
.bc-product-main .pillars-intro-section .section-label {
  justify-content: center; color: var(--bc-secondary-3); text-align: center;
  font-family: 'Red Hat Text', system-ui, sans-serif;
  font-size: 14px; font-weight: 500; line-height: 140%; letter-spacing: 1.4px;
  text-transform: uppercase; margin-bottom: 16px;
}
.bc-product-main .pillars-intro-section .section-header h2 {
  color: #F7F7F7; text-align: center;
  font-family: 'Red Hat Display', system-ui, sans-serif;
  font-size: 40px; font-weight: 600; line-height: 130%; letter-spacing: normal;
  margin-bottom: 16px;
}
.bc-product-main .pillars-intro-section .section-header p {
  max-width: 780px; margin: 0 auto;
  color: #ADB3D9; text-align: center;
  font-family: 'Red Hat Text', system-ui, sans-serif;
  font-size: 18px; font-weight: 400; line-height: 160%;
}

.bc-product-main .pillars-section { padding: 24px 0 0; position: relative; z-index: 40; }
.bc-product-main .section-header { text-align: center; max-width: 740px; margin: 0 auto 56px; position: relative; z-index: 1; }
.bc-product-main .section-header h2 { font-size: var(--bc-text-h2); letter-spacing: var(--bc-ls-tight); margin-bottom: 16px; }
.bc-product-main .section-header p { font-size: 17px; }

.bc-product-main .pillar-tabs-dock { position: relative; z-index: 3; width: 100%; max-width: 960px; margin: 0 auto; }
.bc-product-main .pillar-tabs-panel {
  position: relative; padding: 12px;
  border: 1px solid transparent; border-radius: 48px;
  background: linear-gradient(21deg, #151722 11.05%, #1F2338 83.01%) padding-box, var(--bc-stroke-gradient) border-box;
  box-shadow: 0 18px 34px rgba(0,0,0,0.25);
  transition: opacity 0.28s, transform 0.28s, box-shadow 0.28s;
}
.bc-product-main .pillar-tabs-panel.is-floating { box-shadow: 0 24px 48px rgba(0,0,0,0.35); }
.bc-product-main .pillar-tabs-panel.is-fading { opacity: 0; transform: translateY(-12px); pointer-events: none; }
.bc-product-main .pillar-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; position: relative; }
.bc-product-main .pillar-nav-link {
  display: flex; width: 100%; padding: 6px 16px;
  justify-content: center; align-items: center; gap: 10px; justify-self: stretch;
  border-radius: 32px; background: #2C2E49; color: #F7F7F7;
  font-family: 'Red Hat Text', system-ui, sans-serif;
  font-size: 15px; font-weight: 550; line-height: 140%;
  text-align: center; text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.bc-product-main .pillar-nav-link:hover { background: #363957; color: #F7F7F7; }
.bc-product-main .pillar-nav-link.is-active { background: linear-gradient(180deg, rgba(178,165,143,0.18), rgba(178,165,143,0.08)); border-color: rgba(178,165,143,0.4); color: #F7F7F7; }

.bc-product-main .pillar-section {
  padding: var(--bc-section-pad) 0; position: relative;
  scroll-margin-top: 120px;
  border-bottom: 1px solid var(--bc-border-subtle);
}
.bc-product-main .pillar-section:last-of-type { border-bottom: none; }
.bc-product-main .pillar-section-header { max-width: 780px; margin: 0 auto 48px; text-align: center; }
.bc-product-main .pillar-section-eyebrow {
  display: inline-block; border-radius: 24px;
  /* A6: per-pillar accent, falls back to brand gold. */
  background: var(--bc-pillar-accent, #B2A58F); color: #151722;
  padding: 4px 16px;
  font-family: 'Red Hat Text', system-ui, sans-serif;
  font-size: 20px; font-weight: 600; line-height: 140%; letter-spacing: 0.2px;
  margin-bottom: 16px;
}
.bc-product-main .pillar-section .concern-bullet-dot {
  background: var(--bc-pillar-accent, var(--bc-accent));
}
.bc-product-main .pillar-section .concern-tab.active::before {
  color: var(--bc-pillar-accent, #B2A58F);
}
.bc-product-main .pillar-section-header h2 {
  color: #F7F7F7; font-family: 'Red Hat Display', system-ui, sans-serif;
  font-size: 40px; font-weight: 600; line-height: 130%; letter-spacing: normal;
  margin-bottom: 16px;
}
.bc-product-main .pillar-section-header p {
  color: #ADB3D9; font-family: 'Red Hat Text', system-ui, sans-serif;
  font-size: 18px; font-weight: 400; line-height: 160%;
  margin: 0 auto; max-width: 640px;
}

.bc-product-main .pillar-bentos-stack { display: grid; gap: 128px; }
.bc-product-main .pillar-bento-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: 1fr 1fr; gap: 16px; min-height: 420px;
}
.bc-product-main .pillar-bento-grid--halved { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr); }
.bc-product-main .pillar-bento {
  border-radius: 24px; border: 1px solid transparent;
  background: linear-gradient(21deg, #151722 11.05%, #1F2338 83.01%) padding-box, var(--bc-stroke-gradient) border-box;
  padding: 32px; margin: 0; display: flex; flex-direction: column;
}
.bc-product-main .pillar-bento--main { grid-column: 1; grid-row: 1 / 3; position: relative; overflow: hidden; }
.bc-product-main .pillar-bento--tall { grid-column: 3; grid-row: 1 / 3; }
.bc-product-main .pillar-bento--main h3 {
  font-family: 'Red Hat Display', system-ui, sans-serif;
  font-size: 28px; font-weight: 600; line-height: 130%; letter-spacing: var(--bc-ls-tight);
  margin: 0 0 16px; color: var(--bc-text-primary);
}
.bc-product-main .pillar-bento--main p {
  color: var(--bc-text-secondary); font-family: 'Red Hat Text', system-ui, sans-serif;
  font-size: 15px; line-height: 1.7; margin: 0; max-width: 340px;
}
.bc-product-main .pillar-bento--main__image {
  position: absolute; right: 0; bottom: 0;
  max-width: 88%; width: auto; height: auto; pointer-events: none;
}
/* Background-image variant — image covers the whole panel; title/body
 * sit above it (top-left, where the design intentionally leaves a gap). */
.bc-product-main .pillar-bento--main--bg-image { padding: 32px; }
.bc-product-main .pillar-bento--main--bg-image > h3,
.bc-product-main .pillar-bento--main--bg-image > p { position: relative; z-index: 1; }
.bc-product-main .pillar-bento--main--bg-image .pillar-bento--main__image {
  position: absolute; inset: 0; right: auto; bottom: auto;
  width: 100%; height: 100%; max-width: none;
  object-fit: contain; object-position: right bottom; z-index: 0;
}
.bc-product-main .pillar-bento--bullet { padding: 24px; }
.bc-product-main .pillar-bento--bullet p {
  color: var(--bc-text-secondary); font-family: 'Red Hat Text', system-ui, sans-serif;
  font-size: 16px; line-height: 1.5; margin: 0;
}
.bc-product-main .pillar-bento--bullet small {
  display: block; margin-top: 8px;
  font-size: 11px; line-height: 1.5; color: var(--bc-text-muted);
  letter-spacing: 0.02em;
}
.bc-product-main .pillar-bento--bullet--with-image {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; text-align: center;
}
.bc-product-main .pillar-bento--bullet--with-image p { text-align: center; max-width: 320px; }
.bc-product-main .pillar-bento--bullet--with-image img {
  display: block; max-width: 100%; height: auto;
}
.bc-product-main .pillar-bento--bullet--image-only { padding: 16px; }
.bc-product-main .pillar-bento--bullet--image-only img { max-width: 100%; }

.bc-product-main .pillar-feature-explorer { margin-top: 0; }
.bc-product-main .pillar-feature-explorer--right .concern-layout { grid-template-columns: 1fr 280px; }
.bc-product-main .pillar-feature-explorer--right .concern-rail { order: 2; }
.bc-product-main .pillar-feature-explorer--right .concern-content { order: 1; }
.bc-product-main .pillar-feature-explorer--right .concern-media { justify-self: start; }

.bc-product-main .concern-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.bc-product-main .concern-rail {
  background: linear-gradient(var(--bc-bg), var(--bc-bg)) padding-box, var(--bc-stroke-gradient) border-box;
  border: 1px solid transparent; border-radius: 16px; padding: 12px;
  position: sticky; top: 180px;
}
.bc-product-main .concern-select-wrap { display: none; position: relative; }
.bc-product-main .concern-select-wrap::after {
  content: '▾'; position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: var(--bc-text-muted); font-size: 16px; pointer-events: none;
}
.bc-product-main .concern-select {
  width: 100%; appearance: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid var(--bc-border-subtle); border-radius: 16px;
  color: var(--bc-text-primary); font: 600 14px var(--bc-font-body);
  padding: 15px 48px 15px 16px; outline: none;
}
.bc-product-main .concern-tabs { display: grid; gap: 6px; }
.bc-product-main .concern-tab-group { display: grid; gap: 6px; }
.bc-product-main .concern-tab {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 8px;
  font-family: 'Red Hat Text', system-ui, sans-serif;
  font-size: 17px; font-weight: 400; line-height: normal; letter-spacing: 0.17px;
  background: rgba(44, 46, 73, 0.20); color: #5B638C;
  border: none; cursor: pointer; transition: background 0.2s, color 0.2s;
  text-align: left; position: relative;
}
.bc-product-main .concern-tab:hover { background: rgba(44, 46, 73, 0.40); color: #7981AD; }
.bc-product-main .concern-tab.active { background: #2C2E49; color: #F7F7F7; font-weight: 500; }
.bc-product-main .concern-content { display: grid; gap: 24px; }
.bc-product-main .concern-detail { min-height: 0; }
.bc-product-main .concern-detail-card {
  border-radius: 24px; border: 1px solid transparent;
  background: linear-gradient(292deg, #151722 3.47%, #1F2338 105.86%) padding-box, var(--bc-stroke-gradient) border-box;
  padding: 32px;
  display: grid; grid-template-columns: minmax(0, 1.35fr) 280px;
  gap: 24px; align-items: start; min-height: 100%;
}
.bc-product-main .concern-detail-main { min-width: 0; display: grid; gap: 24px; }
.bc-product-main .concern-detail-meta { font-size: 11px; font-weight: 600; letter-spacing: 1.3px; text-transform: uppercase; color: var(--bc-accent); }
.bc-product-main .concern-detail-card h3 { font-size: var(--bc-text-h3); letter-spacing: var(--bc-ls-tight); margin-bottom: 12px; }
.bc-product-main .concern-detail-copy { font-size: 15px; line-height: 1.8; max-width: 780px; }
.bc-product-main .concern-bullets-heading {
  font-family: var(--bc-font-body); font-size: 13px; font-weight: var(--bc-fw-semibold);
  color: var(--bc-text-primary); letter-spacing: 0; text-transform: none;
  margin: 0 0 4px 0;
}
.bc-product-main .concern-bullets { display: grid; gap: 12px; }
.bc-product-main .concern-bullet { display: flex; gap: 12px; align-items: flex-start; padding: 6px 0; font-size: 14px; color: var(--bc-text-secondary); }
.bc-product-main .concern-bullet-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bc-accent); margin-top: 8px; flex-shrink: 0; box-shadow: 0 0 0 6px rgba(178,165,143,0.12); }
.bc-product-main .concern-media { aspect-ratio: 262 / 522; max-width: 280px; width: 100%; justify-self: end; }
.bc-product-main .concern-media img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }

/* ============================================================
 * 9. Personas
 * ============================================================ */

.bc-product-main .personas-section { padding: var(--bc-section-pad) 0; }
.bc-product-main .personas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
.bc-product-main .persona-card {
  border-radius: 24px; border: 1px solid transparent;
  background: linear-gradient(var(--bc-bg), var(--bc-bg)) padding-box, var(--bc-stroke-gradient) border-box;
  padding: 32px; text-align: center;
  transition: transform var(--bc-dur-med) var(--bc-ease);
}
.bc-product-main .persona-card:hover { transform: translateY(-2px); }
.bc-product-main .persona-card__icon {
  width: 56px; height: 56px; margin: 0 auto 20px;
  display: block; object-fit: contain;
}
.bc-product-main .persona-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.bc-product-main .persona-card p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

/* ============================================================
 * 10. Proof / testimonials
 * ============================================================ */

.bc-product-main .proof-section { padding: var(--bc-section-pad) 0; background: #151722; }
.bc-product-main .testimonials-carousel {
  position: relative; margin-bottom: 48px; overflow: hidden;
  /* iOS Safari resolves the `transparent` keyword to opaque-black in some
   * versions, which makes the masked element invisible. rgba(0,0,0,0) is
   * the safe literal form across browsers. */
  mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0, #000 5%, #000 95%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0, #000 5%, #000 95%, rgba(0,0,0,0) 100%);
}
.bc-product-main .testimonials-viewport { overflow: hidden; }
.bc-product-main .testimonials-track {
  --marquee-duration: 45s;
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 24px; width: max-content;
  animation: bcTestimonialMarquee var(--marquee-duration) linear infinite;
  will-change: transform;
}
.bc-product-main .testimonials-carousel:hover .testimonials-track { animation-play-state: paused; }
.bc-product-main .testimonial {
  flex: 0 0 360px;
  border-radius: 24px; border: 1px solid transparent;
  background: linear-gradient(#1a1c2a, #1a1c2a) padding-box, var(--bc-stroke-gradient) border-box;
  padding: 32px; position: relative; min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.bc-product-main .testimonial blockquote {
  font-size: 15px; line-height: 1.7; color: var(--bc-text-secondary);
  margin: 0 0 24px; quotes: none;
}
.bc-product-main .testimonial cite { font-size: 14px; font-style: normal; font-weight: 600; color: var(--bc-text-primary); }

/* ============================================================
 * 11. CTA
 * ============================================================ */

.bc-product-main .cta-section { padding: var(--bc-section-pad) 0; text-align: center; position: relative; }
.bc-product-main .cta-panel {
  border-radius: 32px; border: 1px solid transparent;
  background: linear-gradient(21deg, #151722 11.05%, #1F2338 83.01%) padding-box, var(--bc-stroke-gradient) border-box;
  padding: 72px 48px; position: relative;
}
.bc-product-main .cta-content { position: relative; z-index: 1; }
.bc-product-main .cta-eyebrow {
  color: var(--bc-secondary-3);
  font-family: 'Red Hat Text', system-ui, sans-serif;
  font-size: 14px; font-weight: 500; line-height: 140%; letter-spacing: 1.4px;
  text-transform: uppercase; margin-bottom: 16px;
}
.bc-product-main .cta-content h2 {
  color: #F7F7F7; font-family: 'Red Hat Display', system-ui, sans-serif;
  font-size: 40px; font-weight: 600; line-height: 130%; letter-spacing: normal;
  margin-bottom: 24px;
}
.bc-product-main .cta-content p {
  color: #ADB3D9; font-family: 'Red Hat Text', system-ui, sans-serif;
  font-size: 18px; font-weight: 400; line-height: 160%;
  margin: 0 auto 36px; max-width: 720px;
}
.bc-product-main .cta-buttons { display: flex; gap: 16px; justify-content: center; margin-top: 32px; }

/* ============================================================
 * 12. Reveal-on-scroll helper
 * ============================================================ */

.js-reveal .bc-product-main .reveal-target {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s var(--bc-ease), transform 0.8s var(--bc-ease);
}
.js-reveal .bc-product-main .reveal-target.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
 * 13. Keyframes (global — safe to share)
 * ============================================================ */

@keyframes bcCoreBreath {
  0%, 100% { transform: translate(-50%, -50%) scale(1); filter: drop-shadow(0 40px 80px rgba(0,0,0,0.55)); }
  50% { transform: translate(-50%, -50%) scale(1.018); filter: drop-shadow(0 50px 95px rgba(166,214,70,0.18)); }
}
@keyframes bcFloatIdle {
  from { transform: translateY(-6px); }
  to   { transform: translateY(6px); }
}
@keyframes bcHeroFloatIn {
  0%   { opacity: 0; transform: translate3d(0, 28px, 0) rotate(var(--r,0deg)) scale(0.9); filter: drop-shadow(0 0 0 rgba(0,0,0,0)) blur(8px); }
  55%  { opacity: 1; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.45)) blur(0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) rotate(var(--r,0deg)) scale(1); filter: drop-shadow(0 30px 50px rgba(0,0,0,0.45)); }
}
@keyframes bcHeroAuraDrift {
  0%   { transform: translate(-52%, -50%); opacity: 0.85; }
  100% { transform: translate(-48%, -50%); opacity: 1; }
}
@keyframes bcHeroGlowPulse {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.2); opacity: 1; }
}
@keyframes bcCaretBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes bcTypingDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
@keyframes bcBarFill {
  0%, 95%, 100% { background: #5FB6C4; }
  18%, 80% { background: #A7D541; }
}
@keyframes bcBarBreath {
  0%   { transform: scaleY(var(--h, 1)); }
  100% { transform: scaleY(calc(var(--h, 1) * 0.92)); }
}
@keyframes bcShimmer {
  0%   { transform: translateX(-120%) skewX(-12deg); }
  100% { transform: translateX(220%) skewX(-12deg); }
}
@keyframes bcFadeUp {
  0%   { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes bcTestimonialMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 12px)); }
}

@media (prefers-reduced-motion: reduce) {
  .bc-product-main .hero-stage__core,
  .bc-product-main .hero-float__inner { animation: none; }
  .bc-product-main .hero-float {
    transform: rotate(var(--r, 0deg)) !important;
    opacity: 1 !important;
    animation: none !important;
  }
  .bc-product-main .hero-card__typing i,
  .bc-product-main .hero-card__online { animation: none; }
  .bc-product-main .hero-card__bars > i { animation: none !important; }
  .bc-product-main .hero-card__sparkbars rect {
    transition: none; animation: none;
    transform: scaleY(var(--h, 1));
  }
  .bc-product-main .hero::before,
  .bc-product-main .hero--orbit::before { animation: none; }
  .bc-btn--primary::after { display: none; }
}

/* ============================================================
 * 14. Responsive — only the rules that target rendered blocks
 * ============================================================ */

@media (min-width: 901px) {
  .bc-product-main .pillar-tabs-dock.is-sticky {
    position: fixed; top: 84px; left: 50%; transform: translateX(-50%);
    width: calc(100% - 32px); max-width: 960px; z-index: 60;
  }
  .bc-product-main .pillar-tabs-dock.is-sticky .pillar-tabs-panel {
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.35);
  }
}

@media (max-width: 1100px) {
  .bc-product-main .pillar-nav { grid-template-columns: repeat(4, 1fr); }
  .bc-product-main .pillar-feature-explorer--right .concern-layout { grid-template-columns: 1fr 240px; }
}

@media (max-width: 1024px) {
  .bc-product-main .pillar-bentos-stack { gap: 80px; }
  .bc-product-main .pillar-bento-grid,
  .bc-product-main .pillar-bento-grid--halved {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto; min-height: 0; gap: 14px;
  }
  .bc-product-main .pillar-bento--main,
  .bc-product-main .pillar-bento--tall { grid-column: 1 / -1; grid-row: auto; }
  .bc-product-main .pillar-bento { padding: 28px; }
  .bc-product-main .pillar-bento--bullet { padding: 22px; }
  .bc-product-main .pillar-bento--main h3 { font-size: 24px; }
}

@media (max-width: 900px) {
  :root { --bc-section-pad: 64px; }
  .bc-product-main .awards-grid { grid-template-columns: repeat(4, 1fr); }
  .bc-product-main .awards-grid.awards-grid--badges { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bc-product-main .concern-layout,
  .bc-product-main .pillar-feature-explorer--right .concern-layout { grid-template-columns: 1fr; }
  .bc-product-main .hero h1 { font-size: 36px; }
  .bc-product-main .section-header h2 { font-size: 28px; }
  .bc-product-main .cta-content h2 { font-size: 30px; }

  .bc-product-main .pillar-tabs-dock { width: 100%; }
  .bc-product-main .pillar-tabs-panel { padding: 8px; border-radius: 36px; }
  .bc-product-main .pillar-nav { grid-template-columns: repeat(2, 1fr); }
  .bc-product-main .pillar-nav-link { padding: 10px 16px; font-size: 14px; }
  .bc-product-main .pillar-section-header h2 { font-size: 28px; }

  .bc-product-main .concern-rail {
    position: relative; top: auto; padding: 0; background: transparent; border: none;
  }
  .bc-product-main .concern-tabs { display: none; }
  .bc-product-main .concern-select-wrap { display: block; }
  .bc-product-main .concern-detail-card { grid-template-columns: 1fr; padding: 24px; }
  .bc-product-main .concern-media { max-width: 100%; aspect-ratio: 16 / 10; justify-self: stretch; }

  .bc-product-main .use-cases-grid { grid-template-columns: 1fr; gap: 24px; --item-h: 48px; }
  .bc-product-main .use-cases-right { display: none; }
  .bc-product-main .use-cases-mobile-select { display: block; }
  .bc-product-main .use-cases-left .section-label { height: auto; margin-bottom: 0; }
  .bc-product-main .use-cases-left h2 {
    font-size: 26px; white-space: normal; height: auto;
    line-height: var(--bc-lh-heading); margin-top: 8px;
  }
  .bc-product-main .use-cases-detail { margin-top: 20px; min-height: 0; gap: 12px; }
  .bc-product-main .use-cases-detail-body { font-size: 15px; line-height: 1.6; }

  .bc-product-main .tour-section .section-header h2 { font-size: 28px; line-height: 1.18; }
  .bc-product-main .tour-section .section-header { margin-bottom: 32px; }
  .bc-product-main .tour-video-wrap { margin: 0 -4px; }

  .bc-product-main .personas-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 48px; }
  .bc-product-main .persona-card { padding: 24px; }
  .bc-product-main .persona-card h3 { font-size: 17px; }
  .bc-product-main .persona-card__icon { width: 48px; height: 48px; margin-bottom: 16px; }

  .bc-product-main .cta-panel { padding: 48px 28px; border-radius: 24px; }
  .bc-product-main .cta-content h2 { font-size: 30px; }
  .bc-product-main .cta-content p { font-size: 16px; line-height: 1.6; margin-bottom: 28px; }
  .bc-product-main .cta-eyebrow { font-size: 13px; letter-spacing: 1.2px; }

  .bc-product-main .testimonials-carousel {
    mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0, #000 8%, #000 92%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0, #000 8%, #000 92%, rgba(0,0,0,0) 100%);
  }
  .bc-product-main .testimonial { flex-basis: 320px; min-height: 260px; }

  .bc-product-main .hero--orbit { padding: 100px 0 var(--bc-section-pad); }
  .bc-product-main .hero h1 { font-size: 42px; line-height: 1.1; }
  .bc-product-main .hero .section-label { margin-bottom: 18px; font-size: 11px; }
  .bc-product-main .hero-orbit__copy { margin-bottom: 28px; }
  .bc-product-main .hero-orbit__copy--bottom { margin: 28px auto 0; }
  .bc-product-main .hero-stage { aspect-ratio: 5/4; max-width: 680px; }
  .bc-product-main .hero-stage__core { width: 58%; }
  .bc-product-main .hero-float--concierge { top: 2%; left: 0; width: 30%; }
  .bc-product-main .hero-float--protection { top: 68%; left: 0; width: 28%; }
  .bc-product-main .hero-float--phone { top: 8%; left: 30%; width: 30%; }
  .bc-product-main .hero-float--dashboard { top: 4%; right: 0; width: 42%; }
  .bc-product-main .hero-float--chart { top: 58%; right: 2%; width: 40%; }
}

@media (max-width: 700px) {
  .bc-product-main .pillars-section { padding-top: 72px; }
  .bc-product-main .pillar-tabs-panel { padding: 6px; border-radius: 32px; }
  .bc-product-main .pillar-nav {
    grid-template-columns: none; display: flex;
    overflow-x: auto; scroll-snap-type: x mandatory; gap: 6px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  }
  .bc-product-main .pillar-nav::-webkit-scrollbar { display: none; }
  .bc-product-main .pillar-nav-link {
    flex: 0 0 auto; scroll-snap-align: center; white-space: nowrap;
    padding: 8px 16px; font-size: 13px;
  }
  .bc-product-main .pillar-section-header { margin: 0 auto 32px; }
  .bc-product-main .pillar-section-header h2 { font-size: 24px; margin-bottom: 12px; }
  .bc-product-main .pillar-section-header p { font-size: 15px; line-height: 1.55; }
  .bc-product-main .pillar-section-eyebrow { font-size: 14px; padding: 3px 12px; margin-bottom: 12px; }
}

@media (max-width: 600px) {
  .bc-product-main .pillar-bentos-stack { gap: 48px; }
  .bc-product-main .pillar-bento-grid,
  .bc-product-main .pillar-bento-grid--halved { grid-template-columns: 1fr; gap: 12px; }
  .bc-product-main .pillar-bento--main,
  .bc-product-main .pillar-bento--tall { grid-column: auto; grid-row: auto; }
  .bc-product-main .pillar-bento { padding: 22px; border-radius: 18px; }
  .bc-product-main .pillar-bento--bullet { padding: 18px; }
  .bc-product-main .pillar-bento--main h3 { font-size: 22px; margin-bottom: 10px; }
  .bc-product-main .pillar-bento--main p { font-size: 14px; line-height: 1.6; }
  .bc-product-main .pillar-bento--bullet p { font-size: 14.5px; line-height: 1.55; }

  /* Mobile: take the image out of absolute positioning so it flows below
   * the text instead of overlapping it. Applies to both the corner-anchored
   * and the full-bleed (`imageBg`) variants. */
  .bc-product-main .pillar-bento--main--bg-image { padding: 22px; }
  .bc-product-main .pillar-bento--main__image,
  .bc-product-main .pillar-bento--main--bg-image .pillar-bento--main__image {
    position: static; inset: auto; right: auto; bottom: auto;
    width: auto; height: auto;
    max-width: 100%; max-height: 220px;
    margin: 16px 0 0 auto;
    align-self: flex-end;
    object-fit: contain; object-position: right center;
  }

  .bc-product-main .personas-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 32px; }
  .bc-product-main .persona-card { padding: 22px; border-radius: 18px; }

  .bc-product-main .cta-section { padding: 48px 0; }
  .bc-product-main .cta-panel { padding: 36px 22px; border-radius: 20px; }
  .bc-product-main .cta-content h2 { font-size: 26px; line-height: 1.2; margin-bottom: 16px; }
  .bc-product-main .cta-content p { font-size: 15px; margin-bottom: 24px; }
  .bc-product-main .cta-buttons { gap: 10px; flex-direction: column; }
  .bc-product-main .cta-buttons .bc-btn { justify-content: center; width: 100%; padding: 1rem 1.25rem; }

  .bc-product-main .tour-section .section-header h2 { font-size: 24px; }
  .bc-product-main .testimonial { flex-basis: 280px; padding: 24px; min-height: 240px; }
  .bc-product-main .testimonial blockquote { font-size: 14px; margin-bottom: 18px; }
  .bc-product-main .testimonial cite { font-size: 13px; }

  /* Mobile testimonials: swap the marquee for a native swipe-stack.
   * The carousel becomes a horizontally-scrolling container with
   * scroll-snap, the track stops animating, and each card snaps to
   * centre. JS (bc.js) detects the same width and skips its clone /
   * animation setup so the two don't fight. */
  .bc-product-main .testimonials-carousel {
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: none; -webkit-mask-image: none;
  }
  .bc-product-main .testimonials-carousel::-webkit-scrollbar { display: none; }
  .bc-product-main .testimonials-viewport { overflow: visible; }
  .bc-product-main .testimonials-track {
    animation: none !important;
    width: auto;
    padding: 0 16px;
    gap: 16px;
  }
  .bc-product-main .testimonial {
    flex: 0 0 86%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .bc-product-main .concern-detail-card { padding: 18px; }
  .bc-product-main .concern-media { aspect-ratio: 3 / 2; }

  .bc-product-main .awards-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .bc-product-main .awards-grid.awards-grid--badges { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bc-product-main .awards-heading { gap: 14px; margin-bottom: 24px; }
  .bc-product-main .awards-heading span { font-size: 11px; letter-spacing: 1.1px; }

  .bc-product-main .personas-grid,
  .bc-product-main .cta-buttons { grid-template-columns: 1fr; display: grid; }

  .bc-product-main .hero--orbit { padding: 88px 0 var(--bc-section-pad); }
  .bc-product-main .hero-orbit__copy { margin-bottom: 22px; }
  .bc-product-main .hero-orbit__copy--bottom { margin: 22px auto 0; }
  .bc-product-main .hero h1 { font-size: 34px; line-height: 1.12; letter-spacing: -0.01em; }
  .bc-product-main .hero .section-label { margin-bottom: 14px; font-size: 10px; letter-spacing: 0.16em; }
  .bc-product-main .hero .hero-sub { font-size: 15px; line-height: 1.55; margin-bottom: 24px; }
  .bc-product-main .hero-stage { aspect-ratio: 1/1; max-width: 440px; }
  .bc-product-main .hero-stage__core { width: 78%; }
  .bc-product-main .hero-float--chart,
  .bc-product-main .hero-float--protection { display: none; }
  .bc-product-main .hero-float--concierge { display: block; top: 0; left: -2%; width: 42%; --r: -1deg; }
  .bc-product-main .hero-float--concierge .hero-card { min-width: 0; }
  .bc-product-main .hero-card--concierge { padding: 10px 12px; gap: 6px; border-radius: 12px; }
  .bc-product-main .hero-card--concierge .hero-card__avatar { width: 24px; height: 24px; border-width: 1.5px; box-shadow: 0 0 0 2px rgba(167,213,65,0.08); }
  .bc-product-main .hero-card--concierge .hero-card__avatar svg { width: 16px; height: 16px; }
  .bc-product-main .hero-card--concierge .hero-card__head { gap: 8px; }
  .bc-product-main .hero-card--concierge .hero-card__name { font-size: 10px; }
  .bc-product-main .hero-card--concierge .hero-card__role { font-size: 7.5px; letter-spacing: 0.12em; }
  .bc-product-main .hero-card--concierge .hero-card__msg { font-size: 9.5px; line-height: 1.45; min-height: calc(1.45em * 3); }
  .bc-product-main .hero-card--concierge .hero-card__pill { font-size: 7.5px; padding: 4px 9px; letter-spacing: 0.12em; }
  .bc-product-main .hero-float--phone { top: 18%; right: -2%; left: auto; width: 36%; --r: 3deg; }
  .bc-product-main .hero-float--dashboard { bottom: 8%; top: auto; left: -2%; width: 46%; --r: -2deg; }
  .bc-product-main .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; gap: 10px; }
  .bc-product-main .hero-ctas .bc-btn { justify-content: center; width: 100%; padding: 1rem 1.25rem; }

  .bc-product-main .pillar-nav-link { padding: 10px 14px; font-size: 13px; }
  .bc-product-main .testimonials-track { --marquee-duration: 35s; }
}

/* ============================================================
 * 15. Cascade tiebreaker — specificity booster vs Enfold
 *
 * Enfold uses `body#top h1` patterns (specificity 0,1,0,1) — the ID
 * beats any class-based rule we write. Switching to #bc-product-main
 * (the ID on our <main>) gives us 0,1,0,1 too; with `!important` and
 * source-order loading later than Enfold, we win.
 * ============================================================ */

body #bc-product-main h1,
body #bc-product-main h2,
body #bc-product-main h3,
body #bc-product-main h4,
body #bc-product-main h5,
body #bc-product-main h6 {
  font-family: var(--bc-font-display) !important;
  color: var(--bc-text-primary) !important;
  line-height: var(--bc-lh-heading) !important;
  letter-spacing: var(--bc-ls-tight) !important;
  font-weight: var(--bc-fw-bold) !important;
  text-transform: none !important;
}
body #bc-product-main h1 {
  font-size: var(--bc-text-h1) !important;
  line-height: var(--bc-lh-display) !important;
  font-weight: var(--bc-fw-semibold) !important;
  text-transform: none !important;
}
body #bc-product-main h2 { font-size: var(--bc-text-h2) !important; }
body #bc-product-main h3 { font-size: var(--bc-text-h3) !important; }
body #bc-product-main h1 em,
body #bc-product-main h2 em,
body #bc-product-main h3 em {
  font-style: normal !important;
  color: var(--bc-accent) !important;
  font-weight: inherit !important;
}

/* Use-cases detail title — visually a labeled body line, not a heading.
 * Re-specify everything the heading booster above forces. */
body #bc-product-main h3.use-cases-detail-title {
  font-family: var(--bc-font-body) !important;
  font-size: var(--bc-text-body-l) !important;
  font-weight: var(--bc-fw-semibold) !important;
  line-height: var(--bc-lh-tight) !important;
  letter-spacing: normal !important;
}

body #bc-product-main p,
body #bc-product-main li,
body #bc-product-main a {
  font-family: var(--bc-font-body) !important;
}
body #bc-product-main p { color: var(--bc-text-secondary) !important; }

/* CTA — Enfold's <p> text-align: left wins via specificity, override hard. */
body #bc-product-main .cta-section,
body #bc-product-main .cta-content,
body #bc-product-main .cta-content h2,
body #bc-product-main .cta-content p { text-align: center !important; }
body #bc-product-main .cta-content p {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 720px !important;
}

/* Pillar section header — same fight. Enfold body p left-aligns by default. */
body #bc-product-main .pillar-section-header,
body #bc-product-main .pillar-section-header h2,
body #bc-product-main .pillar-section-header p { text-align: center !important; }
body #bc-product-main .pillar-section-header p {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 640px !important;
}

/* Hero — same fight, ID-scoped. */
body #bc-product-main .hero,
body #bc-product-main .hero-orbit__copy,
body #bc-product-main .hero-orbit__copy h1,
body #bc-product-main .hero-orbit__copy .hero-sub,
body #bc-product-main .hero-orbit__copy .section-label,
body #bc-product-main p.hero-sub,
body #bc-product-main h1 .hero-h1-top,
body #bc-product-main h1 .hero-h1-bottom { text-align: center !important; }
body #bc-product-main p.hero-sub {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 720px !important;
  text-align: center !important;
}
body #bc-product-main .hero h1 { font-weight: var(--bc-fw-semibold) !important; }

body #bc-product-main .hero .hero-sub { margin-left: auto !important; margin-right: auto !important; }

/* bc-btn typography — Enfold's <a> rules can override font-weight, letter-spacing,
   text-transform and the gold background contrast. Force the BC button identity. */
body #bc-product-main .bc-btn {
  font-family: var(--bc-font-body) !important;
  font-size: var(--bc-text-body-s) !important;
  font-weight: var(--bc-fw-semibold) !important;
  letter-spacing: var(--bc-ls-wide) !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  line-height: 1 !important;
}
body #bc-product-main .bc-btn--primary { background: var(--bc-secondary-3) !important; color: var(--bc-text-on-gold) !important; }
body #bc-product-main .bc-btn--primary:hover { background: var(--bc-secondary-4) !important; color: var(--bc-text-on-gold) !important; }
body #bc-product-main .bc-btn--secondary-solid { background: transparent !important; color: var(--bc-text-primary) !important; border-color: var(--bc-text-primary) !important; }
body #bc-product-main .bc-btn--secondary-solid:hover { background: rgba(255,255,255,0.08) !important; color: var(--bc-text-primary) !important; }
body #bc-product-main .bc-btn:hover { text-decoration: none !important; }

/* Section-label text styling — Enfold may strip uppercase/letter-spacing on small inline elements. */
body #bc-product-main .section-label { text-transform: uppercase !important; letter-spacing: 1.5px !important; font-weight: 600 !important; }

/* Testimonial blockquote — strip Enfold's default `<blockquote>`
   left-border + padding-left + decorative quote pseudo-elements that
   ship globally and leak into our testimonial cards. */
body #bc-product-main .testimonial blockquote {
  border: 0 !important;
  border-left: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  background: none !important;
  background-image: none !important;
}
body #bc-product-main .testimonial blockquote::before,
body #bc-product-main .testimonial blockquote::after {
  content: none !important;
  display: none !important;
}

/* G1: use-cases skeleton state — shown until JS hydrates the list. The
   `is-hydrated` class is added by bc.js once the list renders. */
.bc-product-main .use-cases-list:not(.is-hydrated) .use-cases-item button {
  background: linear-gradient(90deg, rgba(65,72,112,0.18) 0%, rgba(65,72,112,0.32) 50%, rgba(65,72,112,0.18) 100%);
  background-size: 200% 100%;
  animation: bcSkeletonShimmer 1.6s ease-in-out infinite;
  color: transparent !important;
  border-radius: 8px;
  height: calc(var(--item-h, 84px) - 16px);
  display: block;
}
@keyframes bcSkeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* G4: stagger pillar-bento card reveals so they fade in one-by-one. */
.js-reveal .bc-product-main .pillar-bento.reveal-target {
  transition-delay: calc( var(--bc-bento-i, 0) * 80ms );
}

/* D6: focus-visible rings — Enfold may strip outlines globally for design polish. */
body #bc-product-main .bc-btn:focus-visible,
body #bc-product-main .pillar-nav-link:focus-visible,
body #bc-product-main .concern-tab:focus-visible,
body #bc-product-main .use-cases-item button:focus-visible,
body #bc-product-main select:focus-visible {
  outline: 2px solid var(--bc-accent) !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 4px rgba(178, 165, 143, 0.25) !important;
}

/* Product page disclaimer — small muted note rendered by page template
 * after the_content(). Sits inside .bc-product-main so styles cascade. */
.bc-product-main .bc-product-disclaimer {
  padding: 24px 0 32px;
  text-align: center;
}
.bc-product-main .bc-product-disclaimer .container {
  max-width: 720px;
}
.bc-product-main .bc-product-disclaimer,
body #bc-product-main .bc-product-disclaimer .container {
  color: var(--bc-text-muted);
  font-family: var(--bc-font-body);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

/* Section-label is rendered inline by static blocks even when empty —
 * hide visually so an empty eyebrow doesn't reserve vertical space. */
.bc-product-main .section-label:empty { display: none; }
