/* ============================================
   BLOCK 1 — HERO (asymmetric split: text / visual)
   ============================================ */

.home_block_1 {
  background: var(--gradient-hero);
  padding-top: 13rem;
  padding-bottom: 7rem;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.home_block_1_inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5rem;
  align-items: center;
}

.home_block_1_text {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}

.home_block_1_title {
  margin-top: 0.4rem;
  color: var(--text);
}

.home_block_1_lead {
  color: var(--text-muted);
  max-width: 96%;
}

.home_block_1_lead2 {
  color: var(--text-dim);
  max-width: 96%;
}

.home_block_1_cta {
  margin-top: 1.2rem;
}

/* ===== Visual — hero image on frost (blends with page bg) ===== */
.home_block_1_visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home_block_1_visual::before {
  content: "";
  position: absolute;
  inset: 8% 2%;
  background: radial-gradient(circle at 55% 45%, var(--accent-glow) 0%, transparent 65%);
  filter: blur(26px);
  z-index: 0;
}

.home_block_1_img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

/* ============================================
   Mobile — ≤1024px
   ============================================ */
@media (max-width: 1024px) {
  .home_block_1 {
    padding-top: 24rem;
    padding-bottom: 8rem;
    min-height: auto;
  }

  .home_block_1_inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .home_block_1_visual {
    order: -1;
  }

  .home_block_1_text {
    gap: 2.6rem;
  }
}
