.bc-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-color: var(--primary);
  overflow: hidden;
}

/* ── Background ── */
.bc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.bc-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,194,168,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,168,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.bc-hero__bg-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,194,168,0.14) 0%, transparent 65%);
}
.bc-hero__bg-glow-2 {
  position: absolute;
  bottom: -150px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,194,168,0.07) 0%, transparent 65%);
}
.bc-hero__bg-shape {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48%;
  background: linear-gradient(135deg, rgba(0,194,168,0.06) 0%, transparent 60%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Floating dots */
.bc-hero__dots { position: absolute; inset: 0; pointer-events: none; }
.bc-hero__dot {
  position: absolute;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0.18;
  animation: bcFloat linear infinite;
}
.bc-hero__dot:nth-child(1) { width:6px;  height:6px;  top:18%; left:12%; animation-duration:9s;  animation-delay:0s; }
.bc-hero__dot:nth-child(2) { width:4px;  height:4px;  top:60%; left:8%;  animation-duration:12s; animation-delay:2s; }
.bc-hero__dot:nth-child(3) { width:8px;  height:8px;  top:35%; left:28%; animation-duration:14s; animation-delay:1s; }
.bc-hero__dot:nth-child(4) { width:5px;  height:5px;  top:75%; left:40%; animation-duration:11s; animation-delay:3s; }
.bc-hero__dot:nth-child(5) { width:3px;  height:3px;  top:22%; left:55%; animation-duration:8s;  animation-delay:0.5s; }
@keyframes bcFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}

/* ── Layout ── */
.bc-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-xl) 0;
  width: 100%;
}

/* ── Left: Content ── */
.bc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--space-sm);
}
.bc-hero__eyebrow-line {
  display: block;
  width: 32px; height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.bc-hero__title {
  font-family: var(--font-primary);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}
.bc-hero__title em {
  font-style: normal;
  color: var(--secondary);
  position: relative;
}
.bc-hero__title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--secondary), transparent);
  border-radius: 2px;
}

.bc-hero__desc {
  font-family: var(--font-secondary);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.68);
  max-width: 500px;
  margin-bottom: var(--space-md);
}

/* Stats row */
.bc-hero__stats {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,194,168,0.15);
  border-radius: var(--radius-sm);
  width: fit-content;
}
.bc-hero__stat {
  text-align: center;
}
.bc-hero__stat strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}
.bc-hero__stat span {
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.bc-hero__stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(0,194,168,0.2);
}

/* CTA buttons */
.bc-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-md);
}
.bc-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s, border-color 0.25s, color 0.25s;
}
.bc-hero__btn--primary {
  background: var(--secondary);
  color: var(--primary);
  border: 1.5px solid transparent;
  box-shadow: 0 4px 20px rgba(0,194,168,0.35);
}
.bc-hero__btn--primary:hover {
  background: #00d9bb;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,194,168,0.5);
}
.bc-hero__btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.bc-hero__btn--outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: rgba(0,194,168,0.06);
  transform: translateY(-2px);
}

/* Trust badges */
.bc-hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.bc-hero__trust-label {
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.bc-hero__trust-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.bc-hero__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(0,194,168,0.18);
  border-radius: 50px;
  padding: 5px 12px;
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.bc-hero__trust-badge svg { color: var(--secondary); flex-shrink: 0; }

/* ── Right: Visual ── */
.bc-hero__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.bc-hero__card-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
}

/* Floating pills */
.bc-hero__pill {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.bc-hero__pill--top {
  top: -14px;
  left: 24px;
}
.bc-hero__pill--bottom {
  bottom: -14px;
  right: 24px;
  background: var(--secondary);
  color: var(--primary);
}
.bc-hero__pill--bottom svg { color: var(--primary); }
.bc-hero__pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0,194,168,0.25);
  animation: bcPulse 2s ease infinite;
}
@keyframes bcPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(0,194,168,0.25); }
  50%      { box-shadow: 0 0 0 6px rgba(0,194,168,0.08); }
}

