/* ══════════════════════════════════════════
   FOLD 1 — HERO
══════════════════════════════════════════ */
#fold-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 52px 80px;
  position: relative;
  overflow: hidden;
  background: #07070c;
}

/* Aurora beams — clean, geometric, magical */
#fold-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    conic-gradient(
      from 220deg at 50% 60%,
      transparent 0deg,
      rgba(123, 108, 240, 0.06) 20deg,
      transparent 40deg
    ),
    radial-gradient(
      ellipse 55% 40% at 50% 55%,
      rgba(123, 108, 240, 0.12) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 80% 50% at 50% 100%,
      rgba(90, 78, 212, 0.08) 0%,
      transparent 65%
    );
}

/* Drifting aurora beam 1 */
.aurora-1 {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 2px;
  height: 65vh;
  top: 5%;
  left: 50%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(123, 108, 240, 0.18),
    rgba(123, 108, 240, 0.06),
    transparent
  );
  filter: blur(8px);
  transform-origin: top center;
  animation: abeam1 9s ease-in-out infinite;
}
@keyframes abeam1 {
  0% {
    transform: rotate(-12deg) scaleY(0.6);
    opacity: 0.4;
  }
  30% {
    transform: rotate(-4deg) scaleY(1);
    opacity: 1;
  }
  60% {
    transform: rotate(6deg) scaleY(0.8);
    opacity: 0.6;
  }
  100% {
    transform: rotate(-12deg) scaleY(0.6);
    opacity: 0.4;
  }
}

/* Drifting aurora beam 2 */
.aurora-2 {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 2px;
  height: 55vh;
  top: 8%;
  left: 50%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(100, 85, 220, 0.12),
    rgba(160, 140, 255, 0.08),
    transparent
  );
  filter: blur(14px);
  transform-origin: top center;
  animation: abeam2 13s ease-in-out infinite;
}
@keyframes abeam2 {
  0% {
    transform: rotate(8deg) scaleY(0.7);
    opacity: 0.3;
  }
  40% {
    transform: rotate(18deg) scaleY(1.1);
    opacity: 0.8;
  }
  70% {
    transform: rotate(3deg) scaleY(0.9);
    opacity: 0.5;
  }
  100% {
    transform: rotate(8deg) scaleY(0.7);
    opacity: 0.3;
  }
}

/* Beam 3 — wider, very faint gold accent */
.aurora-3 {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 3px;
  height: 50vh;
  top: 10%;
  left: 50%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(200, 169, 110, 0.06),
    transparent
  );
  filter: blur(22px);
  transform-origin: top center;
  animation: abeam3 17s ease-in-out infinite;
}
@keyframes abeam3 {
  0% {
    transform: rotate(-25deg) scaleY(0.5);
    opacity: 0.2;
  }
  50% {
    transform: rotate(-10deg) scaleY(1.2);
    opacity: 0.7;
  }
  100% {
    transform: rotate(-25deg) scaleY(0.5);
    opacity: 0.2;
  }
}

/* Bottom ambient glow pool */
.aurora-pool {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 70%;
  height: 40%;
  bottom: -10%;
  left: 15%;
  background: radial-gradient(
    ellipse,
    rgba(123, 108, 240, 0.07) 0%,
    transparent 70%
  );
  filter: blur(40px);
  animation: poolbreath 8s ease-in-out infinite;
}
@keyframes poolbreath {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.15);
  }
}

/* Fine grain noise for cinematic depth */
#fold-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--t2);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 36px;
  box-shadow: 0 2px 16px rgba(123, 108, 240, 0.15);
  position: relative;
  z-index: 2;
}
.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: tagpulse 2s ease-in-out infinite;
}
@keyframes tagpulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.6);
  }
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 7.5vw, 92px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--t1);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  max-width: 940px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--purple-l);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.72;
  color: var(--t2);
  max-width: 540px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

/* Hero “crossed out” — high-contrast copy + strong brand bar */
.hero-h1 .hero-strike {
  position: relative;
  display: inline-block;
  color: #c8cad8;
  text-decoration: none;
}
.hero-h1 .hero-strike::after {
  content: "";
  position: absolute;
  left: -0.06em;
  right: -0.06em;
  top: 60%;
  height: 0.05em;
  min-height: 5px;
  max-height: 9px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--purple-d),
    var(--purple-l) 50%,
    var(--purple)
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 2px 12px rgba(123, 108, 240, 0.45);
  transform: translateY(-50%) rotate(0deg);
  pointer-events: none;
}

/* "Meet Genie" label above the card */
.hero-meet-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

/* Genie badge */
.genie-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px 24px;
  box-shadow: var(--sh);
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: left;
}
.gb-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gb-av svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  color: #fff;
}
.gb-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 8px;
}
.gb-caps {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}
.gb-cap {
  font-size: 11px;
  font-weight: 500;
  color: var(--t2);
  background: var(--bg-raise);
  border: 1px solid var(--border2);
  padding: 3px 10px;
  border-radius: 100px;
}
.gb-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--purple-l);
  font-weight: 600;
}
.sdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}
