@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --navy-950: #181d25;
  --navy-900: #202733;
  --navy-800: #293241;
  --navy-700: #374151;
  --ink: #181d25;
  --ink-soft: #4b5563;
  --muted: #6a7181;
  --line: #dfe3eb;
  --line-dark: rgba(255, 255, 255, 0.12);
  --white: #ffffff;
  --paper: #ffffff;
  --sand: #f3f4f6;
  --mint: #0068f0;
  --mint-strong: #0057cc;
  --mint-soft: #d6f0ff;
  --blue: #0068f0;
  --blue-soft: #e3f4ff;
  --coral: #ff6c61;
  --amber: #ffbe55;
  --violet: #8f79ff;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 10px 30px rgba(14, 23, 62, 0.08);
  --shadow-lg: 0 32px 90px rgba(2, 9, 40, 0.3);
  --container: 1200px;
  --display: "Inter", "Segoe UI", sans-serif;
  --body: "Inter", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
}

h3 {
  font-size: 1.35rem;
}

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

::selection {
  color: rgba(255, 255, 255, 0.78);
  background: var(--mint);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.section--sand {
  background: var(--sand);
}

.section--navy {
  color: var(--white);
  background: var(--navy-950);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--navy-950);
  background: var(--mint);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #dce4ff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--mint);
}

.eyebrow--dark {
  color: var(--navy-700);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 100px;
  color: var(--navy-950);
  background: var(--mint);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(34, 226, 169, 0.22);
}

.button--small {
  min-height: 42px;
  padding-inline: 19px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.site-header .button--small:hover {
  color: var(--white);
}

.button--hero {
  color: rgba(255, 255, 255, 0.78);
  background: var(--mint);
  box-shadow: 0 12px 36px rgba(48, 226, 173, 0.18);
}

.button--hero svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.button--dark {
  color: var(--white);
  background: var(--navy-900);
}

.button--dark:hover {
  box-shadow: 0 12px 30px rgba(11, 22, 71, 0.18);
}

.button--outline {
  color: var(--navy-900);
  border-color: var(--line);
  background: transparent;
}

.button--outline:hover {
  border-color: var(--navy-900);
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(11, 22, 71, 0.25);
  text-underline-offset: 6px;
}

.text-link:hover {
  text-decoration-color: var(--mint-strong);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 58px;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

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

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(7, 16, 47, 0.9);
  box-shadow: 0 14px 40px rgba(3, 8, 28, 0.18);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 9px;
  line-height: 1;
}

.brand__logo {
  width: 148px;
  height: auto;
}

.brand > span > span {
  color: var(--mint);
}

.brand__mark {
  width: 37px;
  fill: none;
  stroke: var(--mint);
  stroke-width: 3;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 38px);
  margin-left: auto;
}

.nav__links a,
.nav__login {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.83rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav__links a:hover,
.nav__login:hover {
  color: var(--white);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__mobile-actions {
  display: none;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 4px;
  border-radius: 99px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 42px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--navy-950);
  background-size: 62px 62px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 190px;
  background: linear-gradient(transparent, rgba(8, 16, 47, 0.72));
  content: "";
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.hero__glow--one {
  top: 60px;
  left: -220px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 112, 255, 0.25), transparent 68%);
}

.hero__glow--two {
  top: 170px;
  right: -120px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(31, 222, 165, 0.16), transparent 66%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 670px;
  align-items: center;
  grid-template-columns: minmax(420px, 0.88fr) minmax(580px, 1.2fr);
  gap: clamp(36px, 5vw, 80px);
}

.hero__copy {
  padding-bottom: 50px;
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 5.6vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.055em;
}

.hero h1 em {
  display: block;
  color: var(--mint);
  font-family: inherit;
  font-style: normal;
}

.hero__lead {
  max-width: 630px;
  margin-bottom: 34px;
  color: #c9d0e8;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 26px 0 0;
  padding: 0;
  color: #aab3d1;
  font-size: 0.78rem;
  font-weight: 700;
  list-style: none;
}

.hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__proof span {
  color: var(--mint);
}

.product-stage {
  position: relative;
  min-width: 0;
  padding: 55px 0 65px;
  perspective: 1400px;
}

