/* Vibrant display font for hero headline */
.hero h1 {
  font-family: 'Plus Jakarta Sans', Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;       /* tighter, more confident */
  line-height: 0.98;              /* compact without cramping */
  color: var(--navy-dark);
}

.hero h1 em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(92deg, var(--red) 0%, #ff4d62 50%, var(--red) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }

/* Slightly smaller, crisper subhead */
.hero-sub {
  font-weight: 450;
  letter-spacing: -0.01em;
  max-width: 480px;
  color: #465668; /* slightly deeper than slate */
}