body.v14-web .web-guided-breath-program.is-auto-presented {
  animation: v14-web-program-arrive 420ms ease-out both;
}

body.v14-web .web-guided-breath-program.is-auto-presented,
body.v14-web .web-suggested-support.is-auto-presented {
  position: relative;
  margin-top: 20px;
  scroll-margin-top: 28px;
  border: 1px solid rgba(98, 84, 199, 0.18);
  border-radius: 8px;
  background: rgba(251, 250, 255, 0.94);
  box-shadow: 0 16px 42px rgba(40, 31, 83, 0.1);
}

body.v14-web .web-suggested-support.is-auto-presented {
  animation: v14-web-program-arrive 420ms ease-out both;
}

body.v14-web .web-guided-mindful-steps {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

body.v14-web .web-guided-mindful-steps p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #554f66;
  line-height: 1.6;
}

body.v14-web .web-guided-mindful-steps p span {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #574e92;
  background: #eeebf8;
}

body.v14-web .web-guided-mindful-steps blockquote {
  margin: 4px 0 0;
  padding: 18px;
  border: 0;
  border-left: 3px solid #79b6a8;
  color: #30294e;
  background: rgba(111, 200, 181, 0.09);
  font-size: 18px;
  line-height: 1.7;
}

body.v14-web .web-guided-breath-program:not(.is-active):not(.is-complete) .web-guided-breath-stage,
body.v14-web .web-guided-breath-program:not(.is-active):not(.is-complete) .web-guided-breath-track,
body.v14-web .web-guided-mindful-program .web-guided-mindful-steps {
  display: none;
}

body.v14-web .web-guided-breath-program.is-active .web-guided-breath-stage,
body.v14-web .web-guided-breath-program.is-complete .web-guided-breath-stage {
  animation: v14-web-program-arrive 320ms ease-out both;
}

body.v14-web[data-dictation-state="followup-listening"] .continuation-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 0;
  color: #fff;
  background:
    radial-gradient(ellipse at 72% 66%, rgba(111, 215, 193, 0.5), transparent 34%),
    radial-gradient(ellipse at 34% 28%, rgba(104, 121, 229, 0.7), transparent 48%),
    linear-gradient(155deg, #211936 0%, #313d6d 54%, #397879 100%);
  animation: v14-web-followup-space-breathe 10s ease-in-out infinite;
}

body.v14-web[data-dictation-state="followup-listening"] .web-continuation-invite span,
body.v14-web[data-dictation-state="followup-listening"] .web-continuation-invite p {
  display: block;
  color: rgba(255, 255, 255, 0.7);
}

body.v14-web[data-dictation-state="followup-listening"] .web-continuation-invite h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 560;
}

body.v14-web[data-dictation-state="followup-listening"] .web-continuation-prompts,
body.v14-web[data-dictation-state="followup-listening"] .followup-form .submit-row,
body.v14-web[data-dictation-state="followup-listening"] .desktop-review-path {
  display: none;
}

body.v14-web[data-dictation-state="followup-listening"] .followup-form {
  grid-template-columns: minmax(0, 1fr) 132px;
  margin-top: 22px;
}

body.v14-web[data-dictation-state="followup-listening"] .followup-form textarea {
  grid-column: 1;
  grid-row: 1;
  min-height: 210px;
  max-height: 330px;
  padding: 18px 0;
  resize: none;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  font-size: 19px;
  line-height: 1.8;
}

body.v14-web[data-dictation-state="followup-listening"] .followup-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

body.v14-web[data-dictation-state="followup-listening"] .followup-dictation-card {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
  min-height: 210px;
  align-content: center;
  justify-items: center;
}

body.v14-web[data-dictation-state="followup-listening"] .followup-dictation-button {
  grid-column: 1;
  grid-row: 1;
  place-self: end center;
  width: 112px;
  height: 112px;
  min-height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.06), 0 0 52px rgba(117, 225, 203, 0.38);
  animation: v14-web-followup-mic-breathe 10s ease-in-out infinite;
}

body.v14-web[data-dictation-state="followup-listening"] .followup-dictation-button svg {
  width: 34px;
  height: 34px;
}

body.v14-web[data-dictation-state="followup-listening"] .followup-dictation-card p {
  display: block;
  grid-column: 1;
  grid-row: 2;
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
  white-space: normal;
}

@keyframes v14-web-program-arrive {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes v14-web-followup-space-breathe {
  0%, 100% { background-size: 100% 100%, 100% 100%, 100% 100%; }
  40% { background-size: 136% 136%, 124% 124%, 100% 100%; }
}

@keyframes v14-web-followup-mic-breathe {
  0%, 100% { transform: scale(0.94); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.05), 0 0 40px rgba(117, 225, 203, 0.28); }
  40% { transform: scale(1.04); box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.07), 0 0 64px rgba(117, 225, 203, 0.48); }
}

@media (prefers-reduced-motion: reduce) {
  body.v14-web .web-guided-breath-program.is-auto-presented,
  body.v14-web .web-suggested-support.is-auto-presented,
  body.v14-web[data-dictation-state="followup-listening"] .continuation-panel,
  body.v14-web[data-dictation-state="followup-listening"] .followup-dictation-button {
    animation: none;
  }
}

body.v14-web .web-mood-portrait-map {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.v14-web .web-mood-portrait-map[data-node-count="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.v14-web .web-mood-portrait-map[data-node-count="4"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.v14-web .web-mood-portrait-map[data-node-count="5"] {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.v14-web .web-mood-portrait-node.is-reality i,
body.v14-web .web-mood-portrait-node.is-responsibility i,
body.v14-web .web-mood-portrait-node.is-resource i {
  background: #5c9f91;
}

body.v14-web .web-mood-portrait-node small {
  color: #62587a;
  font-weight: 620;
}
