.homeContainer {
  padding-top: 64px;
  padding-bottom: 64px;
}

.heroSection {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.heroBadge {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
}

.heroSection h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  max-width: 800px;
  margin-bottom: 20px;
}

.heroSubtitle {
  font-size: 17px;
  color: var(--secondary);
  max-width: 640px;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .heroSection h1 {
    font-size: 34px;
    letter-spacing: -0.8px;
  }
  .heroSubtitle {
    font-size: 15px;
  }
  .homeContainer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
