.shout-hero {
  min-height: 360px;
}

.shout-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 30px;
}

.shout-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.shout-heading h2 {
  margin: 5px 0 0;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.shout-stage {
  --meter-level: 0%;
  --meter-ratio: 0;
  --meter-glow: 18px;
  display: grid;
  place-items: center;
  gap: 24px;
  min-height: 390px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  background:
    radial-gradient(circle at 50% 42%, rgba(34, 240, 208, 0.12), transparent 34%),
    rgba(0, 0, 0, 0.3);
}

.shout-orb {
  position: relative;
  display: grid;
  width: clamp(150px, 28vw, 220px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(34, 240, 208, 0.28);
  border-radius: 50%;
  background: rgba(34, 240, 208, 0.035);
  box-shadow: 0 0 var(--meter-glow) rgba(34, 240, 208, 0.2);
  transform: scale(calc(0.94 + var(--meter-ratio) * 0.12));
}

.shout-orb::before,
.shout-orb::after {
  position: absolute;
  border: 1px solid rgba(34, 240, 208, 0.2);
  border-radius: 50%;
  content: "";
}

.shout-orb::before {
  inset: 12%;
}

.shout-orb::after {
  inset: 25%;
}

.shout-orb-core {
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 40px var(--accent-color);
  opacity: calc(0.35 + var(--meter-ratio) * 0.65);
}

.shout-stage.is-listening .shout-orb {
  animation: shout-pulse 1.2s ease-in-out infinite;
}

.shout-stage.is-win .shout-orb {
  border-color: var(--accent-color);
  box-shadow: 0 0 85px rgba(34, 240, 208, 0.5);
}

.shout-meter {
  width: min(480px, 100%);
  height: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.shout-meter span {
  display: block;
  width: var(--meter-level);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-color), #f5c451, #ff4060);
  box-shadow: 0 0 18px var(--accent-color);
  transition: width 70ms linear;
}

.shout-readout {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--muted);
}

.shout-readout strong {
  color: var(--text);
  font-size: 1.3rem;
}

.shout-result {
  display: grid;
  min-height: 76px;
  gap: 7px;
  padding: 20px 4px 14px;
  text-align: center;
}

.shout-result strong {
  color: var(--text);
  font-size: 1.2rem;
}

.shout-result span,
.shout-privacy {
  color: var(--muted);
  line-height: 1.55;
}

.shout-start {
  width: 100%;
  min-height: 56px;
  font-size: 1rem;
}

.shout-privacy {
  margin: 14px auto 0;
  font-size: 0.78rem;
  text-align: center;
}

@keyframes shout-pulse {
  50% { transform: scale(1.04); }
}

@media (max-width: 640px) {
  .shout-stage {
    min-height: 330px;
    padding: 26px 18px;
  }

  .shout-heading {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shout-stage.is-listening .shout-orb {
    animation: none;
  }
}
