/* ── Section layout ───────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

/* ── Badge ────────────────────────────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108, 99, 255, 0.12);
  border: 1px solid rgba(108, 99, 255, 0.3);
  color: var(--indigo-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease 0.1s forwards;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--indigo);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Headline ─────────────────────────────────────────────────────────────── */
.hero-headline {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease 0.25s forwards;
}

.hero-headline span {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-light) 50%, #c4b5fd 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

/* ── Subheading ───────────────────────────────────────────────────────────── */
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 40px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease 0.45s forwards;
}

/* ── CTAs ─────────────────────────────────────────────────────────────────── */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease 0.65s forwards;
}

/* ── Floating shapes ──────────────────────────────────────────────────────── */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.18) 0%, transparent 70%);
}

.shape-1 {
  width: 600px; height: 600px;
  top: -100px; right: -120px;
  animation: floatA 8s ease-in-out infinite;
}

.shape-2 {
  width: 400px; height: 400px;
  bottom: 40px; left: -80px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
  animation: floatB 10s ease-in-out infinite;
}

.shape-3 {
  width: 200px; height: 200px;
  top: 35%; left: 50%;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.08) 0%, transparent 70%);
  animation: floatC 12s ease-in-out infinite;
}

.shape-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(108, 99, 255, 0.15);
}

.ring-1 {
  width: 400px; height: 400px;
  top: 10%; right: 5%;
  animation: spinRing 30s linear infinite;
}

.ring-2 {
  width: 260px; height: 260px;
  top: 15%; right: 10%;
  animation: spinRing 20s linear infinite reverse;
}

/* ── Scroll hint ──────────────────────────────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-2);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  animation: heroFadeUp 0.7s ease 1s forwards;
}

.scroll-arrow {
  width: 24px; height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px; height: 8px;
  background: var(--indigo);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
