:root {
  --ink: #f7f9ff;
  --muted: #a7b1c9;
  --night: #030612;
  --blue: #1a8cff;
  --cyan: #4edfff;
  --violet: #795bff;
  --line: rgba(157, 177, 224, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family: "Geologica", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 46%, rgba(62, 83, 255, 0.2), transparent 34%),
    radial-gradient(circle at 14% 12%, rgba(0, 152, 255, 0.11), transparent 29%),
    linear-gradient(145deg, #02040c 0%, #071029 57%, #030611 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(2, 4, 12, .82));
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(rgba(117, 151, 219, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 151, 219, .07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0, transparent 86%);
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand { width: 205px; }
.brand img { width: 100%; height: auto; }
.brand-fallback {
  display: none;
  color: #f4f7ff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.04em;
}
.main-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; color: #c5cce0; }
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: white; }

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(120, 175, 255, .35);
  border-radius: 999px;
  background: rgba(18, 33, 71, .6);
  box-shadow: inset 0 0 20px rgba(34, 123, 255, .08);
  font-size: 14px;
  font-weight: 700;
  transition: border-color .2s, background .2s, transform .2s;
}

.nav-cta:hover { transform: translateY(-2px); border-color: rgba(110, 206, 255, .7); background: rgba(23, 49, 102, .78); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: #d5def0;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 710px;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
  gap: 40px;
  padding-block: 72px 82px;
}

.hero-copy { position: relative; z-index: 5; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  margin-bottom: 26px;
  border: 1px solid rgba(95, 170, 255, .24);
  border-radius: 999px;
  background: rgba(22, 54, 105, .22);
  color: #bad7ff;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #42dcff;
  box-shadow: 0 0 0 5px rgba(66, 220, 255, .11), 0 0 16px #42dcff;
}

h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(54px, 6.1vw, 92px);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 800;
}

