:root {
  color-scheme: light;
  --ink: #1f2024;
  --muted: #6f737b;
  --line: #dfe2e7;
  --blue: #4255ff;
  --pink: #d92f5a;
  --surface: #ffffff;
  --wash: #f8f8fb;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html, body { min-height: 100%; margin: 0; }

body {
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.mustard-calendly-close {
  position: fixed;
  z-index: 2147483647;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0 0 3px;
  place-items: center;
  border: 1px solid rgb(31 32 36 / 14%);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 28px rgb(15 23 42 / 24%);
  color: var(--ink);
  cursor: pointer;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.mustard-calendly-close:hover { background: #f6f7fa; }

button, input, select { font: inherit; }

button:focus-visible,
a:focus-visible,
select:focus-visible,
input:focus-visible {
  outline: 3px solid rgb(66 85 255 / 24%);
  outline-offset: 3px;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  padding: clamp(72px, 14vh, 148px) 20px 48px;
}

.search-shell {
  width: min(720px, 100%);
  text-align: center;
}

.search-shell.has-answer > .logo,
.search-shell.has-answer > .assistant-meta,
.search-shell.has-answer > .suggestions,
.search-shell.has-answer > .discovery-actions {
  display: none !important;
}

.search-shell.has-answer > .question-stack {
  position: sticky;
  z-index: 20;
  top: 12px;
  padding: 10px 10px 12px;
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 10px 22px rgb(20 24 35 / 8%);
}

.search-shell.has-answer .answer-card { margin-top: 24px; }

.logo {
  width: min(242px, 62vw);
  height: auto;
  display: block;
  margin: 0 auto 24px;
}

h1 {
  margin: 0 0 28px;
  font-size: clamp(20px, 3vw, 27px);
  font-weight: 520;
  letter-spacing: -0.02em;
}

.question-stack { width: 100%; }
.question-form { position: relative; width: 100%; }

.assistant-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 11px 10px 0;
  color: var(--muted);
  font-size: 11px;
  text-align: left;
}

#question-limit { flex: 0 0 auto; color: var(--blue); font-weight: 700; }

.search-bar {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 7px 8px 7px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 2px 8px rgb(20 24 35 / 7%), 0 12px 32px rgb(20 24 35 / 5%);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.search-bar:focus-within {
  border-color: #bcc3ff;
  box-shadow: 0 3px 12px rgb(66 85 255 / 10%), 0 14px 40px rgb(20 24 35 / 7%);
}

.search-bar > svg {
  width: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: #777c85;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.search-bar input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 17px;
}

.search-bar input::placeholder { color: #9b9fa7; }

.search-bar button {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--blue), #6977ff);
  cursor: pointer;
  transition: transform .16s ease, filter .16s ease;
}

.search-bar button:hover { filter: brightness(.96); transform: translateY(-1px); }
.search-bar button:active { transform: translateY(0); }
.search-bar button:focus-visible { outline: 3px solid rgb(66 85 255 / 25%); outline-offset: 3px; }
.search-bar button svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linejoin: round; }

.search-suggestions {
  position: absolute;
  z-index: 10;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  overflow: hidden;
  padding: 7px;
  border: 1px solid #e0e3e8;
  border-radius: 20px;
  background: white;
  box-shadow: 0 16px 45px rgb(20 24 35 / 12%);
  text-align: left;
}

.search-suggestions button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 0;
  border-radius: 13px;
  padding: 11px 13px;
  background: transparent;
  color: #3f444d;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}

.search-suggestions button::before {
  content: "↗";
  color: #9b9fa7;
  font-size: 13px;
}

.search-suggestions button:hover,
.search-suggestions button[aria-selected="true"] {
  background: var(--wash);
  color: var(--blue);
  outline: 0;
}

.preview-guidance {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #e8e8ed;
}
.preview-guidance > p { margin: 6px 0 12px; }
.preview-guidance .suggestions { justify-content: flex-start; }
.preview-guidance .suggestions button { white-space: normal; text-align: left; }

.suggestions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px auto 0;
}

.suggestions button {
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--wash);
  color: #555a63;
  font-size: 13px;
  cursor: pointer;
}

.suggestions button:hover,
.suggestions button:focus-visible { border-color: #cbd0ff; color: var(--blue); outline: 0; }

.question-progress {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fafbfc;
  color: var(--muted);
  text-align: left;
}

.question-progress > div { min-width: 0; }
.question-progress span:not(.progress-spinner) { display: block; font-size: 10px; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.question-progress strong { display: block; margin-top: 3px; color: #444952; font-size: 13px; font-weight: 650; line-height: 1.4; }
.progress-spinner { width: 20px; height: 20px; flex: 0 0 20px; border: 2px solid #d9ddff; border-top-color: var(--blue); border-radius: 50%; animation: progress-spin .8s linear infinite; }

.personalization-prompt {
  width: min(620px, 100%);
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 auto 9px;
  padding: 5px 18px 0;
  color: var(--muted);
  text-align: left;
}

.personalization-prompt span {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.personalization-prompt strong {
  min-width: 0;
  color: #4a4f58;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.exit-plan-followup {
  flex: 0 0 auto;
  margin-left: auto;
  padding: 2px 0;
  border: 0;
  background: transparent;
  color: #59606c;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.exit-plan-followup:hover,
.exit-plan-followup:focus-visible { color: var(--blue); }

.plan-question-examples {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 9px auto 0;
  padding: 0 8px;
}

.plan-question-examples span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.plan-question-examples button {
  padding: 6px 10px;
  border: 1px solid #dfe2e7;
  border-radius: 999px;
  background: #f8f8fb;
  color: #505661;
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
}

.plan-question-examples button:hover,
.plan-question-examples button:focus-visible {
  border-color: #c4caff;
  color: var(--blue);
}

.personalize-answer {
  display: inline-flex;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.personalize-answer:hover,
.personalize-answer:focus-visible { text-decoration: underline; outline: 0; }

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

.discovery-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.discovery-button {
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.discovery-button:hover,
.discovery-button:focus-visible { text-decoration: underline; outline: 0; }

.plan-finder {
  margin: 28px auto 0;
  padding: 26px 28px;
  border: 1px solid #e4e6eb;
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 50px rgb(20 24 35 / 8%);
  text-align: left;
}

.plan-finder-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.plan-finder-heading h2 { margin: 0; font-size: 22px; letter-spacing: -.02em; }

.icon-button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--wash);
  color: #70757e;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.plan-finder-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 22px;
}

.plan-finder-form label {
  display: grid;
  align-content: start;
  gap: 8px;
  color: #555a63;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.plan-finder-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #dfe2e7;
  border-radius: 12px;
  padding: 0 34px 0 12px;
  background: white;
  color: #30343b;
  font-size: 13px;
}

.primary-button {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  border-radius: 999px;
  padding: 11px 17px;
  background: linear-gradient(135deg, var(--blue), #6977ff);
  color: white;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.agency-guidance {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.agency-guidance button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--blue);
  font-weight: 700;
  cursor: pointer;
}

.agency-guidance button:hover,
.agency-guidance button:focus-visible { text-decoration: underline; outline: 0; }

.plan-result {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid #dfe3ff;
  border-radius: 16px;
  background: #f8f8ff;
}

.plan-result h3 { margin: 0 0 8px; font-size: 22px; }
.plan-result > p:not(.answer-kicker) { margin: 0; color: #555a63; font-size: 14px; line-height: 1.6; }
.plan-result .plan-result-why { margin-top: 8px; color: #3e4350; font-weight: 650; }
.plan-result a { display: inline-flex; gap: 6px; margin-top: 13px; color: var(--blue); font-size: 13px; font-weight: 700; text-decoration: none; }
.plan-result a:hover { text-decoration: underline; }

.secondary-button {
  border: 1px solid #d9ddff;
  border-radius: 999px;
  padding: 10px 15px;
  background: white;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.plan-result .secondary-button { display: block; margin-top: 14px; }

.plan-result .primary-purchase {
  display: block;
  width: fit-content;
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--blue);
  color: white;
}

.sales-next-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid #e4e7ff;
  border-radius: 16px;
  background: #fafaff;
}

.sales-next-actions button,
.sales-next-actions a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9ddff;
  border-radius: 999px;
  padding: 9px 12px;
  background: white;
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.sales-next-actions button:first-child { border-color: transparent; background: var(--blue); color: white; }
.sales-next-actions a:nth-child(2) { border-color: #ffc970; background: #fff6e5; color: #9a5400; }

.answer-primary-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  background: var(--blue);
  color: white;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.answer-primary-cta:hover { filter: brightness(.96); }

.recommendation-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.recommendation-actions.single-action { grid-template-columns: 1fr; }
.plan-recommendation-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 16px;
}

.plan-recommendation-buy {
  display: flex;
  min-width: 108px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd5ff;
  border-radius: 999px;
  padding: 12px 17px;
  background: #fff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.plan-recommendation-buy:hover { background: #f3f5ff; }

.answer-secondary-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  border: 1px solid #cfd5ff;
  border-radius: 999px;
  padding: 13px 18px;
  background: white;
  color: var(--blue);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.answer-secondary-cta:hover { background: #f3f5ff; }
.creator-join-cta { border-color: #ffc970; background: #fff8eb; color: #8d4d00; }
.creator-join-cta:hover { background: #fff1d6; }

.inline-evidence {
  width: 100%;
  margin-top: 18px;
  border: 1px solid #e7e9ef;
  border-radius: 18px;
  padding: 20px;
  background: #fafbfc;
  color: var(--ink);
  text-align: left;
}

.inline-evidence-heading h3 { margin: 2px 0 0; font-size: 18px; }
.sales-support-summary { margin: 13px 0 0; color: #555a63; line-height: 1.55; }

.sales-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.sales-proof-grid > div { padding: 15px; border: 1px solid #e7e9ef; border-radius: 15px; background: white; }
.sales-proof-grid strong { display: block; color: var(--blue); font-size: 18px; line-height: 1.2; }
.sales-proof-grid span { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; }

.creator-examples-wrap { margin-top: 24px; }
.creator-examples-wrap h3 { margin: 0; font-size: 17px; }
.creator-examples-wrap > p { margin: 6px 0 13px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.creator-examples { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.creator-example { padding: 14px; border: 1px solid #e5e7eb; border-radius: 15px; background: white; }
.creator-example strong { display: block; font-size: 14px; }
.creator-example .creator-handle { margin-top: 2px; color: var(--blue); font-size: 12px; }
.creator-example .creator-stats { margin-top: 8px; color: #4d525b; font-size: 12px; line-height: 1.5; }
.creator-example .creator-categories { margin-top: 6px; color: var(--muted); font-size: 11px; }

.recommended-sale { margin-top: 24px; padding: 20px; border: 1px solid #ffd59a; border-radius: 17px; background: #fff9ef; }
.recommended-sale h3 { margin: 0; font-size: 20px; }
.recommended-sale > p:not(.answer-kicker) { margin: 7px 0 0; color: #555a63; font-size: 13px; line-height: 1.5; }
.recommended-sale .plan-detail { padding-top: 9px; border-top: 1px solid #f1d9b7; }
.recommended-sale .plan-savings { color: #7a4a00; font-weight: 700; }
.recommended-sale .plan-reassurance { margin-top: 12px; padding: 10px 12px; border-radius: 11px; background: #fff2d9; color: #634300; }
.recommended-sale .plan-reassurance strong { color: #3f2a00; }
.evidence-disclaimer { margin: 16px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }

.topic-browser {
  margin: 28px auto 0;
  padding: 26px 28px;
  border: 1px solid #e4e6eb;
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 50px rgb(20 24 35 / 8%);
  text-align: left;
}

.topic-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.topic-group {
  padding: 17px;
  border: 1px solid #e9ebef;
  border-radius: 16px;
  background: #fafbfc;
}

.topic-group h3 { margin: 0; font-size: 15px; }
.topic-group > p { margin: 5px 0 13px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.topic-questions { display: grid; gap: 7px; }
.topic-questions button { border: 0; padding: 0; background: transparent; color: #4d525b; font-size: 12px; line-height: 1.4; text-align: left; cursor: pointer; }
.topic-questions button::before { content: "→"; margin-right: 7px; color: #a1a5ad; }
.topic-questions button:hover,.topic-questions button:focus-visible { color: var(--blue); outline: 0; }

.answer-card {
  margin: 32px auto 0;
  padding: 26px 28px 25px;
  border: 1px solid #e4e6eb;
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 50px rgb(20 24 35 / 8%);
  text-align: left;
  animation: answer-in .24s ease-out;
}

.answer-kicker {
  margin: 0 0 9px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.answer-card h2 {
  margin: 0 0 12px;
  font-size: clamp(19px, 2.7vw, 24px);
  line-height: 1.25;
  letter-spacing: -.02em;
}

.answer-card > p:not(.answer-kicker) {
  margin: 0;
  color: #4d5159;
  font-size: 16px;
  line-height: 1.65;
  white-space: pre-line;
}

.plan-answer-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 18px;
}

.plan-answer-actions a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border: 1px solid #cfd5ff;
  border-radius: 999px;
  background: white;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
}

.plan-answer-actions .plan-answer-buy {
  border-color: transparent;
  background: var(--blue);
  color: white;
}

.plan-answer-actions a:hover { filter: brightness(.97); }

.answer-link {
  display: inline-flex;
  gap: 7px;
  margin-top: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.answer-link:hover { text-decoration: underline; }

.related-wrap {
  margin-top: 24px;
  padding-top: 19px;
  border-top: 1px solid #eceef2;
}

.related-wrap > p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .02em;
}

.related-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.related-questions button {
  border: 1px solid #e1e4e9;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--wash);
  color: #484d56;
  font-size: 12px;
  cursor: pointer;
}

.related-questions button:hover,
.related-questions button:focus-visible {
  border-color: #cbd0ff;
  color: var(--blue);
  outline: 0;
}

.answer-actions {
  margin-top: 15px;
  text-align: center;
}

.answer-actions #ask-another {
  padding: 5px 8px;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
}

.answer-actions #ask-another:hover,
.answer-actions #ask-another:focus-visible { color: var(--blue); }

.answer-actions button,
.answer-actions a {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: #f0f1f4;
  color: #555a63;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.answer-actions button:hover,
.answer-actions button:focus-visible,
.answer-actions a:hover,
.answer-actions a:focus-visible { color: var(--blue); outline: 2px solid rgb(66 85 255 / 16%); }

.answer-actions button[aria-pressed="true"] { background: #e9ebff; color: var(--blue); }
.answer-actions button:disabled { cursor: default; opacity: .72; }

.feedback-label { color: #6b7280; font-size: 12px; font-weight: 600; }

.copy-status {
  color: #6b7280;
  font-size: 12px;
}

.helper {
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 12px;
}

.footer-links a {
  color: #777c85;
  font-size: 12px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible { color: var(--blue); text-decoration: underline; }

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

@keyframes answer-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 560px) {
  .page { padding: 72px 14px 32px; place-items: start center; }
  .search-bar { min-height: 58px; padding-left: 16px; }
  .search-bar input { font-size: 16px; }
  .search-bar button { width: 44px; height: 44px; flex-basis: 44px; }
  .search-suggestions { border-radius: 17px; }
  .assistant-meta { align-items: flex-start; margin-inline: 4px; }
  .assistant-meta span:first-child { max-width: 62%; }
  .suggestions { gap: 7px; }
  .suggestions button { padding: 8px 11px; font-size: 12px; }
  .personalization-prompt { grid-template-columns: 1fr auto; gap: 3px 10px; margin-top: 11px; }
  .personalization-prompt span { grid-column: 1 / -1; }
  .exit-plan-followup { align-self: start; margin-left: 0; white-space: nowrap; }
  .plan-question-examples { justify-content: flex-start; padding: 0 4px 2px; }
  .plan-finder { padding: 22px 20px; border-radius: 18px; }
  .plan-finder-form { grid-template-columns: 1fr; }
  .primary-button { width: 100%; }
  .topic-browser { padding: 22px 20px; border-radius: 18px; }
  .topic-groups { grid-template-columns: 1fr; }
  .answer-card { padding: 22px 20px; border-radius: 18px; }
  .sales-next-actions { grid-template-columns: 1fr; padding: 13px; }
  .inline-evidence { padding: 17px 14px; border-radius: 16px; }
  .sales-proof-grid { grid-template-columns: 1fr; }
  .creator-examples { grid-template-columns: 1fr; }
  .recommendation-actions { grid-template-columns: 1fr; }
  .plan-answer-actions { grid-template-columns: 1fr; }
  .related-questions { display: grid; }
  .related-questions button { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
#answer-text .client-content-sample {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-top: 10px;
  overflow-wrap: anywhere;
}

#answer-text .client-content-sample > span {
  color: #62676f;
  font-size: 14px;
}
