/* ==========================================================
   Void Messenger — Hero Section (Above the Fold)
   ========================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px var(--section-padding-x);
  position: relative;
  overflow: hidden;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 800px;
  animation: fade-in-up 1s ease-out 0.2s both;
}

/* ── Phone Mockup (Pure CSS) ── */
.hero__mockup {
  position: relative;
  width: 140px;
  height: 280px;
  flex-shrink: 0;
  animation: float 6s ease-in-out infinite;
}

.hero__mockup-screen {
  width: 100%;
  height: 100%;
  background: var(--void-surface);
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(255, 45, 120, 0.06);
}

.hero__mockup-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Headlines ── */
.hero__headline {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 200;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--text-primary);
}

.hero__subheadline {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.6;
}

/* ── CTA Button ── */
.hero__cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 14px 36px;
  background: var(--gradient-neon);
  color: var(--text-on-accent);
  border-radius: var(--radius-button);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform var(--transition-fast),
              box-shadow var(--transition-normal);
  animation: cta-pulse 3s ease-in-out infinite;
  text-decoration: none;
  margin-top: 0.25rem;
}

.hero__cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--glow-magenta-strong);
  animation: none;
}

.hero__cta:active {
  transform: translateY(0) scale(0.98);
}

.hero__cta-sub {
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.7;
}

/* ── Scroll Hint ── */
.hero__scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: fade-in-up 1s ease-out 1.5s both;
}

.hero__scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-neon);
  animation: dot-pulse 2s ease-in-out infinite;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding-top: 50px;
  }

  .hero__mockup {
    width: 120px;
    height: 240px;
  }

  .hero__cta {
    padding: 13px 30px;
    font-size: 0.95rem;
  }

  .hero__scroll-hint {
    display: none;
  }
}
