/* ============================================
   hero.css — Full-viewport hero with animated orbs
   ============================================ */

/* --- Hero Section --- */
.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
  padding: 100px 0 60px;
}

/* --- Animated Background Orbs --- */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  will-change: transform;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(130, 48, 210, 0.4), rgba(168, 85, 247, 0.1), transparent 70%);
  animation: orb-drift-1 20s ease-in-out infinite;
}

.hero__orb--2 {
  width: 500px;
  height: 500px;
  bottom: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.05), transparent 70%);
  animation: orb-drift-2 25s ease-in-out infinite;
}

.hero__orb--3 {
  width: 400px;
  height: 400px;
  top: 40%;
  left: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25), rgba(16, 185, 129, 0.05), transparent 70%);
  animation: orb-drift-3 30s ease-in-out infinite;
}

/* --- Inner Layout --- */
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

/* --- Content --- */
.hero__content {
  text-align: center;
}

/* --- Social Proof Line (replaces badge) --- */
.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.hero__proof::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
}

/* --- Title --- */
.hero__title {
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Subtitle --- */
.hero__subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* --- CTAs --- */
.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

/* --- Platforms Note --- */
.hero__platforms {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Phone Mockup with Glow --- */
.hero__phone {
  position: relative;
  max-width: 280px;
  flex-shrink: 0;
  animation: phone-float 6s ease-in-out infinite;
}

.hero__phone::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-purple), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.hero__phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(130, 48, 210, 0.15);
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
  .hero {
    padding: 0;
  }

  .hero__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
  }

  .hero__content {
    text-align: left;
    flex: 1;
  }

  .hero__subtitle {
    margin-left: 0;
  }

  .hero__ctas {
    justify-content: flex-start;
  }

  .hero__phone {
    max-width: 320px;
  }
}
