.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;
}

.cros-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cros-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cros-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #6c7a8d;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cros-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.08);
  max-width: 80px;
}

.cros-card {
  border: 1px solid rgba(0,0,0,0.05);
  background: #ffffff;
  transition: all 0.2s ease;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.02);
}

.cros-card:hover {
  box-shadow: 0 20px 35px -8px rgba(0,100,80,0.12);
  border-color: rgba(25,135,84,0.25);
}

.cros-phase {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #94a3b8;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cros-phase span {
  background: #e9edf2;
  color: #1e293b;
  padding: 0.15rem 0.6rem;
  border-radius: 40px;
  font-size: 0.6rem;
  font-weight: 600;
}

.cros-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.cros-label-primary {
  color: #0d6efd;
}

.cros-label-success {
  color: #198754;
}

.cros-label-warning {
  color: #ffc107;
}

.cros-metric {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.cros-metric-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cros-timeline {
  display: flex;
  gap: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.cros-timeline:last-child {
  border-bottom: none;
}

.cros-dot {
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background: #0d6efd;
  margin-top: 0.3rem;
  box-shadow: 0 0 0 3px rgba(13,110,253,0.1);
}

.cros-dot-success {
  background: #198754;
  box-shadow: 0 0 0 3px rgba(25,135,84,0.1);
}

.cros-dot-warning {
  background: #ffc107;
  box-shadow: 0 0 0 3px rgba(255,193,7,0.12);
}

.cros-tl-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #4b5a6e;
}

.cros-tl-text {
  font-size: 0.78rem;
  color: #2c3a4b;
  font-weight: 400;
}

.cros-code {
  background: #f1f5f9;
  border-radius: 18px;
  padding: 1.2rem;
  font-size: 0.7rem;
  font-family: 'Inter', monospace;
  border: 1px solid rgba(0,0,0,0.05);
  color: #0b1e33;
}

.cros-code .ck {
  color: #0d6efd;
  font-weight: 500;
}

.cros-code .cv {
  color: #198754;
}

.cros-code .cs {
  color: #b85c00;
}

.cros-code .cm {
  color: #5e6f8d;
}

.cros-chip {
  display: inline-block;
  background: #f1f4f9;
  padding: 0.2rem 0.7rem;
  border-radius: 30px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #2c3a4b;
  border: 1px solid transparent;
  transition: all 0.15s;
}

.cros-chip-primary {
  background: #e7f1ff;
  color: #0d6efd;
  border-color: rgba(13,110,253,0.2);
}

.cros-chip-success {
  background: #e2f0e8;
  color: #198754;
  border-color: rgba(25,135,84,0.2);
}

.cros-chip-warning {
  background: #fff3d2;
  color: #b85c00;
  border-color: rgba(255,193,7,0.3);
}

.cros-arch-node {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 1rem 0.75rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.cros-arch-primary {
  background: #eef4ff;
  border-color: #0d6efd40;
}

.cros-arch-secondary {
  background: #f3f6fc;
  border-color: #19875430;
}

.cros-arch-label {
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cros-arch-sublabel {
  font-size: 0.6rem;
  color: #526176;
}

.cros-arrow {
  color: #0d6efd;
  font-size: 1.2rem;
  font-weight: 300;
}

.cros-bento-gap {
  gap: 1rem;
}

@media (min-width: 992px) {
  .cros-bento-gap {
    gap: 1.2rem;
  }
}

.bg-light-card {
  background-color: #ffffff;
}

hr {
  opacity: 0.15;
}