.product-stage__real {
  position: relative;
  z-index: 2;
  width: 720px;
  height: auto;
  max-width: 100%;
  margin-left: auto;
  border: 1px solid rgba(0, 104, 240, 0.22);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(0, 43, 102, 0.28);
  transform: rotateY(-3deg) rotateX(1deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-stage:hover .product-stage__real {
  transform: rotateY(0) rotateX(0) translateY(-4px);
}

.app-window--legacy {
  display: none;
}

.product-stage__orbit {
  position: absolute;
  border: 1px solid rgba(49, 226, 173, 0.18);
  border-radius: 50%;
}

.product-stage__orbit--one {
  inset: -30px -110px -40px 5%;
  transform: rotate(-12deg);
}

.product-stage__orbit--two {
  inset: 50px -30px 10px 22%;
  border-color: rgba(52, 120, 255, 0.18);
  transform: rotate(17deg);
}

.app-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 690px;
  max-width: 100%;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: var(--ink);
  background: #f8faff;
  box-shadow: var(--shadow-lg);
  transform: rotateY(-3deg) rotateX(1deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-stage:hover .app-window {
  transform: rotateY(0) rotateX(0) translateY(-4px);
}

.app-window__topbar {
  display: grid;
  height: 34px;
  align-items: center;
  padding: 0 12px;
  color: #8b91a6;
  background: #eef1f8;
  font-size: 0.48rem;
  grid-template-columns: 1fr auto 1fr;
}

.app-window__topbar > span {
  font-weight: 700;
}

.app-window__topbar small {
  justify-self: end;
  font-size: 0.43rem;
}

.app-window__traffic {
  display: flex;
  gap: 4px;
}

.app-window__traffic i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff7a75;
}

.app-window__traffic i:nth-child(2) {
  background: #ffc65d;
}

.app-window__traffic i:nth-child(3) {
  background: #3ed5a5;
}

.app-window__body {
  display: grid;
  height: 435px;
  grid-template-columns: 38px 174px minmax(240px, 1fr) 142px;
}

.app-sidebar {
  display: flex;
  align-items: center;
  padding: 8px 7px;
  background: var(--navy-900);
  flex-direction: column;
  gap: 17px;
}

.app-sidebar__logo {
  display: grid;
  width: 23px;
  height: 23px;
  margin-bottom: 8px;
  border-radius: 7px;
  color: var(--navy-950);
  background: var(--mint);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 900;
  place-items: center;
}

.app-sidebar > span {
  width: 17px;
  height: 17px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
}

.app-sidebar > span.is-active {
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(49, 226, 173, 0.12);
}

.app-sidebar > .app-sidebar__bottom {
  margin-top: auto;
  border-radius: 50%;
  background: #4078e6;
}

.inbox-panel {
  min-width: 0;
  border-right: 1px solid #e4e7ef;
  background: #fff;
}

.inbox-panel__heading {
  display: flex;
  height: 63px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
}

.inbox-panel__heading div {
  display: flex;
  line-height: 1.2;
  flex-direction: column;
}

.inbox-panel__heading small,
.context-panel small,
.chat-panel__heading small {
  color: #9aa0b1;
  font-size: 0.45rem;
}

.inbox-panel__heading strong {
  font-size: 0.8rem;
}

.inbox-panel__heading button {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  color: var(--navy-950);
  background: var(--mint);
  font-size: 0.8rem;
}

.inbox-panel__search {
  height: 27px;
  margin: 0 10px 8px;
  padding: 6px 9px;
  border-radius: 7px;
  color: #9da4b7;
  background: #f2f4f8;
  font-size: 0.5rem;
}

.inbox-panel__filters {
  display: flex;
  gap: 10px;
  padding: 0 11px 10px;
  color: #9aa0b1;
  font-size: 0.46rem;
}

.inbox-panel__filters b {
  color: var(--navy-900);
}

.conversation {
  display: grid;
  min-width: 0;
  height: 58px;
  align-items: center;
  padding: 8px 9px;
  border-top: 1px solid #f0f1f5;
  grid-template-columns: 29px minmax(0, 1fr) auto;
  gap: 7px;
}

.conversation.is-active {
  background: #eefcf7;
  box-shadow: inset 2px 0 var(--mint-strong);
}

.avatar {
  display: grid;
  flex: none;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  color: #0b3250;
  font-size: 0.48rem;
  font-style: normal;
  font-weight: 800;
  place-items: center;
}

.avatar--mint {
  background: #b7f2df;
}

.avatar--blue {
  color: #17366b;
  background: #c9dcff;
}

.avatar--amber {
  color: #6e4410;
  background: #ffe2aa;
}

.avatar--violet {
  color: #463a77;
  background: #ded7ff;
}

.conversation > div {
  min-width: 0;
  line-height: 1.25;
}

.conversation strong,
.conversation small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.conversation strong {
  font-size: 0.54rem;
}

.conversation small {
  color: #8c93a7;
  font-size: 0.44rem;
}

.conversation time {
  align-self: start;
  color: #adb2c1;
  font-size: 0.4rem;
}

.chat-panel {
  display: flex;
  min-width: 0;
  background: #f6f8fb;
  flex-direction: column;
}

.chat-panel__heading {
  display: grid;
  height: 63px;
  align-items: center;
  padding: 9px 12px;
  border-bottom: 1px solid #e6e8ef;
  background: #fff;
  grid-template-columns: 30px 1fr auto;
  gap: 8px;
}

.chat-panel__heading div {
  display: flex;
  line-height: 1.2;
  flex-direction: column;
}

.chat-panel__heading strong {
  font-size: 0.58rem;
}

.chat-panel__heading small span {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 3px;
  border-radius: 50%;
  background: var(--mint-strong);
}

.chat-panel__heading > b {
  color: #9299ac;
  font-size: 0.58rem;
}

.chat-panel__body {
  display: flex;
  flex: 1;
  align-items: flex-start;
  padding: 12px;
  flex-direction: column;
  gap: 8px;
}

.chat-date {
  align-self: center;
  padding: 3px 7px;
  border-radius: 99px;
  color: #9198aa;
  background: #e8ebf1;
  font-size: 0.4rem;
}

.bubble {
  position: relative;
  max-width: 82%;
  padding: 8px 9px 12px;
  border-radius: 8px;
  font-size: 0.5rem;
  line-height: 1.45;
  box-shadow: 0 3px 8px rgba(20, 30, 70, 0.04);
}

.bubble small {
  position: absolute;
  right: 6px;
  bottom: 3px;
  color: #969cad;
  font-size: 0.34rem;
}

.bubble--client {
  color: #535b70;
  background: #fff;
}

.bubble--agent {
  align-self: flex-end;
  color: #204d45;
  background: #d9f8ed;
}

.bubble--short {
  max-width: 72%;
}

.handoff-card {
  display: flex;
  align-self: center;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid #e4e7ee;
  border-radius: 8px;
  color: #596176;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.42rem;
  line-height: 1.3;
}

.handoff-card i {
  display: grid;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  color: var(--navy-900);
  background: var(--mint-soft);
  font-size: 0.6rem;
  font-style: normal;
  place-items: center;
}

.handoff-card div {
  display: flex;
  flex-direction: column;
}

.handoff-card small {
  color: #9ba1b2;
  font-size: 0.36rem;
}

.chat-panel__composer {
  display: flex;
  height: 43px;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-top: 1px solid #e6e8ef;
  background: #fff;
}

.chat-panel__composer span {
  color: #8f96aa;
  font-size: 0.8rem;
}

.chat-panel__composer p {
  flex: 1;
  margin: 0;
  padding: 5px 8px;
  border-radius: 6px;
  color: #abb0bf;
  background: #f2f4f8;
  font-size: 0.44rem;
}

.chat-panel__composer b {
  display: grid;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  color: var(--navy-900);
  background: var(--mint);
  font-size: 0.56rem;
  place-items: center;
}

.context-panel {
  border-left: 1px solid #e4e7ef;
  background: #fff;
}

.context-panel__contact {
  display: flex;
  height: 105px;
  align-items: center;
  justify-content: center;
  padding: 13px;
  border-bottom: 1px solid #edf0f4;
  line-height: 1.25;
  flex-direction: column;
}

.context-panel__contact .avatar {
  width: 38px;
  height: 38px;
  margin-bottom: 7px;
}

.context-panel__contact strong {
  font-size: 0.57rem;
}

.context-block {
  padding: 12px;
  border-bottom: 1px solid #edf0f4;
}

.context-block > small {
  display: block;
  margin-bottom: 7px;
  font-size: 0.38rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.context-block > div {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.48rem;
  line-height: 1.25;
}

.context-block .avatar {
  width: 25px;
  height: 25px;
}

.context-block p {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
}

.context-block p b {
  padding: 3px 5px;
  border-radius: 4px;
  color: #1f6f5d;
  background: var(--mint-soft);
  font-size: 0.38rem;
}

.context-block p b.is-soft {
  color: #4c5f8e;
  background: var(--blue-soft);
}

.context-block--metric strong,
.context-block--metric span {
  display: block;
}

.context-block--metric strong {
  font-size: 1.05rem;
}

.context-block--metric span {
  color: var(--mint-strong);
  font-size: 0.39rem;
  font-weight: 700;
}

.stage-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  color: var(--white);
  background: rgba(17, 30, 91, 0.78);
  box-shadow: 0 18px 38px rgba(2, 8, 35, 0.25);
  line-height: 1.25;
  backdrop-filter: blur(12px);
  animation: stage-float 5s ease-in-out infinite;
}

.stage-note--top {
  top: 16px;
  right: -14px;
}

.stage-note--bottom {
  bottom: 20px;
  left: -28px;
  animation-delay: -2.5s;
}

.stage-note > i {
  display: grid;
  width: 27px;
  height: 27px;
  border-radius: 8px;
  color: var(--navy-950);
  background: var(--mint);
  font-size: 0.68rem;
  font-style: normal;
  place-items: center;
}

.stage-note span {
  display: flex;
  flex-direction: column;
}

.stage-note small {
  color: #aab6da;
  font-size: 0.42rem;
}

.stage-note strong {
  font-size: 0.53rem;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 74px;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  grid-template-columns: 0.7fr 2fr;
  gap: 30px;
}

.trust-strip p {
  margin: 0;
  color: #8f99bb;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-strip div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.trust-strip span {
  color: #d4daf0;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 650;
}

/* Definition */
.definition {
  background: var(--white);
}

.definition__grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(50px, 8vw, 120px);
}

.definition .section-heading {
  margin-bottom: 0;
}

.definition__content {
  padding-left: 34px;
  border-left: 3px solid var(--mint);
}

.definition__content p {
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.75;
}

.definition__content strong {
  color: var(--ink);
}

/* Search-intent content */
.search-intents {
  border-block: 1px solid var(--line);
}

.search-intents__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 8vw, 110px);
}

