.journey-generate-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(52, 211, 153, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(9, 23, 36, 0.94), rgba(18, 38, 55, 0.84));
}

.journey-generate-panel__hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.4rem 0 0.2rem;
}

.journey-generate-panel__copy {
  max-width: 30rem;
}

.journey-generate-panel__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6ee7c8;
}

.journey-generate-panel__title {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.25;
  color: #f5fbff;
}

.journey-generate-panel__text {
  margin: 0.8rem 0 0;
  max-width: 32rem;
  line-height: 1.7;
  color: #c1d5de;
}

.journey-generate-panel__avatar-wrap {
  position: relative;
  flex: 0 0 auto;
  width: clamp(4.75rem, 10vw, 6rem);
  aspect-ratio: 1;
}

.journey-generate-panel__avatar-glow {
  position: absolute;
  inset: 16%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.62), rgba(34, 197, 94, 0.08) 68%, transparent 72%);
  filter: blur(12px);
  animation: journey-generate-avatar-float 4.8s ease-in-out infinite;
}

.journey-generate-panel__avatar {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(3, 12, 20, 0.5));
  animation: journey-generate-avatar-float 4.8s ease-in-out infinite;
}

@keyframes journey-generate-avatar-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 767px) {
  .journey-generate-panel__hero {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .journey-generate-panel__avatar-wrap {
    width: 4.8rem;
  }
}
