.mcHpSection{
  position:relative;
  overflow:hidden;
  padding:10px 0 0;
  background:transparent;
}

.mcHpSectionBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:8px 18px;
  border-radius:10px;
  border:1px solid rgba(200,169,106,.34);
  background:#fffdfa;
  color:#15223b;
  font-size:14px;
  font-weight:800;
  letter-spacing:.04em;
  box-shadow:none;
}

.mcHpSectionBadgeDot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#22c55e;
  flex:0 0 8px;
  animation:mcHpBadgePulse 2s ease-in-out infinite;
}

@keyframes mcHpBadgePulse{
  0%,100%{box-shadow:0 0 0 0 rgba(34,197,94,.45);}
  50%{box-shadow:0 0 0 6px rgba(34,197,94,0);}
}

.mcHpSectionHeadline{
  font-size:42px !important;
  font-weight:900;
  color:#15223b;
  line-height:1.12;
  margin:18px 0 14px;
  letter-spacing:-.02em;
}

.mcHpSectionSub{
  margin:0 auto 28px;
  font-size:16px;
  color:rgba(21,34,59,.66);
  line-height:1.65;
}

.mcHpMainRow{
  border-radius:12px;
  overflow:hidden;
  background:#ffffff;
  border:1px solid rgba(15,35,70,.10);
  box-shadow:none;
}

.mcHpChatbox{
  flex:1;
  display:flex;
  flex-direction:column;
  background:#ffffff;
  position:relative;
  overflow:hidden;
  min-height:560px;
  --mcHpImpulseTop:120px;
  --mcHpImpulseBottom:146px;
  --mcHpImpulseLeft:20px;
  --mcHpImpulseRight:20px;
}

.mcHpChatHeader{
  display:flex;
  align-items:center;
  padding:16px 18px;
  border-bottom:1px solid rgba(15,35,70,.08);
  background:#ffffff;
  flex:0 0 auto;
  position:relative;
  z-index:4;
  gap:10px;
}

.mcHpChatAvatar{
  width:44px;
  height:44px;
  border-radius:10px;
  object-fit:cover;
  border:1px solid rgba(15,35,70,.10);
  box-shadow:none;
  flex:0 0 44px;
  margin-right:8px;
}

.mcHpChatHeaderMeta{
  display:flex;
  flex-direction:column;
  gap:2px;
  flex:1;
  min-width:0;
}

.mcHpChatName{
  font-size:15px !important;
  font-weight:900;
  color:#15223b;
  line-height:1.2;
}

.mcHpChatRole{
  font-size:11px !important;
  color:rgba(21,34,59,.52);
  font-weight:700;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.mcHpStatusPill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px 11px;
  border-radius:10px;
  border:1px solid rgba(15,35,70,.10);
  background:#ffffff;
  flex:0 0 auto;
}

.mcHpDot{
  display:inline-block;
  width:8px;
  height:8px;
  border-radius:50%;
  flex:0 0 8px;
  transition:background .3s ease;
}

.mcHpDot--connected{
  background:#22c55e;
  animation:mcHpDotPulse 2s ease-in-out infinite;
}

.mcHpDot--connecting{
  background:#f59e0b;
  animation:mcHpDotBlink 1s ease-in-out infinite;
}

.mcHpDot--disconnected{
  background:#ef4444;
}

.mcHpDot--streaming{
  background:#3b82f6;
  animation:mcHpDotPulse .8s ease-in-out infinite;
}

@keyframes mcHpDotPulse{
  0%{box-shadow:0 0 0 0 rgba(34,197,94,.40);}
  70%{box-shadow:0 0 0 7px rgba(34,197,94,0);}
  100%{box-shadow:0 0 0 0 rgba(34,197,94,0);}
}

@keyframes mcHpDotBlink{
  0%,100%{opacity:1;}
  50%{opacity:.35;}
}

.mcHpStatusTxt{
  font-size:11px !important;
  font-weight:700;
  color:rgba(21,34,59,.62);
  white-space:nowrap;
}

