.hervox-voice {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0;
  background: transparent !important;
  /*font-family: system-ui, sans-serif;*/
}

.hervox-voice-orb-container {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hervox-voice-orb {
  position: relative;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  overflow: hidden;
  background: #120626; /* base, but will be fully covered */
  box-shadow: 0 0 40px rgba(133, 64, 237, 0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: hervox-breathe 4.5s ease-in-out infinite;
}

/* Oversized gradient layer that always covers the orb */
.hervox-voice-orb::before {
  content: "";
  position: absolute;
  inset: -50%;               /* keep it big so it always covers */
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 30%,
    #8540ed 0%,
    #8540ed 18%,   /* smaller purple core */
    #00b3ff 45%,   /* bring blue in closer */
    #00b3ff 100%
  );
  animation: hervox-orb-glow 12s ease-in-out infinite;
  will-change: transform;
}


/* Breathing scale + glow */
@keyframes hervox-breathe {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(133, 64, 237, 0.35);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(0, 179, 255, 0.5);
  }
}

/* Smooth, subtle wandering motion of the glow.
   Translations are small so coverage stays full. */
@keyframes hervox-orb-glow {
  0% {
    transform: translate(-6%, -4%);
  }
  25% {
    transform: translate(4%, -6%);
  }
  50% {
    transform: translate(6%, 5%);
  }
  75% {
    transform: translate(-3%, 7%);
  }
  100% {
    transform: translate(-6%, -4%);
  }
}

@keyframes hervox-breathe {
  0%, 100% { transform: scale(0.97); }
  50% { transform: scale(1.03); }
}

.hervox-voice--speaking .hervox-voice-orb {
  animation: hervox-pulse 1.1s ease-in-out infinite;
  box-shadow: 0 0 55px rgba(120, 0, 255, 0.45);
}

@keyframes hervox-pulse {
  0% { transform: scale(1.03); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1.03); }
}

/* Status text */
.hervox-voice-status {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

/* Controls */
.hervox-voice-controls {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
}

.hervox-circle-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #f5f5f5;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s;
}

.hervox-circle-btn:hover {
  background: #ebebeb;
  transform: translateY(-2px);
}

.hervox-end {
  background: #ffecec;
}

.hervox-end:hover {
  background: #ffd5d5;
}
/* Intro / marketing copy section */
.hervox-voice-intro {
  max-width: 1200px;
  margin: 0 auto 32px;
  padding: 0 20px;
  text-align: center;
}

.hervox-voice-intro__title {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.hervox-voice-intro__body {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #555;
}

.hervox-voice-intro__subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.hervox-voice-intro__list {
  list-style: disc;
  padding-left: 1.4rem;
  text-align: left;
  display: inline-block;
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.5;
  color: #555;
}

.hervox-voice-intro__list li + li {
  margin-top: 4px;
}

.hervox-voice-intro__cta {
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
  color: #444;
}
.hervox-voice-orb-container {
  margin-bottom: 5px;
}

/* Floating Mic */
.vox5-floating-mic {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 9999;
}

.vox5-floating-mic-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #8540ed;
  color: #fff;
  font-size: 32px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
  transition: background 0.25s ease, transform 0.25s ease;
}

.vox5-floating-mic-btn:hover {
  transform: scale(1.07);
}

/* Hangup (X) state */
.vox5-floating-mic-btn.vox5-hangup {
  background: #ff5a5a;
}

