.dp-hub-hero {
  background: var(--color-white);
}

.dp-hub-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.dp-hub-hero__copy {
  flex: 0 1 500px;
  max-width: 500px;
}

.dp-hub-hero__copy .eyebrow {
  margin: 0 0 16px;
  font-size: 18px;
  letter-spacing: 1px;
}

.dp-hub-hero__title {
  margin: 0;
  color: var(--color-gray-950);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -2px;
}

.dp-hub-hero__description {
  margin: 16px 0 0;
  color: var(--color-gray-950);
  font-size: 14px;
  line-height: 20px;
}

.dp-hub-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.dp-hub-hero__visual {
  flex: 0 0 669px;
  max-width: 669px;
  margin: 0;
  align-self: center;
}

.dp-hub-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.dp-hub-trust {
  padding: 0 0 80px;
  background: var(--color-white);
}

.dp-hub-trust__header {
  margin-bottom: 56px;
  text-align: center;
}

.dp-hub-trust__header .eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
}

.dp-hub-trust__title {
  margin: 0;
  color: var(--color-gray-950);
  font-size: 44px;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: -1.2px;
}

.dp-hub-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.dp-hub-trust-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px 28px 28px;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  background: #fefefe;
}

.dp-hub-trust-card h3 {
  margin: 0;
  color: var(--color-gray-950);
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.dp-hub-trust-card p {
  margin: 0;
  color: #555f6d;
  font-size: 14px;
  line-height: 20px;
}

.dp-hub-trust-card__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.dp-hub-trust-card__tag--negative {
  color: #991b1b;
}

.dp-hub-trust-card__tag--positive {
  color: #196742;
}

.dp-hub-insights {
  padding: 56px 0 100px;
  background: #fefeff;
}

.dp-hub-insights__header {
  margin-bottom: 24px;
}

.dp-hub-insights__header .eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
}

.dp-hub-insights__title {
  margin: 0;
  max-width: 679px;
  color: var(--color-gray-950);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.88px;
}

.dp-hub-insights__title-accent {
  color: #2563eb;
}

.dp-hub-insights__content {
  display: grid;
  grid-template-columns: 520px minmax(0, 1fr);
  gap: 140px;
  align-items: center;
}

.dp-hub-insights__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dp-hub-insight-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.dp-hub-insight-card--featured {
  gap: 12px;
}

.dp-hub-insight-card__icon {
  width: 32px;
  height: 32px;
}

.dp-hub-insight-card h3 {
  margin: 0;
  color: var(--color-gray-950);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.dp-hub-insight-card p {
  margin: 0;
  color: #555f6d;
  font-size: 14px;
  line-height: 20px;
}

.dp-hub-insight-card:not(.dp-hub-insight-card--featured) {
  flex-direction: row;
  align-items: center;
}

.dp-hub-insights__chart {
  margin: 0;
  justify-self: end;
}

.dp-hub-insights__chart img {
  display: block;
  width: min(100%, 670px);
  height: auto;
}

@media (max-width: 1100px) {
  .dp-hub-hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .dp-hub-hero__copy,
  .dp-hub-hero__visual {
    flex: none;
    width: 100%;
    max-width: none;
  }

  .dp-hub-trust__grid {
    grid-template-columns: 1fr;
  }

  .dp-hub-insights__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dp-hub-insights__chart {
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .dp-hub-hero__title,
  .dp-hub-trust__title,
  .dp-hub-insights__title {
    font-size: clamp(28px, 7vw, 44px);
    line-height: 1.2;
  }
}