.mcHpMessages{
  position:relative;
  z-index:2;
  height:420px;
  min-height:0;
  flex:0 0 auto;
  overflow-y:auto;
  overflow-x:hidden;
  padding:14px 12px 10px 16px;
  display:flex;
  flex-direction:column;
  gap:12px;
  scroll-behavior:auto;
  scrollbar-width:thin;
  scrollbar-color:rgba(200,169,106,.50) rgba(15,35,70,.05);
  isolation:isolate;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior-y:contain;
  overscroll-behavior-x:none;
  touch-action:pan-y;
  background:#ffffff;
  border-radius:0;
  border:none;
  overflow-anchor:none;
}

.mcHpMessages > *{
  position:relative;
  z-index:2;
}

.mcHpMessages::-webkit-scrollbar{
  width:6px;
}

.mcHpMessages::-webkit-scrollbar-track{
  background:rgba(15,35,70,.05);
  border-radius:6px;
}

.mcHpMessages::-webkit-scrollbar-thumb{
  background:rgba(200,169,106,.50);
  border-radius:6px;
  min-height:36px;
}

.mcHpMessages::-webkit-scrollbar-thumb:hover{
  background:rgba(200,169,106,.72);
}

.mcHpEmptyImpulse{
  position:absolute;
  top:var(--mcHpImpulseTop);
  bottom:var(--mcHpImpulseBottom);
  left:var(--mcHpImpulseLeft);
  right:var(--mcHpImpulseRight);
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
  z-index:1;
  opacity:1;
  visibility:visible;
  transition:opacity .22s ease, visibility .22s ease;
}

.mcHpEmptyImpulse.is-hidden{
  opacity:0;
  visibility:hidden;
}

.mcHpEmptyImpulseText{
  display:inline-block;
  max-width:100%;
  margin:0;
  text-align:center;
  white-space:nowrap;
  user-select:none;
  font-size:clamp(38px,5.6vw,86px);
  font-weight:900;
  letter-spacing:.12em;
  line-height:1.02;
  background-image:linear-gradient(
    90deg,
    rgba(21,34,59,.08) 0%,
    rgba(21,34,59,.14) 18%,
    rgba(21,34,59,.28) 50%,
    rgba(21,34,59,.14) 82%,
    rgba(21,34,59,.08) 100%
  );
  background-size:240% 100%;
  background-position:0% 50%;
  background-repeat:no-repeat;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
  animation:mcHpEmptyImpulseSweep 5.6s linear infinite;
}

