:root {
  --anp-bg: #ffffff;
  --anp-text: #1a1a1a;
  --anp-muted: #6b6b6b;
  --anp-border: #e5e5e5;
  --anp-accent: #1e1e1e;
  --anp-accent-contrast: #ffffff;
  --anp-user-bg: #1e1e1e;
  --anp-user-text: #ffffff;
  --anp-bot-bg: #f3f3f3;
  --anp-bot-text: #1a1a1a;
  --anp-error: #c0392b;
  --anp-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  --anp-radius: 14px;
  --anp-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --anp-font-brand: neue-haas-unica, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.anp-chat-root,
.anp-chat-root * {
  box-sizing: border-box;
}

.anp-chat-root {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2147483000;
  font-family: var(--anp-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--anp-text);
}

.anp-chat-root button,
.anp-chat-root input,
.anp-chat-root textarea {
  font-weight: 400;
}

.anp-chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: var(--anp-accent);
  color: var(--anp-accent-contrast);
  cursor: pointer;
  box-shadow: var(--anp-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background 0.15s ease;
  padding: 0;
}

.anp-chat-toggle:hover {
  transform: scale(1.05);
}

.anp-chat-toggle:focus-visible {
  outline: 2px solid var(--anp-accent);
  outline-offset: 3px;
}

.anp-chat-toggle svg {
  width: 26px;
  height: 26px;
}

.anp-chat-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 360px;
  max-width: calc(100vw - 48px);
  height: 540px;
  max-height: calc(100vh - 120px);
  background: var(--anp-bg);
  border-radius: var(--anp-radius);
  box-shadow: var(--anp-shadow);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.anp-chat-root.is-open .anp-chat-panel {
  display: flex;
}

.anp-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--anp-accent);
  color: var(--anp-accent-contrast);
}

.anp-chat-title {
  font-family: var(--anp-font-brand);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.anp-chat-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #888;
  transition: background 0.2s ease;
}

.anp-chat-root[data-status="ready"] .anp-chat-status-dot,
.anp-chat-root[data-status="awaiting"] .anp-chat-status-dot {
  background: #4ade80;
}

.anp-chat-root[data-status="error"] .anp-chat-status-dot {
  background: var(--anp-error);
}

.anp-chat-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.anp-chat-close,
.anp-chat-expand {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  opacity: 0.8;
}

.anp-chat-close:hover,
.anp-chat-expand:hover {
  opacity: 1;
}

.anp-chat-expand .anp-icon-collapse {
  display: none;
}

.anp-chat-root.is-expanded .anp-chat-expand .anp-icon-expand {
  display: none;
}

.anp-chat-root.is-expanded .anp-chat-expand .anp-icon-collapse {
  display: inline-block;
}

.anp-chat-root.is-expanded .anp-chat-panel {
  width: min(720px, calc(100vw - 48px));
  height: min(800px, calc(100vh - 120px));
}

.anp-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fafafa;
}

.anp-chat-message {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-weight: 400;
}

.anp-chat-message.is-user {
  align-self: flex-end;
  background: var(--anp-user-bg);
  color: var(--anp-user-text);
  border-bottom-right-radius: 4px;
}

.anp-chat-message.is-bot {
  align-self: flex-start;
  background: var(--anp-bot-bg);
  color: var(--anp-bot-text);
  border-bottom-left-radius: 4px;
  white-space: normal;
}

.anp-chat-message.is-bot > *:first-child {
  margin-top: 0;
}

.anp-chat-message.is-bot > *:last-child {
  margin-bottom: 0;
}

.anp-chat-message.is-bot p {
  margin: 0 0 8px;
}

.anp-chat-message.is-bot p:last-child {
  margin-bottom: 0;
}

.anp-chat-message.is-bot h1,
.anp-chat-message.is-bot h2,
.anp-chat-message.is-bot h3,
.anp-chat-message.is-bot h4 {
  margin: 12px 0 6px;
  font-weight: 600;
  line-height: 1.3;
}

