.ab-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

/* Ambient orbs */

.ab-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ab-hero-orb-1 {
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  background: radial-gradient(circle, rgba(0,84,173,0.31) 0%, transparent 65%);
  right: -15%;
  top: 50%;
  animation: ab-float-center 5s ease-in-out infinite;
}

.ab-hero-orb-2 {
  width: min(300px, 55vw);
  height: min(300px, 55vw);
  background: radial-gradient(circle, rgba(0,84,173,0.03) 0%, transparent 70%);
  left: 20%;
  bottom: -5%;
  animation: ab-float-bottom 7s ease-in-out infinite;
}

.ab-hero-orb-3 {
  width: min(200px, 40vw);
  height: min(200px, 40vw);
  background: radial-gradient(circle, rgba(0,84,173,0.26) 0%, transparent 70%);
  left: 5%;
  top: 20%;
  animation: ab-float-center 9s ease-in-out infinite;
}

@keyframes ab-float-center {
  0%, 100% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-52%) scale(1.06);
  }
}

@keyframes ab-float-bottom {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3%) scale(1.05);
  }
}

/* Eyebrow */

.ab-hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #00e887;
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.75rem;
}

.ab-hero-eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--bs-body-color);
  flex-shrink: 0;
}

/* Title */

.ab-hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  line-height: .92;
  letter-spacing: -.035em;
  margin-bottom: 1.75rem;
}

.ab-t-primary {
  color: #00e887;
}

.ab-t-muted {
  color: #475569;
}

/* Sub-copy */

.ab-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  line-height: 1.85;
  color: #7c8fa6;
  max-width: 480px;
  margin-bottom: 2rem;
}

/* ── Live log panel ── */

.ab-code-bar {
  background: var(--bs-body-bg);
  border: 1px solid rgba(255,255,255,.07);
  border-bottom: none;
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.ab-code-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ab-code-bar-label {
  font-family: 'Inter', sans-serif;
  font-size: .58rem;
  font-weight: 400;
  color: #475569;
  margin-left: .5rem;
}

.ab-active-label {
  font-family: 'Inter', sans-serif;
  font-size: .55rem;
  font-weight: 600;
  color: #00e887;
}

.ab-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00e887;
  flex-shrink: 0;
  animation: ab-blink 2.2s ease-in-out infinite;
}

@keyframes ab-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .2;
  }
}

.ab-log {
  background: var(--bs-body-bg);
  border: 1px solid rgba(255,255,255,.07);
  padding: 1.25rem;
  max-height: 200px;
  overflow: hidden;
  position: relative;
}

.ab-log::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, var(--bs-body-bg));
  pointer-events: none;
}

.ab-log-line {
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 400;
  line-height: 1.9;
  color: #7c8fa6;
  display: flex;
  gap: .75rem;
}

.ab-log-ts {
  color: #475569;
  flex-shrink: 0;
}

.ab-log-ok {
  color: #00e887;
}

.ab-log-warn {
  color: #f5a623;
}

.ab-log-info {
  color: #00b4d8;
}

