/* ============================================================
   HERO — Full-screen section, glow, particles, badge, trust pills, scroll cue
   ============================================================ */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 68px; /* navbar height */
}

/* ── Radial coral glow — JS shifts on scroll ── */
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(0, 191, 165, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* ── Particles container (filled by JS) ── */
#hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--coral);
  animation: float-particle linear infinite;
}

/* ── Content wrapper ── */
.hero-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
  width: 100%;
}

/* ── Badge pill ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  background: rgba(38, 47, 56, 0.05);
  border: 1px solid var(--card-border);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

/* ── Headline ── */
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
}
.hero-word-coral { color: var(--coral); }
.hero-br         { display: block; }

/* ── Subtitle ── */
.hero-sub {
  font-family: var(--font);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--text-soft);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ── CTA row ── */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

/* ── Trust pills row ── */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  background: rgba(38, 47, 56, 0.04);
  border: 1px solid var(--card-border);
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.trust-pill i { width: 13px; height: 13px; color: var(--coral); flex-shrink: 0; }
.trust-pill:hover {
  border-color: rgba(0, 191, 165, 0.5);
  color: var(--text-primary);
  background: var(--coral-faint);
}

/* ── Scroll cue ── */
.scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-cue-track {
  width: 26px; height: 44px;
  border: 2px solid var(--card-border);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-cue-thumb {
  width: 4px; height: 8px;
  background: var(--coral);
  border-radius: 2px;
  animation: scroll-bob 2s ease-in-out infinite;
}