@keyframes mcHpEmptyImpulseSweep{
  0%{background-position:0% 50%;}
  49.999%{background-position:100% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

.mcHpMsg{
  display:flex;
  flex-direction:column;
  gap:4px;
  margin:0;
  animation:mcHpMsgIn .25s ease-out both;
}

@keyframes mcHpMsgIn{
  from{opacity:0;transform:translateY(8px);}
  to{opacity:1;transform:translateY(0);}
}

.mcHpMsg--bot{
  align-items:flex-start;
}

.mcHpMsg--user{
  align-items:flex-end;
}

.mcHpMsgLabel{
  display:flex;
  align-items:center;
  gap:7px;
  padding:0 2px;
  margin:0;
}

.mcHpMsgLabel img{
  width:26px;
  height:26px;
  border-radius:6px;
  object-fit:cover;
  border:1px solid rgba(15,35,70,.10);
  flex:0 0 26px;
}

.mcHpMsgLabel span{
  font-size:11px !important;
  font-weight:700;
  color:rgba(21,34,59,.45);
}

.mcHpMsgBody{
  display:block;
  margin:0;
  padding:11px 15px 8px;
  border-radius:10px;
  font-size:14px !important;
  line-height:1.6;
  word-break:break-word;
  overflow-wrap:anywhere;
  overflow:hidden;
  scrollbar-width:none;
  box-shadow:none;
}

.mcHpMsgBody::-webkit-scrollbar{
  display:none;
}

.mcHpMsgBody > :first-child{
  margin-top:0 !important;
}

.mcHpMsgBody > :last-child{
  margin-bottom:0 !important;
}

.mcHpMsgBody p,
.mcHpMsgBody ul,
.mcHpMsgBody ol,
.mcHpMsgBody pre,
.mcHpMsgBody blockquote,
.mcHpMsgBody h1,
.mcHpMsgBody h2,
.mcHpMsgBody h3,
.mcHpMsgBody h4,
.mcHpMsgBody h5,
.mcHpMsgBody h6{
  margin-top:0;
}

.mcHpMsgBody p{
  margin-bottom:.72em;
}

.mcHpMsgBody ul,
.mcHpMsgBody ol{
  margin-bottom:.72em;
  padding-left:1.2em;
}

.mcHpMsgBody li{
  margin:0 0 .22em;
}

.mcHpMsgBody pre,
.mcHpMsgBody blockquote{
  margin-bottom:.72em;
}

.mcHpMsgBody p:last-child,
.mcHpMsgBody ul:last-child,
.mcHpMsgBody ol:last-child,
.mcHpMsgBody pre:last-child,
.mcHpMsgBody blockquote:last-child,
.mcHpMsgBody h1:last-child,
.mcHpMsgBody h2:last-child,
.mcHpMsgBody h3:last-child,
.mcHpMsgBody h4:last-child,
.mcHpMsgBody h5:last-child,
.mcHpMsgBody h6:last-child{
  margin-bottom:0 !important;
}

.mcHpMsgBody a{
  overflow-wrap:anywhere;
  word-break:break-word;
}

.mcHpMsg--bot .mcHpMsgBody{
  color:#15223b;
  background:#f8fafc;
  border:1px solid rgba(15,35,70,.08);
  border-top-left-radius:4px;
}

.mcHpMsg--user .mcHpMsgBody{
  background:#15223b;
  color:#ffffff;
  border:1px solid rgba(21,34,59,.08);
  border-top-right-radius:4px;
  box-shadow:none;
}

.mcHpTyping{
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:4px 2px;
}

.mcHpTyping span{
  width:7px;
  height:7px;
  border-radius:50%;
  background:rgba(21,34,59,.28);
  animation:mcHpBounce 1.2s ease-in-out infinite;
}

.mcHpTyping span:nth-child(1){
  animation-delay:0ms;
}

.mcHpTyping span:nth-child(2){
  animation-delay:160ms;
}

.mcHpTyping span:nth-child(3){
  animation-delay:320ms;
}

@keyframes mcHpBounce{
  0%,80%,100%{transform:translateY(0);opacity:.4;}
  40%{transform:translateY(-6px);opacity:1;}
}

.mcHpChips{
  position:relative;
  z-index:3;
  display:flex;
  flex-wrap:wrap;
  align-content:flex-start;
  gap:8px;
  padding:10px 16px;
  border-top:1px solid rgba(15,35,70,.07);
  background:#ffffff;
  flex:0 0 auto;
  max-height:none;
  overflow:visible;
  scrollbar-width:none;
  overscroll-behavior:auto;
  -webkit-overflow-scrolling:auto;
  touch-action:auto;
  overflow-anchor:none;
}

.mcHpChips::-webkit-scrollbar{
  display:none;
}

.mcHpChipScrollRail{
  position:absolute;
  top:10px;
  right:6px;
  bottom:10px;
  width:4px;
  border-radius:999px;
  background:rgba(15,35,70,.08);
  pointer-events:none;
  z-index:4;
  display:none;
}

.mcHpChipScrollThumb{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  border-radius:999px;
  background:rgba(200,169,106,.72);
  transform:translateY(0);
  transition:transform .12s linear, height .12s linear, opacity .12s linear;
}

.mcHpChip{
  appearance:none;
  border:1px solid rgba(15,35,70,.12);
  background:#ffffff;
  border-radius:999px;
  padding:7px 13px;
  font-size:12px !important;
  font-weight:600;
  color:#15223b;
  cursor:pointer;
  line-height:1.1;
  white-space:nowrap;
  box-shadow:none;
  transition:border-color .15s, background .15s, transform .10s, color .15s;
}

.mcHpChip:hover:not(:disabled){
  border-color:rgba(200,169,106,.55);
  background:#fffaf0;
  color:#7a5c10;
  box-shadow:none;
  transform:none;
}

.mcHpChip:active{
  transform:none;
  box-shadow:none;
}

.mcHpChip:disabled{
  opacity:.42;
  pointer-events:none;
}

.mcHpConsentBar{
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
  padding:10px 16px;
  border-top:1px solid rgba(15,35,70,.07);
  background:#f8fafc;
  flex:0 0 auto;
}

.mcHpToggleWrap{
  display:flex;
  align-items:flex-start;
  gap:12px;
  cursor:pointer;
  margin:0;
  user-select:none;
  width:100%;
  min-width:0;
}

.mcHpToggleTrack{
  position:relative;
  flex:0 0 44px;
  width:44px;
  height:24px;
}

.mcHpToggleInput{
  position:absolute;
  opacity:0;
  width:0;
  height:0;
  pointer-events:none;
}

.mcHpToggleThumb{
  position:absolute;
  inset:0;
  border-radius:999px;
  background:rgba(15,35,70,.18);
  cursor:pointer;
  transition:background .22s ease;
}

.mcHpToggleThumb::after{
  content:"";
  position:absolute;
  top:3px;
  left:3px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#ffffff;
  box-shadow:none;
  transition:transform .22s cubic-bezier(.34,1.56,.64,1);
}

.mcHpToggleInput:checked ~ .mcHpToggleThumb{
  background:#22c55e;
}

.mcHpToggleInput:checked ~ .mcHpToggleThumb::after{
  transform:translateX(20px);
}

.mcHpToggleInput:focus-visible ~ .mcHpToggleThumb{
  box-shadow:0 0 0 3px rgba(34,197,94,.24);
}

@keyframes mcHpConsentNeedBlink{
  0%,100%{
    box-shadow:0 0 0 0 rgba(239,68,68,0);
    background:rgba(15,35,70,.18);
  }
  15%{
    box-shadow:0 0 0 4px rgba(239,68,68,.18);
    background:rgba(239,68,68,.28);
  }
  30%{
    box-shadow:0 0 0 0 rgba(239,68,68,0);
    background:rgba(15,35,70,.18);
  }
  45%{
    box-shadow:0 0 0 4px rgba(239,68,68,.18);
    background:rgba(239,68,68,.28);
  }
  60%{
    box-shadow:0 0 0 0 rgba(239,68,68,0);
    background:rgba(15,35,70,.18);
  }
}

.mcHpToggleThumb.mcHpToggleThumb--needConsent{
  animation:mcHpConsentNeedBlink .7s ease-in-out 1;
}

.mcHpConsentLabel{
  font-size:12px !important;
  color:rgba(21,34,59,.62);
  line-height:1.5;
  flex:1 1 auto;
  min-width:0;
  white-space:normal;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.mcHpConsentLink{
  color:#2563eb;
  text-decoration:underline;
  text-underline-offset:2px;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.mcHpInputArea{
  position:relative;
  z-index:3;
  display:flex;
  align-items:flex-end;
  gap:10px;
  padding:14px 16px;
  border-top:1px solid rgba(15,35,70,.08);
  background:#ffffff;
  flex:0 0 auto;
}

.mcHpInput{
  flex:1 1 auto;
  min-width:0;
  border:1px solid rgba(15,35,70,.12);
  border-radius:10px;
  padding:10px 14px;
  font-size:14px !important;
  line-height:1.5;
  resize:none;
  outline:none;
  background:#ffffff;
  color:#15223b;
  max-height:120px;
  overflow-y:auto;
  overscroll-behavior-y:contain;
  overscroll-behavior-x:none;
  -webkit-overflow-scrolling:touch;
  touch-action:pan-y;
  font-family:inherit;
  transition:border-color .15s, box-shadow .15s, background .15s;
  overflow-anchor:none;
}

.mcHpInput::placeholder{
  color:rgba(21,34,59,.35);
}

.mcHpInput:focus{
  border-color:rgba(200,169,106,.55);
  box-shadow:0 0 0 3px rgba(200,169,106,.12);
  background:#ffffff;
}

.mcHpInput:disabled{
  opacity:.55;
  cursor:not-allowed;
  background:#f8fafc;
}

.mcHpSendBtn{
  appearance:none;
  border:1px solid rgba(21,34,59,.08);
  width:42px;
  height:42px;
  min-width:42px;
  flex:0 0 42px;
  border-radius:10px;
  background:#15223b;
  color:#ffffff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:none;
  transition:transform .12s ease, background .12s ease, opacity .12s ease, border-color .12s ease;
}

.mcHpSendBtn:hover:not(:disabled){
  transform:none;
  box-shadow:none;
  background:#1d3155;
}

.mcHpSendBtn:active:not(:disabled){
  transform:none;
  box-shadow:none;
}

.mcHpSendBtn:disabled{
  opacity:.35;
  cursor:not-allowed;
  transform:none;
  box-shadow:none;
}

.mcHpConsentLabel .mcHpConsentLink,
.mcHpConsentLabel a{
  display:inline;
  white-space:normal !important;
  overflow-wrap:anywhere;
  word-break:break-word;
  line-break:anywhere;
  text-decoration:underline;
  text-underline-offset:2px;
}

.mcHpConsentLabel .mcHpConsentLink:hover,
.mcHpConsentLabel .mcHpConsentLink:focus,
.mcHpConsentLabel a:hover,
.mcHpConsentLabel a:focus{
  text-decoration:underline;
}

.mcHpFullscreenBtn{
  appearance:none;
  border:1px solid rgba(15,35,70,.10);
  background:#ffffff;
  border-radius:10px;
  width:34px;
  height:34px;
  min-width:34px;
  flex:0 0 34px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:rgba(21,34,59,.58);
  margin-left:0;
  box-shadow:none;
  transition:background .15s, color .15s, border-color .15s;
}

.mcHpFullscreenBtn:hover{
  background:#fffaf0;
  border-color:rgba(200,169,106,.42);
  color:#7a5c10;
}

.mcHpChatbox--fullscreen{
  position:fixed !important;
  top:calc(var(--site-header-height) - 1px) !important;
  right:0 !important;
  bottom:0 !important;
  left:0 !important;
  z-index:9998 !important;
  border-radius:0 !important;
  width:100vw !important;
  height:calc(100dvh - var(--site-header-height) + 1px) !important;
  max-width:none !important;
  max-height:calc(100dvh - var(--site-header-height) + 1px) !important;
  min-height:0 !important;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  background:#ffffff !important;
}

.mcHpChatbox--fullscreen .mcHpMessages{
  flex:1 1 auto !important;
  height:auto !important;
  min-height:0 !important;
  overflow-y:auto !important;
  overflow-x:hidden !important;
  scrollbar-width:thin;
  scrollbar-color:rgba(200,169,106,.42) rgba(15,35,70,.05);
  -webkit-overflow-scrolling:touch;
  overscroll-behavior-y:contain;
  overscroll-behavior-x:none;
  touch-action:pan-y;
}

.mcHpChatbox--fullscreen .mcHpChips{
  max-height:116px;
  overflow-y:auto;
  overflow-x:hidden;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior-y:contain;
  overscroll-behavior-x:none;
  touch-action:pan-y;
}

.mcHpChatbox--fullscreen .mcHpInput{
  overflow-y:auto;
  overscroll-behavior-y:contain;
  overscroll-behavior-x:none;
  -webkit-overflow-scrolling:touch;
  touch-action:pan-y;
}

html.mcHpChatboxFsOpen,
body.mcHpNoScroll{
  overflow:hidden;
}

@media (max-width:991px){
  .mcHpSection{
    padding:52px 0 64px;
  }

  .mcHpSectionHeadline{
    font-size:30px !important;
  }

  .mcHpSectionSub{
    margin-bottom:26px;
  }

  .mcHpMainRow{
    border-radius:10px;
  }

  .mcHpChatbox{
    min-height:500px;
  }

  .mcHpSectionBadge{
    display:inline-flex;
    max-width:100%;
    margin-left:auto;
    margin-right:auto;
  }
}

@media (max-width:768px){
  .mcHpSection{
    padding:40px 0 48px;
  }

  .mcHpSectionHeadline{
    font-size:26px !important;
  }

  .mcHpSectionSub{
    font-size:14px;
    margin-bottom:22px;
    line-height:1.55;
  }

  .mcHpChatbox{
    min-height:448px;
    --mcHpImpulseLeft:14px;
    --mcHpImpulseRight:14px;
    --mcHpImpulseBottom:136px;
  }

  .mcHpMessages{
    height:286px;
    padding:12px 8px 8px 14px;
    gap:10px;
  }

  .mcHpMessages::-webkit-scrollbar{
    width:4px;
    display:block;
  }

  .mcHpMessages::-webkit-scrollbar-track{
    background:rgba(15,35,70,.05);
    border-radius:4px;
  }

  .mcHpMessages::-webkit-scrollbar-thumb{
    background:rgba(200,169,106,.50);
    border-radius:4px;
  }

  .mcHpEmptyImpulseText{
    font-size:clamp(22px,7.4vw,34px);
    letter-spacing:.08em;
    line-height:1.04;
    background-image:linear-gradient(
      90deg,
      rgba(21,34,59,.08) 0%,
      rgba(21,34,59,.14) 16%,
      rgba(21,34,59,.26) 50%,
      rgba(21,34,59,.14) 84%,
      rgba(21,34,59,.08) 100%
    );
  }

  .mcHpChips{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    align-content:start;
    gap:8px;
    max-height:88px;
    overflow-y:scroll;
    overflow-x:hidden;
    padding:8px 18px 9px 12px;
    scrollbar-width:none;
    -ms-overflow-style:none;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior-y:contain;
    overscroll-behavior-x:none;
    touch-action:pan-y;
  }

  .mcHpChips::-webkit-scrollbar{
    width:0;
    height:0;
    display:none;
  }

  .mcHpChip{
    width:100%;
    min-width:0;
    min-height:30px;
    display:flex;
    align-items:center;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-size:11px !important;
    padding:6px 11px;
  }

  .mcHpChipScrollRail{
    display:block;
  }

  .mcHpChatHeader{
    padding:12px 14px;
  }

  .mcHpChatRole{
    display:none;
  }

  .mcHpConsentBar{
    padding:8px 12px;
  }

  .mcHpInputArea{
    padding:10px 12px;
  }

  .mcHpStatusPill{
    padding:4px 9px;
  }

  .mcHpSendBtn{
    width:38px;
    height:38px;
    min-width:38px;
    flex:0 0 38px;
  }

  .mcHpToggleWrap{
    gap:10px;
  }

  .mcHpConsentLabel{
    font-size:11px !important;
    line-height:1.4;
  }
}

@media (max-width:575px){
  .mcHpSection{
    padding:40px 0 20px;
  }

  .mcHpSectionHeadline{
    font-size:22px !important;
  }

  .mcHpSectionSub{
    font-size:13px;
    margin-bottom:18px;
  }

  .mcHpChatbox{
    --mcHpImpulseLeft:12px;
    --mcHpImpulseRight:12px;
    --mcHpImpulseBottom:132px;
  }

  .mcHpMessages{
    height:248px;
    padding:10px 6px 8px 12px;
    gap:9px;
  }

  .mcHpEmptyImpulseText{
    font-size:clamp(18px,6.6vw,26px);
    letter-spacing:.06em;
    line-height:1.06;
  }

  .mcHpChips{
    max-height:84px;
    padding:8px 16px 9px 10px;
  }

  .mcHpChip{
    min-height:28px;
  }
}

@media (prefers-reduced-motion:reduce){
  .mcHpSectionBadgeDot,
  .mcHpDot--connected,
  .mcHpDot--connecting,
  .mcHpDot--streaming,
  .mcHpEmptyImpulseText,
  .mcHpMsg,
  .mcHpTyping span{
    animation:none !important;
    transition:none !important;
  }
}