/* ============================================================
   about-hero.css — BO About Hero widget
   Scoped under .bo-about-hero-wrap. Base/default look — every
   color, font, and spacing value here is overridable from the
   Elementor "Style" tab (see class-about-hero-widget.php), which
   outputs higher-specificity {{WRAPPER}} rules automatically.
   ============================================================ */

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.bo-about-hero-wrap .about-hero {
  padding: 130px 0 0;
  background: linear-gradient(180deg, #0A2347 0%, #071C38 100%);
  position: relative;
  overflow: hidden;
}
.bo-about-hero-wrap .about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(16,131,230,.18), transparent 32%),
    radial-gradient(circle at 18% 80%, rgba(255,255,255,.04), transparent 36%);
  pointer-events: none;
}

.bo-about-hero-wrap .about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
  padding-bottom: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}
.bo-about-hero-wrap .about-hero-copy { padding-bottom: 64px; }

/* Eyebrow — minimal structural default; color/typography/dash
   are all exposed as Elementor controls */
.bo-about-hero-wrap .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-bottom: 20px;
}
.bo-about-hero-wrap .eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--blue-soft);
}

.bo-about-hero-wrap .about-hero-copy h1 {
  font-size: 48px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.bo-about-hero-wrap .about-hero-copy h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}
.bo-about-hero-wrap .about-hero-copy > p {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.bo-about-hero-wrap .about-hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.bo-about-hero-wrap .hero-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.bo-about-hero-wrap .hero-badge:hover {
  border-color: rgba(16,131,230,.4);
  background: rgba(16,131,230,.08);
}
.bo-about-hero-wrap .badge-num {
  font-family: 'Roboto Slab', serif;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
}
.bo-about-hero-wrap .badge-num sup { font-size: 16px; color: var(--blue); }
.bo-about-hero-wrap .badge-lab {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.bo-about-hero-wrap .about-hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.bo-about-hero-wrap .about-hero-frame {
  position: relative;
  width: 100%;
  max-width: 580px;
}
.bo-about-hero-wrap .about-hero-frame img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border-radius: 18px 18px 0 0;
}
.bo-about-hero-wrap .aframe-chip {
  position: absolute;
  background: rgba(255,255,255,.97);
  border-radius: 10px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 16px 36px -14px rgba(3,27,57,.35);
  backdrop-filter: blur(8px);
  animation: floaty 5s ease-in-out infinite;
}
.bo-about-hero-wrap .aframe-chip svg { width: 14px; height: 14px; stroke: var(--blue); flex-shrink: 0; }
.bo-about-hero-wrap .aframe-chip span { font-size: 11.5px; font-weight: 600; color: var(--navy); white-space: nowrap; }
.bo-about-hero-wrap .aframe-chip--tl { top: 22px; left: -18px; animation-delay: 0s; }
.bo-about-hero-wrap .aframe-chip--br { bottom: 28px; right: -14px; animation-delay: 1.6s; }

@media (max-width: 980px) {
  .bo-about-hero-wrap .about-hero-inner { grid-template-columns: 1fr; gap: 32px; padding-left: 28px; padding-right: 28px; }
  .bo-about-hero-wrap .about-hero-copy { padding-bottom: 0; }
  .bo-about-hero-wrap .about-hero-visual { width: 100%; max-width: 580px; margin: 0 auto; }
  .bo-about-hero-wrap .about-hero-copy h1 { font-size: 36px; }
}

@media (max-width: 640px) {
  .bo-about-hero-wrap .about-hero { padding: 100px 0 0; }
  .bo-about-hero-wrap .about-hero-inner { padding-left: 20px; padding-right: 20px; }
  .bo-about-hero-wrap .about-hero-copy h1 { font-size: 28px; }
  .bo-about-hero-wrap .about-hero-badges { gap: 12px; }
  .bo-about-hero-wrap .hero-badge { padding: 12px 16px; }
  .bo-about-hero-wrap .badge-num { font-size: 22px; }
  .bo-about-hero-wrap .aframe-chip { display: none; }
}