/* ============================================================
   HERO
============================================================ */

.hero {
  padding: 32px 0 100px;
  text-align: center;
  background: var(--paper);
  color: var(--ink);
}

.hero .wrap {
  position: relative;
  z-index: 2;
}

.status-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog);
  margin-top: 5px;
  margin-bottom: 30px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1E9A52;
  box-shadow: 0 0 8px rgba(30, 154, 82, 0.6);
  animation: blink 2s ease-in-out infinite;
}

/* ---- Fondo del hero ---- */
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 82% 68% at 50% 8%, black 15%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 82% 68% at 50% 8%, black 15%, transparent 76%);
}

/* ---- Logo reveal animation ---- */
.hero-logo-reveal {
  position: relative;
  width: 100%;
  min-height: var(--cube-size);
  margin-bottom: 6px;
}

.logo-row {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  column-gap: 0;
  transition: column-gap 1100ms cubic-bezier(0.16, 0.8, 0.24, 1);
}

.logo-row.is-assembled {
  column-gap: 30px;
}

/* ---- Badge row ---- */
.hero-badges {
  display: flex;
  gap: 1px;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--hair-l);
  border: 1px solid var(--hair-l);
  max-width: fit-content;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.h-badge {
  background: var(--paper);
  padding: 16px 30px;
  text-align: left;
}

.h-badge .b-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--fog);
  text-transform: uppercase;
}

.h-badge .b-value {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  margin-top: 4px;
  color: var(--ink);
}
