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

.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: 10px;
  height: 10px;
  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: var(--bs-success);
}

.ab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bs-success);
  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: var(--bs-success);
}

.ab-log-warn {
  color: var(--bs-warning);
}

.ab-log-info {
  color: var(--bs-primary);
}

/* Card variants */

.card-primary-fill {
  background: #00e887;
  border-color: #00e887;
  color: #000;
}

.card-primary-fill:hover {
  background: #00fa97;
  border-color: #00fa97;
}

.card-primary-fill::after {
  border-color: rgba(0,0,0,.2);
}

.card-dark {
  background: #08090f;
  border-color: rgba(255,255,255,.04);
}

.card-dark:hover {
  background: #0d0f1a;
}

.card-glow-green {
  background: linear-gradient(135deg, #0c1a12 0%, #060e0a 100%);
  border-color: rgba(0,232,135,.18);
  box-shadow: inset 0 0 60px rgba(0,232,135,.025);
}

.card-glow-blue {
  background: linear-gradient(135deg, #0a1218 0%, #060811 100%);
  border-color: rgba(0,180,216,.18);
  box-shadow: inset 0 0 60px rgba(0,180,216,.02);
}

.card-glow-blue:hover {
  border-color: rgba(0,180,216,.35) !important;
}

.card-glow-blue::after {
  border-color: #00b4d8 !important;
}

/* Scan line animation */

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,232,135,.35), transparent);
  animation: scan 4.5s linear infinite;
  pointer-events: none;
  z-index: 3;
}

.scan-line-blue {
  background: linear-gradient(90deg, transparent, rgba(0,180,216,.35), transparent);
}

@keyframes scan {
  0% {
    top: 0;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* ── Typography helpers ── */

.label-mono {
  font-family: 'Inter', sans-serif;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-tag {
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #00e887;
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.section-tag::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.07);
  max-width: 80px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -.025em;
}

.section-sub {
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  line-height: 1.85;
  color: #7c8fa6;
  max-width: 520px;
}

.card-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 1rem;
}

.card-label-green {
  font-family: 'Inter', sans-serif;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #00e887;
  margin-bottom: .5rem;
}

.card-label-blue {
  font-family: 'Inter', sans-serif;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #00b4d8;
  margin-bottom: .5rem;
}

.card-label-yellow {
  font-family: 'Inter', sans-serif;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #f5a623;
  margin-bottom: .5rem;
}

.card-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
  color: #e2e8f4;
  margin-bottom: .65rem;
}

.metric-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: #00e887;
}

.metric-label {
  font-family: 'Inter', sans-serif;
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #475569;
  margin-top: .35rem;
}

/* ── Badges ── */

.badge-pill {
  font-family: 'Inter', sans-serif;
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border-radius: 0;
  border: 1px solid;
}

.badge-green {
  color: #00e887;
  border-color: rgba(0,232,135,.35);
  background: rgba(0,232,135,.06);
}

.badge-blue {
  color: #00b4d8;
  border-color: rgba(0,180,216,.35);
  background: rgba(0,180,216,.06);
}

.badge-yellow {
  color: #f5a623;
  border-color: rgba(245,166,35,.35);
  background: rgba(245,166,35,.06);
}

.badge-muted {
  color: #7c8fa6;
  border-color: rgba(255,255,255,.1);
  background: transparent;
}

/* ── Feature icon ── */

.feat-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0,232,135,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00e887;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.feat-icon-blue {
  border-color: rgba(0,180,216,.3);
  color: #00b4d8;
}

.feat-icon-yellow {
  border-color: rgba(245,166,35,.3);
  color: #f5a623;
}

/* ── Step timeline ── */

.step-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.step-row:last-child {
  border-bottom: none;
}

.step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00e887;
  flex-shrink: 0;
  margin-top: .55rem;
}

.step-dot-blue {
  background: #00b4d8;
}

.step-label {
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #e2e8f4;
}

.step-sub {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: #7c8fa6;
}

/* ── Code block ── */

.code-wrap {
  background: #03050d;
  border: 1px solid rgba(255,255,255,.07);
  padding: 1.4rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  line-height: 1.85;
  overflow-x: auto;
  color: #c5d1e5;
}

.ck {
  color: #00b4d8;
}

.cv {
  color: #00e887;
}

.cs {
  color: #f5a623;
}

.cm {
  color: #475569;
}

.ct {
  color: #8fa6c8;
}

.code-bar {
  background: #020408;
  border: 1px solid rgba(255,255,255,.07);
  border-bottom: none;
  padding: .55rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

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

.code-bar-label {
  font-family: 'Inter', sans-serif;
  font-size: .56rem;
  color: #475569;
  margin-left: .4rem;
}

/* ── Btn ── */

.btn-outline-brand {
  font-family: 'Inter', sans-serif;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #7c8fa6;
  background: transparent;
  border: 1px solid rgba(255,255,255,.1);
  padding: .8rem 1.75rem;
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s, color .2s;
}

.btn-outline-brand:hover {
  border-color: #00e887;
  color: #00e887;
}

.brand-divider {
  height: 1px;
  background: rgba(255,255,255,.07);
}

/* Color helpers */

.text-green {
  color: #00e887;
}

.text-blue {
  color: #00b4d8;
}

.text-yellow {
  color: #f5a623;
}

.text-muted-2 {
  color: #7c8fa6;
}

.text-muted-3 {
  color: #475569;
}

