.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: #00B3FF !important;
  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);
}

button#vox5-floating-mic-btn.vox5-floating-mic-btn {
  background-color: #00B3FF !important;

  /* re-apply the SVG */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 14a3 3 0 0 0 3-3V6a3 3 0 0 0-6 0v5a3 3 0 0 0 3 3z'/%3E%3Cpath d='M19 11a1 1 0 0 0-2 0 5 5 0 0 1-10 0 1 1 0 0 0-2 0 7 7 0 0 0 6 6.92V21h2v-3.08A7 7 0 0 0 19 11z'/%3E%3C/svg%3E") !important;

  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 28px 28px !important;
}



/* Hangup (X) state */
.vox5-floating-mic-btn.vox5-hangup {
  background: #ff5a5a;
}

/* Vox5 Registration form */
/* Container */
.vox5-form {
  max-width: 420px;
  margin: 0 auto;
  font-family: 'Outfit', sans-serif !IMPORTANT;
}

/* Form group spacing */
.vox5-form-group {
  margin-bottom: 16px;
}

/* Labels */
.vox5-form-label {
  display: block;
  font-size: 14px;       /* 👈 easy to change */
  font-weight: 400;
  margin-bottom: 6px;
  color: #222;
}

/* Inputs */
.vox5-form-input {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  border-radius: 50px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

.vox5-form-input:focus {
  outline: none;
  border-color: #7c3aed;
}

/* Button */
.vox5-form-actions {
  margin-top: 20px;
}

.vox5-form-button {
  width: 100%;
  background: #7c3aed;
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-size: 15px;
  border-radius: 999px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif !IMPORTANT;
}

.vox5-form-button:hover {
  background: #6a2de0;
}

/* Links */
.vox5-form-links {
  margin-top: 14px;
  font-size: 14px;
  text-align: center;
}

.vox5-form-links a {
  color: #7c3aed;
  text-decoration: none;
}

.vox5-form-links a:hover {
  text-decoration: underline;
}

.vox5-back-link {
  display: inline-block;
  margin-top: 6px;
}

/* Privacy */
.vox5-form-privacy {
  margin-top: 12px;
  font-size: 13px;
  text-align: center;
}

.vox5-form-privacy a {
  color: #666;
  text-decoration: none;
}

.vox5-left-sidebar a.vox5-sidebar-link {
  display: block;
  color: #6c4bff !important;
  text-decoration: none !important;
  text-decoration-thickness: initial !important;
  text-underline-offset: initial !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  font-family: var(--wp--preset--font-family--outfit) !important;
  margin-left: 60px;
}

