/* Brand asset and hero refinements */
.brand {
  width: 190px;
  height: 76px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.hero {
  position: relative;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(3, 13, 24, .97) 0%, rgba(5, 19, 33, .92) 34%, rgba(7, 22, 37, .62) 55%, rgba(7, 18, 30, .08) 100%),
    url("/assets/img/hero-banner.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(3, 12, 21, .62), transparent);
  pointer-events: none;
}

.hero-grid {
  min-height: 650px;
  grid-template-columns: minmax(0, 690px);
}

.hero-content {
  padding: 34px 0;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .32);
}

.hero-content .btn {
  text-shadow: none;
}

.footer-brand img {
  width: min(100%, 320px);
  max-height: 178px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 1000px) {
  .brand {
    width: 178px;
    height: 72px;
  }

  .hero {
    background-position: 61% center;
  }

  .hero-grid {
    min-height: 620px;
    padding: 70px 0;
  }
}

@media (max-width: 640px) {
  .brand {
    width: 152px;
    height: 66px;
  }

  .brand img {
    max-height: 62px;
  }

  .hero {
    background-position: 66% center;
    background-image:
      linear-gradient(90deg, rgba(3, 13, 24, .96) 0%, rgba(5, 19, 33, .88) 58%, rgba(7, 18, 30, .48) 100%),
      url("/assets/img/hero-banner.png");
  }

  .hero-grid {
    min-height: 590px;
    padding: 54px 0 62px;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(2.55rem, 13vw, 3.2rem);
  }

  .hero p {
    max-width: 31rem;
    font-size: 1rem;
  }
}
