/* ════════════════════════════════════════════════════════
   1 · HERO
   ════════════════════════════════════════════════════════ */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding-top: 20px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mp);
  padding: 6px 14px;
  border: 1px solid rgba(232,0,138,0.25);
  border-radius: 999px;
  background: rgba(232,0,138,0.04);
}
.he-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--mp);
  box-shadow: 0 0 0 0 rgba(232, 0, 138, 0.55);
  animation: livePulse 1.6s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,0,138,0.65); }
  70%  { box-shadow: 0 0 0 10px rgba(232,0,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,0,138,0); }
}

.hero-title {
  font-size: clamp(40px, 6.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 8px 0 6px;
}
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--t2);
  line-height: 1.7;
  max-width: 640px;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

