.chat-hero { background: #090b10; }
.chat-hero::before {
  background:
    radial-gradient(circle at 80% 16%, rgba(105, 93, 255, .2), transparent 29%),
    radial-gradient(circle at 23% 66%, rgba(223, 255, 79, .08), transparent 34%),
    linear-gradient(122deg, transparent 46%, rgba(255, 255, 255, .035));
}

.chat-hero .hero-copy h1 { max-width: 720px; }
.chat-hero .hero-lead { max-width: 660px; }

.chat-stage {
  height: clamp(500px, 40vw, 620px);
  border-color: rgba(255, 255, 255, .18);
  background: #11131a;
}

.chat-stage::before {
  position: absolute;
  inset: -30% -10% auto auto;
  width: 65%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(105, 93, 255, .18);
  content: "";
  filter: blur(70px);
  pointer-events: none;
  animation: chat-glow 7s ease-in-out infinite alternate;
}

.chat-window {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template: 52px 1fr / 156px minmax(0, 1fr);
  color: var(--paper);
}

.chat-appbar {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(17, 19, 26, .82);
}

.chat-appbar strong { font-size: 13px; }
.chat-appbar span {
  padding-left: 16px;
  border-left: 1px solid var(--line-dark);
  color: rgba(244, 242, 233, .46);
  font-size: 10px;
}

.chat-context-rail {
  position: relative;
  z-index: 1;
  padding: 32px 16px;
  border-right: 1px solid var(--line-dark);
  background: rgba(9, 11, 16, .7);
}

.chat-context-rail small {
  display: block;
  color: var(--lime);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.chat-context-rail > strong { display: block; margin-top: 8px; font-size: 12px; }
.chat-context-rail ul { margin: 26px 0 0; padding: 0; list-style: none; }
.chat-context-rail li {
  display: grid;
  grid-template-columns: 23px 1fr;
  gap: 8px;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, .09);
  color: rgba(244, 242, 233, .62);
  font-size: 9px;
}

.chat-context-rail li span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(223, 255, 79, .28);
  color: var(--lime);
  font-size: 7px;
}

.chat-thread {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 48px clamp(24px, 4vw, 54px) 24px;
}

.chat-message {
  margin: 0;
  opacity: 0;
  transform: translateY(16px);
  animation: message-in 650ms cubic-bezier(.2, .7, .2, 1) forwards;
}

.chat-message-user {
  max-width: 76%;
  align-self: flex-end;
  padding: 14px 18px;
  border-radius: 18px 18px 4px 18px;
  background: #292c35;
  color: rgba(244, 242, 233, .9);
  font-size: 13px;
  animation-delay: 650ms;
}

.chat-message-ai {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 13px;
  max-width: 95%;
  margin-top: 30px;
  animation-delay: 850ms;
}

.chat-answer-mark { color: var(--lime); }
.chat-message-ai p {
  margin: 0;
  font-size: clamp(15px, 1.35vw, 19px);
  letter-spacing: -.015em;
  line-height: 1.45;
}

.chat-sources {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.chat-sources span {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line-dark);
  color: rgba(244, 242, 233, .54);
  font-size: 8px;
  line-height: 1.35;
  transition: border-color 180ms ease, color 180ms ease;
}

.chat-sources span:hover { border-color: rgba(223, 255, 79, .7); color: var(--paper); }
.chat-sources b { margin-right: 5px; color: var(--lime); }

.chat-handoff {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 14px;
  align-items: center;
  margin: 26px 0 0 39px;
  padding: 13px 15px;
  border: 1px solid rgba(223, 255, 79, .4);
  background: rgba(223, 255, 79, .06);
  opacity: 0;
  transform: translateY(14px);
  animation: message-in 650ms 1.05s cubic-bezier(.2, .7, .2, 1) forwards;
}

.chat-handoff span { color: rgba(244, 242, 233, .42); font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.chat-handoff strong { grid-column: 1; font-size: 10px; }
.chat-handoff i { grid-column: 2; grid-row: 1 / span 2; color: var(--lime); font-style: normal; }

.chat-composer {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 0 8px 0 15px;
  border: 1px solid var(--line-dark);
  border-radius: 13px;
  color: rgba(244, 242, 233, .35);
  font-size: 10px;
}

.chat-composer i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-style: normal;
}

