@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
:root {
  --blue: #001aed;
  --blue2: #0a39da;
  --cyan: #0adaeb;
  --ink: #0c1222;
  --muted: #667085;
  --line: #e6e8ec;
  --soft: #f7f8fa;
  --white: #fff;
  --green: #087a55;
  --red: #c63845;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-move: cubic-bezier(0.77, 0, 0.175, 1);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.55;
  background: #fff;
}
a {
  color: inherit;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
:focus-visible {
  outline: 3px solid #7b8cff;
  outline-offset: 3px;
}
.skip-link {
  position: fixed;
  z-index: 99;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 160ms var(--ease-out);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  width: min(1180px, calc(100% - 40px));
  height: 86px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  height: 56px;
  display: flex;
  align-items: center;
  text-decoration: none;
  overflow: hidden;
}
.brand img {
  display: block;
  width: 136px;
  height: 88px;
  object-fit: contain;
}
.site-header nav {
  display: flex;
  gap: 32px;
}
.site-header nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #4d5769;
  font-size: 13px;
  font-weight: 500;
  transition: color 160ms ease;
}
.site-header nav a:hover {
  color: var(--blue);
}
.nav-cta {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition:
    background-color 160ms ease,
    transform 140ms var(--ease-out);
}
.nav-cta:hover {
  background: #0014c7;
}
.nav-cta:active,
button:active {
  transform: scale(0.97);
}
.hero {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  padding: clamp(80px, 10vw, 140px) 0 100px;
  text-align: center;
}
.hero-copy {
  max-width: 820px;
  margin: auto;
}
.launch-pill {
  width: max-content;
  margin: 0 auto 28px;
  padding: 7px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: #505a6b;
  background: #fff;
  font-size: 11px;
  font-weight: 600;
}
.launch-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px #0adaeb1d;
}
.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 650;
}
.hero-text {
  max-width: 670px;
  margin: 0 auto 34px;
  color: #505b6d;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
}
.waitlist-form {
  max-width: 610px;
  margin: auto;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px;
}
.field {
  display: grid;
  gap: 7px;
}
.field label {
  font-size: 12px;
  font-weight: 600;
}
.field input {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid #cfd4dc;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}
.field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px #001aed12;
}
.field input[aria-invalid="true"] {
  border-color: var(--red);
}
.form-row button {
  height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 600;
  white-space: nowrap;
  transition:
    background-color 160ms ease,
    transform 140ms var(--ease-out);
}
.form-row button:hover {
  background: #0014c7;
}
.form-row button:disabled {
  cursor: wait;
  opacity: 0.65;
}
.form-note,
.form-error {
  margin: 8px 0 0;
  color: #7a8494;
  font-size: 11px;
}
.form-error {
  min-height: 17px;
  color: var(--red);
}
.form-success {
  min-height: 64px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #a8dccb;
  border-radius: 8px;
  color: #165d48;
  background: #f0faf6;
}
.form-success > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
}
.form-success p {
  margin: 0;
  font-size: 12px;
}
.product-demo {
  max-width: 1040px;
  margin: 90px auto 0;
}
.demo-window {
  overflow: hidden;
  border: 1px solid #d8dce3;
  border-radius: 14px;
  text-align: left;
  background: var(--soft);
  box-shadow: 0 30px 80px #172c6815;
}
.window-bar {
  height: 50px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.window-bar img {
  width: 82px;
  height: 53px;
  object-fit: contain;
}
.window-bar > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #707b8c;
  font-size: 9px;
}
.window-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10a276;
}
.window-body {
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-columns: 52px 1fr;
}
.window-body aside {
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--line);
  background: #fff;
}
.window-body aside span {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #e3e6eb;
}
.window-body aside .selected {
  background: var(--blue);
}
.flow-panel {
  position: absolute;
  inset: 0 0 0 52px;
  padding: 38px 44px;
  opacity: 0;
  pointer-events: none;
  filter: blur(3px);
  transform: translateY(10px);
  transition:
    opacity 260ms ease,
    filter 260ms ease,
    transform 360ms var(--ease-out);
}
.flow-panel.active {
  opacity: 1;
  pointer-events: auto;
  filter: none;
  transform: none;
}
.panel-label {
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.flow-panel h2 {
  margin-bottom: 26px;
  font-size: 27px;
  letter-spacing: -0.04em;
}
.connections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.connections > div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}
.connections b {
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  font-size: 10px;
}
.connections div:nth-child(1) b {
  background: #665bff;
}
.connections div:nth-child(2) b {
  background: #202938;
}
.connections div:nth-child(3) b {
  background: #7655db;
}
.connections div:nth-child(4) b {
  background: #3c9ada;
}
.connections span,
.connections small {
  display: block;
}
.connections span {
  font-size: 11px;
  font-weight: 600;
}
.connections small {
  color: #7b8594;
  font-size: 9px;
}
.sync-line {
  margin-top: 30px;
  padding: 15px;
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  color: #195b48;
  background: #eaf8f3;
}
.sync-line > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #11a276;
}
.sync-line strong,
.sync-line small {
  font-size: 10px;
}
.sync-line small {
  color: #568171;
}
.dash-head {
  display: flex;
  justify-content: space-between;
}
.dash-head > span {
  color: #778191;
  font-size: 9px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.metrics article,
.chart-card {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}
.metrics small,
.metrics span,
.chart-card span {
  display: block;
  color: #7b8595;
  font-size: 9px;
}
.metrics strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 23px;
  letter-spacing: -0.04em;
}
.metrics span {
  color: var(--green);
}
.chart-card {
  margin-top: 10px;
}
.chart-card > div {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}
.chart-card svg {
  width: 100%;
  height: 130px;
}
.chart-card path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linecap: round;
}
.chart-card circle {
  fill: var(--blue);
}
.issue-card {
  padding: 19px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 15px;
  border: 1px solid #f0c6ca;
  border-radius: 10px;
  background: #fff;
}
.issue-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  font-weight: 700;
}
.issue-card small,
.reason small {
  color: #8b5960;
  font-size: 8px;
  font-weight: 700;
}
.issue-card strong {
  display: block;
  margin: 4px 0;
  font-size: 15px;
}
.issue-card p {
  margin: 0;
  color: #697486;
  font-size: 10px;
}
.issue-card > b {
  color: var(--red);
  font-size: 9px;
}
.reason {
  margin-top: 15px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.reason p {
  font-size: 12px;
}
.reason div {
  display: flex;
  gap: 7px;
}
.reason span {
  padding: 5px 8px;
  border-radius: 5px;
  color: #5f6a7a;
  background: #f1f3f6;
  font-size: 8px;
}
.action-card {
  padding: 18px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 13px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.person {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 9px;
}
.action-card small,
.action-card strong,
.action-card p {
  display: block;
  margin: 0;
}
.action-card small {
  color: #7b8594;
  font-size: 8px;
}
.action-card strong {
  font-size: 11px;
}
.action-card p {
  color: #566173;
  font-size: 10px;
}
.status {
  padding: 5px 8px;
  border-radius: 99px;
  color: var(--green);
  background: #e8f7f2;
  font-size: 8px;
}
.action-list {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.action-list div {
  padding: 13px 17px;
  display: grid;
  grid-template-columns: 25px 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.action-list div:last-child {
  border: 0;
}
.action-list span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid #cfd4dc;
  border-radius: 5px;
  font-size: 8px;
}
.action-list p,
.action-list b {
  margin: 0;
  font-size: 10px;
}
.action-list b {
  color: #747f90;
}
.done {
  margin-top: 12px;
  padding: 13px;
  border-radius: 8px;
  color: #1b624e;
  background: #eaf8f3;
  font-size: 10px;
}
.done span {
  margin-right: 8px;
  font-weight: 700;
}
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
}
.flow-steps button {
  position: relative;
  min-height: 48px;
  padding: 0;
  border: 0;
  color: #828b99;
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  transition: color 180ms ease;
}
.flow-steps button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e2e5ea;
}
.flow-steps button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}
.flow-steps button.active {
  color: var(--blue);
}
.flow-steps button.active:after {
  transform: scaleX(1);
}
.flow-steps span {
  margin-right: 5px;
}
.plain-section {
  padding: clamp(100px, 12vw, 160px) max(20px, calc((100% - 1080px) / 2));
}
.section-copy {
  max-width: 690px;
}
.section-copy.centered {
  margin: auto;
  text-align: center;
}
.eyebrow {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-copy h2,
.closing h2 {
  margin-bottom: 22px;
  font-size: clamp(40px, 5.3vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 600;
}
.section-copy > p:last-child {
  color: #596477;
  font-size: 18px;
  line-height: 1.7;
}
.problem {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 10vw;
  align-items: center;
  background: var(--soft);
}
.tool-mess {
  position: relative;
  min-height: 370px;
}
.tool-mess div {
  position: absolute;
  width: 230px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 45px #18294a10;
  transition: transform 400ms var(--ease-move);
}
.tool-mess div:nth-child(1) {
  top: 0;
  left: 0;
  transform: rotate(-3deg);
}
.tool-mess div:nth-child(2) {
  top: 70px;
  right: 0;
  transform: rotate(3deg);
}
.tool-mess div:nth-child(3) {
  bottom: 70px;
  left: 25px;
  transform: rotate(2deg);
}
.tool-mess div:nth-child(4) {
  right: 20px;
  bottom: 0;
  transform: rotate(-2deg);
}
.tool-mess span,
.tool-mess small {
  display: block;
}
.tool-mess span {
  font-weight: 600;
}
.tool-mess small {
  margin-top: 4px;
  color: #788293;
}
.answers {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.answers article {
  padding: 34px 34px 0 0;
}
.answers article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}
.answers span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}
.answers h3 {
  margin: 45px 0 10px;
  font-size: 23px;
  letter-spacing: -0.03em;
}
.answers p {
  max-width: 280px;
  margin: 0;
  color: #667184;
}
.closing {
  padding: clamp(90px, 10vw, 140px) max(20px, calc((100% - 1080px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: end;
  color: #fff;
  background: var(--ink);
}
.closing .eyebrow {
  color: var(--cyan);
}
.closing-form {
  width: 100%;
}
.closing .field input {
  color: #fff;
  background: #ffffff0b;
  border-color: #ffffff31;
}
.closing .form-note {
  color: #929dad;
}
.countdown {
  display: flex;
  gap: 12px;
  align-items: start;
}
.countdown div {
  min-width: 52px;
}
.countdown strong,
.countdown span {
  display: block;
}
.countdown strong {
  font-size: 30px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown span {
  color: #8f9bad;
  font-size: 9px;
  text-transform: uppercase;
}
.countdown i {
  color: #5c6879;
  font-style: normal;
  font-size: 21px;
}
footer {
  min-height: 100px;
  padding: 20px max(20px, calc((100% - 1080px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #737d8d;
  font-size: 11px;
}
footer .brand img {
  width: 112px;
}
footer p {
  margin: 0;
}
footer > a:last-child {
  justify-self: end;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
[hidden] {
  display: none !important;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 650ms var(--ease-out),
    transform 650ms var(--ease-out);
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}
@media (hover: hover) and (pointer: fine) {
  .tool-mess:hover div:nth-child(1) {
    transform: translate(-4px, -5px) rotate(-4deg);
  }
  .tool-mess:hover div:nth-child(2) {
    transform: translate(5px, -3px) rotate(4deg);
  }
  .tool-mess:hover div:nth-child(3) {
    transform: translate(-5px, 4px) rotate(3deg);
  }
  .tool-mess:hover div:nth-child(4) {
    transform: translate(4px, 5px) rotate(-3deg);
  }
}
@media (max-width: 820px) {
  .site-header nav {
    display: none;
  }
  .hero {
    padding-top: 90px;
  }
  .problem,
  .closing {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .tool-mess {
    width: min(500px, 100%);
  }
  .closing-form {
    margin: 0;
  }
  .answers {
    grid-template-columns: 1fr;
  }
  .answers article,
  .answers article + article {
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .answers h3 {
    margin-top: 25px;
  }
}
@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 28px);
    height: 72px;
  }
  .brand img {
    width: 110px;
  }
  .nav-cta {
    padding: 0 12px;
    font-size: 11px;
  }
  .hero {
    width: calc(100% - 28px);
    padding: 70px 0;
  }
  .hero h1 {
    font-size: clamp(48px, 15vw, 70px);
  }
  .hero-text {
    font-size: 17px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .product-demo {
    margin-top: 65px;
  }
  .window-body {
    min-height: 400px;
    grid-template-columns: 30px 1fr;
  }
  .window-body aside {
    gap: 10px;
  }
  .window-body aside span {
    width: 13px;
    height: 13px;
  }
  .flow-panel {
    inset: 0 0 0 30px;
    padding: 22px 16px;
  }
  .connections {
    grid-template-columns: 1fr 1fr;
  }
  .connections > div {
    padding: 12px;
  }
  .connections b {
    margin-bottom: 10px;
  }
  .sync-line {
    margin-top: 12px;
  }
  .metrics article {
    padding: 10px;
  }
  .metrics strong {
    font-size: 16px;
  }
  .chart-card svg {
    height: 110px;
  }
  .flow-steps button {
    font-size: 9px;
  }
  .flow-steps span {
    display: none;
  }
  .plain-section,
  .closing {
    padding-left: 18px;
    padding-right: 18px;
  }
  .tool-mess {
    min-height: 400px;
  }
  .tool-mess div {
    width: 200px;
  }
  .tool-mess div:nth-child(3) {
    left: 0;
  }
  .tool-mess div:nth-child(4) {
    right: 0;
  }
  footer {
    grid-template-columns: 1fr auto;
  }
  footer p {
    grid-column: 1/-1;
    grid-row: 2;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: opacity 180ms ease;
  }
  .flow-panel {
    transform: none;
    transition:
      opacity 180ms ease,
      filter 180ms ease;
  }
  .tool-mess div {
    transition: none !important;
  }
}
.brand {
  min-height: 44px;
  height: auto;
  overflow: visible;
}
.brand img {
  width: 136px;
  height: auto;
}
.window-bar img {
  width: 82px;
  height: auto;
}
footer .brand img {
  width: 112px;
  height: auto;
}