.search-intents .section-heading {
  position: sticky;
  top: 120px;
}

.search-intents .section-heading > p:last-child {
  margin-top: 24px;
  color: var(--muted);
}

.search-intents__content {
  display: grid;
  gap: 14px;
}

.search-intents__content article,
.search-intents__note {
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.search-intents__content h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.search-intents__content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.search-intents__content strong {
  color: var(--ink);
  font-weight: 650;
}

.search-intents__note {
  border-color: rgba(0, 104, 240, 0.24);
  background: var(--blue-soft);
}

/* Friction */
.friction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.friction-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 34px;
  border: 1px solid rgba(10, 20, 60, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.friction-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.friction-card__number {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(11, 22, 71, 0.1);
  font-family: var(--display);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
}

.icon-box {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 64px;
  border-radius: 17px;
  font-size: 1.3rem;
  font-weight: 800;
  place-items: center;
  transform: rotate(-4deg);
}

.icon-box--coral {
  color: #8d312b;
  background: #ffdcd8;
}

.icon-box--amber {
  color: #795217;
  background: #ffe8bd;
}

.icon-box--blue {
  color: #204c9b;
  background: #dce7ff;
}

.friction-card h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.friction-card p {
  margin: 0;
  color: var(--muted);
}

/* Workflow */
.workflow {
  background: var(--white);
}

.workflow__grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(60px, 9vw, 140px);
}

.workflow__sticky {
  position: sticky;
  top: 130px;
}

.workflow__sticky h2 {
  max-width: 480px;
}

.workflow__sticky > p:not(.eyebrow) {
  max-width: 460px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.05rem;
}

.workflow__steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-step {
  display: grid;
  min-height: 270px;
  align-items: start;
  padding: 32px 0 46px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 44px minmax(220px, 1fr) 210px;
  gap: 22px;
}

.workflow-step:first-child {
  border-top: 1px solid var(--line);
}

.workflow-step > span {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--mint-soft);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  place-items: center;
}

