/* Hero — centered headline with cyan highlight + glow blob */
.ddb-hero {
  position: relative;
  overflow: hidden;
}
.ddb-hero__container {
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .ddb-hero__container {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  .ddb-hero__container {
    padding-top: 6rem;
  }
}
.ddb-hero__content {
  margin-inline: auto;
  max-width: 48rem;
  text-align: center;
}
.ddb-hero__eyebrow {
  margin-bottom: 1.25rem;
}
.ddb-hero__title {
  font-size: 2.5rem;
  line-height: 1.05;
  color: var(--ddb-navy);
}
@media (min-width: 640px) {
  .ddb-hero__title {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .ddb-hero__title {
    font-size: 3.75rem;
  }
}
@media (min-width: 1024px) {
  .ddb-hero__title {
    font-size: 4.25rem;
  }
}
.ddb-hero__title em {
  font-style: normal;
  color: var(--ddb-brand-red);
}
.ddb-hero__text {
  margin-inline: auto;
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 1rem;
  color: var(--ddb-muted-fg);
}
@media (min-width: 768px) {
  .ddb-hero__text {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
.ddb-hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .ddb-hero__actions {
    flex-direction: row;
  }
}
.ddb-hero__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--ddb-muted-fg);
}
.ddb-hero__glow {
  pointer-events: none;
  position: absolute;
  top: -8rem;
  left: 50%;
  z-index: -1;
  height: 480px;
  width: 800px;
  max-width: 100vw;
  transform: translateX(-50%);
  border-radius: 9999px;
  background: oklch(0.68 0.16 225 / 0.2);
  filter: blur(64px);
}
