/* ============================================
   HOME BLOCK 1 — HERO
   Cinema full-bleed dark: image1 as backdrop +
   blue-tint overlay + text overlay + scoreboard meta strip
   ============================================ */

.home_block_1 {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

/* ===== Backdrop image + overlay ===== */
.home_block_1_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home_block_1_bg_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.1) brightness(0.55) contrast(1.05);
}

.home_block_1_bg_overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(8, 16, 28, 0.55) 0%, rgba(8, 16, 28, 0.92) 70%),
    linear-gradient(180deg, rgba(8, 16, 28, 0.85) 0%, rgba(8, 16, 28, 0.55) 45%, rgba(8, 16, 28, 0.95) 100%),
    radial-gradient(ellipse at 85% 25%, rgba(59, 130, 246, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(239, 68, 68, 0.12) 0%, transparent 50%);
}

/* ===== Decorative blueprint grid (scoreboard vibe) ===== */
.home_block_1_bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ===== Inner content ===== */
.home_block_1_inner {
  position: relative;
  z-index: 2;
  padding: 12rem var(--main-padding) 8rem;
}

.home_block_1_content {
  max-width: 75rem;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.home_block_1_eyebrow {
  align-self: flex-start;
}

.home_block_1_title {
  color: var(--text-on-dark);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.home_block_1_title > .text-accent {
  color: var(--accent-bright);
  text-shadow: 0 0 24px var(--accent-glow-strong);
}

.home_block_1_lead {
  color: var(--text-on-dark-muted);
  max-width: 65rem;
  line-height: 1.6;
}

.home_block_1_eyebrow {
  color: #60a5fa;
}

.home_block_1_eyebrow::before,
.home_block_1_eyebrow::after {
  color: #60a5fa;
}

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

/* ===== Scoreboard meta strip — bottom of hero ===== */
.home_block_1_meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--accent-line-mid);
  max-width: 90rem;
}

.home_block_1_meta > li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0 1.6rem;
  border-left: 1px solid var(--accent-line-soft);
}

.home_block_1_meta > li:first-child {
  border-left: none;
  padding-left: 0;
}

.home_block_1_meta_k {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.home_block_1_meta_v {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

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

  .home_block_1_bg_img {
    object-position: center 25%;
    filter: saturate(1.1) brightness(0.45) contrast(1.05);
  }

  .home_block_1_inner {
    padding: 22rem var(--main-padding) 14rem;
  }

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

  .home_block_1_lead {
    max-width: 100%;
  }

  .home_block_1_actions {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
    margin-top: 1.5rem;
  }

  .home_block_1_actions > .primary_button,
  .home_block_1_actions > .outline_button {
    width: 100%;
  }

  .home_block_1_meta {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 4rem;
    padding-top: 3.5rem;
  }

  .home_block_1_meta > li {
    padding: 1.8rem 1.4rem;
    border-left: 1px solid var(--accent-line-soft);
    border-bottom: 1px solid var(--accent-line-soft);
    gap: 0.6rem;
  }

  .home_block_1_meta > li:first-child {
    padding-left: 1.4rem;
    border-left: 1px solid var(--accent-line-soft);
  }

  .home_block_1_meta > li:nth-child(2n+1) {
    border-left: none;
    padding-left: 0;
  }

  .home_block_1_meta > li:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .home_block_1_meta_k {
    font-size: 1.7rem;
    letter-spacing: 0.22em;
  }

  .home_block_1_meta_v {
    font-size: 2.6rem;
  }
}
