/* ══════════════════════════════════════════
   FOLD 2 — MEET GENIE (already dark — keep as is)
══════════════════════════════════════════ */
#fold-meet {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 52px;
  background: #060609;
  position: relative;
  overflow: hidden;
}
#fold-meet::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    rgba(123, 108, 240, 0.22) 0%,
    transparent 65%
  );
}
.grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.045;
}
.grid-lines::before {
  content: "";
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(rgba(123, 108, 240, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 108, 240, 1) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: griddrift 22s linear infinite;
}
@keyframes griddrift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(64px, 64px);
  }
}

.meet-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 52px;
  position: relative;
  z-index: 1;
  animation: geniepulse 2.5s ease-in-out infinite;
}
.meet-avatar svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #fff;
  color: #fff;
}
@keyframes geniepulse {
  0% {
    box-shadow: 0 0 0 0 rgba(123, 108, 240, 0.45);
  }
  50% {
    box-shadow: 0 0 0 28px rgba(123, 108, 240, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(123, 108, 240, 0.45);
  }
}

.meet-q {
  font-family: var(--serif);
  font-size: clamp(34px, 5.5vw, 66px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 900ms ease,
    transform 900ms ease;
}
.meet-q.in {
  opacity: 1;
  transform: translateY(0);
}
.meet-div {
  width: 1px;
  height: 52px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(123, 108, 240, 0.55),
    transparent
  );
  margin: 32px auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 600ms ease 500ms;
}
.meet-div.in {
  opacity: 1;
}
.meet-a {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 56px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: rgba(123, 108, 240, 0.92);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 900ms ease 700ms,
    transform 900ms ease 700ms;
}
.meet-a.in {
  opacity: 1;
  transform: translateY(0);
}
.meet-cap {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 48px;
  position: relative;
  z-index: 1;
  max-width: 460px;
  opacity: 0;
  transition: opacity 700ms ease 1300ms;
}
.meet-cap.in {
  opacity: 1;
}
.meet-scroll {
  margin-top: 60px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.meet-scroll span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}
.meet-scroll-arr {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  animation: bouncearrow 2s ease-in-out infinite;
}
