function ChatDemo() {
  return (
    <section className="nx-demo">
      <div className="nx-demo__inner">
        <div className="nx-eyebrow nx-eyebrow--center">In practice</div>
        <h2 className="nx-demo__title">Ask in plain English. Get the answer you&rsquo;d normally chase three people for.</h2>

        <div className="nx-demo__window">
          <div className="nx-demo__chrome">
            <span className="nx-demo__dots"><i></i><i></i><i></i></span>
            <span className="nx-demo__url">norix &middot; ashridge m&amp;e ltd</span>
          </div>
          <div className="nx-demo__body">
            <div className="nx-msg nx-msg--user">
              <div className="nx-msg__bubble">Which enquiries from this week haven&rsquo;t been replied to yet?</div>
            </div>
            <div className="nx-msg nx-msg--ai">
              <div className="nx-msg__avatar">
                <img src="assets/social/favicon.svg" alt="" width="20" height="20"/>
              </div>
              <div className="nx-msg__bubble">
                <p>Three enquiries from this week are still open:</p>
                <ul>
                  <li><b>Camden hospital fit-out</b> &mdash; Sarah Chen, Hollis &amp; Co (Mon 11 May, est. &pound;180k)</li>
                  <li><b>Office cat-A refurb, EC2</b> &mdash; Tom Patel, Greenline Build (Tue 12 May, est. &pound;95k)</li>
                  <li><b>Warehouse M&amp;E strip-out</b> &mdash; Dan Murphy, Apex (Wed 13 May, scope TBC)</li>
                </ul>
                <p>I&rsquo;ve drafted a follow-up for each &mdash; want me to send, or do you want to read them first?</p>
                <div className="nx-msg__cites">
                  <span className="nx-cite"><i data-lucide="mail" strokeWidth="1.75"></i> Outlook / Inbox</span>
                  <span className="nx-cite"><i data-lucide="message-circle" strokeWidth="1.75"></i> WhatsApp Business</span>
                </div>
              </div>
            </div>
          </div>
          <div className="nx-demo__composer">
            <input type="text" placeholder="Ask anything about your jobs, leads, or pipeline&hellip;" />
            <button className="nx-btn nx-btn--accent nx-btn--sm">Ask</button>
          </div>
        </div>
      </div>
    </section>
  );
}
window.ChatDemo = ChatDemo;
