/* ─────────────────────────────────────────
   hero.css — hero section
   ───────────────────────────────────────── */

.hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #F8F7FF 0%, #EDE9FE 50%, #F8F7FF 100%);
}

/* Ambient background orbs */
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}

.orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #8B5CF6, #4F46E5);
  top: -200px; right: -150px;
}

.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #6D28D9, #8B5CF6);
  bottom: -100px; left: -100px;
}

/* Two-column layout */
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* "Free · Open" pill badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid #DDD6FE;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(109,40,217,0.08);
}

.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s infinite;
}

/* Headline */
.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 24px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--purple) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sub-headline */
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.7;
}

/* CTA row */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Social proof row */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.avatar-stack { display: flex; }

.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar:first-child { margin-left: 0; }

.hero-proof-text {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.hero-proof-text strong { color: var(--text); font-weight: 600; }

/* Network SVG illustration */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
}

/* Mobile */
@media (max-width: 900px) {
  .hero-inner  { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

@media (max-width: 560px) {
  .hero-ctas { flex-direction: column; }
}