.anp-chat-message.is-bot h1 { font-size: 18px; }
.anp-chat-message.is-bot h2 { font-size: 17px; }
.anp-chat-message.is-bot h3 { font-size: 16px; }
.anp-chat-message.is-bot h4 { font-size: 15px; }

.anp-chat-message.is-bot strong,
.anp-chat-message.is-bot b {
  font-weight: 600;
}

.anp-chat-message.is-bot em {
  font-style: italic;
}

.anp-chat-message.is-bot ul,
.anp-chat-message.is-bot ol {
  margin: 4px 0 8px;
  padding-left: 22px;
}

.anp-chat-message.is-bot li {
  margin: 2px 0;
}

.anp-chat-message.is-bot li > p {
  margin: 0;
}

.anp-chat-message.is-bot a {
  color: inherit;
  text-decoration: underline;
}

.anp-chat-message.is-bot code {
  background: rgba(0, 0, 0, 0.08);
  padding: 1px 5px;
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}

.anp-chat-message.is-bot pre {
  background: rgba(0, 0, 0, 0.08);
  padding: 10px 12px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 6px 0;
}

.anp-chat-message.is-bot pre code {
  background: transparent;
  padding: 0;
}

.anp-chat-message.is-bot blockquote {
  margin: 6px 0;
  padding-left: 12px;
  border-left: 3px solid var(--anp-border);
  color: var(--anp-muted);
}

.anp-chat-message.is-system {
  align-self: center;
  background: transparent;
  color: var(--anp-muted);
  font-size: 13px;
  font-style: italic;
  max-width: 100%;
  text-align: center;
}

.anp-chat-message.is-error {
  align-self: center;
  background: #fdecea;
  color: var(--anp-error);
  font-size: 13px;
  max-width: 95%;
  text-align: center;
}

.anp-chat-typing {
  align-self: flex-start;
  padding: 10px 14px;
  background: var(--anp-bot-bg);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  display: none;
}

.anp-chat-root[data-status="awaiting"] .anp-chat-typing {
  display: flex;
  gap: 4px;
}

.anp-chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--anp-muted);
  animation: anp-typing 1.2s infinite ease-in-out;
}

.anp-chat-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.anp-chat-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes anp-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.anp-chat-input-row {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--anp-border);
  background: var(--anp-bg);
}

.anp-chat-input {
  flex: 1;
  border: 1px solid var(--anp-border);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
  resize: none;
  min-height: 40px;
  max-height: 120px;
  outline: none;
  color: var(--anp-text);
  background: #fff;
}

.anp-chat-input:focus {
  border-color: var(--anp-accent);
}

.anp-chat-input:disabled {
  background: #f3f3f3;
  cursor: not-allowed;
}

.anp-chat-send {
  border: none;
  border-radius: 10px;
  background: var(--anp-accent);
  color: var(--anp-accent-contrast);
  padding: 0 16px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  min-width: 64px;
  transition: opacity 0.15s ease;
}

.anp-chat-send:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.anp-chat-reconnect {
  margin: 0 auto;
  padding: 8px 16px;
  background: var(--anp-accent);
  color: var(--anp-accent-contrast);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  display: none;
}

.anp-chat-root[data-status="error"] .anp-chat-reconnect,
.anp-chat-root[data-status="closed"] .anp-chat-reconnect {
  display: block;
}

.anp-chat-followup {
  display: flex;
  justify-content: center;
  padding: 6px 12px 0;
  background: var(--anp-bg);
}

.anp-chat-followup[hidden] {
  display: none;
}

.anp-chat-root.is-contact-open .anp-chat-followup {
  display: none;
}

.anp-chat-followup-btn {
  background: transparent;
  border: 1px solid var(--anp-border);
  color: var(--anp-text);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.anp-chat-followup-btn:hover {
  background: #f3f3f3;
  border-color: var(--anp-accent);
}

.anp-chat-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--anp-border);
  background: var(--anp-bg);
  max-height: 60%;
  overflow-y: auto;
}