.workflow-step h3 {
  margin: 7px 0 12px;
  font-size: 1.48rem;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.workflow-visual {
  position: relative;
  display: flex;
  height: 170px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e1e5ed;
  border-radius: 18px;
  background:
    linear-gradient(rgba(13, 24, 73, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 24, 73, 0.035) 1px, transparent 1px),
    #f7f9fc;
  background-size: 18px 18px;
}

.workflow-visual i {
  display: grid;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 800;
  place-items: center;
}

.workflow-visual--connect b {
  width: 45px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--mint-strong));
}

.workflow-visual .phone-icon {
  color: var(--white);
  background: var(--blue);
}

.workflow-visual .brand-dot {
  color: var(--navy-950);
  background: var(--mint);
}

.workflow-visual--people {
  gap: 8px;
}

.workflow-visual--people i {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #173e34;
  background: #c9f7e8;
  font-size: 0.66rem;
}

.workflow-visual--people i:nth-child(2) {
  margin-top: 38px;
  color: #173d7b;
  background: #d7e4ff;
}

.workflow-visual--people i:nth-child(3) {
  color: #70521f;
  background: #ffe8bc;
}

.workflow-visual--people small {
  position: absolute;
  bottom: 17px;
  color: #9098ab;
  font-size: 0.48rem;
}

.workflow-visual--flow {
  gap: 6px;
}

.workflow-visual--flow i {
  width: 43px;
  height: 43px;
  border-radius: 13px;
  color: var(--navy-900);
  background: var(--mint-soft);
  font-size: 0.72rem;
}

.workflow-visual--flow i:nth-of-type(2) {
  background: var(--blue-soft);
}

.workflow-visual--flow i:nth-of-type(3) {
  background: #fff0d4;
}

.workflow-visual--flow b {
  color: #96a0b7;
  font-weight: 500;
}

/* Feature grid */
.features {
  position: relative;
  overflow: hidden;
}

.features::before {
  position: absolute;
  top: -260px;
  right: -230px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 226, 173, 0.13), transparent 70%);
  content: "";
}

.features .section-heading {
  position: relative;
}

.features .section-heading > p:last-child {
  color: #aab4d0;
}

.feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.feature-card__shot {
  width: 100%;
  margin-top: 24px;
  border: 1px solid rgba(0, 104, 240, 0.25);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 40, 92, 0.2);
}

.feature-card--wide .feature-card__shot {
  min-height: 250px;
  object-fit: cover;
  object-position: top left;
}

.feature-card__shot + .team-visual,
.feature-card__shot + .mini-flow,
.feature-card__shot + .tag-cloud {
  display: none;
}

.feature-card:hover {
  border-color: rgba(49, 226, 173, 0.32);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.feature-card--wide {
  display: grid;
  min-height: 370px;
  grid-column: 1 / -1;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}

.feature-card__tag {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 10px;
  border: 1px solid rgba(49, 226, 173, 0.23);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(49, 226, 173, 0.08);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.feature-card h3 {
  max-width: 470px;
  margin-bottom: 15px;
  font-size: clamp(1.65rem, 2.6vw, 2.5rem);
}

.feature-card p {
  max-width: 520px;
  margin: 0;
  color: #aab4d0;
}

.team-visual {
  position: relative;
  min-height: 300px;
}

.team-visual__line {
  position: absolute;
  inset: 48% 12% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(49, 226, 173, 0.6), transparent);
}

.team-node {
  position: absolute;
  display: grid;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  color: var(--navy-950);
  background: var(--mint);
  box-shadow: 0 16px 30px rgba(5, 12, 45, 0.25);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 900;
  place-items: center;
}

.team-node small {
  position: absolute;
  top: 77px;
  color: #bac4df;
  font-size: 0.55rem;
  font-weight: 700;
  white-space: nowrap;
}

.team-node--main {
  z-index: 2;
  top: calc(50% - 34px);
  left: calc(50% - 34px);
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 0 0 18px rgba(52, 120, 255, 0.1), 0 0 0 38px rgba(52, 120, 255, 0.05);
}

.team-node--one {
  top: 20px;
  right: 9%;
}

.team-node--two {
  bottom: 20px;
  left: 14%;
  background: #dce7ff;
}

.team-node--three {
  right: 13%;
  bottom: 12px;
  background: #ffe6b6;
}

.mini-flow,
.tag-cloud,
.integration-mini {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-flow i,
.tag-cloud i,
.integration-mini i {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 9px;
  color: #dbe2f6;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 700;
}

.mini-flow b {
  color: var(--mint);
  font-weight: 500;
}

.tag-cloud,
.integration-mini {
  flex-wrap: wrap;
}

.tag-cloud i:nth-child(1),
.integration-mini i:nth-child(3) {
  color: var(--navy-950);
  border-color: var(--mint);
  background: var(--mint);
}

.chart-mini {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: flex;
  height: 75px;
  align-items: flex-end;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.chart-mini i {
  width: 100%;
  height: var(--h);
  border-radius: 5px 5px 0 0;
  background: linear-gradient(var(--mint), rgba(49, 226, 173, 0.25));
}

/* Comparison */
.comparison {
  background: var(--white);
}

.comparison__grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.74fr 1.26fr;
  gap: clamp(50px, 8vw, 120px);
}

.comparison .section-heading {
  position: sticky;
  top: 130px;
  margin: 0;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.comparison-table__head,
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison-table__head {
  color: var(--white);
  background: var(--navy-900);
}

.comparison-table__head span {
  padding: 18px 22px;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
}

.comparison-table__head span:last-child {
  color: var(--navy-950);
  background: var(--mint);
}

.comparison-row {
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border: 0;
}

.comparison-row p {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 18px 22px;
  color: var(--muted);
  font-size: 0.88rem;
}

.comparison-row p + p {
  border-left: 1px solid var(--line);
  color: var(--ink);
  background: #f1fff9;
  font-weight: 700;
}

.comparison-row i {
  display: grid;
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #9a4a45;
  background: #ffe7e4;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  place-items: center;
}

.comparison-row p + p i {
  color: #16644e;
  background: #c9f8e7;
}

/* Official API */
.official__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(60px, 9vw, 130px);
}

.official__copy > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.04rem;
}

.official__copy ul {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.official__copy li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.official__copy li span {
  color: var(--mint-strong);
}

.official__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 28px;
}

.official__links > a:not(.text-link) {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.official__links > a:not(.text-link):hover {
  color: var(--navy-800);
}

.official-card {
  overflow: hidden;
  border: 1px solid rgba(11, 22, 71, 0.1);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 26px 60px rgba(11, 22, 71, 0.1);
}

.official-card__top {
  display: grid;
  min-height: 96px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
}

.official-card__mark {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: var(--navy-950);
  background: var(--mint);
  font-family: var(--display);
  font-weight: 900;
  place-items: center;
}

.official-card__top > div {
  display: flex;
  line-height: 1.25;
  flex-direction: column;
}

.official-card__top small {
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.official-card__top strong {
  font-family: var(--display);
  font-size: 1rem;
}

.official-card__top > i {
  padding: 6px 9px;
  border-radius: 999px;
  color: #116148;
  background: var(--mint-soft);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 900;
}

.official-card__body {
  padding: 6px 24px;
}

.official-card__body > div {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #edf0f4;
}

.official-card__body > div:last-child {
  border: 0;
}

.official-card__body span {
  color: var(--muted);
  font-size: 0.78rem;
}

.official-card__body strong {
  font-size: 0.78rem;
  text-align: right;
}

.official-card > p {
  margin: 0;
  padding: 15px 24px;
  color: #555e74;
  background: #f6f8fb;
  font-size: 0.65rem;
}

/* AI */
.ai-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 50%, rgba(49, 226, 173, 0.13), transparent 30%),
    linear-gradient(120deg, var(--navy-950), var(--navy-800));
}

.ai-band__grid {
  display: grid;
  min-height: 480px;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 10vw, 150px);
}