h1 span {
  color: transparent;
  background: linear-gradient(100deg, #f5f8ff 4%, #72dfff 38%, #4f89ff 64%, #9c72ff 94%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 23px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 750;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(110deg, #087cf0, #5a48f4); box-shadow: 0 12px 38px rgba(38, 112, 255, .3), inset 0 1px rgba(255,255,255,.25); }
.button-primary:hover { box-shadow: 0 16px 48px rgba(38, 112, 255, .42); }
.button-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.035); color: #d9dfef; }
.button-ghost:hover { border-color: rgba(132, 165, 236, .36); }

.play {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  padding-left: 2px;
  border-radius: 50%;
  background: rgba(94, 158, 255, .15);
  color: #67cfff;
  font-size: 8px;
}

.hero-proof { display: flex; align-items: center; gap: 13px; margin-top: 34px; }
.hero-proof p { margin: 0; color: #78859f; font-size: 12px; line-height: 1.55; }
.hero-proof strong { color: #b8c5dd; font-weight: 650; }
.avatar-stack { display: flex; padding-left: 8px; }
.avatar-stack span { width: 31px; height: 31px; display: grid; place-items: center; margin-left: -8px; border: 2px solid #091026; border-radius: 50%; background: linear-gradient(145deg, #192c61, #5b3df1); color: #d9e9ff; font-size: 10px; font-weight: 800; }
.hero-visual { position: relative; min-height: 610px; }

.visual-frame {
  position: absolute;
  width: min(490px, 82%);
  top: 50%;
  left: 50%;
  transform: translate(-47%, -50%);
  border: 1px solid rgba(115, 159, 255, .23);
  border-radius: 36px;
  overflow: hidden;
  background: #050916;
  box-shadow: 0 45px 90px rgba(0,0,0,.48), 0 0 80px rgba(62, 94, 255, .13);
}

.visual-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 45%, rgba(2, 6, 19, .18) 62%, #040713 95%); pointer-events: none; }
.visual-frame > img { width: 100%; height: 610px; object-fit: cover; object-position: center 44%; opacity: .92; }

.call-card {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 17px 18px 16px;
  border: 1px solid rgba(139, 185, 255, .22);
  border-radius: 20px;
  background: rgba(5, 10, 28, .76);
  box-shadow: 0 20px 45px rgba(0,0,0,.34), inset 0 1px rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
}

.call-topline { display: flex; align-items: center; justify-content: space-between; }
.agent-status { display: flex; align-items: center; gap: 10px; }
.status-pulse { width: 10px; height: 10px; border-radius: 50%; background: #36e7ae; box-shadow: 0 0 0 5px rgba(54,231,174,.1), 0 0 16px rgba(54,231,174,.8); }
.agent-status strong, .agent-status small { display: block; }
.agent-status strong { font-size: 12px; letter-spacing: .02em; }
.agent-status small { margin-top: 2px; color: #7e8fab; font-size: 10px; }
.call-time { color: #8fa0ba; font-family: "Geologica", sans-serif; font-size: 11px; }
.waveform { height: 48px; display: flex; align-items: center; justify-content: center; gap: 5px; margin: 8px 0; }
.waveform span { width: 3px; min-height: 6px; border-radius: 99px; background: linear-gradient(#4fe0ff, #725dff); animation: pulse-wave 1.5s ease-in-out infinite alternate; }
@keyframes pulse-wave { from { transform: scaleY(.38); opacity: .48; } to { transform: scaleY(1); opacity: 1; } }
.transcript { margin: 0; color: #d6def0; font-size: 11px; line-height: 1.55; text-align: center; }
.call-result { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 11px; padding: 8px; border-radius: 10px; background: rgba(31, 204, 151, .08); color: #72e8c0; font-size: 10px; font-weight: 700; }
.call-result span { width: 16px; height: 16px; display: grid; place-items: center; border-radius: 50%; background: rgba(71, 230, 176, .14); }
.orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.orb-one { width: 340px; height: 340px; top: 70px; left: 4%; background: rgba(25, 110, 255, .13); box-shadow: 0 0 100px rgba(37, 107, 255, .24); }
.orb-two { width: 250px; height: 250px; right: -3%; bottom: 74px; background: rgba(115, 64, 255, .1); box-shadow: 0 0 100px rgba(108, 72, 255, .23); }

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(129, 169, 255, .2);
  border-radius: 14px;
  background: rgba(9, 18, 43, .76);
  box-shadow: 0 14px 36px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
}
.floating-note small, .floating-note strong { display: block; }
.floating-note small { color: #7b8aa9; font-size: 9px; }
.floating-note strong { margin-top: 2px; color: #d8e1f5; font-size: 10px; }
.note-icon { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: linear-gradient(145deg, rgba(28,137,255,.3), rgba(96,70,255,.3)); color: #83dcff; }
.note-left { top: 138px; left: -7px; }
.note-right { right: -7px; bottom: 143px; }

.hero-capabilities { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.hero-capabilities > div { min-height: 100px; display: flex; align-items: center; gap: 16px; padding: 18px 28px; border-left: 1px solid var(--line); }
.hero-capabilities > div:last-child { border-right: 1px solid var(--line); }
.hero-capabilities span { color: #4e6c9b; font-family: "Geologica", sans-serif; font-size: 10px; }
.hero-capabilities p { margin: 0; color: #7f8da7; font-size: 12px; line-height: 1.45; }
.hero-capabilities strong { display: block; color: #d5def0; font-size: 13px; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto auto; gap: 10px; }
  .nav-toggle { display: flex; justify-self: end; }
  .nav-cta { justify-self: end; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 30;
    flex-direction: column;
    gap: 0;
    padding: 12px 18px 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(6, 12, 28, .96);
    box-shadow: 0 24px 50px rgba(0,0,0,.35);
    backdrop-filter: blur(18px);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: 0; }
  .hero-content { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { max-width: 680px; }
  .hero-visual { min-height: 620px; }
  .visual-frame { width: min(520px, 88%); }
  .hero-capabilities { grid-template-columns: repeat(2, 1fr); }
  .hero-capabilities > div:nth-child(3), .hero-capabilities > div:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 600px) {
  .shell { width: min(100% - 30px, 1180px); }
  .site-header { min-height: 76px; }
  .brand { width: 150px; }
  .nav-cta { min-height: 39px; padding: 0 13px; font-size: 12px; }
  .hero-content { padding-block: 56px; gap: 26px; }
  h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero-lead { font-size: 16px; }
  .button { width: 100%; }
  .hero-proof { align-items: flex-start; }
  .hero-visual { min-height: 530px; }
  .visual-frame { width: 96%; border-radius: 28px; }
  .visual-frame > img { height: 525px; }
  .call-card { left: 13px; right: 13px; bottom: 13px; }
  .floating-note { display: none; }
  .hero-capabilities > div { padding: 17px 12px; }
  .hero-capabilities strong { font-size: 11px; }
  .hero-capabilities p { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .waveform span,
  .large-wave i { animation: none; }
  * { animation: none !important; transition-duration: .01ms !important; }
}

/* Long-form landing page */

.section {
  position: relative;
  padding-block: 132px;
  overflow: hidden;
}

.section-heading {
  max-width: 790px;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 21px;
  color: #74b9ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-eyebrow i {
  width: 24px;
  height: 1px;
  display: block;
  background: linear-gradient(90deg, #3fdcff, #765cff);
  box-shadow: 0 0 12px rgba(57, 184, 255, .7);
}

.section-heading h2,
.comparison-title h2,
.demo-inner h2 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 790;
}

.section-heading > p {
  max-width: 660px;
  margin: 26px 0 0;
  color: #8f9bb3;
  font-size: 17px;
  line-height: 1.75;
}

.section-heading-center > p {
  margin-inline: auto;
}

.text-gradient {
  color: transparent;
  background: linear-gradient(100deg, #2acafa, #4d85ff 50%, #8b5cf5);
  background-clip: text;
  -webkit-background-clip: text;
}

/* Manifesto */

.manifesto {
  background:
    radial-gradient(circle at 90% 20%, rgba(45, 126, 255, .08), transparent 24%),
    #f3f6fb;
  color: #0a1020;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 42px;
}

.manifesto-index {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-top: 9px;
  color: #6f7b91;
}

.manifesto-index > span {
  font-family: "Geologica", sans-serif;
  font-size: 11px;
}

.manifesto-index > i {
  width: 1px;
  height: 76px;
  margin-left: 3px;
  background: linear-gradient(#188cff, transparent);
}

.manifesto-index > small {
  max-width: 110px;
  font-size: 10px;
  line-height: 1.55;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.oversized-copy {
  max-width: 990px;
  margin: 0;
  font-size: clamp(39px, 5.1vw, 72px);
  line-height: 1.12;
  letter-spacing: -.052em;
  font-weight: 660;
}

.oversized-copy .copy-strike {
  position: relative;
  color: #134f9c;
  display: inline;
}

.oversized-copy .copy-strike::after {
  content: "";
  position: absolute;
  left: 0;
  top: 54%;
  width: 100%;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #0d4f9f, #1a8cff);
  transform: scaleX(0);
  transform-origin: left center;
  box-shadow: 0 0 14px rgba(26, 140, 255, .28);
}

.oversized-copy .copy-mark {
  position: relative;
  font-style: normal;
  color: #0a1020;
  background-image: linear-gradient(90deg, rgba(19, 79, 156, .14), rgba(26, 140, 255, .18));
  background-repeat: no-repeat;
  background-size: 0% 42%;
  background-position: 0 88%;
  border-radius: 4px;
  padding-inline: .04em;
  transition: color .45s ease;
}

.oversized-copy.is-lit .copy-strike::after {
  animation: strike-draw .7s cubic-bezier(.16, 1, .3, 1) .15s both;
}

.oversized-copy.is-lit .copy-mark {
  color: #0d3f82;
  animation: mark-fill .75s cubic-bezier(.16, 1, .3, 1) both;
}

.oversized-copy.is-lit .copy-mark:nth-of-type(1) { animation-delay: .45s; }
.oversized-copy.is-lit .copy-mark:nth-of-type(2) { animation-delay: .7s; }
.oversized-copy.is-lit .copy-mark:nth-of-type(3) { animation-delay: .95s; }
.oversized-copy.is-lit .copy-mark:nth-of-type(4) { animation-delay: 1.2s; }

@keyframes strike-draw {
  from { transform: scaleX(0); opacity: .3; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes mark-fill {
  from {
    background-size: 0% 42%;
    color: #0a1020;
  }
  to {
    background-size: 100% 42%;
    color: #0d3f82;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oversized-copy .copy-strike::after {
    transform: scaleX(1);
    animation: none !important;
  }
  .oversized-copy .copy-mark {
    background-size: 100% 42%;
    color: #0d3f82;
    animation: none !important;
  }
}

.manifesto-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px;
  max-width: 830px;
  margin: 56px 0 0 auto;
  padding-top: 29px;
  border-top: 1px solid #d8deea;
}

.manifesto-details p {
  margin: 0;
  color: #687286;
  font-size: 15px;
  line-height: 1.75;
}

/* How it works */

.how-section {
  background:
    linear-gradient(90deg, rgba(31, 119, 255, .035) 1px, transparent 1px),
    linear-gradient(rgba(31, 119, 255, .035) 1px, transparent 1px),
    #f8faff;
  background-size: 80px 80px;
  color: #0b1120;
}

.how-section .section-heading > p,
.use-cases-section .section-heading > p,
.deployment-section .section-heading > p,
.faq-section .section-heading > p {
  color: #68758c;
}

.journey-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 64px;
  align-items: center;
  margin-top: 74px;
}

.journey-steps {
  display: flex;
  flex-direction: column;
}

.journey-step {
  position: relative;
  min-height: 126px;
  cursor: pointer;
  display: grid;
  grid-template-columns: 45px 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 26px 17px 25px 0;
  border-bottom: 1px solid #dde3ee;
}

.journey-step::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 14px;
  bottom: -92px;
  width: 1px;
  background: #dce3ee;
}

.journey-step:last-child::before {
  display: none;
}

.journey-step.active {
  padding-left: 20px;
  border: 1px solid #d8e4f4;
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 60px rgba(16, 62, 128, .08);
}

.journey-step.active::before {
  left: 34px;
}

.journey-number {
  position: relative;
  z-index: 1;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid #cdd7e8;
  border-radius: 50%;
  background: #f8faff;
  color: #7890b3;
  font-family: "Geologica", sans-serif;
  font-size: 9px;
}

.journey-step.active .journey-number {
  border-color: #2f9eff;
  color: white;
  background: linear-gradient(145deg, #0aa6ef, #5959f0);
  box-shadow: 0 0 0 5px rgba(35, 147, 255, .1);
}

.journey-step h3 {
  margin: 1px 0 7px;
  font-size: 17px;
  letter-spacing: -.02em;
}

.journey-step p {
  margin: 0;
  color: #737f92;
  font-size: 13px;
  line-height: 1.65;
}

.journey-step > i {
  color: #98a6ba;
  font-size: 18px;
  font-style: normal;
}

.journey-step.active > i {
  color: #168ef4;
}

.journey-console {
  position: relative;
  min-height: 570px;
  padding: 26px;
  border: 1px solid rgba(112, 156, 233, .22);
  border-radius: 30px;
  overflow: hidden;
  color: #edf4ff;
  background:
    radial-gradient(circle at 50% 15%, rgba(38, 107, 255, .24), transparent 31%),
    linear-gradient(145deg, #071020, #090d1a 70%, #050813);
  box-shadow: 0 35px 90px rgba(18, 41, 86, .2), inset 0 1px rgba(255,255,255,.06);
}

.journey-console::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(rgba(98, 135, 203, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 135, 203, .08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(black, transparent 78%);
}

.console-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  top: -130px;
  left: calc(50% - 120px);
  border-radius: 50%;
  background: #226cff;
  filter: blur(90px);
  opacity: .24;
}

.console-header,
.conversation,
.console-actions,
.console-wave {
  position: relative;
  z-index: 2;
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(137, 164, 217, .15);
}

.console-agent {
  display: flex;
  align-items: center;
  gap: 12px;
}

.agent-orb {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(117, 207, 255, .4);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(27, 144, 255, .5), rgba(102, 61, 246, .38));
  box-shadow: 0 0 30px rgba(48, 122, 255, .24);
  font-weight: 800;
}

.console-agent strong,
.console-agent small {
  display: block;
}

.console-agent strong {
  font-size: 13px;
}

.console-agent small {
  margin-top: 3px;
  color: #8493ad;
  font-size: 10px;
}

.console-agent small i {
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 5px;
  border-radius: 50%;
  background: #42ddb0;
  box-shadow: 0 0 10px #42ddb0;
}

.console-time {
  color: #74849e;
  font-family: "Geologica", sans-serif;
  font-size: 11px;
}

.conversation {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 25px 4px;
}

.message {
  max-width: 82%;
  padding: 13px 15px;
  border-radius: 15px;
}

.message span {
  display: block;
  margin-bottom: 5px;
  color: #7e91ad;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.message p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.message-user {
  align-self: flex-end;
  border: 1px solid rgba(143, 164, 207, .14);
  border-bottom-right-radius: 4px;
  background: rgba(255,255,255,.055);
}

.message-agent {
  align-self: flex-start;
  border: 1px solid rgba(62, 145, 255, .22);
  border-bottom-left-radius: 4px;
  background: linear-gradient(135deg, rgba(19, 103, 203, .22), rgba(89, 52, 209, .16));
}

.thinking-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  color: #62738e;
  font-size: 9px;
}

.thinking-row div {
  display: flex;
  gap: 3px;
}

.thinking-row i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #4db6ff;
}

.console-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 2px;
}

.console-actions span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(121, 157, 217, .14);
  border-radius: 11px;
  color: #93a2ba;
  background: rgba(255,255,255,.025);
  font-size: 10px;
}

.console-actions i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #58d8b0;
  background: rgba(45, 217, 167, .1);
  font-style: normal;
}

.console-wave {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 18px;
}

.waveform-compact {
  height: 46px;
  gap: 8px;
  opacity: .42;
}

.waveform-compact span {
  width: 2px;
}

.journey-footnote {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0 auto;
  width: fit-content;
  color: #8996aa;
  font-size: 10px;
}

.journey-footnote span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid #dae1ec;
  border-radius: 50%;
}

.journey-footnote p {
  margin: 0;
}

/* Solutions */

.solutions-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(45, 81, 214, .19), transparent 31%),
    linear-gradient(180deg, #050914, #070b18);
}

.solutions-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .26;
  background-image:
    linear-gradient(rgba(125, 147, 201, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 147, 201, .06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.solutions-section .shell {
  position: relative;
  z-index: 2;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 70px;
}

.solution-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(129, 151, 205, .13);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -110px;
  left: -75px;
  border-radius: 50%;
  background: #136dff;
  filter: blur(70px);
  opacity: 0;
  transition: opacity .25s;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(85, 147, 255, .36);
  background: linear-gradient(145deg, rgba(48, 106, 218, .11), rgba(111, 65, 214, .04));
}

.solution-card:hover::before {
  opacity: .26;
}

.solution-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.solution-symbol {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(90, 171, 255, .23);
  border-radius: 14px;
  color: #67d7ff;
  background: linear-gradient(145deg, rgba(26, 113, 220, .2), rgba(102, 63, 232, .15));
  font-size: 22px;
}

.solution-number {
  color: #44526d;
  font-family: "Geologica", sans-serif;
  font-size: 10px;
}

.solution-card h3 {
  margin: 48px 0 13px;
  font-size: 21px;
  letter-spacing: -.03em;
}

.solution-card p {
  margin: 0;
  color: #8591a8;
  font-size: 13px;
  line-height: 1.72;
}

.solution-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: #626f87;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.solution-tag i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3bcfff;
  box-shadow: 0 0 10px #3bcfff;
}

/* Experience */

.experience-section {
  background:
    radial-gradient(circle at 82% 48%, rgba(72, 65, 231, .16), transparent 29%),
    #02050d;
}

.experience-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 45px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-list li > span {
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(77, 192, 255, .28);
  border-radius: 8px;
  color: #61d7ff;
  background: rgba(24, 126, 219, .12);
  font-size: 10px;
}

.check-list strong,
.check-list small {
  display: block;
}

.check-list strong {
  font-size: 14px;
}

.check-list small {
  margin-top: 5px;
  color: #78869e;
  font-size: 12px;
  line-height: 1.55;
}

.voice-lab {
  position: relative;
  min-height: 560px;
  padding: 24px;
  border: 1px solid rgba(115, 145, 210, .18);
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(36, 105, 255, .15), transparent 37%),
    linear-gradient(145deg, rgba(16, 25, 51, .87), rgba(5, 9, 20, .94));
  box-shadow: 0 40px 100px rgba(0,0,0,.36);
}

.voice-lab::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(113, 145, 211, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 145, 211, .06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}

.voice-lab-header,
.voice-profile,
.large-wave,
.voice-settings {
  position: relative;
  z-index: 2;
}

.voice-lab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #77869f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid rgba(60, 215, 168, .15);
  border-radius: 99px;
  color: #7bdab9;
  background: rgba(33, 190, 143, .07);
  font-size: 8px;
}

.live-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #42ddb0;
  box-shadow: 0 0 9px #42ddb0;
}

.voice-profile {
  padding-top: 60px;
  text-align: center;
}

.voice-avatar {
  position: relative;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border: 1px solid rgba(84, 188, 255, .4);
  border-radius: 28px;
  background: linear-gradient(145deg, #128ee8, #6847ee);
  box-shadow: 0 0 70px rgba(55, 105, 255, .42);
}

.voice-avatar > span {
  font-size: 35px;
  font-weight: 850;
}

.voice-avatar > i {
  position: absolute;
  inset: -17px;
  border: 1px solid rgba(84, 168, 255, .15);
  border-radius: 36px;
}

.voice-avatar > .ring-two {
  inset: -34px;
  border-color: rgba(104, 91, 255, .08);
  border-radius: 44px;
}

.voice-profile h3 {
  margin: 43px 0 7px;
  font-size: 19px;
  letter-spacing: -.03em;
}

.voice-profile p {
  margin: 0;
  color: #78869f;
  font-size: 11px;
}

.large-wave {
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 24px 0;
  mask-image: linear-gradient(90deg, transparent, black 16%, black 84%, transparent);
}

.large-wave i {
  width: 3px;
  border-radius: 99px;
  background: linear-gradient(#52e0ff, #6255ff);
  box-shadow: 0 0 12px rgba(63, 154, 255, .35);
  animation: pulse-wave 1.8s ease-in-out infinite alternate;
}

.voice-settings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.voice-settings > div {
  padding: 11px;
  border: 1px solid rgba(123, 151, 207, .12);
  border-radius: 11px;
  background: rgba(255,255,255,.025);
}

.voice-settings span,
.voice-settings strong {
  display: block;
}

.voice-settings span {
  color: #596982;
  font-size: 8px;
  text-transform: uppercase;
}

.voice-settings strong {
  margin-top: 4px;
  color: #b4c0d5;
  font-size: 9px;
}

/* Use cases */

.use-cases-section {
  background: #f4f7fc;
  color: #0a1120;
}

.use-cases-intro {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 60px;
  align-items: end;
}

.availability-card {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 17px;
  border: 1px solid #dbe3ef;
  border-radius: 18px;
  background: white;
  box-shadow: 0 18px 50px rgba(34, 68, 117, .07);
}

.availability-orbit {
  position: relative;
  flex: 0 0 53px;
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  border: 1px solid #cad9f0;
  border-radius: 50%;
  background: radial-gradient(circle, #e6f4ff, white 67%);
}

.availability-orbit::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 5px;
  right: 6px;
  border-radius: 50%;
  background: #238aff;
  box-shadow: 0 0 9px #238aff;
}

.availability-orbit i {
  color: #1784ed;
  font-size: 16px;
  font-weight: 850;
  font-style: normal;
}

.availability-card p {
  margin: 0;
  color: #718098;
  font-size: 10px;
  line-height: 1.6;
}

.availability-card strong {
  color: #172235;
  font-size: 12px;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 72px;
  border: 1px solid #dce3ed;
  border-radius: 20px;
  overflow: hidden;
  background: #dce3ed;
}

.use-cases-grid article {
  position: relative;
  min-height: 265px;
  padding: 30px;
  background: #f8faff;
  transition: background .2s ease;
}

.use-cases-grid article:hover {
  background: white;
}

.use-cases-grid article > span {
  color: #8ca0bc;
  font-family: "Geologica", sans-serif;
  font-size: 10px;
}

.use-cases-grid h3 {
  margin: 62px 0 12px;
  font-size: 19px;
  letter-spacing: -.025em;
}

.use-cases-grid p {
  margin: 0;
  color: #6e7c91;
  font-size: 12px;
  line-height: 1.68;
}

.use-cases-grid article > i {
  position: absolute;
  right: 25px;
  top: 25px;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid #dce4ef;
  border-radius: 10px;
  color: #5d7599;
  background: white;
  font-style: normal;
  transition: color .2s, border-color .2s, transform .2s;
}

.use-cases-grid article:hover > i {
  transform: translate(2px, -2px);
  border-color: #84bbf5;
  color: #1689f5;
}

.industries-row {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 38px;
}

.industries-row > span {
  padding-top: 8px;
  color: #8b9aaf;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.industries-row > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.industries-row i {
  padding: 8px 12px;
  border: 1px solid #dbe3ef;
  border-radius: 99px;
  color: #5f6f85;
  background: rgba(255,255,255,.66);
  font-size: 10px;
  font-style: normal;
}

/* Impact */

.impact-section {
  background:
    radial-gradient(circle at 50% 5%, rgba(47, 86, 223, .18), transparent 32%),
    linear-gradient(180deg, #050915, #040712);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-top: 1px solid rgba(132, 158, 212, .14);
  border-bottom: 1px solid rgba(132, 158, 212, .14);
}

.impact-grid article {
  min-height: 315px;
  padding: 45px 42px;
  border-left: 1px solid rgba(132, 158, 212, .14);
}

.impact-grid article:last-child {
  border-right: 1px solid rgba(132, 158, 212, .14);
}

.impact-value {
  display: block;
  color: transparent;
  background: linear-gradient(115deg, #eef7ff, #3bcfff 55%, #7556ff);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(56px, 6vw, 82px);
  line-height: 1;
  letter-spacing: -.07em;
  font-weight: 780;
}

.impact-value span {
  display: inline-block;
  font-size: .48em;
  line-height: 1;
  vertical-align: top;
  margin-top: .12em;
  letter-spacing: 0;
}

.impact-grid h3 {
  margin: 42px 0 11px;
  font-size: 15px;
}

.impact-grid p {
  margin: 0;
  color: #78869e;
  font-size: 12px;
  line-height: 1.7;
}

.impact-note {
  margin: 20px 0 0;
  color: #4f5d74;
  font-size: 9px;
  text-align: center;
}

/* Comparison */

.comparison-section {
  background: #f6f8fc;
  color: #0d1423;
}

.comparison-wrap {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 80px;
  align-items: start;
}

.comparison-title {
  position: sticky;
  top: 50px;
}

.comparison-table {
  border: 1px solid #d9e1ed;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 24px 70px rgba(38, 66, 108, .07);
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.comparison-head {
  background: #eef2f8;
}

.comparison-head span {
  padding: 17px 24px;
  color: #77859a;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.comparison-head span + span {
  border-left: 1px solid #dbe2ed;
  color: #1b79d5;
  background: #edf6ff;
}

.comparison-row {
  border-top: 1px solid #e2e7ef;
}

.comparison-row > span {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  color: #778397;
  font-size: 12px;
}

.comparison-row > span + span {
  border-left: 1px solid #e2e7ef;
  color: #263448;
  background: #fbfdff;
  font-weight: 650;
}

.comparison-row i {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #9da9ba;
  background: #f1f3f7;
  font-size: 9px;
  font-style: normal;
}

.comparison-row > span + span i {
  color: #188bef;
  background: #e9f5ff;
}

/* Integrations */

.integrations-section {
  background:
    radial-gradient(circle at 20% 50%, rgba(26, 104, 255, .16), transparent 32%),
    linear-gradient(145deg, #050a17, #060914);
}

.integrations-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
  align-items: center;
}

.integration-visual {
  position: relative;
  min-height: 620px;
}

.integration-visual::before {
  content: "";
  position: absolute;
  width: 410px;
  height: 410px;
  top: 105px;
  left: calc(50% - 205px);
  border: 1px solid rgba(85, 142, 250, .12);
  border-radius: 50%;
  box-shadow:
    0 0 0 52px rgba(91, 128, 230, .025),
    0 0 0 108px rgba(91, 128, 230, .015);
}

.integration-core {
  position: absolute;
  z-index: 4;
  width: 148px;
  height: 148px;
  top: 236px;
  left: calc(50% - 74px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(90, 186, 255, .4);
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(25, 126, 239, .85), rgba(99, 59, 224, .82));
  box-shadow: 0 0 80px rgba(47, 102, 255, .38), inset 0 1px rgba(255,255,255,.22);
}

.integration-core > span {
  font-size: 31px;
  font-weight: 850;
}

.integration-core strong {
  margin-top: 8px;
  font-size: 13px;
}

.integration-core small {
  margin-top: 3px;
  color: rgba(234, 242, 255, .62);
  font-size: 8px;
}

.integration-node {
  position: absolute;
  z-index: 3;
  min-width: 145px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid rgba(112, 146, 208, .17);
  border-radius: 14px;
  background: rgba(11, 19, 40, .82);
  box-shadow: 0 15px 35px rgba(0,0,0,.26);
  backdrop-filter: blur(15px);
}

.integration-node > i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #77d9ff;
  background: linear-gradient(145deg, rgba(34, 127, 226, .24), rgba(94, 58, 208, .2));
  font-size: 12px;
  font-weight: 800;
  font-style: normal;
}

.integration-node strong,
.integration-node small {
  display: block;
}

.integration-node strong {
  color: #dce6f7;
  font-size: 10px;
}

.integration-node small {
  margin-top: 3px;
  color: #61718d;
  font-size: 8px;
}

.node-crm { top: 70px; left: 20px; }
.node-erp { top: 58px; right: 20px; }
.node-calendar { top: 275px; left: -12px; }
.node-helpdesk { top: 272px; right: -20px; }
.node-api { left: 55px; bottom: 45px; }
.node-phone { right: 45px; bottom: 52px; }

.connection-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.connection-lines i {
  position: absolute;
  width: 185px;
  height: 1px;
  top: 307px;
  left: calc(50% - 92px);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, rgba(62, 159, 255, .55), transparent);
  box-shadow: 0 0 9px rgba(66, 151, 255, .22);
}

.connection-lines i:nth-child(1) { transform: rotate(225deg) translateX(127px); }
.connection-lines i:nth-child(2) { transform: rotate(315deg) translateX(127px); }
.connection-lines i:nth-child(3) { transform: rotate(180deg) translateX(127px); }
.connection-lines i:nth-child(4) { transform: rotate(0deg) translateX(127px); }
.connection-lines i:nth-child(5) { transform: rotate(135deg) translateX(127px); }
.connection-lines i:nth-child(6) { transform: rotate(45deg) translateX(127px); }

.integration-points {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 45px;
}

.integration-points > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.integration-points > div > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(84, 150, 241, .25);
  border-radius: 8px;
  color: #65bfff;
  background: rgba(33, 106, 205, .1);
  font-family: "Geologica", sans-serif;
  font-size: 8px;
}

.integration-points p {
  margin: 0;
  color: #718098;
  font-size: 12px;
  line-height: 1.62;
}

.integration-points strong {
  display: block;
  margin-bottom: 5px;
  color: #d6dfef;
  font-size: 13px;
}

/* Deployment */

.deployment-section {
  background: #f5f8fc;
  color: #0c1322;
}

.deployment-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 75px;
}

.deployment-steps article {
  min-height: 300px;
  padding: 0 25px;
  border-left: 1px solid #dce3ed;
}

.deployment-steps article:last-child {
  border-right: 1px solid #dce3ed;
}

.step-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
}

.step-line span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid #cbd7e7;
  border-radius: 50%;
  color: #6f829d;
  background: white;
  font-family: "Geologica", sans-serif;
  font-size: 9px;
}

.deployment-steps article:first-child .step-line span {
  border-color: #228ff4;
  color: white;
  background: linear-gradient(145deg, #119cf3, #5a55ef);
  box-shadow: 0 0 0 6px rgba(38, 139, 245, .08);
}

.step-line i {
  flex: 1;
  height: 1px;
  background: #d9e1ec;
}

.deployment-steps article > small {
  color: #1886ea;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.deployment-steps h3 {
  min-height: 50px;
  margin: 12px 0 14px;
  font-size: 17px;
  letter-spacing: -.02em;
}

.deployment-steps p {
  margin: 0;
  color: #718096;
  font-size: 12px;
  line-height: 1.7;
}

/* Control */

.control-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(30, 115, 250, .14), transparent 27%),
    #050812;
}

.control-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 85px;
}

.control-copy {
  position: sticky;
  top: 50px;
  align-self: start;
}

.control-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.control-cards article {
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(128, 150, 198, .14);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
}

.control-cards article > span {
  color: #4a5b77;
  font-family: "Geologica", sans-serif;
  font-size: 9px;
}

.control-cards article > div {
  margin-top: 78px;
}

.control-cards h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.control-cards p {
  margin: 0;
  color: #748198;
  font-size: 12px;
  line-height: 1.7;
}

/* FAQ */

.faq-section {
  background: #f4f7fb;
  color: #0c1322;
}

.faq-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 95px;
}

.faq-intro {
  position: sticky;
  top: 50px;
  align-self: start;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 35px;
  color: #217fd7;
  font-size: 12px;
  font-weight: 700;
}

.text-link span {
  transition: transform .2s;
}

.text-link:hover span {
  transform: translateX(4px);
}

.faq-list {
  border-top: 1px solid #d5deea;
}

.faq-list details {
  border-bottom: 1px solid #d5deea;
}

.faq-list summary {
  min-height: 92px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 15px;
  align-items: center;
  cursor: pointer;
  color: #152033;
  font-size: 15px;
  font-weight: 680;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  color: #8b9ab0;
  font-family: "Geologica", sans-serif;
  font-size: 9px;
  font-weight: 400;
}

.faq-list summary > i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #d5deea;
  border-radius: 9px;
  color: #54708f;
  background: white;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  transition: color .2s, border-color .2s, background .2s;
}

.faq-list summary > i::before {
  content: "+";
}

.faq-list details[open] summary > i {
  border-color: #85b8ec;
  color: #1687ee;
  background: #f3f8ff;
}

.faq-list details[open] summary > i::before {
  content: "−";
}

.faq-list details > p {
  margin: -9px 40px 29px 49px;
  color: #6c788b;
  font-size: 13px;
  line-height: 1.75;
}

/* Demo CTA */

.demo-section {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 86, 226, .19), transparent 38%),
    linear-gradient(145deg, #030712, #080c1b);
}

.demo-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(103, 135, 202, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 135, 202, .07) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

.demo-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.demo-orb-one {
  width: 290px;
  height: 290px;
  left: 5%;
  top: 18%;
  background: rgba(21, 150, 244, .15);
}

.demo-orb-two {
  width: 300px;
  height: 300px;
  right: 6%;
  bottom: 8%;
  background: rgba(104, 53, 236, .13);
}

.demo-inner {
  position: relative;
  z-index: 2;
  padding-block: 110px;
  text-align: center;
}

.demo-inner .section-eyebrow {
  justify-content: center;
}

.demo-inner h2 {
  font-size: clamp(54px, 7vw, 96px);
}

.demo-inner h2 span {
  color: transparent;
  background: linear-gradient(100deg, #68ddff, #4d8cff 50%, #9a68ff);
  background-clip: text;
  -webkit-background-clip: text;
}

.demo-inner > p {
  max-width: 660px;
  margin: 28px auto 0;
  color: #8795ad;
  font-size: 16px;
  line-height: 1.7;
}

.demo-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 37px;
}

.button-large {
  min-height: 59px;
  padding-inline: 28px;
}

.demo-promises {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 27px;
  color: #64728a;
  font-size: 10px;
}

.demo-promises span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.demo-promises i {
  color: #50d8af;
  font-style: normal;
}

/* Footer */

.site-footer {
  background: #02040a;
  color: #dce5f6;
}

.footer-top {
  min-height: 340px;
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 90px;
  align-items: start;
  padding-block: 70px;
}

.footer-brand img {
  width: 230px;
}

.footer-brand p {
  margin: 24px 0 0;
  color: #6f7b91;
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: .7fr 1.55fr 1.05fr;
  gap: 40px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: #7e8da6;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-links a {
  color: #a7b3c8;
  font-size: 12px;
  transition: color .2s;
}

.footer-links a:hover {
  color: #6fd6ff;
}

.footer-place {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-bottom: 16px;
}

.footer-place + .footer-place {
  padding-top: 4px;
  border-top: 1px solid rgba(123, 150, 204, .12);
}

.footer-place b,
.footer-company p:first-of-type {
  color: #e8eefc;
  font-size: 13px;
  font-weight: 650;
}

.footer-place p,
.footer-company p {
  margin: 0;
  color: #8b98af;
  font-size: 12px;
  line-height: 1.65;
}

.footer-place a {
  width: fit-content;
  color: #9ecbff;
  font-weight: 650;
}

.footer-powered {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 88px;
  padding-block: 18px;
  border-top: 1px solid rgba(123, 150, 204, .12);
}

.footer-powered > span {
  flex: 0 0 auto;
  color: #c5d4ee;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-powered-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.powered-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  padding: 10px 15px;
  border: 1px solid rgba(168, 198, 255, .28);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: inset 0 1px rgba(255,255,255,.08);
  transition: border-color .2s, background .2s, transform .2s;
}

.powered-logo:hover {
  transform: translateY(-2px);
  border-color: rgba(130, 210, 255, .55);
  background: rgba(255,255,255,.08);
}

.powered-logo img {
  display: block;
  width: auto;
  height: 32px;
  max-width: 168px;
}

.powered-noetic img {
  height: 36px;
  max-width: 196px;
}

.powered-softweb img {
  height: 31px;
  max-width: 175px;
}

.footer-bottom {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid rgba(123, 150, 204, .12);
  color: #46536a;
  font-size: 9px;
}

.footer-bottom span:nth-child(2) {
  text-align: center;
}

.footer-bottom a {
  justify-self: end;
  color: #65738a;
}

/* Responsive long-form */

@media (max-width: 1080px) {
  .section { padding-block: 105px; }
  .main-nav { gap: 20px; }
  .journey-grid,
  .experience-grid,
  .integrations-grid { gap: 40px; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-wrap { grid-template-columns: .8fr 1.2fr; gap: 45px; }
  .integration-visual { transform: scale(.9); transform-origin: center; }
  .control-grid,
  .faq-grid { gap: 48px; }
}

@media (max-width: 900px) {
  .section { padding-block: 88px; }
  .manifesto-grid,
  .journey-grid,
  .experience-grid,
  .comparison-wrap,
  .integrations-grid,
  .control-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .manifesto-index { display: none; }
  .manifesto-details { margin-left: 0; }
  .journey-grid { margin-top: 55px; }
  .journey-console { min-height: 540px; }
  .experience-grid { gap: 55px; }
  .use-cases-intro { grid-template-columns: 1fr; gap: 32px; }
  .availability-card { width: min(100%, 320px); }
  .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-grid article {
    min-height: auto;
    display: grid;
    grid-template-columns: 180px 1fr;
    column-gap: 35px;
    padding: 36px;
    border-right: 1px solid rgba(132, 158, 212, .14);
    border-bottom: 1px solid rgba(132, 158, 212, .14);
  }
  .impact-grid article:last-child { border-bottom: 0; }
  .impact-grid h3 { margin: 5px 0 8px; }
  .impact-grid p { grid-column: 2; }
  .comparison-title,
  .control-copy,
  .faq-intro { position: static; }
  .integration-visual { order: 2; transform: none; }
  .integrations-copy { order: 1; }
  .deployment-steps { grid-template-columns: repeat(2, 1fr); gap: 45px 0; }
  .deployment-steps article:nth-child(3) { border-left: 1px solid #dce3ed; }
  .control-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 650px) {
  .section { padding-block: 76px; }
  .section-heading h2,
  .comparison-title h2 { font-size: 40px; }
  .section-heading > p { font-size: 15px; }
  .oversized-copy { font-size: 36px; }
  .manifesto-details { grid-template-columns: 1fr; gap: 20px; margin-top: 38px; }
  .solutions-grid,
  .use-cases-grid,
  .control-cards { grid-template-columns: 1fr; }
  .solution-card { min-height: 310px; }
  .voice-lab { min-height: 520px; padding: 17px; }
  .voice-settings { grid-template-columns: 1fr; }
  .voice-settings > div { display: flex; align-items: center; justify-content: space-between; }
  .use-cases-grid article { min-height: 235px; }
  .impact-grid article {
    grid-template-columns: 1fr;
    padding: 33px 25px;
  }
  .impact-grid p { grid-column: 1; }
  .impact-value { font-size: 61px; }
  .comparison-head span { padding: 14px 12px; font-size: 8px; }
  .comparison-row > span {
    min-height: 92px;
    align-items: flex-start;
    padding: 17px 11px;
    font-size: 10px;
    line-height: 1.45;
  }
  .comparison-row i { display: none; }
  .integration-visual {
    min-height: 560px;
    width: 560px;
    left: 50%;
    transform: translateX(-50%) scale(.65);
    transform-origin: center;
    margin-block: -90px;
  }
  .deployment-steps { grid-template-columns: 1fr; gap: 36px; }
  .deployment-steps article,
  .deployment-steps article:last-child {
    min-height: auto;
    padding: 0 15px 35px;
    border-right: 0;
    border-bottom: 1px solid #dce3ed;
  }
  .step-line { margin-bottom: 28px; }
  .deployment-steps h3 { min-height: auto; }
  .control-cards article { min-height: 220px; }
  .faq-list summary { min-height: 88px; font-size: 13px; }
  .faq-list details > p { margin-left: 0; margin-right: 0; }
  .demo-section { min-height: 650px; }
  .demo-inner h2 { font-size: 54px; }
  .demo-actions .button { width: 100%; }
  .demo-promises { flex-direction: column; align-items: center; gap: 9px; }
  .footer-links { grid-template-columns: 1fr; row-gap: 36px; }
  .footer-links > div:last-child { grid-column: auto; }
  .footer-powered {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-height: 0;
    padding-block: 28px;
  }
  .powered-logo { min-height: 49px; }
  .powered-noetic img { height: 31px; }
  .powered-softweb img { height: 27px; }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-block: 25px;
    text-align: center;
  }
  .footer-bottom a,
  .footer-bottom span:nth-child(2) { justify-self: center; }
}
