:root {
  --navy: #071130;
  --text: #101936;
  --muted: #697493;
  --blue: #175cff;
  --blue-2: #5c38ff;
  --teal: #16c7ad;
  --mint: #dffbf5;
  --sky: #eef6ff;
  --lavender: #f2efff;
  --pink: #ff4ca2;
  --orange: #ff8b31;
  --border: #e2e9f5;
  --card: #ffffff;
  --bg: #ffffff;
  --shadow: 0 12px 38px rgba(48, 81, 136, 0.08);
  --shadow-soft: 0 4px 22px rgba(48, 81, 136, 0.055);
  --shadow-sm: var(--shadow-soft);
  --radius: 18px;
  --radius-lg: 24px;
  --border-strong: #cad7eb;
  --green: var(--teal);
  --green-deep: #0aa68e;
  --mint-light: var(--mint);
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --container: 1480px;
  --gutter: clamp(20px, 4vw, 64px);
  --header-h: 72px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font: Inter, "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.metric-pixel {
  position: absolute;
  left: -9999px;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 20px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--navy);
  transition: top .2s;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .96);
  transition: border-color .2s, box-shadow .2s;
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 3px 16px rgba(48, 81, 136, .04);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 9px;
  color: var(--navy);
  font-size: 25px;
  font-weight: 750;
  letter-spacing: -.04em;
}

.brand > img:not(.brand-label) {
  width: 42px;
  height: 34px;
  object-fit: contain;
}

.brand .brand-label {
  width: 92px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 38px;
}

.nav a {
  color: var(--navy);
  font-size: 14px;
  font-weight: 530;
  transition: color .2s;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s, background .2s, border-color .2s;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(23, 92, 255, .2);
  outline-offset: 3px;
}

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(23, 92, 255, .22);
}

.button-primary:hover {
  background: #0d4be0;
}

.button-secondary,
.button-login {
  color: var(--navy);
  border-color: #cbd7eb;
  background: #fff;
}

.button-secondary {
  color: var(--blue);
}

.button-secondary:hover,
.button-login:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-soft);
}

.button-login {
  justify-self: end;
  min-height: 40px;
  padding: 8px 20px;
  font-size: 14px;
}

.button-small {
  min-height: 38px;
  padding: 8px 18px;
  font-size: 13px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--navy);
  transition: transform .2s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section,
.hero {
  position: relative;
  overflow: hidden;
}

.section {
  padding: 100px 0;
  scroll-margin-top: calc(var(--header-h) - 8px);
}

.section-wave::before,
.section-wave::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 78%;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
}

.section-wave::before {
  top: 2%;
  left: -28%;
  background: rgba(235, 245, 255, .72);
  transform: rotate(-8deg);
}

.section-wave::after {
  right: -28%;
  bottom: -100px;
  background: rgba(224, 251, 247, .62);
  transform: rotate(8deg);
}

.section-heading {
  position: relative;
  z-index: 1;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2,
.final-cta h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  font-weight: 760;
  letter-spacing: -.045em;
}

.section-heading > p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 8px 18px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--lavender);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}

.accent {
  color: var(--blue);
}

.brand-gradient {
  color: var(--blue);
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.underline {
  position: relative;
  display: inline-block;
}

.underline::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 0;
  bottom: -.09em;
  z-index: -1;
  height: .11em;
  min-height: 5px;
  border-radius: 999px;
  background: #69ddcd;
  transform: rotate(-2deg);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.round-icon,
.process-icon,
.benefit-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 17px;
  color: var(--blue);
  background: var(--sky);
  font-weight: 750;
  font-size: 25px;
}

.round-icon svg,
.process-icon svg,
.integration-icon svg,
.step-icon svg {
  display: block;
  width: 26px;
  height: 26px;
}

.round-icon.small {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
}

.round-icon.small svg {
  width: 18px;
  height: 18px;
}

.mint {
  color: #0bb99e;
  background: var(--mint);
}

.blue {
  color: var(--blue);
  background: var(--sky);
}

