/* ════════════════════════════════════════════════════════════════
   HERO.CSS - HERO STAGE, TYPOGRAPHY & CTA BUTTONS
   ════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: calc(150 * var(--u)) calc(30 * var(--u)) calc(90 * var(--u));
  text-align: center;
  margin: 0 auto;
  max-width: calc(1300 * var(--u));
}

/* Headline Typography - High Impact Minimalist Display */
.headline {
  font-family: 'Poppins', sans-serif;
  font-size: calc(102 * var(--h));
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin: 0 0 calc(48 * var(--u));
  display: flex;
  flex-direction: column;
  align-items: center;
}

.headline span {
  display: block;
  opacity: 0;
  transform: translateY(calc(24 * var(--u)));
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.headline span:nth-child(1) { animation-delay: 0.15s; }
.headline span:nth-child(2) { animation-delay: 0.32s; }
.headline span:nth-child(3) { animation-delay: 0.48s; }

.headline em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.72) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: calc(6 * var(--u));
}

/* Action Buttons Container Entrance */
.actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(20 * var(--u));
  opacity: 0;
  transform: translateY(calc(18 * var(--u)));
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.68s forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Frosted Pill CTA Button */
.pill-cta {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: calc(15 * var(--u)) calc(38 * var(--u));
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-size: calc(16 * var(--h));
  font-weight: 500;
  text-decoration: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.pill-cta:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Ghost Secondary Button */
.ghost {
  color: var(--muted);
  font-family: 'Poppins', sans-serif;
  font-size: calc(16 * var(--h));
  font-weight: 400;
  text-decoration: none;
  padding: calc(15 * var(--u)) calc(26 * var(--u));
  transition: color 0.3s ease;
}

.ghost:hover {
  color: var(--ink);
}

/* Mobile Hero Overrides */
@media (max-aspect-ratio: 11/10) {
  .hero {
    padding: calc(120 * var(--u)) calc(20 * var(--u)) calc(60 * var(--u));
  }

  .headline {
    font-size: calc(56 * var(--h));
    line-height: 1.05;
    margin-bottom: calc(32 * var(--u));
  }

  .actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    gap: calc(12 * var(--u));
  }

  .pill-cta, .ghost {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
