.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.assistant-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  border: 1px solid rgba(151, 226, 181, 0.55);
  border-radius: 999px;
  background: #0d382e;
  color: #fff;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
  font: 700 14px/1 inherit;
  cursor: pointer;
}
.assistant-launcher span:first-child {
  color: #97e2b5;
  font-size: 18px;
}
.assistant-panel {
  position: fixed;
  right: 22px;
  bottom: 82px;
  z-index: 61;
  width: min(390px, calc(100vw - 28px));
  max-height: min(620px, calc(100vh - 110px));
  overflow: auto;
  border: 1px solid rgba(151, 226, 181, 0.35);
  border-radius: 22px;
  background: #08241d;
  color: #effff5;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}
.assistant-panel[hidden] {
  display: none;
}
.assistant-panel header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.assistant-panel h2 {
  font-size: 21px;
  margin: 3px 0;
}
.assistant-kicker,
.assistant-note {
  color: #a9ceb8;
  letter-spacing: 0.08em;
}
.assistant-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.assistant-boundary {
  margin: 0;
  padding: 10px 18px;
  background: rgba(151, 226, 181, 0.08);
  font-size: 12px;
  color: #caebd5;
}
.assistant-messages {
  padding: 16px;
  display: grid;
  gap: 10px;
  max-height: 290px;
  overflow: auto;
}
.assistant-message {
  padding: 11px 13px;
  border-radius: 14px;
  background: #123b30;
  font-size: 14px;
  line-height: 1.5;
}
.assistant-message.user {
  background: #1d5744;
  margin-left: 38px;
}
.assistant-message a {
  color: #aef0c5;
  font-weight: 700;
}
.assistant-prompts {
  padding: 0 16px 12px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.assistant-prompts button {
  border: 1px solid rgba(174, 240, 197, 0.36);
  border-radius: 999px;
  background: transparent;
  color: #effff5;
  padding: 7px 10px;
  font-size: 12px;
  cursor: pointer;
}
.assistant-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 0 16px 12px;
}
.assistant-form input {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: #041712;
  color: #fff;
  padding: 11px;
}
.assistant-form button {
  border: 0;
  border-radius: 12px;
  background: #97e2b5;
  color: #041712;
  font-weight: 800;
  padding: 0 14px;
  cursor: pointer;
}
.assistant-note {
  display: block;
  padding: 0 16px 16px;
  font-size: 10px;
}
@media (max-width: 560px) {
  .assistant-launcher {
    right: 14px;
    bottom: 14px;
  }
  .assistant-panel {
    right: 14px;
    bottom: 70px;
    max-height: calc(100vh - 90px);
  }
}
