/* Hero Section */
.hero {
  padding-top: 7rem;
  padding-bottom: 3rem;
  position: sticky;
  top: 0;
  z-index: 1;
  background: radial-gradient(circle at 30% 20%, rgba(94, 152, 241, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(94, 152, 241, 0.1) 0%, transparent 40%),
              radial-gradient(circle at 90% 10%, rgba(122, 176, 255, 0.08) 0%, transparent 30%),
              white;
}

.hero-text {
  text-align: center;
}

.badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

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

.badge {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--text-primary);
  border: 1px solid var(--primary-light);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  background-color: rgba(94, 152, 241, 0.1);
  font-weight: 500;
}

.badge.secondary {
  border-color: var(--gray-300);
  background-color: var(--gray-50);
  color: var(--text-secondary);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

@media (min-width: 640px) {
  .hero h1 { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 4.5rem; }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.hero-description {
  color: var(--text-secondary);
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

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

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