.purple {
  color: #6336f3;
  background: var(--lavender);
}

.pink {
  color: var(--pink);
  background: #fff0f7;
}

.orange {
  color: var(--orange);
  background: #fff5e9;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero {
  min-height: calc(100vh - var(--header-h));
  padding: 38px 0 80px;
}

.hero::before {
  width: 76%;
  height: 320px;
  top: -70px;
  left: 18%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(520px, 540px) minmax(0, 1fr);
  align-items: start;
  column-gap: 20px;
  min-height: 730px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  margin-top: 56px;
  padding-right: 0;
}

.hero h1 {
  color: var(--navy);
  font-size: clamp(3.1rem, 3.3vw, 3.45rem);
  line-height: .98;
  font-weight: 780;
  letter-spacing: -.06em;
}

.hero-line {
  white-space: nowrap;
}

.hero-lead {
  margin-top: 38px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.55;
}

.hero .actions {
  margin-top: 32px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  margin-right: -5vw;
}

.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 24px 44px rgba(48, 81, 136, .09));
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 590px;
  margin-top: 56px;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #0f9d82;
  background: #d8f6ee;
}

.benefit-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.hero-benefits li:nth-child(2) .benefit-icon {
  color: #2f5bff;
  background: #dce8ff;
}

.hero-benefits li:nth-child(3) .benefit-icon {
  color: #0aa8b3;
  background: #d4f4f6;
}

.section-product {
  padding-top: 88px;
}

.section-product.section-wave::after {
  background: rgba(224, 251, 247, .34);
}

.section-product .section-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin: 12px auto 0;
  color: #51607c;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  line-height: 1.55;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 28px;
}

.audience-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 100%;
  padding: 28px 26px 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.audience-business {
  background: linear-gradient(160deg, rgba(225, 251, 246, .52), #fff 58%);
}

.audience-partner {
  background: linear-gradient(160deg, rgba(241, 239, 255, .58), #fff 58%);
}

.title-with-icon,
.special-title {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.title-with-icon h3,
.special-title h3,
.connect-path h3 {
  margin-top: 4px;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.title-with-icon p,
.special-title p,
.connect-path .title-with-icon p {
  margin-top: 6px;
  color: var(--muted);
  font-size: .9rem;
}

.section-product .title-with-icon h3 {
  font-size: 1.5rem;
}

.section-product .title-with-icon p {
  margin-top: 8px;
  color: #4f5d7a;
  font-size: .95rem;
  line-height: 1.5;
}

.value-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.value-list li,
.product-trust li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #5a6784;
  font-size: .86rem;
  line-height: 1.4;
}

.value-list b,
.product-trust b {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: .96rem;
}

.audience-shot-wrap {
  position: relative;
  flex: 0 0 auto;
  height: 248px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  background: #f7f9fd;
}

.audience-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  transform-origin: left top;
  transition: transform .55s var(--ease);
}

.audience-partner .audience-shot {
  width: 128%;
  height: 128%;
  max-width: none;
  object-position: 16% 0;
}

.product-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 920px;
  margin: 32px auto 0;
}

.product-trust .round-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.product-trust .round-icon svg {
  width: 24px;
  height: 24px;
}

.product-trust li {
  gap: 14px;
}

.product-trust span:last-child {
  color: #5a6784;
}

.section-how {
  padding-top: 86px;
}

.process {
  --flow-icon: 72px;
  --flow-gap: 38px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--flow-gap);
  margin-top: 48px;
}

.process li {
  position: relative;
  text-align: center;
}

.process li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--flow-icon) / 2);
  left: calc(50% + var(--flow-icon) / 2 + 6px);
  right: calc(-50% + var(--flow-icon) / 2 - var(--flow-gap) + 6px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(158, 170, 196, .18) 14%, rgba(158, 170, 196, .55) 36%, rgba(158, 170, 196, .55) 64%, rgba(158, 170, 196, .18) 86%, transparent);
  transform: translateY(-50%);
  pointer-events: none;
}

