/* ============================================
   HOME BLOCK 1 — HERO
   Side-by-side: text-left + image-right
   Tech-Cyan frame, radial glow, lime mini-highlights
   ============================================ */

.home_block_1 {
  padding-top: 14rem;
  padding-bottom: 10rem;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.home_block_1::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60rem;
  height: 60rem;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 55%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.home_block_1::after {
  content: "";
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 50rem;
  height: 50rem;
  background: radial-gradient(circle, var(--accent-2-soft) 0%, transparent 60%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.home_block_1 > .hero_inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

.home_block_1 > .hero_inner > .hero_content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.home_block_1 > .hero_inner > .hero_content > .hero_title {
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text);
}

.home_block_1 > .hero_inner > .hero_content > .hero_title > span {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.home_block_1 > .hero_inner > .hero_content > .hero_title > span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1em;
  height: 0.12em;
  background: var(--accent-2);
  opacity: 0.7;
  border-radius: 2px;
}

.home_block_1 > .hero_inner > .hero_content > .hero_subtitle {
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 44rem;
}

.home_block_1 > .hero_inner > .hero_content > .hero_features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.home_block_1 > .hero_inner > .hero_content > .hero_features > .hero_chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-surface);
  border: 1px solid var(--bg-line);
  border-radius: 999px;
}

.home_block_1 > .hero_inner > .hero_content > .hero_features > .hero_chip > i {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
}

.home_block_1
  > .hero_inner
  > .hero_content
  > .hero_features
  > .hero_chip.alt
  > i {
  background: var(--accent-2);
  box-shadow: 0 0 6px var(--accent-2);
}

.home_block_1 > .hero_inner > .hero_content > .hero_cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.home_block_1 > .hero_inner > .hero_content > .hero_stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--bg-line);
}

.home_block_1
  > .hero_inner
  > .hero_content
  > .hero_stats
  > .hero_stat
  > .stat_value {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.home_block_1
  > .hero_inner
  > .hero_content
  > .hero_stats
  > .hero_stat
  > .stat_value
  > span {
  color: var(--accent-2);
}

.home_block_1
  > .hero_inner
  > .hero_content
  > .hero_stats
  > .hero_stat
  > .stat_label {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== Hero visual (right) ===== */

.home_block_1 > .hero_inner > .hero_visual {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--bg-line);
  box-shadow: var(--shadow-card), var(--shadow-accent);
}

.home_block_1 > .hero_inner > .hero_visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home_block_1 > .hero_inner > .hero_visual > .hero_visual_frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(160deg, transparent 40%, rgba(10, 21, 40, 0.5) 100%),
    linear-gradient(20deg, rgba(0, 212, 255, 0.12) 0%, transparent 40%);
}

.home_block_1 > .hero_inner > .hero_visual > .hero_visual_badge {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bg-dark);
  background: var(--accent);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 0 20px var(--accent-glow);
}

.home_block_1 > .hero_inner > .hero_visual > .hero_visual_badge > i {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--bg-dark);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

/* ============================================
   Mobile — ≤1024px
   ============================================ */
@media (max-width: 1024px) {
  .home_block_1 {
    padding-top: 20rem;
    padding-bottom: 10rem;
  }

  .home_block_1 > .hero_inner {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .home_block_1 > .hero_inner > .hero_content {
    gap: 3rem;
    text-align: left;
  }

  .home_block_1 > .hero_inner > .hero_content > .hero_title {
    font-size: 7.6rem;
  }

  .home_block_1 > .hero_inner > .hero_content > .hero_subtitle {
    font-size: 2.6rem;
    max-width: 100%;
  }

  .home_block_1 > .hero_inner > .hero_content > .hero_features {
    gap: 1.2rem;
  }

  .home_block_1 > .hero_inner > .hero_content > .hero_features > .hero_chip {
    font-size: 2.1rem;
    padding: 1.2rem 2rem;
  }

  .home_block_1
    > .hero_inner
    > .hero_content
    > .hero_features
    > .hero_chip
    > i {
    width: 1rem;
    height: 1rem;
  }

  .home_block_1 > .hero_inner > .hero_content > .hero_cta {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .home_block_1 > .hero_inner > .hero_content > .hero_stats {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 4rem;
  }

  .home_block_1
    > .hero_inner
    > .hero_content
    > .hero_stats
    > .hero_stat
    > .stat_value {
    font-size: 6rem;
  }

  .home_block_1
    > .hero_inner
    > .hero_content
    > .hero_stats
    > .hero_stat
    > .stat_label {
    font-size: 2rem;
    margin-top: 1rem;
  }

  .home_block_1 > .hero_inner > .hero_visual > .hero_visual_badge {
    font-size: 2rem;
    padding: 1.5rem 2.4rem;
    left: 2rem;
    bottom: 2rem;
  }
}
