/* Hero section */
.hero {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -10;
  background: radial-gradient(ellipse at top, var(--tw-gradient-stops, #fef3c7, #ffffff, #ffffff));
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: #fef3c7;
  color: #92400e;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero__badge-icon {
  width: 1rem;
  height: 1rem;
}

.hero__title {
  font-size: 2.25rem;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__title-accent {
  color: #f59e0b;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  line-height: 1.625;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero {
    padding-top: 6rem;
    padding-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero__title {
    font-size: 3.75rem;
  }

  .hero__title-break {
    display: block;
  }

  .hero__subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