/* Dashboard card */
.bc-hero__dashboard {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,194,168,0.18);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,194,168,0.1);
}

/* Dash header bar */
.bc-hero__dash-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,194,168,0.1);
  background: rgba(255,255,255,0.04);
}
.bc-hero__dash-dots {
  display: flex;
  gap: 5px;
}
.bc-hero__dash-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.bc-hero__dash-dots span:nth-child(1) { background: rgba(255,90,90,0.6); }
.bc-hero__dash-dots span:nth-child(2) { background: rgba(255,200,0,0.6); }
.bc-hero__dash-dots span:nth-child(3) { background: rgba(0,194,168,0.6); }
.bc-hero__dash-title {
  flex: 1;
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}
.bc-hero__dash-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-secondary);
  font-size: 0.66rem;
  font-weight: 600;
  color: #22c55e;
  letter-spacing: 0.06em;
}
.bc-hero__live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: bcPulse 2s ease infinite;
}

/* Module grid */
.bc-hero__modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,194,168,0.08);
  padding: 0;
}
.bc-hero__module {
  background: rgba(11,31,58,0.7);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  transition: background 0.25s;
  cursor: default;
}
.bc-hero__module:hover {
  background: rgba(0,194,168,0.1);
}
.bc-hero__module-icon {
  width: 36px; height: 36px;
  background: rgba(0,194,168,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}
.bc-hero__module-name {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  line-height: 1.2;
}
.bc-hero__module-stat {
  font-family: var(--font-secondary);
  font-size: 0.62rem;
  font-weight: 700;
  color: #22c55e;
}

/* Mini chart */
.bc-hero__mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 60px;
  padding: 10px 16px 10px;
  background: rgba(11,31,58,0.5);
}
.bc-hero__mini-bar {
  flex: 1;
  height: var(--h);
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, var(--secondary), rgba(0,194,168,0.25));
}
.bc-hero__mini-bar:nth-child(even) {
  background: linear-gradient(to top, rgba(0,194,168,0.4), rgba(0,194,168,0.1));
}

/* Corner accents */
.bc-hero__card-corner {
  position: absolute;
  width: 56px; height: 56px;
  pointer-events: none;
}
.bc-hero__card-corner--tl {
  top: -2px; left: -2px;
  border-top: 3px solid var(--secondary);
  border-left: 3px solid var(--secondary);
  border-radius: var(--radius-md) 0 0 0;
}
.bc-hero__card-corner--br {
  bottom: -2px; right: -2px;
  border-bottom: 3px solid var(--secondary);
  border-right: 3px solid var(--secondary);
  border-radius: 0 0 var(--radius-md) 0;
}

/* ── Scroll indicator ── */
.bc-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.45;
  animation: bcScroll 2s ease-in-out infinite;
}
.bc-hero__scroll span {
  font-family: var(--font-secondary);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.bc-hero__scroll-line {
  width: 1.5px; height: 32px;
  background: linear-gradient(to bottom, var(--secondary), transparent);
  border-radius: 2px;
}
@keyframes bcScroll {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .bc-hero__inner { gap: var(--space-lg); }
}

@media (max-width: 900px) {
  .bc-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 80px 0 100px;
  }
  .bc-hero__desc { margin-inline: auto; }
  .bc-hero__cta-group { justify-content: center; }
  .bc-hero__visual { justify-content: center; }
  .bc-hero__card-wrap { max-width: 480px; }
  .bc-hero__stats { margin-inline: auto; }
  .bc-hero__trust { justify-content: center; }
  .bc-hero__bg-shape { display: none; }
}

@media (max-width: 640px) {
  .bc-hero { min-height: auto; }
  .bc-hero__title { font-size: 2rem; }
  .bc-hero__card-wrap { max-width: 100%; }
  .bc-hero__stats {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .bc-hero__modules { grid-template-columns: repeat(2, 1fr); }
  .bc-hero__trust-badges { justify-content: center; }
}