.process li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: calc(var(--flow-icon) / 2);
  left: calc(100% + var(--flow-gap) / 2);
  width: 16px;
  height: 16px;
  background: no-repeat center / 12px 12px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M4 2.2 8.5 6 4 9.8' stroke='%239aa8c4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.process-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
}

.process-icon svg {
  width: 30px;
  height: 30px;
}

.process h3 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
}

.process p {
  margin-top: 7px;
  color: var(--muted);
  font-size: .84rem;
}

.process-caption {
  margin-top: 42px;
  color: var(--muted);
  text-align: center;
  font-size: 1rem;
}

.how-dashboard {
  height: 300px;
  margin: 34px 40px -100px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: #fff;
  box-shadow: var(--shadow);
}

.how-dashboard img {
  width: 100%;
  transform: translateY(-10%);
}

.section-money {
  background: #fff;
}

.money-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.money-cards article,
.feature-grid article {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-soft);
}

.money-cards article:nth-child(1) {
  background: linear-gradient(120deg, rgba(223, 251, 245, .7), #fff);
}

.money-cards article:nth-child(2) {
  background: linear-gradient(120deg, rgba(238, 246, 255, .8), #fff);
}

.money-cards article:nth-child(3) {
  background: linear-gradient(120deg, rgba(242, 239, 255, .8), #fff);
}

.money-cards h3,
.feature-grid h3,
.integration-grid h3 {
  margin-top: 4px;
  color: var(--navy);
  font-size: 1.15rem;
  letter-spacing: -.025em;
}

.money-cards p,
.feature-grid p,
.integration-grid p {
  margin-top: 7px;
  color: var(--muted);
  font-size: .92rem;
}

.money-flow {
  --flow-icon: 84px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 82px;
  max-width: 1180px;
  margin: 46px auto 0;
}

.money-flow li {
  position: relative;
  text-align: center;
}

.money-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--flow-icon) / 2);
  left: calc(50% + 48px);
  right: calc(-50% - 42px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(158, 170, 196, .18) 14%, rgba(158, 170, 196, .55) 36%, rgba(158, 170, 196, .55) 64%, rgba(158, 170, 196, .18) 86%, transparent);
  transform: translateY(-50%);
  pointer-events: none;
}

.money-flow li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: calc(var(--flow-icon) / 2);
  left: calc(100% + 41px);
  width: 16px;
  height: 16px;
  background: no-repeat center / 12px 12px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M4 2.2 8.5 6 4 9.8' stroke='%239aa8c4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.money-flow .process-icon {
  width: 84px;
  height: 84px;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px var(--border), var(--shadow-soft);
}

.money-flow .process-icon svg {
  width: 32px;
  height: 32px;
}

.money-flow p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.25;
}

.money-flow b {
  color: var(--navy);
}

.money-note,
.wide-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: 34px auto 0;
  padding: 14px 30px;
  border-radius: 999px;
  color: var(--muted);
  background: linear-gradient(90deg, #edfffb, #f0f5ff);
}

.money-note > span {
  display: grid;
  place-items: center;
  color: var(--teal);
}

.money-note > span svg {
  width: 22px;
  height: 22px;
}

.money-note b {
  color: var(--blue);
}

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

.feature-grid article {
  min-height: 138px;
}

.feature-grid .round-icon {
  width: 64px;
  height: 64px;
}

.feature-grid .round-icon svg {
  width: 28px;
  height: 28px;
}

.analytics-visual {
  max-width: 1320px;
  height: 390px;
  margin: 28px auto 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.analytics-visual img {
  width: 100%;
  transform: translateY(-6%);
}

.section-offline {
  background: rgba(241, 247, 255, .5);
}

.special-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 40px;
}

.special-card {
  padding: 26px 26px 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.special-card > img {
  width: calc(100% + 52px);
  max-width: none;
  margin: 18px -26px -18px;
}

.compact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.compact-tags li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: #f9fbff;
  font-size: .8rem;
}