.ai-orb {
  position: relative;
  display: grid;
  width: min(360px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 1px solid rgba(49, 226, 173, 0.25);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 226, 173, 0.12), transparent 62%);
  place-items: center;
}

.ai-orb::before,
.ai-orb::after,
.ai-orb__rings {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.ai-orb::before {
  inset: 42px;
}

.ai-orb::after {
  inset: 84px;
}

.ai-orb__rings {
  inset: -20px;
  border-style: dashed;
  animation: orbit-spin 22s linear infinite;
}

.ai-orb > strong {
  position: relative;
  z-index: 2;
  display: grid;
  width: 112px;
  height: 112px;
  border-radius: 30px;
  color: var(--navy-950);
  background: var(--mint);
  box-shadow: 0 0 0 16px rgba(49, 226, 173, 0.08), 0 22px 60px rgba(3, 11, 44, 0.4);
  font-family: var(--display);
  font-size: 2rem;
  place-items: center;
  transform: rotate(-6deg);
}

.ai-chip {
  position: absolute;
  z-index: 3;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #d7def2;
  background: rgba(17, 30, 91, 0.85);
  box-shadow: 0 10px 24px rgba(2, 8, 35, 0.25);
  font-size: 0.65rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.ai-chip--one {
  top: 18px;
  right: 45px;
}

.ai-chip--two {
  bottom: 46px;
  left: 8px;
}

.ai-chip--three {
  right: -12px;
  bottom: 86px;
}

.ai-band__copy h2 {
  max-width: 670px;
}

.ai-band__copy > p:not(.eyebrow) {
  max-width: 670px;
  color: #b9c2dc;
  font-size: 1.05rem;
}

.ai-band__copy ul {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  list-style: none;
}

.ai-band__copy li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d7def2;
  font-size: 0.85rem;
  font-weight: 700;
}

.ai-band__copy li span {
  color: var(--mint);
}

/* Plans */
.plan-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 500px;
  padding: 34px;
  border: 1px solid rgba(11, 22, 71, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  flex-direction: column;
}

.plan-card--featured {
  color: var(--white);
  border-color: var(--navy-900);
  background: var(--navy-900);
  box-shadow: 0 24px 50px rgba(11, 22, 71, 0.19);
  transform: translateY(-12px);
}

.plan-card__badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--mint);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.plan-card__kicker {
  margin-bottom: 12px;
  color: #08755b;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card--featured .plan-card__kicker {
  color: var(--mint);
}

.plan-card h3 {
  margin-bottom: 15px;
  font-size: 2.25rem;
}

.plan-card > p:not(.plan-card__kicker) {
  min-height: 92px;
  margin-bottom: 24px;
  color: var(--muted);
}

.plan-card--featured > p:not(.plan-card__kicker) {
  color: #bfc7df;
}

.plan-card ul {
  display: flex;
  margin: 0 0 34px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(11, 22, 71, 0.1);
  flex-direction: column;
  gap: 15px;
  list-style: none;
}

.plan-card--featured ul {
  border-color: rgba(255, 255, 255, 0.12);
}

.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 650;
}

.plan-card li span {
  color: var(--mint-strong);
}

.plan-card--featured li span {
  color: var(--mint);
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
}

.plan-card--featured .button--hero {
  color: rgba(255, 255, 255, 0.78);
}

