/* Hero Equipo — layout célula (sin órbita de cards) */

.about-hero-v2--celula {
  --ah-title-y: auto;
  height: auto;
  min-height: min(100svh, 920px);
  max-height: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.about-hero-v2--celula .about-hero-v2__grid,
.about-hero-v2--celula .about-hero-v2__glow,
.about-hero-v2--celula .about-hero-v2__connect,
.about-hero-v2--celula .about-hero-v2__ship,
.about-hero-v2--celula .about-hero-v2__scroll-hint,
.about-hero-v2--celula .about-hero-v2__cards-band,
.about-hero-v2--celula .about-hero-v2__stage {
  display: none !important;
}

.about-hero-v2--celula .about-hero-v2__world {
  bottom: -4%;
  width: min(1600px, 110vw);
  max-height: min(42vh, 360px);
  opacity: 1;
  z-index: 2;
  mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 70%, transparent 100%);
}

.about-hero-v2--celula .about-hero-v2__world-img {
  max-height: min(42vh, 360px);
  opacity: 0.85;
}

.about-hero-v2--celula .about-hero-v2__vignette {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 0, 0, 0.15) 0%, transparent 55%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.2) 0%, transparent 35%, rgba(3, 3, 3, 0.75) 78%, #030303 100%);
  z-index: 3;
}

.about-hero-v2--celula .about-hero-v2__canvas {
  z-index: 3;
  opacity: 0.45;
}

.ah-celula {
  position: relative;
  z-index: 8;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4.5vh, 44px);
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(88px, 12vh, 120px) 0 clamp(40px, 5vh, 56px);
  box-sizing: border-box;
  pointer-events: none;
}

.ah-celula > * {
  pointer-events: auto;
}

.ah-celula__copy {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  width: min(640px, 100%);
  max-width: 100%;
  text-align: center;
  z-index: 2;
}

.about-hero-v2--celula .about-hero-v2__badge {
  opacity: 1;
  transform: none;
  margin-bottom: 18px;
}

.about-hero-v2--celula .about-hero-v2__title {
  font-size: clamp(1.85rem, 4.2vw, 3.1rem);
  margin-bottom: 16px;
}

.about-hero-v2--celula .about-hero-v2__line-inner {
  opacity: 1;
  transform: none;
  filter: none;
}

.about-hero-v2--celula .about-hero-v2__lead {
  opacity: 1;
  transform: none;
  max-width: 42ch;
  margin: 0 auto 22px;
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.about-hero-v2--celula .about-hero-v2__cta {
  opacity: 1;
  transform: none;
}

.about-hero-v2--celula .about-hero-v2__btn {
  padding: 13px 24px;
  font-size: 0.8rem;
}

/* Pilares: fila limpia, no cards flotantes */
.ah-celula__pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ah-celula__pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-height: 100%;
  padding: 18px 16px 16px;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 7, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.ah-celula__pillar:hover {
  border-color: rgba(var(--ah-brand-rgb), 0.45);
  background: rgba(12, 12, 10, 0.88);
  transform: translateY(-2px);
}

.ah-celula__pillar--accent {
  border-color: rgba(var(--ah-brand-rgb), 0.28);
}

.ah-celula__pillar i {
  font-size: 1.15rem;
  color: var(--ah-brand);
  margin-bottom: 4px;
}

.ah-celula__pillar-title {
  font-family: var(--font-primary, "Montserrat", sans-serif);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  color: #fff;
}

.ah-celula__pillar-desc {
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(213, 213, 213, 0.72);
}

/* Señales: una sola fila en desktop */
.about-hero-v2--celula .ah-celula__signals.about-hero-v2__stats {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  width: 100%;
  margin: 0;
  padding: 12px 10px;
  gap: 4px 2px;
  border-radius: 14px;
  opacity: 1;
  visibility: visible;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-hero-v2--celula .about-hero-v2__stat {
  flex: none;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  padding: 2px 4px;
}

.about-hero-v2--celula .about-hero-v2__stat-icon {
  font-size: 0.85rem;
}

.about-hero-v2--celula .about-hero-v2__stat-num {
  font-size: 0.95rem;
  white-space: nowrap;
}

.about-hero-v2--celula .about-hero-v2__stat-label {
  font-size: 0.62rem;
  line-height: 1.2;
  opacity: 0.75;
}

@media (max-width: 1100px) {
  .about-hero-v2--celula .ah-celula__signals.about-hero-v2__stats {
    gap: 4px 0;
  }

  .about-hero-v2--celula .about-hero-v2__stat {
    gap: 5px;
    padding: 2px 2px;
  }

  .about-hero-v2--celula .about-hero-v2__stat-num {
    font-size: 0.88rem;
  }

  .about-hero-v2--celula .about-hero-v2__stat-label {
    font-size: 0.58rem;
  }
}

@media (max-width: 900px) {
  .ah-celula__pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero-v2--celula .ah-celula__signals.about-hero-v2__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 4px;
    padding: 14px 12px;
  }

  .about-hero-v2--celula .about-hero-v2__stat {
    gap: 8px;
    padding: 4px 6px;
  }

  .about-hero-v2--celula .about-hero-v2__stat-icon {
    font-size: 0.95rem;
  }

  .about-hero-v2--celula .about-hero-v2__stat-num {
    font-size: 1.05rem;
  }

  .about-hero-v2--celula .about-hero-v2__stat-label {
    font-size: 0.68rem;
  }
}

@media (max-width: 560px) {
  .ah-celula {
    width: min(100% - 28px, 1120px);
    padding-top: clamp(72px, 10vh, 96px);
    gap: 22px;
  }

  .about-hero-v2--celula .about-hero-v2__title {
    font-size: clamp(1.55rem, 7.5vw, 2rem);
  }

  .about-hero-v2--celula .about-hero-v2__line-inner--mixed {
    white-space: normal;
  }

  .about-hero-v2--celula .about-hero-v2__cta {
    flex-direction: column;
    width: 100%;
  }

  .about-hero-v2--celula .about-hero-v2__btn {
    width: 100%;
    justify-content: center;
  }

  .ah-celula__pillars {
    gap: 10px;
  }

  .ah-celula__pillar {
    padding: 14px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-v2--celula .about-hero-v2__world,
  .about-hero-v2--celula .about-hero-v2__world-img,
  .about-hero-v2--celula .about-hero-v2__world::before {
    animation: none !important;
  }

  .ah-celula__pillar:hover {
    transform: none;
  }
}