.compact-tags svg {
  display: block;
  width: 14px;
  height: 14px;
  color: var(--blue);
  flex: 0 0 auto;
}

.wide-note {
  width: 100%;
  border-radius: var(--radius);
  font-size: clamp(.95rem, 1.8vw, 1.35rem);
}

.section-industries {
  padding-top: 86px;
}

.industries-layout {
  display: grid;
  grid-template-columns: 540px 1fr;
  gap: 36px;
  align-items: start;
  margin-top: 44px;
}

.industries-copy {
  color: var(--muted);
  font-size: 1.15rem;
}

.industries-copy p + p {
  margin-top: 22px;
}

.industries-orbit {
  --orbit-r: 168px;
  --orbit-icon: 56px;
  position: relative;
  width: 480px;
  max-width: 100%;
  aspect-ratio: 1;
  margin: 16px 0 0;
}

.orbit-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 140, 255, .14), rgba(124, 92, 255, .06) 42%, transparent 72%);
  pointer-events: none;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--orbit-r) * 2);
  height: calc(var(--orbit-r) * 2);
  margin: calc(var(--orbit-r) * -1);
  border: 2px dashed #b7c9f3;
  border-radius: 50%;
  opacity: .7;
  pointer-events: none;
}

.orbit-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(48, 81, 136, .12);
  transform: translate(-50%, -50%);
}

.orbit-logo img {
  width: 64px;
  height: auto;
}

.orbit-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: var(--orbit-icon);
  height: var(--orbit-icon);
  margin: calc(var(--orbit-icon) / -2);
  border-radius: 50%;
  transform: rotate(var(--a)) translate(var(--orbit-r)) rotate(calc(-1 * var(--a)));
}

.orbit-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

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

.industry-grid li {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-soft);
}

.industry-grid h3 {
  margin-top: 18px;
  color: var(--navy);
  font-size: 1.1rem;
}

.industry-grid p {
  margin-top: 8px;
  color: var(--muted);
  font-size: .9rem;
}

.section-connect {
  padding-bottom: 38px;
  background: #fff;
}

.connect-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
}

.connect-path {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.path-business {
  background: linear-gradient(120deg, rgba(223, 251, 245, .7), #fff);
}

.path-partner {
  background: linear-gradient(120deg, rgba(242, 239, 255, .78), #fff);
}

.connect-path .title-with-icon .round-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  line-height: 0;
}

.connect-path .title-with-icon .round-icon svg {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0;
  overflow: visible;
}

.connect-path ol {
  --step-icon: 40px;
  --flow-gap: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--flow-gap);
  margin-top: 26px;
  counter-reset: steps;
}

.connect-path li {
  counter-increment: steps;
  position: relative;
  padding-top: 54px;
}

.connect-path .step-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: var(--step-icon);
  height: var(--step-icon);
  border-radius: 50%;
  color: var(--blue);
  background: #eef3ff;
}

.connect-path .step-icon.mint {
  color: #0bb99e;
  background: var(--mint);
}

.connect-path .step-icon svg {
  width: 22px;
  height: 22px;
}

.connect-path li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--step-icon) / 2);
  left: calc((var(--step-icon) + 100% + var(--flow-gap)) / 2);
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(158, 170, 196, .18) 14%, rgba(158, 170, 196, .55) 36%, rgba(158, 170, 196, .55) 64%, rgba(158, 170, 196, .18) 86%, transparent);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.connect-path li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: calc(var(--step-icon) / 2);
  left: calc((var(--step-icon) + 100% + var(--flow-gap)) / 2);
  width: 14px;
  height: 14px;
  background: no-repeat center / 10px 10px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M4 2.2 8.5 6 4 9.8' stroke='%239aa8c4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.connect-path b,
.connect-path span {
  display: block;
}

.connect-path b {
  color: var(--navy);
  font-size: .88rem;
}

.connect-path li span {
  margin-top: 5px;
  color: var(--muted);
  font-size: .76rem;
}

.integration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 20px;
}

