/* ============================================
   BLOCK 12 — CIERRE (mega-cinematic-CTA full-bleed)
   ============================================ */

.home_block_12 {
  position: relative;
  min-height: 80vh;
  padding-top: 12rem;
  padding-bottom: 12rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.home_block_12_bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.home_block_12_veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(6, 13, 26, 0.92) 0%,
      rgba(6, 13, 26, 0.78) 45%,
      rgba(6, 13, 26, 0.50) 75%,
      rgba(6, 13, 26, 0.25) 100%),
    radial-gradient(ellipse at 92% 12%, rgba(37, 99, 235, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 5% 88%, rgba(234, 179, 8, 0.16) 0%, transparent 55%);
  z-index: -1;
}

.home_block_12_inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  max-width: 980px;
  position: relative;
}

.home_block_12_inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8rem;
  height: 4px;
  background: var(--gradient-blue-yellow);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
}

.home_block_12_inner .section_tag {
  color: var(--accent-2-bright);
}

.home_block_12_inner .section_tag::before {
  background: var(--accent-2);
  box-shadow: 0 0 10px rgba(234, 179, 8, 0.7);
}

.home_block_12_title {
  margin-top: 1rem;
  text-transform: uppercase;
  font-size: 6.4rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.home_block_12_body {
  color: rgba(255, 255, 255, 0.82);
  max-width: 92%;
}

.home_block_12_body .text-accent {
  color: var(--accent-2-bright);
}

.home_block_12_cta {
  align-self: flex-start;
  margin-top: 1.4rem;
  font-size: 1.3rem;
  padding: 1.8rem 3.4rem;
}

@media (max-width: 1024px) {
  .home_block_12 {
    min-height: auto;
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .home_block_12_title {
    font-size: 9rem;
  }

  .home_block_12_body {
    max-width: 100%;
  }

  .home_block_12_cta {
    align-self: stretch;
    font-size: 3.2rem;
    padding: 2.4rem 3rem;
  }
}
