.brand {
  background-color: #000;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  height: 58px;
  width: 280px;
}

.search-header {
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.16), transparent 22rem),
    linear-gradient(135deg, #030303 0%, #111 56%, #050505 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  padding: clamp(34px, 6vw, 70px);
}

.search-header::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  position: absolute;
}

.search-header::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.20), transparent 64%);
  filter: blur(2px);
  opacity: 0.7;
}

.hero-grid {
  align-items: stretch;
  display: grid;
  gap: clamp(26px, 5vw, 56px);
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 820px;
}

.hero-logo {
  background: #000 var(--ask-steve-logo-png) left center / contain no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  height: 112px;
  margin-bottom: 22px;
  width: min(520px, 100%);
}

.hero-tagline {
  color: #fff;
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  font-weight: 850;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 760px;
}

.search-header h1 {
  color: #fff;
  font-size: clamp(2.7rem, 6.5vw, 5.9rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.94;
  margin-bottom: 24px;
  max-width: 860px;
  text-wrap: balance;
}

.search-header h1 + p {
  color: rgba(255, 255, 255, 0.70);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  max-width: 720px;
}

.hero-console {
  align-self: end;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.hero-console div {
  align-items: center;
  background: rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 12px;
  grid-template-columns: 44px 1fr;
  padding: 18px;
}

.hero-console span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  display: inline-grid;
  font-size: 0.78rem;
  font-weight: 900;
  height: 34px;
  letter-spacing: 0.08em;
  place-items: center;
  width: 34px;
}

.hero-console strong {
  color: #fff;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-console {
    align-self: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .hero-console div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .brand {
    height: 52px;
    width: 250px;
  }

  .hero-logo {
    height: 88px;
    width: min(390px, 100%);
  }

  .search-header h1 {
    font-size: clamp(2.4rem, 12vw, 4.4rem);
    letter-spacing: -0.04em;
  }

  .hero-console {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand {
    height: 46px;
    width: 220px;
  }

  .hero-logo {
    height: 74px;
  }
}
