.hervox-voice {
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0;
  background: #ffffff;
  /*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 {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 20%, #9f5bff, #6a00ff 35%, #00e5ff 95%);
  box-shadow: 0 0 40px rgba(120, 0, 255, 0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: hervox-breathe 4.5s ease-in-out infinite;
}

@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: 40px;
}
