/* ============================================
   BLOCK 1 — HERO (overlay full-bleed)
   ============================================ */

.home_block_1 {
  position: relative;
  min-height: 100vh;
  padding-top: 18rem;
  padding-bottom: 14rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}

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

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

.home_block_1_veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(6, 13, 26, 0.92) 0%,
      rgba(6, 13, 26, 0.80) 40%,
      rgba(6, 13, 26, 0.55) 70%,
      rgba(6, 13, 26, 0.30) 100%),
    radial-gradient(ellipse at 95% 15%, rgba(234, 179, 8, 0.20) 0%, transparent 55%),
    radial-gradient(ellipse at 5% 90%, rgba(37, 99, 235, 0.22) 0%, transparent 55%);
  z-index: -1;
}

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

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

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

.home_block_1_title {
  margin-top: 0.4rem;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45);
}

.home_block_1_title .text-accent {
  color: var(--accent-2-bright);
  text-shadow: 0 0 32px rgba(234, 179, 8, 0.5);
}

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

.home_block_1_actions {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.home_block_1 .outline_button {
  color: #ffffff;
}

.home_block_1 .outline_button::after {
  background: rgba(6, 13, 26, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home_block_1 .outline_button:hover {
  color: var(--accent-2-bright);
}

.home_block_1 .outline_button:hover::after {
  background: rgba(6, 13, 26, 0.75);
}

.home_block_1_quick {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 3.4rem;
  margin-top: 1.6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  width: 100%;
  max-width: 80%;
}

.home_block_1_quick > li {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.home_block_1_quick > li > strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--accent-2-bright);
  letter-spacing: 0.02em;
  text-shadow: 0 0 24px rgba(234, 179, 8, 0.4);
}

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

  .home_block_1_inner {
    gap: 2.6rem;
  }

  .home_block_1_lead {
    max-width: 100%;
  }

  .home_block_1_actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 2rem;
  }

  .home_block_1_quick {
    max-width: 100%;
    gap: 3rem 4rem;
  }

  .home_block_1_quick > li {
    font-size: 1.7rem;
  }

  .home_block_1_quick > li > strong {
    font-size: 4.2rem;
  }
}
