/* ===== BLOCK 1 — Hero (fullscreen bg-image + text overlay) ===== */

.home_block_1 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 10rem 0 6rem;
  background-color: var(--bg-deeper);
}

.home_block_1_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
}

.home_block_1_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse at 20% 40%,
      rgba(0, 180, 255, 0.28) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 85% 70%,
      rgba(255, 61, 127, 0.22) 0%,
      transparent 55%
    ),
    linear-gradient(
      135deg,
      rgba(5, 10, 26, 0.85) 0%,
      rgba(10, 17, 40, 0.65) 50%,
      rgba(5, 10, 26, 0.92) 100%
    );
}

.home_block_1_content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 48rem;
}

.home_block_1_tag {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.home_block_1_tag::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2px;
  background: var(--gradient-yellow);
  border-radius: var(--rounded-full);
}

.home_block_1_title > span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home_block_1_lead {
  color: var(--text-muted);
  max-width: 40rem;
}

.home_block_1_actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.home_block_1_badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.home_block_1_badges > span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  background: rgba(0, 180, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--rounded-full);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.home_block_1_badges > span::before {
  content: "✦";
  color: var(--yellow);
  margin-right: 0.5rem;
  font-size: 0.9em;
}

/* ===== Mobile ===== */

@media (max-width: 1024px) {
  .home_block_1 {
    min-height: 90vh;
    padding: 18rem 0 8rem;
  }

  .home_block_1_bg {
    opacity: 0.42;
  }

  .home_block_1_content {
    max-width: 100%;
    gap: 2.4rem;
  }

  .home_block_1_tag {
    font-size: 2rem;
    letter-spacing: 4px;
  }

  .home_block_1_tag::before {
    width: 3.2rem;
    height: 3px;
  }

  .home_block_1_lead {
    max-width: 100%;
  }

  .home_block_1_actions {
    width: 100%;
    gap: 2rem;
  }

  .home_block_1_badges {
    gap: 1rem;
    margin-top: 2.5rem;
  }

  .home_block_1_badges > span {
    padding: 1.2rem 1.8rem;
    font-size: 2rem;
    border-radius: var(--rounded-full);
  }
}
