:root {
  --bean-chat-cyan: #68efff;
  --bean-chat-violet: #b56cff;
  --bean-chat-pink: #ff5abf;
  --bean-chat-ink: #f7fbff;
  --bean-chat-muted: #aebdca;
  --bean-chat-ease: cubic-bezier(.16, 1, .3, 1);
}

.universe-bean-chat-trigger {
  position: absolute;
  z-index: 46;
  right: 8px;
  bottom: 6px;
  width: 90px;
  height: 90px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  isolation: isolate;
}

.universe-bean-chat-trigger::before,
.universe-bean-chat-trigger::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: -1;
  border: 1px solid rgba(105, 238, 255, .5);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.7);
  animation: bean-chat-invite 3.2s ease-out infinite;
}

.universe-bean-chat-trigger::after {
  border-color: rgba(255, 91, 196, .42);
  animation-delay: 1.6s;
}

.universe-bean-chat-trigger .universe-bean {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(104, 239, 255, .24));
  transform: translateZ(0);
  transition: transform 180ms ease-out, filter 180ms ease-out;
}

.universe-bean-chat-trigger:hover .universe-bean,
.universe-bean-chat-trigger:focus-visible .universe-bean {
  transform: translateY(-3px) scale(1.04);
  filter: drop-shadow(0 0 9px rgba(104, 239, 255, .4));
}

.universe-bean-chat-trigger:focus,
.universe-bean-chat-trigger:focus-visible {
  outline: none;
}

.bean-chat-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2990;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: transparent;
  transition: opacity 260ms ease, visibility 0s linear 260ms;
}

.bean-chat-backdrop.is-mobile { background: rgba(0, 0, 0, .62); }

.bean-chat-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.bean-chat-overlay {
  position: fixed;
  z-index: 3000;
  left: var(--bean-chat-left, 0px);
  top: var(--bean-chat-top, 0px);
  width: var(--bean-chat-width, 430px);
  height: var(--bean-chat-height, 430px);
  overflow: hidden;
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(24px) scale(.992);
  transform-origin: 50% 90%;
  background: #03050b;
  color: var(--bean-chat-ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .72), inset 0 0 0 1px rgba(104, 239, 255, .14);
  transition: transform 460ms var(--bean-chat-ease), opacity 260ms ease, visibility 0s linear 460ms;
}

.bean-chat-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 0%, rgba(78, 224, 255, .11), transparent 34%),
    radial-gradient(circle at 94% 90%, rgba(185, 88, 255, .1), transparent 36%);
}

.bean-chat-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(90deg, #63eeff, transparent 19%, transparent 78%, #b56cff) top / 100% 1px no-repeat,
    linear-gradient(90deg, #ff5abf, transparent 23%, transparent 82%, #6cf4b8) bottom / 100% 1px no-repeat;
}

/* 四条独立流光由 canvas 绘制，沿对话框外沿持续运行。 */
.bean-chat-overlay::after { display: none; }

.bean-chat-four-flow {
  position: absolute;
  inset: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
}

.bean-chat-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.bean-chat-panel {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-rows: 66px minmax(0, 1fr) auto;
}

.bean-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(112, 224, 245, .14);
  background: linear-gradient(90deg, rgba(11, 29, 38, .92), rgba(9, 7, 21, .88));
}

.bean-chat-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(98, 238, 255, .24));
}

.bean-chat-identity {
  min-width: 0;
  flex: 1;
}

.bean-chat-identity strong,
.bean-chat-identity small {
  display: block;
}

.bean-chat-identity strong {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 750;
  letter-spacing: .02em;
}

.bean-chat-identity small {
  margin-top: 4px;
  color: #8fe9f7;
  font-size: 9px;
}

.bean-chat-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.bean-chat-status::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #67f5b4;
  box-shadow: 0 0 6px #67f5b4;
}

.bean-chat-close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 9px;
  color: #d9e7ee;
  background: rgba(255, 255, 255, .045);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.bean-chat-close:hover,
.bean-chat-close:focus-visible {
  color: #fff;
  background: rgba(104, 239, 255, .12);
}

