/* ============================================
   BLOCK 1 — HERO (banner-top stack + centered content)
   ============================================ */

.home_block_1 {
  padding: 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

/* ===== Banner cinematic ===== */
.home_block_1_banner {
  position: relative;
  width: 100%;
  height: 72vh;
  min-height: 520px;
  overflow: hidden;
}

.home_block_1_banner_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.home_block_1_banner_overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 50% 100%,
      rgba(43, 255, 124, 0.18) 0%,
      transparent 55%
    ),
    linear-gradient(
      180deg,
      rgba(6, 21, 10, 0.25) 0%,
      transparent 35%,
      rgba(6, 21, 10, 0.55) 75%,
      var(--bg-dark) 100%
    );
  pointer-events: none;
}

/* ===== Floating pill (Argentina · Online) ===== */
.home_block_1_floating_pill {
  position: absolute;
  top: 10rem;
  right: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.3rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(6, 21, 10, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(43, 255, 124, 0.35);
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-glow-soft);
}

.home_block_1_floating_dot {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: hero_pulse 2s ease-in-out infinite;
}

@keyframes hero_pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.85);
  }
}

/* ===== Content (centered below banner) ===== */
.home_block_1_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 6rem var(--main-padding) 8rem;
  max-width: 1100px;
  text-align: center;
  position: relative;
}

.home_block_1_content > .section_tag {
  align-self: center;
}

.home_block_1_title {
  color: var(--text);
  max-width: 18ch;
}

.home_block_1_title > span {
  color: var(--accent);
  text-shadow: 0 0 30px rgba(43, 255, 124, 0.45);
  font-style: italic;
  font-weight: 800;
}

.home_block_1_lead {
  color: var(--text-muted);
  max-width: 780px;
  line-height: 1.55;
}

.home_block_1_actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.6rem;
}

/* ===== Stats rail ===== */
.home_block_1_stats {
  display: flex;
  gap: 0;
  padding: 2.4rem 3.2rem;
  background: var(--bg-surface);
  border: 1px solid var(--bg-line);
  border-radius: var(--radius);
  margin-top: 2.4rem;
  position: relative;
  box-shadow: var(--shadow-card);
}

.home_block_1_stats::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent) 50%,
    transparent 100%
  );
}

.home_block_1_stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  padding: 0 2.4rem;
  min-width: 17rem;
  position: relative;
}

.home_block_1_stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: var(--bg-line);
}

.home_block_1_stat_value {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
}

.home_block_1_stat_value > span {
  font-size: 2.1rem;
  color: var(--accent-bright);
  font-weight: 700;
}

.home_block_1_stat_label {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================
   Mobile — ≤1024px
   ============================================ */
@media (max-width: 1024px) {
  .home_block_1_banner {
    height: 56vh;
    min-height: 38rem;
  }

  .home_block_1_floating_pill {
    top: 18rem;
    right: 2rem;
    padding: 1rem 1.8rem;
    font-size: 1.9rem;
  }

  .home_block_1_floating_dot {
    width: 1.2rem;
    height: 1.2rem;
  }

  .home_block_1_content {
    padding: 8rem var(--main-padding) 10rem;
    gap: 3rem;
    max-width: 100%;
  }

  .home_block_1_title > span {
    text-shadow: 0 0 20px rgba(43, 255, 124, 0.4);
  }

  .home_block_1_lead {
    max-width: 100%;
    font-size: 2.6rem;
  }

  .home_block_1_actions {
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    width: 100%;
    margin-top: 1rem;
  }

  .home_block_1_stats {
    flex-direction: column;
    padding: 3.5rem 2.5rem;
    gap: 3rem;
    margin-top: 3rem;
    width: 100%;
  }

  .home_block_1_stat {
    padding: 0;
    min-width: 0;
    width: 100%;
  }

  .home_block_1_stat:not(:last-child)::after {
    right: 10%;
    left: 10%;
    top: auto;
    bottom: -1.5rem;
    width: auto;
    height: 1px;
  }

  .home_block_1_stat_value {
    font-size: 7rem;
  }

  .home_block_1_stat_value > span {
    font-size: 4.2rem;
  }

  .home_block_1_stat_label {
    font-size: 2.2rem;
  }
}
