.home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
  color: var(--slate-100);
  background:
    linear-gradient(90deg, rgba(7, 19, 33, 0.98) 0%, rgba(7, 19, 33, 0.9) 56%, rgba(7, 19, 33, 0.55) 100%),
    url("../assets/tv-studio.svg") 70% center / cover no-repeat;
}

.home-hero::before {
  position: absolute;
  top: -10rem;
  right: -8rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(232, 216, 181, 0.18);
  border-radius: 50%;
  content: "";
}

.home-hero__content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.home-hero h1 {
  max-width: 850px;
  color: var(--white);
}

.home-hero__lead {
  max-width: 720px;
  color: var(--slate-200);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.home-hero .button-row {
  margin-top: 2rem;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  margin-top: 2.2rem;
  color: var(--slate-200);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-note span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.priority-card {
  position: relative;
  overflow: hidden;
}

.priority-card::after {
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 95px;
  height: 95px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  content: "";
}

.response-grid {
  display: grid;
  gap: 1.2rem;
}

.response-item {
  padding: 1.3rem 0;
  border-top: 1px solid rgba(217, 224, 231, 0.2);
}

.response-item:first-child {
  border-top: 0;
}

.response-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.response-item p {
  margin: 0;
  color: var(--slate-200);
}

.insight-panel {
  padding: clamp(1.5rem, 4vw, 3rem);
  border-left: 4px solid var(--gold);
  background: var(--slate-100);
}

.insight-panel p:last-child {
  margin-bottom: 0;
}

@media (min-width: 760px) {
  .response-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .response-item {
    padding: 0 1.4rem;
    border-top: 0;
    border-left: 1px solid rgba(217, 224, 231, 0.2);
  }

  .response-item:first-child {
    padding-left: 0;
    border-left: 0;
  }
}