.anp-chat-contact[hidden] {
  display: none;
}

.anp-chat-root.is-contact-open .anp-chat-input-row {
  display: none;
}

.anp-chat-contact-title {
  font-family: var(--anp-font-brand);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

.anp-chat-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 12px;
  color: var(--anp-muted);
}

.anp-chat-field input,
.anp-chat-field textarea {
  border: 1px solid var(--anp-border);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--anp-text);
  background: #fff;
  outline: none;
  resize: vertical;
}

.anp-chat-field input:focus,
.anp-chat-field textarea:focus {
  border-color: var(--anp-accent);
}

.anp-chat-contact-error {
  color: var(--anp-error);
  background: #fdecea;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
}

.anp-chat-contact-error[hidden] {
  display: none;
}

.anp-chat-contact-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 4px;
}

.anp-chat-contact-cancel,
.anp-chat-contact-submit {
  border-radius: 10px;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s ease, background 0.15s ease;
}

.anp-chat-contact-cancel {
  background: transparent;
  border: 1px solid var(--anp-border);
  color: var(--anp-text);
}

.anp-chat-contact-cancel:hover {
  background: #f3f3f3;
}

.anp-chat-contact-submit {
  background: var(--anp-accent);
  color: var(--anp-accent-contrast);
  border: none;
}

.anp-chat-contact-submit:disabled,
.anp-chat-contact-cancel:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.anp-chat-contact-note {
  margin: 2px 0 0;
  font-size: 11px;
  color: var(--anp-muted);
}

.anp-chat-proposal {
  align-self: stretch;
  background: #fff;
  border: 1px solid var(--anp-border);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.anp-chat-proposal.is-submitted {
  background: #f3faf4;
  border-color: #b7e2c1;
}

.anp-proposal-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--anp-font-brand);
  font-weight: 600;
  font-size: 14px;
}

.anp-proposal-summary {
  background: #fafafa;
  border: 1px solid var(--anp-border);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
  color: var(--anp-text);
  min-height: 36px;
}

.anp-proposal-summary-loading {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--anp-muted);
}

.anp-proposal-summary-text {
  white-space: pre-wrap;
}

.anp-proposal-spinner {
  width: 12px;
  height: 12px;
  border: 2px solid var(--anp-border);
  border-top-color: var(--anp-accent);
  border-radius: 50%;
  display: inline-block;
  animation: anp-spin 0.8s linear infinite;
}

@keyframes anp-spin {
  to { transform: rotate(360deg); }
}

.anp-proposal-contact {
  display: grid;
  gap: 6px;
}

.anp-proposal-contact input {
  border: 1px solid var(--anp-border);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--anp-text);
  background: #fff;
  outline: none;
}

.anp-proposal-contact input:focus {
  border-color: var(--anp-accent);
}

.anp-proposal-edit {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px dashed var(--anp-border);
  padding-top: 10px;
}

.anp-proposal-edit[hidden] {
  display: none;
}

.anp-proposal-edit textarea {
  width: 100%;
  border: 1px solid var(--anp-border);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 13px;
  color: var(--anp-text);
  background: #fff;
  outline: none;
  resize: vertical;
}

.anp-proposal-edit textarea:focus {
  border-color: var(--anp-accent);
}

.anp-proposal-error {
  color: var(--anp-error);
  background: #fdecea;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
}

.anp-proposal-error[hidden] {
  display: none;
}