.bean-chat-close:active { transform: scale(.94); }

.bean-chat-log {
  min-height: 0;
  overflow: auto;
  padding: 16px 17px 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(108, 230, 255, .32) transparent;
}

.bean-chat-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 0 0 12px;
}

.bean-chat-row.is-user { justify-content: flex-end; }

.bean-chat-row-avatar {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  object-fit: contain;
}

.bean-chat-bubble {
  max-width: min(82%, 430px);
  padding: 10px 12px;
  border-radius: 5px 13px 13px 13px;
  color: #dfeaf1;
  background: rgba(12, 25, 34, .9);
  font-size: 11.5px;
  line-height: 1.65;
  box-shadow: inset 0 0 0 1px rgba(99, 229, 255, .12);
}

.bean-chat-row.is-user .bean-chat-bubble {
  border-radius: 13px 5px 13px 13px;
  color: #fff;
  background: linear-gradient(135deg, rgba(26, 118, 147, .92), rgba(74, 53, 139, .9));
  box-shadow: none;
}

.bean-chat-bubble strong { color: #fff; font-weight: 760; }
.bean-chat-bubble em { color: #7eeaff; font-style: normal; }

.bean-chat-copy-block { margin-top: 8px; }
.bean-chat-copy-block p { margin: 7px 0 0; }
.bean-chat-copy-block p:first-child { margin-top: 0; }
.bean-chat-stage-paragraph { text-indent: 2em; }
.bean-chat-accent-result { color: #fff; font-weight: 690; }
.bean-chat-accent-brand { color: #75e8f7; font-weight: 720; }
.bean-chat-accent-action { color: #ffd576; font-weight: 720; }

.bean-chat-invite {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(111, 228, 246, .12);
}
.bean-chat-invite-copy { min-width: 0; flex: 1; }
.bean-chat-invite-copy b,
.bean-chat-invite-copy small { display: block; }
.bean-chat-invite-copy b { color: #fff; font-size: 10.5px; }
.bean-chat-invite-copy small { margin-top: 4px; color: #8ea5b2; font-size: 8px; }
.bean-chat-invite img {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  padding: 3px;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(102, 235, 255, .4), 0 0 7px rgba(166, 94, 255, .18);
}

.bean-chat-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 10px;
}

.bean-chat-result {
  min-width: 0;
  padding: 8px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 0 0 1px rgba(164, 111, 255, .14);
}

.bean-chat-result i,
.bean-chat-result b,
.bean-chat-result small { display: block; }

.bean-chat-result i {
  width: 22px;
  height: 22px;
  margin-bottom: 5px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #74efff;
  background: rgba(78, 227, 255, .08);
  font-style: normal;
  font-size: 12px;
}

.bean-chat-result b {
  overflow: hidden;
  color: #effaff;
  font-size: 9.5px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bean-chat-result small {
  margin-top: 4px;
  color: #82939f;
  font-size: 7.5px;
}

.bean-chat-actions {
  padding: 10px 13px 13px;
  border-top: 1px solid rgba(112, 224, 245, .12);
  background: rgba(2, 5, 10, .94);
}

.bean-chat-quick {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.bean-chat-quick::-webkit-scrollbar { display: none; }

.bean-chat-quick button {
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 0;
  border-radius: 999px;
  color: #bfeef5;
  background: rgba(73, 214, 237, .07);
  box-shadow: inset 0 0 0 1px rgba(101, 231, 255, .16);
  font: inherit;
  font-size: 9px;
  cursor: pointer;
}

.bean-chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 68px;
  gap: 7px;
}

.bean-chat-input {
  min-width: 0;
  height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  outline: none;
  color: #fff;
  background: #080d14;
  box-shadow: inset 0 0 0 1px rgba(127, 202, 220, .2);
  font: inherit;
  font-size: 11px;
}

.bean-chat-input::placeholder { color: #81919c; }

.bean-chat-input:focus {
  box-shadow: inset 0 0 0 1px rgba(102, 235, 255, .74), 0 0 0 2px rgba(81, 220, 255, .08);
}

.bean-chat-send {
  border: 0;
  border-radius: 10px;
  color: #041117;
  background: #77edff;
  font: inherit;
  font-size: 11px;
  font-weight: 760;
  cursor: pointer;
  transition: filter 150ms ease, transform 150ms ease;
}

.bean-chat-send:hover { filter: brightness(1.08); }
.bean-chat-send:active { transform: scale(.96); }

.bean-chat-overlay.is-mobile {
  left: 0;
  top: auto;
  bottom: 0;
  width: 100%;
  height: min(76svh, 720px);
  border-radius: 17px 17px 0 0;
  transform: translateY(104%);
  transform-origin: 50% 100%;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, .72), inset 0 0 0 1px rgba(104, 239, 255, .16);
  transition: transform 500ms var(--bean-chat-ease), visibility 0s linear 500ms;
}

.bean-chat-overlay.is-mobile.is-open {
  transform: translateY(0);
  transition-delay: 0s;
}

.bean-chat-overlay.is-mobile .bean-chat-panel { grid-template-rows: 64px minmax(0, 1fr) auto; }
.bean-chat-overlay.is-mobile .bean-chat-log { padding: 15px 14px 10px; }
.bean-chat-overlay.is-mobile .bean-chat-bubble { max-width: 86%; font-size: 13px; }
.bean-chat-overlay.is-mobile .bean-chat-actions { padding-bottom: max(13px, env(safe-area-inset-bottom)); }
.bean-chat-overlay.is-mobile .bean-chat-result b { font-size: 10.5px; }
.bean-chat-overlay.is-mobile .bean-chat-result small { font-size: 8.5px; }

@keyframes bean-chat-invite {
  0%, 42% { opacity: 0; transform: scale(.72); }
  55% { opacity: .72; }
  88%, 100% { opacity: 0; transform: scale(1.22); }
}

@media (prefers-reduced-motion: reduce) {
  .universe-bean-chat-trigger::before,
  .universe-bean-chat-trigger::after { animation: none; }
  .bean-chat-overlay,
  .bean-chat-backdrop { transition-duration: .01ms !important; }
}

/* 官网专用：PC 入口贴近六球/主球群，弹层位于右侧留白；移动端改为底部抽屉。 */
.site-bean-trigger {
  position: fixed;
  z-index: 2000;
  left: var(--site-bean-left, 76vw);
  top: var(--site-bean-top, 66vh);
  right: auto;
  bottom: auto;
  width: var(--site-bean-size, 82px);
  height: var(--site-bean-size, 82px);
  touch-action: none;
  user-select: none;
  cursor: var(--universe-hand-cursor, pointer);
  display: block;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.site-bean-trigger.is-dragging {
  cursor: grabbing;
}

.site-bean-trigger.is-dragging .universe-bean,
.site-bean-trigger.is-dragging:hover .universe-bean {
  transform: scale(1.035);
  filter: drop-shadow(0 0 11px rgba(104, 239, 255, .48));
}

.site-bean-trigger::before,
.site-bean-trigger::after { display: none !important; }

body.bean-chat-open .site-bean-trigger {
  opacity: 0;
  pointer-events: none;
}

.bean-chat-overlay:not(.is-mobile) {
  border-radius: 14px;
  transform-origin: var(--bean-chat-origin-x, 44px) var(--bean-chat-origin-y, 44px);
  transform: scale(.08);
}

.bean-chat-overlay:not(.is-mobile).is-open {
  transform: scale(1);
}

@media (max-width: 720px), (max-height: 640px) {
  .site-bean-trigger {
    left: auto !important;
    top: auto !important;
    right: 12px;
    bottom: calc(74px + env(safe-area-inset-bottom));
    width: 68px;
    height: 68px;
  }
}

body[data-force-mobile="true"] .site-bean-trigger {
  position: absolute;
  left: auto !important;
  top: auto !important;
  right: auto;
  bottom: auto;
  left: 50% !important;
  /* 移动端：位于球群正下方，并保持屏幕水平居中。 */
  top: 75.5% !important;
  width: 72px;
  height: 72px;
  transform: translateX(-50%);
}

body[data-force-mobile="true"] {
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050608;
}

.mobile-device-shell {
  position: relative;
  width: min(430px, calc(100vw - 24px), calc((100svh - 24px) * 9 / 16));
  height: auto;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  box-shadow: 0 0 0 1px rgba(126, 220, 238, .26), 0 10px 28px rgba(0, 0, 0, .72);
}

body[data-force-mobile="true"] #fixed-page {
  position: absolute;
}

body[data-force-mobile="true"] .bean-chat-backdrop {
  position: absolute;
  z-index: 2990;
}

body[data-force-mobile="true"] .bean-chat-overlay.is-mobile {
  position: absolute;
  z-index: 3000;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  border-radius: 17px 17px 0 0;
}

@media (max-width: 460px) {
  .mobile-device-shell {
    width: min(calc(100vw - 16px), calc((100svh - 16px) * 9 / 16));
    height: auto;
    border-radius: 22px;
  }
}

/* 2026-08-28 转化导向：纯黑为底，推荐内容最终汇聚到官网与二维码。 */
.bean-chat-overlay,
.bean-chat-header,
.bean-chat-actions,
.bean-chat-bubble {
  background: #000;
}

.bean-chat-overlay::before {
  background:
    radial-gradient(circle at 9% 0%, rgba(77, 231, 255, .075), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(202, 81, 255, .065), transparent 30%);
}

.bean-chat-row {
  align-items: flex-start;
}

.bean-chat-row-avatar {
  margin-top: 2px;
}

.bean-chat-copy-block {
  margin-top: 0;
}

.bean-chat-actions {
  padding-top: 11px;
}

.bean-chat-results {
  margin-top: 12px;
}

.bean-chat-result {
  background: #030303;
  box-shadow: inset 0 0 0 1px rgba(104, 233, 255, .16);
}

.bean-chat-result:last-child {
  box-shadow: inset 0 0 0 1px rgba(255, 102, 206, .22);
}

.bean-chat-result small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bean-chat-conversion {
  position: relative;
  isolation: isolate;
  min-height: 104px;
  margin-top: 12px;
  padding: 8px 9px 8px 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px;
  align-items: stretch;
  gap: 9px;
  overflow: hidden;
  border-radius: 12px;
  color: #fff;
  background: #000;
}

.bean-chat-conversion > .dual-flow-canvas {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bean-chat-conversion-links {
  min-width: 0;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.bean-chat-conversion-link {
  min-width: 0;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 7px;
  color: #fff;
  text-decoration: none;
  transition: background-color 180ms ease, filter 180ms ease;
}

.bean-chat-conversion-link + .bean-chat-conversion-link {
  border-top: 1px solid rgba(115, 231, 247, .14);
}

.bean-chat-conversion-link span,
.bean-chat-conversion-link strong,
.bean-chat-conversion-link small {
  min-width: 0;
  display: block;
}

.bean-chat-conversion-link strong {
  overflow: hidden;
  color: #fff;
  font-size: 10.5px;
  line-height: 1.25;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bean-chat-conversion-link small {
  margin-top: 3px;
  color: #9eb4c0;
  font-size: 8px;
  line-height: 1.2;
}

.bean-chat-conversion-link i {
  flex: 0 0 auto;
  color: #78efff;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.bean-chat-conversion-link.is-center i { color: #ffd36e; }

.bean-chat-conversion-link:hover,
.bean-chat-conversion-link:focus-visible {
  background: rgba(75, 229, 255, .08);
  filter: brightness(1.18);
}

.bean-chat-conversion-link:focus-visible {
  outline: 1px solid var(--bean-chat-cyan);
  outline-offset: -1px;
}

.bean-chat-conversion-qr {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 3px;
  padding-left: 9px;
  border-left: 1px solid rgba(195, 104, 255, .24);
}

.bean-chat-conversion-qr img {
  width: 64px;
  height: 64px;
  padding: 3px;
  object-fit: contain;
  border-radius: 7px;
  background: #fff;
}

.bean-chat-conversion-qr b {
  color: #fff;
  font-size: 8.5px;
  line-height: 1;
}

.bean-chat-conversion-qr small {
  color: #9eeef8;
  font-size: 7.5px;
  line-height: 1;
}

.bean-chat-overlay.is-mobile .bean-chat-conversion {
  min-height: 120px;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 10px;
}

.bean-chat-overlay.is-mobile .bean-chat-conversion-link { padding: 7px 9px; }
.bean-chat-overlay.is-mobile .bean-chat-conversion-link strong { font-size: 12px; }
.bean-chat-overlay.is-mobile .bean-chat-conversion-link small { font-size: 9px; }
.bean-chat-overlay.is-mobile .bean-chat-conversion-link i:not(.bean-chat-link-hand) { display: none; }
.bean-chat-overlay.is-mobile .bean-chat-conversion-qr img { width: 76px; height: 76px; }
.bean-chat-overlay.is-mobile .bean-chat-conversion-qr b { font-size: 9px; }
.bean-chat-overlay.is-mobile .bean-chat-conversion-qr small { font-size: 8px; }

/* 实时 AI 问答、搜索模块和产品推荐结果。 */
.bean-chat-api-response {
  width: min(100%, 430px);
  max-width: calc(100% - 33px);
  padding: 11px 12px 12px;
}

.bean-chat-answer-block {
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(111, 228, 246, .13);
}

.bean-chat-capability-label {
  display: block;
  color: #fff;
  font-size: 10.5px;
  line-height: 1.35;
}

.bean-chat-answer {
  margin: 6px 0 0;
  color: #fff !important;
  white-space: pre-wrap;
}

.bean-chat-answer.is-error,
.bean-chat-dynamic-slot.is-error,
.bean-chat-api-status.is-error {
  color: #ff9fbf;
}

.bean-chat-dynamic-slot {
  color: #fff !important;
  font-weight: 690;
  white-space: pre-wrap;
}

.bean-chat-result-group {
  margin-top: 10px;
}

.bean-chat-result-group h4 {
  margin: 0;
  color: #76efff;
  font-size: 9.5px;
  line-height: 1.35;
}

.bean-chat-result-group.is-product h4 {
  color: #fff;
}

.bean-chat-api-response .bean-chat-results {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 6px;
}

.bean-chat-api-response .bean-chat-result {
  min-height: 66px;
  padding: 7px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
}

.bean-chat-result-icon {
  overflow: hidden;
}

.bean-chat-api-response .bean-chat-result-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 0;
}

.bean-chat-api-response .bean-chat-result b {
  font-size: 11px;
  line-height: 1.35;
  white-space: normal;
}

.bean-chat-result-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bean-chat-result-icon span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.bean-chat-result-icon span[hidden] {
  display: none;
}

.bean-chat-result.is-product .bean-chat-result-icon {
  color: #fff;
  background: rgba(255, 91, 196, .08);
}

.bean-chat-api-status {
  margin: 10px 0 0;
  color: #91a7b3;
  font-size: 9px;
}

.bean-chat-pending {
  color: #9ddfea;
  animation: bean-chat-pending-pulse 1.15s ease-in-out infinite alternate;
}

.bean-chat-send:disabled {
  cursor: wait;
  filter: saturate(.45) brightness(.72);
  transform: none;
}

.bean-chat-overlay.is-mobile .bean-chat-api-response {
  width: calc(100% - 33px);
  max-width: calc(100% - 33px);
}

.bean-chat-overlay.is-mobile .bean-chat-api-response .bean-chat-results {
  grid-template-columns: minmax(0, 1fr);
}

.bean-chat-live-match {
  margin-top: 0;
}

.bean-chat-recommendation-results {
  margin-top: 5px;
}

.bean-chat-module-fallback {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #91a7b3;
  background: rgba(104, 233, 255, .05);
  font-size: 8px;
}

.bean-chat-module-fallback[hidden] {
  display: none;
}

.bean-chat-recommendation-results .bean-chat-api-status {
  grid-column: 1 / -1;
}

@keyframes bean-chat-pending-pulse {
  from { opacity: .58; }
  to { opacity: 1; }
}
