.hero {
  min-height: 508px;
  align-items: stretch;
  isolation: isolate;
  background: #040814;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(4, 9, 22, .96) 0%, rgba(5, 12, 31, .78) 34%, rgba(6, 12, 30, .32) 63%, rgba(4, 7, 18, .72) 100%),
    linear-gradient(180deg, rgba(62, 231, 255, .08), rgba(149, 104, 255, .05) 50%, rgba(4, 8, 19, .88));
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 96px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(4, 8, 19, .94));
}

.hero-bg {
  opacity: .95;
  filter: saturate(1.22) contrast(1.1) brightness(1.16);
  object-position: center 46%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 7, 18, .36) 0%, rgba(5, 10, 25, .18) 48%, rgba(4, 7, 18, .28) 100%),
    linear-gradient(180deg, rgba(4, 8, 19, .12), rgba(4, 8, 19, .34));
}

.hero-content {
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 720px) 360px;
  gap: 54px;
  align-items: center;
  padding: 42px 0 36px;
}

.hero-copy {
  min-width: 0;
}

.hero .eyebrow {
  margin-bottom: 12px;
  border-color: rgba(117, 255, 179, .5);
  background: rgba(11, 43, 43, .64);
  box-shadow: 0 0 22px rgba(62, 231, 255, .18);
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: 56px;
  line-height: 1.08;
  text-shadow: 0 10px 32px rgba(0, 0, 0, .55);
}

.hero-title-line {
  display: block;
}

.hero p {
  max-width: 670px;
  color: #d5e3ff;
  font-size: 18px;
}

.hero-actions {
  margin-top: 22px;
  gap: 12px;
}

.hero-actions .btn {
  min-height: 48px;
  padding: 12px 18px;
}

.hero-actions .btn-primary {
  box-shadow: 0 12px 36px rgba(34, 132, 255, .34), 0 0 28px rgba(62, 231, 255, .28);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-metrics a {
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid rgba(97, 171, 255, .34);
  border-radius: 8px;
  color: #cfeaff;
  background: rgba(8, 22, 47, .68);
  box-shadow: inset 0 0 18px rgba(62, 231, 255, .08);
}

.hero-console {
  justify-self: end;
  width: 100%;
  border: 1px solid rgba(82, 165, 255, .38);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(9, 22, 54, .78), rgba(4, 12, 30, .7)),
    linear-gradient(90deg, rgba(62, 231, 255, .08), rgba(149, 104, 255, .1));
  box-shadow: 0 22px 70px rgba(0, 0, 0, .42), inset 0 0 28px rgba(62, 231, 255, .08);
  backdrop-filter: blur(10px);
}

.console-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #e9fbff;
  font-size: 13px;
}

.console-head span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #75ffb3;
  box-shadow: 0 0 18px rgba(117, 255, 179, .72);
}

.console-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 46px;
  border-top: 1px solid rgba(111, 167, 255, .18);
  color: #d9e7ff;
}

.console-line b {
  font-size: 15px;
}

.console-line i {
  font-style: normal;
  color: #75ffb3;
  font-weight: 800;
  font-size: 12px;
}

.console-scan {
  display: grid;
  grid-template-columns: 1fr 1.45fr .72fr;
  gap: 8px;
  margin-top: 16px;
}

.console-scan span {
  height: 8px;
  border-radius: 8px;
  background: linear-gradient(90deg, #3ee7ff, #9568ff);
  box-shadow: 0 0 18px rgba(62, 231, 255, .28);
}

@media (max-width: 980px) {
  .hero {
    min-height: 520px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 42px 0 34px;
  }

  .hero-console {
    display: none;
  }

  .hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 530px;
  }

  .hero::before {
    background:
      linear-gradient(105deg, rgba(4, 9, 22, .98) 0%, rgba(5, 12, 31, .9) 54%, rgba(4, 7, 18, .72) 100%),
      linear-gradient(180deg, rgba(62, 231, 255, .06), rgba(4, 8, 19, .9));
  }

  .hero-content {
    padding: 34px 0 30px;
  }

  .hero h1 {
    font-size: 31px;
    line-height: 1.16;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hero-metrics a {
    padding-inline: 6px;
    text-align: center;
  }
}