.integration-grid article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 1fr);
  gap: 20px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.integration-copy {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-content: start;
}

.integration-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: var(--blue);
  background: var(--sky);
  font-size: 18px;
  font-weight: 750;
}

.integration-icon svg {
  width: 24px;
  height: 24px;
}

.integration-grid ul {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  color: var(--muted);
  font-size: .84rem;
}

.integration-grid li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--teal);
  font-weight: 800;
}

.integration-code {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 216px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f6f8fc;
  overflow: hidden;
}

.integration-code-label {
  margin: 0;
  padding: 8px 14px;
  border-bottom: 1px solid var(--border);
  color: #7b89a8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.integration-code pre {
  flex: 1;
  margin: 0;
  padding: 14px 16px;
  overflow: auto;
}

.integration-code code {
  color: #1d2a4a;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.55;
  white-space: pre;
}

.integration-code .c-tag { color: #3b4fd6; }
.integration-code .c-attr { color: #175cff; }
.integration-code .c-str { color: #c43d7a; }
.integration-code .c-fn { color: #1d2a4a; font-weight: 650; }
.integration-code .c-num { color: #175cff; }

.connect-note {
  margin: 20px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: .88rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 44px 0;
  background: linear-gradient(100deg, #effaff, #f3f2ff);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.final-cta h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}

.final-cta p {
  margin-top: 14px;
  color: var(--muted);
}

.site-footer {
  padding: 30px 0 18px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr) 1.1fr;
  gap: 48px;
}

.footer-brand > p {
  margin-top: 14px;
  color: var(--muted);
  font-size: .84rem;
}

.footer-brand .brand > img:not(.brand-label) {
  width: 30px;
  height: 25px;
}

.footer-brand .brand .brand-label {
  width: 82px;
}

.footer-grid nav,
.footer-grid address {
  display: grid;
  align-content: start;
  gap: 8px;
  font-style: normal;
}

.footer-grid h3 {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: .86rem;
}

.footer-grid a,
.footer-grid address p {
  color: var(--muted);
  font-size: .8rem;
}

.footer-grid a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: #8b95ad;
  font-size: .72rem;
}

.footer-bottom a + a {
  margin-left: 28px;
}

.cookie-notice {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 430px;
  padding: 17px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(24, 48, 94, .15);
}

.cookie-notice p {
  color: var(--muted);
  font-size: .82rem;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-accepted .cookie-notice {
  display: none;
}

/* Shared compatibility for documentation and error pages. */
.logo {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-size: 24px;
  font-weight: 750;
  letter-spacing: -.045em;
}

.logo span {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font: inherit;
  font-weight: 600;
}

.btn-primary {
  color: #fff;
  background: var(--blue);
}

.btn-ghost {
  color: var(--blue);
  border-color: var(--border-strong);
  background: #fff;
}

.btn-sm {
  min-height: 40px;
  padding: 8px 18px;
  font-size: 14px;
}

.header-cta {
  justify-self: end;
}

.docs-hero,
.page-error {
  min-height: auto;
  padding: 76px 0 50px;
}

.docs-hero h1,
.page-error h1 {
  color: var(--navy);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.lead,
.section-lead,
.section-copy {
  margin-top: 18px;
  max-width: 70ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-title {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.cards {
  display: grid;
  gap: 16px;
}

.cards-2 {
  grid-template-columns: repeat(2, 1fr);
}

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

.cards > li,
.tech-note,
.result-line {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.cards .num {
  color: var(--blue);
  font-size: .75rem;
  font-weight: 750;
}

.cards h3 {
  margin-top: 10px;
  color: var(--navy);
}

.cards p,
.tech-note p {
  margin-top: 8px;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 12px;
  counter-reset: timeline;
}

.timeline > li {
  counter-increment: timeline;
  position: relative;
  padding: 18px 20px 18px 58px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}

.timeline > li::before {
  content: counter(timeline);
  position: absolute;
  top: 17px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: .75rem;
  font-weight: 750;
}

.timeline p {
  margin-top: 6px;
  color: var(--muted);
}

.tags,
.scheme {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags li,
.scheme > span:not(.scheme-arrow) {
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--sky);
}

.result-line {
  border-left: 3px solid var(--teal);
  background: var(--mint);
}

.hero-title-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-mark {
  width: 74px;
  height: 62px;
  flex: 0 0 auto;
  background: url("/assets/logo.png?nocache=29479f244231") center / contain no-repeat;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 36px;
}

.footer-meta,
.footer-contacts p,
.footer-nav a {
  margin-top: 8px;
  color: var(--muted);
  font-size: .84rem;
}

.footer-nav,
.footer-contacts {
  display: grid;
  align-content: start;
  gap: 6px;
  font-style: normal;
}

.footer-contacts-title {
  color: var(--navy) !important;
  font-weight: 700;
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
  }

  [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }

  .section-product [data-reveal] {
    transform: translateY(14px);
    transition-duration: .5s;
  }

  .section-product .section-heading[data-reveal] {
    transition-delay: 0s;
  }

  .section-product .audience-business {
    transition-delay: .07s;
  }

  .section-product .audience-partner {
    transition-delay: .14s;
  }

  .section-product .product-trust li:nth-child(1) {
    transition-delay: .2s;
  }

  .section-product .product-trust li:nth-child(2) {
    transition-delay: .26s;
  }

  .section-product .product-trust li:nth-child(3) {
    transition-delay: .32s;
  }

  .section-product .underline::after {
    transform: rotate(-2deg) scaleX(0);
    transform-origin: left center;
    transition: transform .5s var(--ease) .12s;
  }

  .section-product .section-heading.is-visible .underline::after {
    transform: rotate(-2deg) scaleX(1);
  }

  .audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 42px rgba(48, 81, 136, .1);
  }

  .audience-card:hover .audience-shot {
    transform: scale(1.03);
  }

  .audience-partner:hover .audience-shot {
    transform: scale(1.03);
  }

  .section-product.section-wave::after {
    animation: product-wave 18s var(--ease) infinite;
  }

  .section-how [data-reveal] {
    transform: translateY(12px);
    transition-duration: .48s;
  }

  .section-how .process li:nth-child(1) { transition-delay: .05s; }
  .section-how .process li:nth-child(2) { transition-delay: .1s; }
  .section-how .process li:nth-child(3) { transition-delay: .15s; }
  .section-how .process li:nth-child(4) { transition-delay: .2s; }
  .section-how .process li:nth-child(5) { transition-delay: .25s; }
  .section-how .process li:nth-child(6) { transition-delay: .3s; }
  .section-how .process li:nth-child(7) { transition-delay: .35s; }

  .section-how .process-caption {
    transition-delay: .4s;
  }

  .section-how .how-dashboard {
    transition-delay: .46s;
  }

  .section-how .process-icon {
    transition: transform .3s var(--ease);
  }

  .section-how .process li:hover .process-icon {
    transform: translateY(-3px);
  }

  .section-how .how-dashboard img {
    transition: transform .55s var(--ease);
  }

  .section-how .how-dashboard:hover img {
    transform: translateY(-10%) scale(1.02);
  }
}

@keyframes product-wave {
  0%,
  100% {
    transform: rotate(8deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(8deg) translate3d(0, -8px, 0);
  }
}

@media (max-width: 1260px) {
  :root {
    --container: 1160px;
  }

  .industries-layout {
    grid-template-columns: 400px 1fr;
    gap: 28px;
  }

  .industries-orbit {
    --orbit-r: 132px;
    --orbit-icon: 50px;
    width: 380px;
  }

  .orbit-logo {
    width: 104px;
    height: 104px;
    border-radius: 24px;
  }

  .orbit-logo img {
    width: 56px;
  }

  .hero-grid {
    grid-template-columns: minmax(380px, 460px) minmax(0, 1fr);
    min-height: 650px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .audience-shot-wrap {
    height: 210px;
  }

  .process {
    --flow-gap: 20px;
  }
}

@media (max-width: 980px) {
  :root {
    --gutter: 28px;
  }

  .section {
    padding: 80px 0;
  }

  .header-inner {
    display: flex;
    gap: 12px;
  }

  .brand {
    margin-right: auto;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  body.nav-open .nav {
    position: fixed;
    inset: var(--header-h) 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 22px var(--gutter);
    background: #fff;
  }

  body.nav-open .nav a {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 17px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 700px;
    margin-top: 0;
  }

  .hero-visual {
    margin: 34px -2vw 0 0;
    margin-left: 0;
  }

  .audience-grid,
  .special-grid,
  .connect-paths,
  .integration-grid {
    grid-template-columns: 1fr;
  }

  .audience-shot-wrap {
    height: 260px;
  }

  .process {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 34px;
  }

  .process li:not(:last-child)::before,
  .process li:not(:last-child)::after {
    display: none;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-layout {
    grid-template-columns: 1fr;
  }

  .industries-copy {
    text-align: center;
  }

  .industries-orbit {
    --orbit-r: 132px;
    width: min(380px, 100%);
    margin: 28px auto 0;
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-brand,
  .footer-grid address {
    grid-column: span 1;
  }

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

@media (max-width: 720px) {
  :root {
    --gutter: 18px;
    --header-h: 66px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    height: var(--header-h);
  }

  .brand {
    font-size: 19px;
  }

  .brand > img:not(.brand-label) {
    width: 30px;
    height: 25px;
  }

  .brand .brand-label {
    width: 74px;
  }

  .button-login {
    min-height: 38px;
    padding: 7px 14px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2 {
    font-size: 2.2rem;
  }

  .section-heading > p:not(.eyebrow) br {
    display: none;
  }

  .eyebrow {
    margin-bottom: 18px;
    padding: 7px 13px;
    font-size: 9px;
  }

  .hero {
    min-height: 0;
    padding: 48px 0 64px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .hero-line {
    white-space: normal;
  }

  .hero-lead {
    margin-top: 28px;
  }

  .hero-lead br {
    display: none;
  }

  .hero .actions,
  .final-cta .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 34px;
  }

  .hero-benefits br {
    display: none;
  }

  .hero-visual {
    margin: 34px -12px 0;
  }

  .audience-card {
    padding: 22px 16px 16px;
  }

  .audience-shot-wrap {
    height: 220px;
  }

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

  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-icon {
    width: 62px;
    height: 62px;
  }

  .money-cards,
  .money-flow,
  .feature-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .money-flow {
    gap: 24px;
  }

  .money-flow li:not(:last-child)::before,
  .money-flow li:not(:last-child)::after {
    display: none;
  }

  .money-note,
  .wide-note {
    width: 100%;
    border-radius: 16px;
  }

  .feature-grid article {
    min-height: 0;
    padding: 22px;
  }

  .analytics-visual {
    height: auto;
  }

  .how-dashboard {
    height: auto;
    margin: 32px 0 -64px;
  }

  .how-dashboard img {
    transform: none;
  }

  .analytics-visual img {
    transform: none;
  }

  .special-card {
    padding: 20px 16px 14px;
  }

  .special-card > img {
    width: calc(100% + 32px);
    margin: 16px -16px -14px;
  }

  .industries-orbit {
    --orbit-r: 118px;
    --orbit-icon: 46px;
    width: min(340px, 100%);
    margin: 28px auto 0;
  }

  .industry-grid li {
    min-height: 0;
  }

  .connect-path {
    padding: 20px;
  }

  .connect-path ol {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .connect-path li {
    padding: 2px 0 2px 56px;
  }

  .connect-path li:not(:last-child)::before,
  .connect-path li:not(:last-child)::after {
    display: none;
  }

  .integration-grid article {
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .footer-brand,
  .footer-grid address {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom a + a {
    display: block;
    margin: 7px 0 0;
  }

  .cookie-notice {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .cards-2,
  .cards-3,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .cookie-notice {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