.anp-proposal-actions {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.anp-proposal-actions button {
  border-radius: 8px;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, opacity 0.15s ease;
}

.anp-proposal-cancel,
.anp-proposal-edit-btn {
  background: transparent;
  border: 1px solid var(--anp-border);
  color: var(--anp-text);
}

.anp-proposal-cancel:hover,
.anp-proposal-edit-btn:hover {
  background: #f3f3f3;
}

.anp-proposal-submit {
  background: var(--anp-accent);
  color: var(--anp-accent-contrast);
  border: none;
}

.anp-proposal-submit:hover {
  opacity: 0.9;
}

.anp-proposal-actions button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.anp-proposal-confirmed {
  color: #1b5e20;
  font-size: 13px;
  text-align: center;
  padding: 4px;
}

@media (max-width: 480px) {
  .anp-chat-root {
    right: 12px;
    bottom: 12px;
  }

  .anp-chat-panel,
  .anp-chat-root.is-expanded .anp-chat-panel {
    width: calc(100vw - 24px);
    height: calc(100vh - 80px);
    right: 0;
    bottom: 72px;
  }

  .anp-chat-toggle {
    width: 56px;
    height: 56px;
  }

  .anp-chat-expand {
    display: none;
  }
}

/* ============================================================
 * Embedded mode — chat as an inline page section (not floating)
 * ============================================================ */

.anp-chat-root.is-embedded {
  position: static;
  right: auto;
  bottom: auto;
  width: 100%;
  max-width: 100%;
  z-index: auto;
}

.anp-chat-root.is-embedded .anp-chat-toggle,
.anp-chat-root.is-embedded .anp-chat-expand,
.anp-chat-root.is-embedded .anp-chat-close,
.anp-chat-root.is-embedded .anp-chat-header {
  display: none;
}

/* No container chrome — chat flows directly on the page */
.anp-chat-root.is-embedded .anp-chat-panel {
  position: static;
  width: 100%;
  max-width: 100%;
  height: 420px;
  max-height: 70vh;
  right: auto;
  bottom: auto;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  display: flex;
  transition: height 0.3s ease;
}

.anp-chat-root.is-embedded.has-messages .anp-chat-panel {
  height: calc(100vh - 150px);
  min-height: 500px;
  max-height: 820px;
}

.anp-chat-root.is-embedded.is-expanded .anp-chat-panel {
  width: 100%;
  max-width: 100%;
  height: calc(100vh - 150px);
  max-height: 820px;
}

.anp-chat-root.is-embedded .anp-chat-messages {
  background: transparent;
  padding: 8px 4px 16px;
}

/* Input row: floating pill, no top-border */
.anp-chat-root.is-embedded .anp-chat-input-row {
  border: 1px solid var(--anp-border);
  border-radius: 28px;
  padding: 6px 8px 6px 20px;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  margin: 8px 0 0;
  align-items: center;
  gap: 8px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.anp-chat-root.is-embedded .anp-chat-input-row:focus-within {
  border-color: #b5b5b5;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.anp-chat-root.is-embedded .anp-chat-input {
  border: none;
  background: transparent;
  padding: 8px 0;
  font-size: 15px;
  min-height: 32px;
}

.anp-chat-root.is-embedded .anp-chat-input:focus {
  border: none;
}

.anp-chat-root.is-embedded .anp-chat-input:disabled {
  background: transparent;
}

.anp-chat-root.is-embedded .anp-chat-send {
  border-radius: 50%;
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anp-chat-root.is-embedded .anp-chat-send-text {
  display: none;
}

.anp-chat-root.is-embedded .anp-chat-send-icon {
  display: block;
}

/* Chips under the input, centered */
.anp-chat-root.is-embedded .anp-chat-prompts-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 12px 0 4px;
}

.anp-chat-root.is-embedded .anp-chat-prompts-row[hidden] {
  display: none;
}

/* Followup as a subtle link, not a pill button */
.anp-chat-root.is-embedded .anp-chat-followup {
  padding: 8px 0 0;
  justify-content: center;
  background: transparent;
}

.anp-chat-root.is-embedded .anp-chat-followup-btn {
  background: transparent;
  border: none;
  color: var(--anp-muted);
  font-size: 13px;
  padding: 4px 8px;
}

.anp-chat-root.is-embedded .anp-chat-followup-btn:hover {
  background: transparent;
  border: none;
  color: var(--anp-text);
  text-decoration: underline;
}

/* Default (floating): icon hidden, text shown */
.anp-chat-send-icon {
  display: none;
}

/* ============================================================
 * Avo-theme — personality accents on top of embedded mode.
 * Activated via ChatWidget({ theme: 'avo' }) → .is-theme-avo class.
 * ============================================================ */

:root {
  --avo-pink: #ffc7ed;
  --avo-pink-soft: #ffe4f5;
  --avo-emerald: #00d080;
  --avo-emerald-dark: #00a866;
  --avo-sky-blue: #dee5ff;
}

.anp-chat-root.is-theme-avo .anp-chat-input-row:focus-within {
  border-color: var(--avo-pink);
  box-shadow: 0 6px 28px rgba(255, 142, 203, 0.25), 0 0 0 3px rgba(255, 199, 237, 0.35);
}

.anp-chat-root.is-theme-avo .anp-chat-send {
  background: var(--avo-emerald);
}

.anp-chat-root.is-theme-avo .anp-chat-send:hover:not(:disabled) {
  background: var(--avo-emerald-dark);
}

.anp-chat-root.is-theme-avo .anp-chat-prompt-chip {
  border-color: #d8def0;
  transition: all 0.2s ease;
}

.anp-chat-root.is-theme-avo .anp-chat-prompt-chip:hover {
  background: var(--avo-sky-blue);
  border-color: #aeb8e0;
  transform: translateY(-1px);
}

.anp-chat-root.is-theme-avo .anp-chat-prompt-chip:nth-child(4n+1):hover {
  background: var(--avo-pink-soft);
  border-color: var(--avo-pink);
}

.anp-chat-root.is-theme-avo .anp-chat-prompt-chip:nth-child(4n+2):hover {
  background: #d7f7ea;
  border-color: var(--avo-emerald);
}

.anp-chat-root.is-theme-avo .anp-chat-status-dot {
  background: var(--avo-emerald);
  animation: anp-pulse-dot 2.5s ease-in-out infinite;
}

@keyframes anp-pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* Suggested prompt chips — rendered inside the messages area so they
   flow with any welcome text and disappear when the user starts typing */

.anp-chat-prompt-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 4px;
  align-self: stretch;
}

.anp-chat-prompt-chip {
  border: 1px solid var(--anp-border);
  background: #ffffff;
  color: var(--anp-text);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  text-align: left;
  line-height: 1.3;
}

.anp-chat-prompt-chip:hover {
  background: #f3f3f3;
  border-color: var(--anp-accent);
}

.anp-chat-prompt-chip:active {
  transform: scale(0.98);
}

/* ============================================================
 * Hero section (for /marcuzzi prototype and similar pages)
 * ============================================================ */

.anp-hero {
  background: linear-gradient(180deg, #fafafa 0%, #f3f3f3 100%);
  padding: 80px 24px 64px;
  border-bottom: 1px solid #e5e5e5;
}

.anp-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.anp-hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--anp-muted);
  margin: 0 0 16px;
}

.anp-hero-title {
  font-family: neue-haas-unica, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 16px;
  color: #1a1a1a;
}

.anp-hero-subtitle {
  font-size: 17px;
  color: #4b4b4b;
  line-height: 1.55;
  margin: 0 0 40px;
  max-width: 620px;
}

.anp-hero .anp-chat-root {
  display: block;
}

@media (max-width: 640px) {
  .anp-hero {
    padding: 40px 16px 32px;
  }

  .anp-hero-title {
    font-size: 28px;
  }

  .anp-hero-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .anp-chat-root.is-embedded .anp-chat-panel {
    height: 560px;
    max-height: 75vh;
  }
  .anp-chat-root.is-embedded.has-messages .anp-chat-panel {
    height: calc(100vh - 100px);
    max-height: calc(100vh - 100px);
  }
}