.plans__note {
  max-width: 740px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

/* FAQ */
.faq {
  background: var(--white);
}

.faq__grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 9vw, 140px);
}

.faq__intro {
  position: sticky;
  top: 130px;
}

.faq__intro h2 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
}

.faq__intro > p:not(.eyebrow) {
  margin-bottom: 26px;
  color: var(--muted);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 4px;
  font-family: var(--display);
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  list-style: none;
}

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

.faq-item summary span {
  position: relative;
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mint-soft);
}

.faq-item summary span::before,
.faq-item summary span::after {
  position: absolute;
  top: 13px;
  left: 8px;
  width: 12px;
  height: 2px;
  background: var(--navy-900);
  content: "";
  transition: transform 0.25s ease;
}

.faq-item summary span::after {
  transform: rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: rotate(0);
}

.faq-item p {
  max-width: 720px;
  margin: -5px 40px 28px 4px;
  color: var(--muted);
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: var(--white);
  background: var(--navy-950);
}

.final-cta::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 880px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(49, 226, 173, 0.14), transparent 68%);
  content: "";
  transform: translate(-50%, -50%);
}

.final-cta__grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.final-cta__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.6vw, 5rem);
}

.final-cta__content > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 auto 34px;
  color: #b8c0da;
  font-size: 1.05rem;
}

.final-cta__content > div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* Footer */
.footer {
  color: #aeb6cf;
  background: #050b22;
}

.footer__top {
  display: grid;
  padding: 75px 0 58px;
  grid-template-columns: 1.6fr 0.65fr 0.8fr 0.9fr;
  gap: 56px;
}

.brand--footer {
  margin-bottom: 22px;
}