.chat-organization,
.chat-capabilities { padding: clamp(110px, 14vw, 190px) 0; background: var(--paper); }

.organization-heading,
.capabilities-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr);
  gap: 34px clamp(48px, 7vw, 100px);
  align-items: end;
}

.organization-heading .kicker,
.capabilities-heading .kicker { grid-column: 1 / -1; margin-bottom: 0; }

.chat-organization h2,
.chat-capabilities h2,
.chat-workflow h2 {
  margin: 0;
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 500;
  letter-spacing: -.064em;
  line-height: .98;
}

.organization-heading > p:last-child,
.capabilities-heading > p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--muted-light);
  font-size: 18px;
}

.organization-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(64px, 8vw, 100px);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.organization-benefits article {
  display: flex;
  min-width: 0;
  min-height: 320px;
  flex-direction: column;
  padding: 26px clamp(20px, 2.4vw, 34px) 30px;
  border-left: 1px solid var(--line-light);
}

.organization-benefits article:first-child { border-left: 0; }
.benefit-mark { color: #667800; font-size: 10px; letter-spacing: .14em; }
.organization-benefits h3 {
  margin: 62px 0 0;
  font-size: clamp(24px, 2.2vw, 33px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.organization-benefits p { margin: auto 0 0; color: var(--muted-light); font-size: 15px; }

.chat-capabilities { padding-top: 0; background: var(--paper-cool); }
.capabilities-heading { padding-top: clamp(110px, 14vw, 190px); }
.capabilities-label {
  margin-top: clamp(60px, 7vw, 90px);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-light);
  color: #667800;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 24px;
}

.capability-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 22px;
  background: var(--paper);
}

.capability-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
  background: #e8e8e3;
}

.capability-copy { min-height: 190px; padding: 30px clamp(24px, 3vw, 40px) 34px; }
.capability-copy h3 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(27px, 2.8vw, 40px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.capability-copy p { max-width: 590px; margin: 18px 0 0; color: var(--muted-light); font-size: 15px; }

.source-picker {
  position: absolute;
  z-index: 2;
  top: 42px;
  left: 6%;
  width: min(43%, 220px);
  padding: 10px;
  border: 1px solid rgba(13, 14, 17, .12);
  border-radius: 14px;
  background: rgba(247, 248, 245, .94);
  box-shadow: 0 14px 30px rgba(13, 14, 17, .08);
}

.source-picker span {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(13, 14, 17, .08);
  font-size: 9px;
}

.source-picker span:last-child { border-bottom: 0; }
.source-picker i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(105, 93, 255, .11);
  color: #5544aa;
  font-size: 8px;
  font-style: normal;
}

