.chatbot-window {
  background: white;
  border: 1px solid rgba(43, 138, 138, 0.1);
}

.chatbot-header {
  background: rgba(43, 138, 138, 0.05);
  border-bottom: 1px solid rgba(43, 138, 138, 0.1);
}

.chatbot-msg-bot {
  background: rgba(43, 138, 138, 0.06);
  color: var(--tl-charcoal);
}

.chatbot-msg-user {
  background: var(--tl-teal);
  color: white;
}

.chatbot-input {
  border-top: 1px solid rgba(43, 138, 138, 0.1);
}

.chatbot-input input {
  background: transparent;
  color: var(--tl-charcoal);
}

.cursor-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cursor-glow-inner {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 138, 138, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

#hero:hover .cursor-glow {
  opacity: 1;
}

.newsletter-feedback {
  min-height: 1.5rem;
  font-size: 0.875rem;
}

.newsletter-feedback--success {
  color: #1e6b6b;
}

.newsletter-feedback--error {
  color: #b42318;
}

.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;
}