.footer__brand p {
  max-width: 340px;
  color: #7f89a8;
  font-size: 0.9rem;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__column h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer__column a {
  color: #8993b1;
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.footer__column a:hover,
.footer__bottom a:hover {
  color: var(--mint);
}

.footer__bottom {
  display: flex;
  min-height: 75px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #8f99b7;
  font-size: 0.7rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom div {
  display: flex;
  gap: 20px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 64px;
  height: 64px;
  padding: 4px;
  border: 2px solid #fff;
  border-radius: 18px;
  color: #fff;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 140, 126, 0.38), 0 0 0 0 rgba(37, 211, 102, 0.42);
  place-items: center;
  animation: whatsapp-attention 2.8s ease-out infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  background: #fff;
  box-shadow: 0 16px 38px rgba(18, 140, 126, 0.48);
  transform: translateY(-4px) scale(1.04);
}

.floating-whatsapp img {
  width: 100%;
  height: 100%;
  border-radius: 13px;
  object-fit: contain;
}

.floating-whatsapp span {
  position: absolute;
  right: calc(100% + 12px);
  width: max-content;
  padding: 9px 13px;
  border-radius: 10px;
  color: #fff;
  background: #128c7e;
  box-shadow: 0 9px 24px rgba(18, 140, 126, 0.25);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.floating-whatsapp span::after {
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  background: #128c7e;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

@keyframes whatsapp-attention {
  0%, 58%, 100% {
    box-shadow: 0 12px 30px rgba(18, 140, 126, 0.38), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  76% {
    box-shadow: 0 12px 30px rgba(18, 140, 126, 0.38), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* Motion */
@keyframes stage-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

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

@keyframes reveal-up {
  from {
    transform: translateY(18px);
  }
  to {
    transform: translateY(0);
  }
}

.reveal.is-visible {
  animation: reveal-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Responsive */
@media (max-width: 1120px) {
  .nav__links {
    gap: 18px;
  }

  .hero__grid {
    min-height: auto;
    padding-bottom: 58px;
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 780px;
    padding-bottom: 0;
  }

  .product-stage {
    width: 820px;
    max-width: 100%;
    margin-inline: auto;
  }

  .app-window {
    width: 780px;
    margin-inline: auto;
  }

  .app-window__body {
    height: 475px;
    grid-template-columns: 42px 195px minmax(270px, 1fr) 155px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    grid-template-columns: 42px 1fr;
  }

  .workflow-visual {
    min-height: 160px;
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 94px 0;
  }

  .nav__links {
    position: fixed;
    z-index: 98;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    background: rgba(7, 16, 47, 0.98);
    box-shadow: 0 24px 60px rgba(1, 6, 28, 0.35);
    flex-direction: column;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.95rem;
  }

  .nav__links > a:last-of-type {
    border: 0;
  }

  .nav__mobile-actions {
    display: grid;
    padding-top: 12px;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 10px;
  }

  .nav__mobile-actions a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 999px;
  }

  .nav__mobile-actions .button {
    color: rgba(255, 255, 255, 0.78);
    border-color: var(--mint) !important;
  }

  .nav__toggle {
    display: block;
  }

  .definition__grid,
  .search-intents__grid,
  .workflow__grid,
  .comparison__grid,
  .official__grid,
  .faq__grid,
  .ai-band__grid {
    grid-template-columns: 1fr;
  }

  .definition__grid,
  .workflow__grid,
  .comparison__grid,
  .faq__grid {
    gap: 50px;
  }

  .workflow__sticky,
  .search-intents .section-heading,
  .comparison .section-heading,
  .faq__intro {
    position: static;
  }

  .friction-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .friction-card {
    min-height: 270px;
  }

  .icon-box {
    margin-bottom: 44px;
  }

  .feature-card--wide {
    grid-template-columns: 1fr;
  }

  .team-visual {
    min-height: 260px;
  }

  .ai-band__grid {
    gap: 70px;
  }

  .plan-card--featured {
    transform: none;
  }

  .footer__top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* 404 */
.error-page {
  color: #fff;
  background: var(--navy-950);
}

.error-main {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  padding: 140px 0 70px;
  place-items: center;
}

.error-grid {
  position: absolute;
  inset: 0;
  opacity: .7;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, #000 22%, transparent 76%);
}

.error-orbit {
  position: absolute;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(0,104,240,.28);
  border-radius: 50%;
}

.error-orbit--one { top: 15%; right: -270px; }
.error-orbit--two { bottom: -480px; left: -170px; border-color: rgba(37,211,102,.2); }

.error-content {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  text-align: center;
}

.error-code {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(5rem, 13vw, 10.5rem);
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: .8;
}

.error-code i {
  display: grid;
  width: .74em;
  height: .6em;
  margin: 0 .13em;
  border: .055em solid var(--blue);
  border-radius: .16em .16em .16em .04em;
  color: var(--blue);
  font-size: .15em;
  font-style: normal;
  letter-spacing: .18em;
  place-items: center;
  transform: translateY(.12em);
}

.error-content .eyebrow { justify-content: center; }
.error-content h1 { margin: 18px 0; font-size: clamp(2.4rem, 5vw, 4.8rem); }
.error-lead { max-width: 640px; margin: 0 auto 30px; color: #b9c0ce; font-size: 1.03rem; }
.error-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

.error-links {
  display: grid;
  margin-top: 65px;
  text-align: left;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.error-links a {
  display: flex;
  min-height: 145px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.error-links a:hover { border-color: rgba(0,104,240,.7); background: rgba(0,104,240,.1); transform: translateY(-4px); }
.error-links small { color: var(--blue); font-weight: 800; }
.error-links strong { margin-top: auto; font-size: 1rem; }
.error-links span { margin-top: 5px; color: #929bac; font-size: .72rem; }

@media (max-width: 700px) {
  .error-main { padding-top: 115px; }
  .error-links { grid-template-columns: 1fr 1fr; margin-top: 45px; }
  .error-links a { min-height: 125px; }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .nav {
    height: 68px;
  }

  .nav__links {
    top: 68px;
    right: 15px;
    left: 15px;
  }

  .nav__actions .nav__login {
    display: none;
  }

  .nav__actions .button {
    display: none;
  }

  .brand {
    font-size: 1.02rem;
  }

  .brand__mark {
    width: 33px;
  }

  .hero {
    padding-top: 125px;
  }

  .hero h1 {
    overflow-wrap: break-word;
    font-size: clamp(2.25rem, 10.8vw, 3.25rem);
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .product-stage {
    margin: 0 -15px;
    max-width: calc(100% + 30px);
    padding: 25px 0 40px;
  }

  .app-window {
    width: 100%;
    border-radius: 14px;
    transform: none;
  }

  .product-stage:hover .app-window {
    transform: none;
  }

  .app-window__body {
    height: 410px;
    grid-template-columns: 36px 1fr;
  }

  .inbox-panel,
  .context-panel {
    display: none;
  }

  .chat-panel {
    grid-column: 2;
  }

  .stage-note--top {
    top: -14px;
    right: 5px;
  }

  .stage-note--bottom {
    bottom: -2px;
    left: 5px;
  }

  .trust-strip div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .definition__content {
    padding-left: 22px;
  }

  .workflow-step {
    grid-template-columns: 38px 1fr;
    gap: 15px;
  }

  .workflow-visual {
    grid-column: 1 / -1;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card--wide {
    min-height: 350px;
    padding: 26px;
    grid-column: auto;
  }

  .feature-card--wide {
    min-height: 610px;
  }

  .mini-flow,
  .tag-cloud,
  .integration-mini,
  .chart-mini {
    right: 26px;
    bottom: 26px;
    left: 26px;
  }

  .comparison-table {
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .comparison-table__head {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .comparison-row {
    display: grid;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    grid-template-columns: 1fr;
  }

  .comparison-row p {
    min-height: 68px;
  }

  .comparison-row p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .ai-orb {
    width: 285px;
  }

  .ai-band__copy ul {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: 460px;
    padding: 28px;
  }

  .faq-item summary {
    min-height: 75px;
  }

  .final-cta {
    padding: 92px 0;
  }

  .final-cta h2 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .final-cta__content > div,
  .final-cta__content .button {
    width: 100%;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    align-items: flex-start;
    padding: 25px 0;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (max-width: 440px) {
  .hero__proof,
  .trust-strip div,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .stage-note--top {
    display: none;
  }

  .team-node--one {
    right: 0;
  }

  .team-node--two {
    left: 0;
  }

  .team-node--three {
    right: 0;
  }

  .mini-flow {
    align-items: stretch;
    flex-direction: column;
  }

  .mini-flow b {
    display: none;
  }

  .ai-chip--three {
    right: 0;
  }

  .footer__brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .floating-whatsapp,
  .hero__glow,
  .product-stage__orbit,
  .stage-note {
    display: none !important;
  }

  .hero,
  .features,
  .ai-band,
  .final-cta {
    color: #000;
    background: #fff;
  }

  .hero {
    padding-top: 30px;
  }
}

/* Mobile-first hardening: 320–430px */
@media (max-width: 430px) {
  html, body { max-width: 100%; overflow-x: clip; }
  .container { width: calc(100% - 32px); max-width: 100%; }
  .site-header, .nav, main, section { max-width: 100vw; }
  .nav { gap: 12px; }
  .brand__logo { width: 148px; }
  .nav__toggle { width: 44px; height: 44px; flex: 0 0 44px; }

  .hero { min-height: auto; padding-top: 112px; }
  .hero__grid { width: calc(100% - 32px); padding-bottom: 44px; gap: 32px; }
  .hero__copy { min-width: 0; width: 100%; }
  .hero .eyebrow { font-size: .67rem; letter-spacing: .1em; }
  .hero h1 { max-width: 100%; margin-bottom: 22px; font-size: clamp(2rem, 10vw, 2.55rem); line-height: 1.04; letter-spacing: -.045em; overflow-wrap: anywhere; }
  .hero h1 em { display: block; margin-top: 5px; }
  .hero__lead { max-width: 100%; font-size: .98rem; line-height: 1.65; }
  .hero__actions { display: grid; width: 100%; grid-template-columns: 1fr; gap: 10px; }
  .hero__actions .button { width: 100%; min-width: 0; min-height: 52px; padding-inline: 16px; white-space: normal; text-align: center; }
  .hero__proof { grid-template-columns: 1fr; gap: 9px; font-size: .78rem; }
  .product-stage { width: 100%; max-width: 100%; margin: 0; padding: 8px 0 30px; }
  .product-stage__real { width: 100%; height: auto; border-radius: 14px; transform: none; }
  .stage-note { display: none; }
  .trust-strip div { grid-template-columns: 1fr; }

  .section { padding: 64px 0; }
  h2, .subhero h1, .error-content h1 { max-width: 100%; font-size: clamp(2rem, 9.5vw, 2.7rem); overflow-wrap: anywhere; }
  .definition__grid, .search-intents__grid, .seo-context { gap: 28px; }
  .definition__content, .seo-context > div:last-child { padding-left: 18px; }
  .search-intents__content article, .search-intents__note { padding: 22px 20px; }
  .feature-card, .feature-card--wide, .plan-card { min-height: auto; padding: 22px; }
  .feature-card--wide { grid-template-columns: 1fr; }
  .feature-card__shot { margin-top: 18px; }
  .feature-card .chart-mini,
  .feature-card .integration-mini,
  .feature-card .tag-cloud,
  .feature-card .mini-flow,
  .feature-card .team-visual { display: none; }

  .subpage .site-header { min-height: 126px; }
  .subpage .nav { position: relative; height: 68px; align-items: center; }
  .subpage .subnav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: grid !important;
    width: 100%;
    padding: 8px 16px 11px;
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(7,16,47,.98);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3px;
  }
  .subpage .subnav a {
    display: grid;
    min-width: 0;
    min-height: 38px;
    padding: 5px 3px;
    border-radius: 8px;
    color: rgba(255,255,255,.72);
    font-size: .64rem;
    line-height: 1.15;
    text-align: center;
    place-items: center;
  }
  .subpage .subnav a[aria-current="page"] { color: #fff; background: rgba(0,104,240,.2); }
  .subpage .nav__actions { display: none; }
  .subhero { padding: 168px 0 62px; }
  .subhero__grid { gap: 32px; }
  .subhero p:not(.eyebrow) { font-size: .96rem; }
  .subcards article { min-height: auto; }
  .subplans article { min-height: auto; padding: 26px 22px; }
  .subfaq details { padding-inline: 18px; }

  .error-main { padding: 105px 0 50px; }
  .error-actions, .error-actions .button { width: 100%; }
  .error-links { grid-template-columns: 1fr; gap: 9px; }
  .error-links a { min-height: 108px; }

  .floating-whatsapp { right: 14px; bottom: 14px; width: 56px; height: 56px; }
}

/* SEO subpages */
.subpage {
  background: #fff;
}

.subpage .site-header {
  position: fixed;
}

.subnav a[aria-current="page"] {
  color: #fff;
}

.subhero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 95px;
  color: #fff;
  background: var(--navy-950);
}

.subhero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
}

.subhero__grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
}

.subhero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.5vw, 5.2rem);
}

.subhero p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 30px;
  color: #c4cad7;
  font-size: 1.05rem;
}

.subhero img {
  position: relative;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.subhero--center {
  text-align: center;
}

.subhero--center .container,
.subhero--center p {
  position: relative;
  margin-inline: auto;
}

.subcards {
  display: grid;
  margin-top: 52px;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.subcards--three {
  grid-template-columns: repeat(3, 1fr);
}

.subcards article {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.subcards article > b {
  color: var(--blue);
  font-size: .78rem;
}

.subcards h3 { margin: 30px 0 12px; font-size: 1.2rem; }
.subcards p { color: var(--muted); font-size: .92rem; }

.subcta {
  padding: 90px 0;
  color: #fff;
  text-align: center;
  background: var(--navy-900);
}

.subcta h2 { margin-bottom: 14px; font-size: clamp(2.3rem, 4vw, 4rem); }
.subcta p { margin-bottom: 25px; color: #c4cad7; }

.subplans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.subplans article {
  display: flex;
  min-height: 470px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.subplans article.is-featured { color: #fff; border-color: var(--blue); background: var(--navy-900); transform: translateY(-12px); }
.subplans h2 { margin: 12px 0; }
.subplans p, .subplans li { color: var(--muted); }
.subplans .is-featured p, .subplans .is-featured li { color: #c4cad7; }
.subplans ul { display: grid; margin: 28px 0; padding-left: 20px; gap: 12px; }
.subplans .button { margin-top: auto; }

.subfaq { display: grid; max-width: 900px; gap: 12px; }
.subfaq details { padding: 0 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.subfaq summary { padding: 22px 0; font-weight: 750; list-style: none; }
.subfaq p { padding: 0 0 24px; color: var(--muted); }

@media (max-width: 900px) {
  .subhero__grid, .subcards, .subcards--three, .subplans { grid-template-columns: 1fr; }
  .subhero { padding-top: 130px; }
  .subhero__grid { gap: 45px; }
  .subplans article.is-featured { transform: none; }
  .subpage .subnav { display: none; }
}