.source-picker b { color: #3a7b38; font-size: 8px; font-weight: 700; text-transform: uppercase; }
.knowledge-answer {
  position: absolute;
  right: 5%;
  bottom: 38px;
  width: 61%;
  padding: 22px;
  border: 1px solid rgba(13, 14, 17, .12);
  border-radius: 16px;
  background: #f6f6f1;
  box-shadow: 0 18px 44px rgba(13, 14, 17, .08);
}

.knowledge-answer small { display: block; font-size: 8px; }
.knowledge-answer p { margin: 20px 0; font-size: 11px; line-height: 1.45; }
.knowledge-answer div { display: flex; flex-wrap: wrap; gap: 6px; }
.knowledge-answer span { padding: 6px 8px; border: 1px solid rgba(13, 14, 17, .12); border-radius: 999px; color: var(--muted-light); font-size: 7px; }

.file-chip {
  position: absolute;
  z-index: 2;
  top: 42px;
  right: 7%;
  display: flex;
  gap: 34px;
  padding: 12px 15px;
  border: 1px solid rgba(13, 14, 17, .11);
  border-radius: 12px;
  background: #f5f5f0;
  font-size: 9px;
  box-shadow: 0 12px 24px rgba(13, 14, 17, .07);
}

.file-chip span { color: rgba(13, 14, 17, .42); }
.analysis-sheet {
  position: absolute;
  top: 66px;
  left: 11%;
  width: 68%;
  min-height: 210px;
  padding: 32px 32px 22px;
  border: 1px solid rgba(13, 14, 17, .12);
  border-radius: 18px;
  background: #f8f8f3;
}

.analysis-sheet small { font-size: 8px; }
.bar-chart {
  display: flex;
  height: 108px;
  align-items: end;
  justify-content: space-around;
  gap: 8px;
  margin-top: 22px;
  padding: 0 8px;
  border-bottom: 1px solid rgba(13, 14, 17, .35);
}

.bar-chart i { width: 13%; border-radius: 4px 4px 0 0; background: #695dff; }
.bar-chart i:nth-child(1) { height: 35%; }
.bar-chart i:nth-child(2) { height: 54%; background: #67a8a5; }
.bar-chart i:nth-child(3) { height: 62%; background: #c6ab2f; }
.bar-chart i:nth-child(4) { height: 74%; background: #c96a3b; }
.bar-chart i:nth-child(5) { height: 88%; background: #695dff; }
.analysis-sheet p { display: flex; justify-content: space-around; margin: 7px 0 0; color: rgba(13, 14, 17, .42); font-size: 7px; }

.visual-create { background: #e1e0db; }
.create-prompt {
  position: absolute;
  top: 92px;
  left: 8%;
  width: 64%;
  min-height: 110px;
  padding: 20px;
  border: 1px solid rgba(13, 14, 17, .12);
  border-radius: 16px;
  background: #f5f5f0;
  color: rgba(13, 14, 17, .58);
  font-size: 10px;
}

.create-menu {
  position: absolute;
  z-index: 2;
  top: 48px;
  right: 6%;
  width: min(42%, 210px);
  padding: 8px;
  border: 1px solid rgba(13, 14, 17, .11);
  border-radius: 14px;
  background: #f7f7f2;
  box-shadow: 0 16px 34px rgba(13, 14, 17, .1);
}

.create-menu span { display: block; padding: 10px 9px; border-radius: 8px; color: rgba(13, 14, 17, .62); font-size: 8px; }
.create-menu .is-selected { background: rgba(105, 93, 255, .11); color: var(--ink); }
.create-action {
  position: absolute;
  bottom: 55px;
  left: calc(72% - 38px);
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  font-size: 15px;
}

.visual-voice { display: grid; place-items: center; background: #1b1d22; color: var(--paper); }
.voice-orbit {
  position: absolute;
  top: 52px;
  left: 50%;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(223, 255, 79, .3);
  border-radius: 50%;
}

.voice-orbit::before,
.voice-orbit::after { position: absolute; inset: 12px; border: 1px solid rgba(223, 255, 79, .18); border-radius: inherit; content: ""; }
.voice-orbit::after { inset: 25px; background: var(--lime); }
.voice-orbit span { position: relative; z-index: 1; color: var(--ink); font-size: 10px; }
.voice-wave {
  position: absolute;
  right: 9%;
  bottom: 92px;
  left: 9%;
  display: flex;
  height: 62px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line-dark);
  border-radius: 17px;
  background: rgba(255, 255, 255, .04);
}

.voice-wave i { width: 2px; height: 12px; border-radius: 999px; background: var(--lime); opacity: .65; }
.voice-wave i:nth-child(3n) { height: 30px; }
.voice-wave i:nth-child(4n) { height: 20px; }
.voice-modes { position: absolute; right: 0; bottom: 38px; left: 0; display: flex; justify-content: center; gap: 10px; }
.voice-modes span { padding: 7px 11px; border: 1px solid var(--line-dark); border-radius: 999px; color: rgba(244, 242, 233, .7); font-size: 8px; }

.drop-zone {
  position: absolute;
  inset: 40px 35% 40px 7%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px dashed rgba(13, 14, 17, .42);
  border-radius: 18px;
  text-align: center;
}

.drop-zone::before { margin-bottom: 18px; color: #695dff; content: "+"; font-size: 32px; font-weight: 500; }
.drop-zone strong { font-size: 11px; }
.drop-zone small { max-width: 150px; margin-top: 6px; color: var(--muted-light); font-size: 8px; }
.document-stack { position: absolute; top: 96px; right: 5%; display: grid; gap: 8px; width: 43%; }
.document-stack span {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  align-items: center;
  padding: 11px 10px;
  border: 1px solid rgba(13, 14, 17, .12);
  border-radius: 10px;
  background: #f7f7f2;
  font-size: 8px;
  box-shadow: 0 9px 18px rgba(13, 14, 17, .06);
}

.document-stack i { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 6px; background: rgba(105, 93, 255, .13); color: #5544aa; font-size: 8px; font-style: normal; }

.visual-images { background: #deddde; }
.image-prompt {
  position: absolute;
  z-index: 2;
  top: 32px;
  right: 7%;
  width: 54%;
  padding: 14px;
  border: 1px solid rgba(13, 14, 17, .12);
  border-radius: 12px;
  background: #f5f5f0;
  font-size: 8px;
}

.generated-visual {
  position: absolute;
  top: 76px;
  right: 12%;
  bottom: 34px;
  left: 12%;
  overflow: hidden;
  border: 1px solid rgba(13, 14, 17, .12);
  border-radius: 18px;
  background: linear-gradient(145deg, #b3a7d7, #e9e5d8 48%, #87968c);
}

.generated-visual span { position: absolute; z-index: 2; bottom: 14px; left: 16px; padding: 7px 10px; border-radius: 999px; background: rgba(13, 14, 17, .7); color: var(--paper); font-size: 7px; }
.generated-visual i { position: absolute; border: 1px solid rgba(255, 255, 255, .5); border-radius: 50%; }
.generated-visual i:nth-of-type(1) { top: 20%; left: 13%; width: 105px; height: 105px; }
.generated-visual i:nth-of-type(2) { top: 8%; right: 12%; width: 150px; height: 150px; }
.generated-visual i:nth-of-type(3) { right: 30%; bottom: -30px; width: 110px; height: 110px; background: rgba(223, 255, 79, .35); }
.visual-tools { position: absolute; z-index: 3; bottom: 45px; right: 8%; display: grid; gap: 6px; }
.visual-tools span { padding: 5px 8px; border-radius: 999px; background: rgba(247, 248, 245, .9); font-size: 7px; }

.visual-web { padding: 38px 7%; background: #e3e4e1; }
.web-status { display: flex; gap: 8px; align-items: center; font-size: 9px; }
.web-status span { display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: #34383d; color: var(--paper); }
.web-query { margin: 14px 0 0 28px; padding: 8px 10px; border-radius: 8px; background: #d8d9d5; color: rgba(13, 14, 17, .62); font-size: 8px; }
.web-results { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; margin: 10px 0 0 28px; }
.web-results span { min-height: 58px; padding: 10px 8px; border: 1px solid rgba(13, 14, 17, .08); border-radius: 8px; background: #ecece8; font-size: 7px; }
.web-answer { margin: 22px 0 0 28px; padding: 18px; border-radius: 12px; background: #f4f4f0; }
.web-answer strong { display: block; margin-bottom: 12px; font-size: 11px; }
.web-answer i { display: block; width: 92%; height: 5px; margin-top: 6px; border-radius: 999px; background: #d6d6d1; }
.web-answer i:nth-of-type(2) { width: 77%; }
.web-answer i:nth-of-type(3) { width: 84%; }

.visual-research { display: grid; place-items: center; background: #6f63ad; color: var(--paper); }
.research-rings {
  position: relative;
  display: grid;
  width: min(62%, 290px);
  aspect-ratio: 2 / 1;
  place-items: center;
  border: 1px solid rgba(244, 242, 233, .65);
  border-radius: 50%;
}

.research-rings::before,
.research-rings::after { position: absolute; border: inherit; border-radius: inherit; content: ""; }
.research-rings::before { inset: -16px -32px; opacity: .62; }
.research-rings::after { inset: -32px -64px; opacity: .34; }
.research-rings span { font-size: 19px; line-height: 1.12; text-align: center; }
.research-steps { position: absolute; right: 8%; bottom: 35px; left: 8%; display: flex; align-items: center; justify-content: center; gap: 9px; color: rgba(244, 242, 233, .72); font-size: 8px; }
.research-steps i { color: var(--lime); font-style: normal; }

.chat-workflow { padding: clamp(110px, 14vw, 190px) 0; background: var(--ink); color: var(--paper); }
.workflow-heading {
  display: grid;
  grid-template-columns: 1fr minmax(270px, .45fr);
  gap: 30px 90px;
  align-items: end;
}

.workflow-heading .kicker { grid-column: 1 / -1; color: var(--lime); }
.workflow-heading > p:last-child { max-width: 530px; margin: 0; color: var(--muted-dark); font-size: 18px; }
.workflow-list { margin-top: clamp(70px, 9vw, 120px); padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.workflow-list li {
  display: grid;
  grid-template-columns: 60px minmax(220px, .75fr) minmax(280px, 1fr);
  gap: 30px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-dark);
  transition: padding-left 200ms ease;
}

.workflow-list li:hover { padding-left: 12px; }
.workflow-list li > span { color: var(--lime); font-size: 10px; letter-spacing: .12em; }
.workflow-list h3 { margin: 0; font-size: clamp(25px, 2.6vw, 38px); font-weight: 500; letter-spacing: -.04em; }
.workflow-list p { max-width: 620px; margin: 0; color: var(--muted-dark); }
.workflow-handoff h3 a { display: inline-flex; gap: 12px; }
.workflow-handoff h3 i { color: var(--lime); font-size: .55em; font-style: normal; transition: transform 180ms ease; }
.workflow-handoff h3 a:hover i { transform: translate(4px, -4px); }

.chat-closing { background: var(--lime); }

@keyframes message-in { to { opacity: 1; transform: none; } }
@keyframes chat-glow { to { transform: translate(-10%, 8%) scale(1.08); opacity: .62; } }

@media (max-width: 980px) {
  .chat-stage { height: 590px; }
  .organization-heading,
  .capabilities-heading,
  .workflow-heading { grid-template-columns: 1fr; }
  .organization-heading .kicker,
  .capabilities-heading .kicker,
  .workflow-heading .kicker { grid-column: auto; }
  .organization-heading > p:last-child,
  .capabilities-heading > p:last-child,
  .workflow-heading > p:last-child { max-width: 680px; }
  .organization-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .organization-benefits article:nth-child(3) { border-left: 0; }
  .organization-benefits article:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
}

@media (max-width: 760px) {
  .capabilities-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .chat-stage { height: 500px; }
  .chat-window { grid-template: 48px 1fr / 1fr; }
  .chat-context-rail { display: none; }
  .chat-thread { grid-row: 2; padding: 56px 18px 18px; }
  .chat-message-user { max-width: 88%; }
  .chat-message-ai { max-width: 100%; }
  .chat-sources { grid-template-columns: 1fr; gap: 6px; }
  .chat-sources span { padding: 7px 9px; }
  .chat-handoff { margin: 18px 0 0 39px; }
  .organization-benefits { grid-template-columns: 1fr; }
  .organization-benefits article,
  .organization-benefits article:nth-child(3) { min-height: 250px; border-left: 0; border-bottom: 1px solid var(--line-light); }
  .organization-benefits article:last-child { border-bottom: 0; }
  .workflow-list li { grid-template-columns: 38px 1fr; gap: 12px 18px; }
  .workflow-list p { grid-column: 2; }
}

@media (max-width: 640px) {
  .chat-hero .monitor-hero-grid { gap: 34px; padding-block: 56px 28px; }
  .chat-hero .hero-lead { font-size: 16px; }
  .chat-hero .hero-actions { margin-top: 24px; }
  .chat-hero .text-link { display: none; }
  .chat-stage { height: 460px; }
  .chat-stage figcaption { max-width: calc(100% - 20px); white-space: nowrap; }
  .chat-thread { padding-top: 50px; }
  .chat-message-ai p { font-size: 14px; }
  .chat-handoff span { display: none; }
  .chat-handoff strong { grid-row: 1; }
  .chat-handoff i { grid-row: 1; }
  .chat-composer { min-height: 40px; }
  .chat-organization h2,
  .chat-capabilities h2,
  .chat-workflow h2 { font-size: clamp(42px, 12vw, 58px); }
  .organization-heading > p:last-child,
  .capabilities-heading > p:last-child,
  .workflow-heading > p:last-child { font-size: 16px; }
  .capability-visual { min-height: 290px; }
  .capability-copy { min-height: 0; padding: 26px 22px 30px; }
  .capability-copy p { font-size: 14px; }
  .knowledge-answer { bottom: 28px; padding: 18px; }
  .analysis-sheet { left: 7%; width: 75%; }
  .document-stack { right: 3%; }
  .research-rings { width: 56%; }
}

@media (prefers-reduced-motion: reduce) {
  .chat-stage::before,
  .chat-message,
  .chat-handoff { animation: none; opacity: 1; transform: none; }
}
