:root {
  --ink: #20243e;
  --muted: #71748c;
  --purple: #6551e8;
  --line: #e8e9f1;
  --paper: #f8f9fc;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 15px;
  line-height: 1.6;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #8e79ee;
  outline-offset: 5px;
}
button {
  border: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.1;
}
p {
  color: var(--muted);
}
.wrap {
  max-width: 1180px;
  margin: auto;
  padding-left: 38px;
  padding-right: 38px;
}
.header {
  height: 94px;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  gap: 25px;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 27px;
  font-weight: 760;
  letter-spacing: -1.3px;
}
.logo-number {
  color: var(--purple);
}
.logo-icon {
  background: var(--purple);
  color: white;
  width: 33px;
  height: 35px;
  border-radius: 11px;
  margin-right: 10px;
  font-size: 27px;
  text-align: center;
  line-height: 29px;
  position: relative;
}
.logo-icon span {
  font-size: 13px;
  position: absolute;
  right: 2px;
  top: 0;
}
.header nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
  font-weight: 500;
  color: #65687e;
}
.header a:hover {
  color: var(--purple);
}
.login {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  gap: 15px;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 25px;
  padding-top: 69px;
  padding-bottom: 84px;
  min-height: 680px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 750;
  color: #76758e;
  display: flex;
  align-items: center;
  gap: 9px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8770ee;
  box-shadow: 0 0 0 4px #ece8ff;
}
.hero h1 {
  font-size: clamp(48px, 5.3vw, 70px);
  letter-spacing: -3.5px;
  font-weight: 650;
  line-height: 1.055;
  margin-top: 25px;
}
.hero h1 > span {
  color: var(--purple);
}
.hero-description {
  margin-top: 25px;
  line-height: 1.85;
  font-size: 15px;
  max-width: 425px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 29px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 14px 21px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
  transition:
    transform 0.15s,
    background 0.15s;
}
.button:hover {
  transform: translateY(-2px);
}
.button span {
  font-size: 17px;
}
.primary {
  color: white;
  background: var(--purple);
  box-shadow: 0 5px 12px #6551e821;
}
.primary:hover {
  background: #5542ce;
}
.secondary {
  background: white;
  border: 1px solid #e4e3ec;
  color: #52536c;
}
.micro {
  font-size: 10px;
  margin-top: 19px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9091a2;
}
.tiny-check {
  color: #77748f;
  font-size: 12px;
}
.tiny-check:nth-of-type(2) {
  margin-left: 10px;
}
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid #e4e0f5;
  border-radius: 50%;
  width: 460px;
  height: 460px;
  transform: rotate(-20deg);
  background: radial-gradient(ellipse, #e9e4ff85, transparent 70%);
}
.orbit-two {
  width: 540px;
  height: 355px;
  transform: rotate(-35deg);
  background: none;
  border-color: #ece9f7;
}
.example-chat {
  width: 340px;
  background: white;
  border-radius: 17px;
  border: 1px solid #e7e5f1;
  box-shadow:
    0 20px 65px #5b468a12,
    0 5px 15px #4a426710;
  transform: rotate(-2deg);
  margin-top: 16px;
  overflow: hidden;
}
.example-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 19px;
  border-bottom: 1px solid #efedf6;
}
.chat-logo {
  width: 34px;
  height: 35px;
  background: #eeeafa;
  border-radius: 11px;
  color: var(--purple);
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  position: relative;
}
.chat-logo span {
  font-size: 13px;
  position: absolute;
  right: 1px;
  top: 0;
}
.example-header strong {
  display: block;
  font-size: 13px;
}
.example-header small {
  font-size: 9px;
  color: #8c8aa1;
}
.example-header i {
  display: inline-block;
  background: #75bda0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-right: 4px;
}
.more {
  margin-left: auto;
  color: #aaa4bd;
  letter-spacing: 2px;
}
.example-body {
  padding: 21px 18px 13px;
}
.example-tag {
  display: block;
  text-align: center;
  font-size: 7px;
  letter-spacing: 1.5px;
  color: #ada7bb;
  margin-bottom: 21px;
}
.example-message {
  font-size: 11px;
  line-height: 1.65;
  padding: 12px 14px;
  max-width: 92%;
  margin-bottom: 15px;
  border-radius: 11px;
}
.visitor {
  color: white;
  background: #7060df;
  margin-left: auto;
  border-bottom-right-radius: 3px;
}
.assistant {
  background: #f5f4fa;
  color: #68637e;
  border-bottom-left-radius: 3px;
}
.answer-source {
  font-size: 8px;
  border-top: 1px solid #e9e5f0;
  padding-top: 8px;
  margin-top: 10px;
  color: #9690ac;
}
.answer-source span {
  color: #7f75af;
  margin-right: 4px;
}
.suggestion-label {
  font-size: 9px;
  margin: 22px 0 9px;
}
.question {
  width: 100%;
  text-align: left;
  padding: 9px 11px;
  background: #fff;
  border: 1px solid #e9e5f3;
  border-radius: 6px;
  font-size: 9px;
  color: #7a7194;
  margin: 3px 0;
  display: flex;
  justify-content: space-between;
}
.question:hover {
  background: #f5f2fd;
}
.example-input {
  display: flex;
  width: calc(100% - 32px);
  align-items: center;
  justify-content: space-between;
  margin: 0 16px;
  padding: 10px 12px;
  font-size: 9px;
  color: #aaa3b8;
  background: #faf9fd;
  border: 1px solid #ece9f3;
  border-radius: 8px;
}
.example-input span {
  background: #7563e5;
  color: white;
  padding: 1px 7px;
  border-radius: 5px;
  font-size: 15px;
}
.example-footer {
  text-align: center;
  font-size: 7px;
  color: #aaa4b8;
  padding: 9px;
}
.floating-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: #fffffff5;
  border: 1px solid #eae7f4;
  border-radius: 11px;
  box-shadow: 0 10px 25px #5540780c;
  z-index: 1;
}
.floating-label strong {
  font-size: 10px;
  font-weight: 600;
  display: block;
}
.floating-label small {
  font-size: 8px;
  color: #9992ac;
  display: block;
}
.label-knowledge {
  top: 0;
  right: 4px;
  transform: rotate(3deg);
}
.label-icon {
  background: #eeeafa;
  padding: 5px 9px;
  color: #8974d1;
  border-radius: 7px;
}
.green-check {
  margin-left: 8px;
  background: #eaf6ef;
  color: #6daa89;
  border-radius: 50%;
  width: 19px;
  height: 19px;
  text-align: center;
  font-size: 11px;
}
.label-control {
  bottom: -8px;
  left: 5px;
  transform: rotate(3deg);
}
.control-icon {
  background: #eef2ff;
  color: #7c8dcc;
  padding: 4px 8px;
  border-radius: 7px;
  font-size: 20px;
}
.spark {
  position: absolute;
  color: #b4a0eb;
}
.spark-one {
  font-size: 29px;
  top: 78px;
  left: 5px;
}
.spark-two {
  font-size: 44px;
  right: -2px;
  bottom: 90px;
}
.principles {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 22px;
  padding-bottom: 22px;
  gap: 18px;
}
.principles > span {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #9b9bad;
  font-weight: 650;
}
.principles > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #85859c;
}
.principle-icon {
  font-size: 19px;
  color: #a1a0b5;
}
.section {
  padding-top: 87px;
  padding-bottom: 87px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 38px;
}
h2 {
  font-size: 36px;
  line-height: 1.18;
  font-weight: 620;
  letter-spacing: -1.25px;
  margin-top: 15px;
}
.section-heading p {
  font-size: 12px;
  line-height: 1.9;
  padding-bottom: 3px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.steps article {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 27px;
}
.step-number {
  position: absolute;
  right: 24px;
  top: 22px;
  font-size: 11px;
  color: #bab6c9;
  font-variant-numeric: tabular-nums;
}
.step-icon {
  font-size: 23px;
  color: #8c7ac1;
  background: #f3f0fc;
  width: 41px;
  height: 41px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.steps h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
}
.steps p {
  font-size: 12px;
  line-height: 1.85;
  margin-top: 13px;
}
.knowledge-section {
  background: #f0eef8;
  border-top: 1px solid #ece9f6;
  border-bottom: 1px solid #ece9f6;
  padding: 70px 0;
}
.knowledge-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 75px;
}
.section-description {
  font-size: 13px;
  line-height: 1.9;
  margin-top: 22px;
  max-width: 355px;
}
.text-button {
  color: #7762c5;
  font-size: 11px;
  background: none;
  padding: 0;
  margin-top: 25px;
  font-weight: 650;
}
.text-button span {
  margin-left: 16px;
}
.knowledge-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.knowledge-list article {
  display: flex;
  align-items: center;
  background: #ffffffcf;
  border: 1px solid #e7e2f2;
  border-radius: 10px;
  padding: 18px 17px;
  gap: 14px;
}
.source-icon {
  width: 35px;
  height: 37px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 9px;
  font-size: 21px;
}
.purple {
  background: #efebfc;
  color: #a18acb;
}
.blue {
  background: #edf2ff;
  color: #8ea2d0;
}
.green {
  background: #eaf3ef;
  color: #7da693;
}
.amber {
  background: #faf2e8;
  color: #c6ac85;
}
.knowledge-list h3 {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
}
.knowledge-list p {
  font-size: 10px;
  margin-top: 2px;
}
.source-label {
  margin-left: auto;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #a8a0b8;
}
.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.business-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 27px;
  background: white;
}
.business-symbol {
  font-size: 26px;
  line-height: 1;
  color: #927dc4;
  background: #f2edf9;
  border-radius: 12px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
}
.blue-symbol {
  background: #edf1fc;
  color: #8295bf;
}
.green-symbol {
  background: #edf4f0;
  color: #86a393;
}
.business-tag {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #9a91aa;
}
.business-card h3 {
  font-size: 21px;
  line-height: 1.32;
  font-weight: 550;
  letter-spacing: -0.6px;
  margin-top: 14px;
}
.business-card p {
  font-size: 12px;
  line-height: 1.85;
  margin-top: 16px;
}
.business-foot {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 24px;
  font-size: 8px;
  color: #aaa3b4;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 70px;
  padding-top: 25px;
  padding-bottom: 90px;
}
.faq-section > div > p {
  font-size: 12px;
  margin: 15px 0 23px;
}
.faqs details {
  border-bottom: 1px solid #e5e5ef;
  padding: 19px 0;
}
.faqs details:first-child {
  border-top: 1px solid #e5e5ef;
}
.faqs summary {
  font-size: 13px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 20px;
}
.faqs summary::-webkit-details-marker {
  display: none;
}
.faqs summary span {
  font-size: 21px;
  color: #aaa0be;
}
.faqs details[open] summary span {
  transform: rotate(45deg);
}
.faqs p {
  font-size: 12px;
  line-height: 1.85;
  padding: 13px 30px 0 0;
}
.closing {
  position: relative;
  background: #eeebfa;
  border: 1px solid #e7e1f6;
  border-radius: 18px;
  padding-top: 49px;
  padding-bottom: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.closing h2 {
  font-size: 39px;
}
.closing p {
  font-size: 12px;
  line-height: 1.85;
  margin-top: 16px;
}
.closing .button {
  z-index: 1;
}
.closing-spark {
  position: absolute;
  font-size: 260px;
  color: #e3dcf7;
  right: 85px;
  top: -65px;
  transform: rotate(14deg);
  pointer-events: none;
}
.footer {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 35px;
  font-size: 9px;
  color: #a19bad;
}
.footer .logo {
  font-size: 22px;
}
.footer p {
  margin-right: auto;
  font-size: 10px;
}
.footer > a:last-child {
  font-weight: 600;
  color: #79718f;
}
.floating-chat {
  position: fixed;
  bottom: 23px;
  right: 25px;
  background: var(--purple);
  color: white;
  border: 1px solid #ffffff40;
  box-shadow: 0 5px 20px #44319530;
  border-radius: 30px;
  z-index: 10;
  padding: 12px 19px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
}
.floating-chat span {
  font-size: 19px;
}
dialog {
  padding: 0;
  border: 1px solid #e4dfef;
  border-radius: 15px;
  width: 410px;
  max-width: calc(100vw - 24px);
  height: 700px;
  max-height: 92dvh;
  box-shadow: 0 25px 100px #21133450;
  overflow: hidden;
  background: white;
}
dialog[open] {
  display: flex;
  flex-direction: column;
}
dialog::backdrop {
  background: #17132d88;
  backdrop-filter: blur(4px);
}
.dialog-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 17px;
  background: #faf9ff;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
}
.dialog-bar button {
  background: transparent;
  color: #81788e;
  font-size: 26px;
  line-height: 1;
  padding: 2px 5px;
}
.chat-disclosure {
  font-size: 10px;
  line-height: 1.5;
  padding: 10px 17px;
  background: #f5f3fb;
  color: #81758f;
}
#live-chat {
  border: 0;
  width: 100%;
  min-height: 0;
  flex: 1;
  background: white;
}
.dialog-help {
  font-size: 9px;
  text-align: center;
  padding: 8px;
  color: #9b90a7;
}
.dialog-help a {
  text-decoration: underline;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: white;
  padding: 10px;
}
.skip:focus {
  top: 10px;
}
@media (min-width: 1350px) {
  .hero {
    padding-top: 83px;
    padding-bottom: 105px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    padding-left: 28px;
    padding-right: 28px;
  }
  .header {
    padding: 0 28px;
  }
  .hero h1 {
    font-size: 55px;
  }
  .hero-art {
    transform: scale(0.88);
    transform-origin: center;
  }
  .hero {
    gap: 0;
    overflow: hidden;
  }
  .orbit-two {
    width: 450px;
  }
  .knowledge-grid {
    gap: 35px;
  }
  .section-heading p br {
    display: none;
  }
  .section-heading p {
    max-width: 275px;
  }
  .principles {
    flex-wrap: wrap;
  }
  .principles > span {
    width: 100%;
  }
  .closing {
    margin: 0 24px;
  }
  .business-card {
    padding: 21px;
  }
  .business-card h3 {
    font-size: 19px;
  }
  .source-label {
    display: none;
  }
  .micro {
    font-size: 9px;
  }
}
@media (max-width: 720px) {
  .header {
    height: 76px;
    padding: 0 22px;
  }
  .header nav {
    display: none;
  }
  .logo {
    font-size: 24px;
  }
  .login {
    font-size: 11px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    padding-top: 35px;
    padding-bottom: 40px;
    gap: 36px;
    min-height: 0;
  }
  .hero h1 {
    font-size: 58px;
    letter-spacing: -3px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-art {
    height: 510px;
    transform: scale(0.92);
    width: 100%;
    max-width: 480px;
    margin: auto;
  }
  .hero-copy {
    max-width: 520px;
  }
  .hero-art .example-chat {
    width: 335px;
  }
  .label-knowledge {
    right: 0;
    top: 0;
  }
  .label-control {
    left: 0;
    bottom: 0;
  }
  .spark-two {
    right: 0;
  }
  .micro {
    font-size: 9px;
    flex-wrap: wrap;
  }
  .principles {
    gap: 12px;
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .principles > div {
    font-size: 10px;
  }
  .principles > span {
    margin-bottom: 4px;
  }
  .section {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .section-heading {
    display: block;
    margin-bottom: 25px;
  }
  .section-heading p {
    margin-top: 18px;
    max-width: none;
  }
  h2 {
    font-size: 31px;
  }
  .steps,
  .business-grid {
    grid-template-columns: 1fr;
  }
  .steps article {
    padding: 25px;
  }
  .steps h3 {
    font-size: 19px;
  }
  .steps p,
  .business-card p {
    font-size: 13px;
  }
  .step-icon {
    margin-bottom: 18px;
  }
  .knowledge-section {
    padding: 48px 0;
  }
  .knowledge-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .knowledge-list article {
    padding: 18px 14px;
  }
  .knowledge-list h3 {
    font-size: 13px;
  }
  .knowledge-list p {
    font-size: 11px;
  }
  .section-description {
    max-width: 100%;
  }
  .business-card {
    padding: 27px;
  }
  .business-card h3 {
    font-size: 24px;
  }
  .business-card h3 br {
    display: none;
  }
  .business-foot {
    font-size: 10px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 5px;
    padding-bottom: 50px;
  }
  .faqs summary {
    font-size: 13px;
  }
  .faqs p {
    font-size: 12px;
  }
  .closing {
    margin: 0 18px;
    display: block;
    padding: 32px 25px;
  }
  .closing h2 {
    font-size: 33px;
  }
  .closing .button {
    margin-top: 23px;
    position: relative;
  }
  .closing-spark {
    right: -80px;
    top: 0;
  }
  .footer {
    flex-wrap: wrap;
    padding-bottom: 95px;
    gap: 15px;
  }
  .footer p {
    width: calc(100% - 130px);
    font-size: 9px;
  }
  .footer span {
    margin-right: auto;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions .button {
    padding: 13px 17px;
    gap: 18px;
  }
  .floating-chat {
    bottom: 16px;
    right: 16px;
  }
  .hero-art .orbit-one {
    width: 400px;
    height: 400px;
  }
  .hero-art .orbit-two {
    width: 450px;
    height: 350px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
