.legal-content {
  padding: 78px 0;
  max-width: 820px;
}
.legal-content h1 {
  font: 800 clamp(40px, 6vw, 64px) Manrope;
  letter-spacing: -2px;
  margin: 0 0 10px;
}
.legal-content h2 {
  font-size: 26px;
  margin: 42px 0 10px;
}
.legal-content p {
  color: var(--muted);
  max-width: 720px;
}
.legal-content ul {
  max-width: 720px;
  margin: 14px 0 20px;
  padding-left: 22px;
  color: var(--muted);
}
.legal-content li {
  margin: 8px 0;
}
.legal-content strong {
  color: var(--ink);
}
.legal-content a {
  color: var(--blue);
  font-weight: 700;
}
.legal-updated {
  font-size: 13px;
}
.legal-note {
  border-left: 3px solid var(--yellow);
  padding-left: 14px;
  margin: 30px 0 20px;
  font-size: 13px;
}
.legal-entity {
  max-width: 720px;
  margin: 30px 0 18px;
  padding: 24px;
  border: 1px solid #cad9fb;
  border-radius: 18px;
  background: linear-gradient(135deg, #edf4ff, #fff);
  box-shadow: 0 12px 28px #0b4ad810;
}
.legal-entity > p {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.legal-entity h2 {
  margin: 0;
  font:
    700 clamp(20px, 3vw, 26px) Manrope,
    sans-serif;
  letter-spacing: -0.8px;
}
.legal-entity .legal-entity-description {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}
.legal-entity > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 21px;
}
.legal-entity > div span {
  min-width: 170px;
  padding: 10px 13px;
  border: 1px solid #d8e4fa;
  border-radius: 10px;
  background: #fff;
}
.legal-entity small,
.legal-entity strong {
  display: block;
}
.legal-entity small {
  color: var(--muted);
  font-size: 11px;
}
.legal-entity strong {
  margin-top: 2px;
  font-size: 13px;
}
.legal-entity a {
  display: block;
  margin-top: 2px;
  font-size: 13px;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 8px 22px #001a5530;
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}
.main-nav.nav-open {
  display: flex;
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  background: var(--blue-dark);
  padding: 22px 18px;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 12px 18px #001a5530;
}
:root {
  --blue: #0b4ad8;
  --blue-dark: #083cae;
  --ink: #101828;
  --muted: #667085;
  --line: #eaecf0;
  --soft: #f8fafc;
  --yellow: #f8c84b;
  --green: #19a974;
  --purple: #7763d8;
  --orange: #f28b38;
  --radius: 20px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  background: var(--soft);
  font-size: 16px;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.container {
  width: min(1160px, calc(100% - 48px));
  margin: auto;
}
.site-header {
  height: 76px;
  background: var(--blue);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    backdrop-filter 0.25s ease;
}
.site-header.is-scrolled {
  background: #0b4ad8ed;
  box-shadow: 0 8px 24px #001a5530;
  backdrop-filter: blur(14px);
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand {
  display: flex;
  align-items: center;
  line-height: 0;
}
.brand-logo {
  width: 148px;
  height: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
  color: #cfddff;
}
.main-nav a:hover {
  color: #fff;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 19px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition:
    transform 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button svg,
.text-link svg {
  width: 17px;
  height: 17px;
}
.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px #0b4ad82b;
}
.button-primary:hover {
  background: var(--blue-dark);
}
.button-light {
  background: #fff;
  color: var(--blue);
}
.button-small {
  padding: 10px 14px;
  font-size: 13px;
}
.button-outline {
  border: 1px solid #cfd5df;
  color: var(--blue);
  background: #fff;
}
.menu-button {
  display: none;
  color: #fff;
  background: none;
  border: 0;
  padding: 6px;
}
.hero {
  background: var(--blue);
  color: #fff;
  overflow: hidden;
  padding: 83px 0 36px;
  position: relative;
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: #ffffff20;
}
.hero-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  min-height: 516px;
}
.hero-badge {
  display: inline-flex;
  margin: 0 0 27px;
  padding: 4px 13px;
  border: 1px solid #ffffff66;
  border-radius: 999px;
  color: #fff;
  background: #ffffff14;
  font-size: 12px;
  line-height: 1.35;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 11px;
  font-weight: 700;
  color: #94b4ff;
  margin: 0 0 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.eyebrow span {
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #f8c84b;
}
.hero h1,
h2 {
  font-family: Manrope, sans-serif;
  letter-spacing: -2.3px;
  line-height: 1.08;
  margin: 0;
}
.hero h1 {
  max-width: 570px;
  font-size: clamp(43px, 4.1vw, 57px);
  letter-spacing: -2.8px;
}
.hero h1 em,
h2 em {
  font-style: normal;
  color: #9edcff;
}
.hero-text {
  max-width: 510px;
  margin: 23px 0 31px;
  color: #d8e4ff;
  font-size: 16px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-primary {
  min-width: 174px;
  background: #fff;
  color: var(--blue);
  box-shadow: none;
}
.hero-primary:hover {
  background: #eef4ff;
}
.hero-secondary {
  min-width: 192px;
  border: 1px solid #ffffff91;
  background: transparent;
  color: #fff;
}
.hero-secondary:hover {
  background: #ffffff16;
}
.text-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero .text-link {
  color: #fff;
}
.play-icon {
  width: 29px;
  height: 29px;
  border: 1px solid #ffffff65;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.play-icon svg {
  width: 13px;
}
.hero-note {
  margin: 20px 0 0;
  color: #bed0fa;
  font-size: 13px;
  line-height: 1.4;
}
.avatar-stack {
  display: flex;
}
.avatar-stack b {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue);
  border-radius: 50%;
  font-size: 9px;
  background: #f8c84b;
  color: #845f00;
  margin-left: -6px;
}
.avatar-stack b:first-child {
  margin: 0;
  background: #fff;
  color: var(--blue);
}
.avatar-stack b:last-child {
  background: #91d6ff;
  color: var(--blue);
}
.hero-visual {
  height: 520px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.visual-glow {
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: #2768e72e;
  position: absolute;
  top: 30px;
  filter: blur(1px);
  animation: glow-pulse 5s ease-in-out infinite;
}
.phone {
  background: #101827;
  border: 6px solid #263b61;
  border-radius: 37px;
  padding: 7px;
  box-shadow: 0 30px 70px #001a5538;
  position: absolute;
  width: 235px;
  height: 458px;
  transition: box-shadow 0.3s ease;
}
.phone-front {
  z-index: 2;
  top: 0;
  right: 108px;
  height: 520px;
  transform: rotate(3deg);
  animation: phone-front-float 5.5s ease-in-out infinite;
}
.phone-back {
  top: 46px;
  right: 268px;
  transform: rotate(-10deg);
  opacity: 0.65;
  animation: phone-back-float 6.5s ease-in-out infinite;
}
.phone-notch {
  position: absolute;
  width: 78px;
  height: 18px;
  top: 0;
  left: calc(50% - 39px);
  background: #101827;
  border-radius: 0 0 12px 12px;
  z-index: 3;
}
.phone-screen {
  height: 100%;
  border-radius: 25px;
  background: #f7f9fc;
  color: var(--ink);
  padding: 30px 14px 10px;
  overflow: hidden;
}
.phone-screen.faded {
  background: #e9eff8;
}
.faded .screen-bar {
  display: block;
  width: 50px;
  height: 8px;
  background: #b9cae7;
  border-radius: 6px;
  margin: 16px;
}
.screen-line {
  display: block;
  width: 65%;
  height: 8px;
  background: #cbd8eb;
  border-radius: 6px;
  margin: 13px 16px;
}
.screen-line.wide {
  width: 82%;
  height: 15px;
}
.skeleton-card {
  height: 93px;
  background: #d4e0f0;
  border-radius: 13px;
  margin: 24px 12px;
}
.skeleton-card.short {
  height: 63px;
  margin-top: 12px;
}
.app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
}
.app-top small {
  color: #f3ad2e;
}
.app-top svg {
  width: 15px;
  color: #8a98ab;
}
.app-date {
  font-size: 7px;
  letter-spacing: 1px;
  color: #8c98a7;
  margin: 22px 0 4px;
}
.phone-screen h3 {
  font-family: Manrope;
  font-size: 21px;
  margin: 0 0 15px;
  letter-spacing: -0.7px;
}
.balance-card {
  background: var(--blue);
  color: #fff;
  border-radius: 14px;
  padding: 14px;
  position: relative;
}
.balance-card span {
  font-size: 9px;
  color: #b7ccfb;
  display: block;
}
.balance-card strong {
  display: block;
  font: 700 20px Manrope;
  margin-top: 3px;
}
.balance-card svg {
  position: absolute;
  right: 13px;
  top: 14px;
  width: 17px;
}
.balance-card small {
  font-size: 8px;
  color: #b7ffdf;
  position: absolute;
  right: 13px;
  bottom: 14px;
}
.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 11px 0 17px;
}
.mini-stats > div {
  background: #fff;
  border: 1px solid #edf0f4;
  border-radius: 11px;
  padding: 9px;
}
.stat-icon,
.order-icon,
.float-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  float: left;
  margin-right: 7px;
}
.stat-icon svg,
.order-icon svg,
.float-icon svg {
  width: 13px;
}
.blue {
  background: #e1ecff;
  color: var(--blue);
}
.orange {
  background: #fff0dc;
  color: #e98a20;
}
.mini-stats b {
  font: 700 14px Manrope;
  display: block;
}
.mini-stats small {
  display: block;
  color: #8c98a7;
  font-size: 7px;
  white-space: nowrap;
}
.app-section-head {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  margin-bottom: 9px;
}
.app-section-head span {
  color: var(--blue);
  font-weight: 700;
}
.order-row {
  background: #fff;
  border: 1px solid #edf0f4;
  border-radius: 10px;
  padding: 9px 7px;
  margin-bottom: 7px;
  min-height: 46px;
  font-size: 8px;
}
.order-row b {
  font-size: 8px;
  display: block;
}
.order-row small {
  color: #8c98a7;
  font-size: 6.5px;
}
.order-icon {
  float: left;
  margin-top: 1px;
}
.purple {
  background: #eee9ff;
  color: var(--purple);
}
.green {
  background: #e1f8ed;
  color: var(--green);
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  float: right;
  margin: 5px;
}
.app-nav {
  display: flex;
  justify-content: space-around;
  color: #98a3b3;
  margin-top: 20px;
}
.app-nav svg {
  width: 15px;
}
.app-nav svg:first-child {
  color: var(--blue);
}
.phone-front .app-home {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #f5f7fb;
}
.home-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 165px;
  padding: 32px 14px 0;
  background: #1d4edb;
  color: #fff;
}
.home-header b {
  display: block;
  font:
    700 16px Manrope,
    sans-serif;
  letter-spacing: -0.45px;
}
.home-header span {
  display: block;
  margin-top: 1px;
  color: #cad9ff;
  font-size: 9px;
}
.home-header strong {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #1d4edb;
  font-size: 9px;
}
.home-content {
  flex: 1;
  min-height: 0;
  padding: 0 9px;
}
.home-summary {
  margin-top: -78px;
  padding: 11px 10px 9px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 17px #14213d12;
}
.summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #667085;
  font-size: 9px;
}
.summary-head b {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px 8px;
  border-radius: 99px;
  background: #edf3ff;
  color: #1554d1;
  font-size: 8px;
}
.summary-head svg {
  width: 10px;
}
.home-summary > strong {
  display: block;
  margin: 6px 0 7px;
  color: #1d4edb;
  font:
    800 22px Manrope,
    sans-serif;
  letter-spacing: -1.1px;
}
.summary-line {
  display: block;
  height: 1px;
  margin-bottom: 5px;
  background: #edf0f4;
}
.home-metric {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  margin-top: 4px;
  padding: 5px 7px;
  border-radius: 12px;
  background: #f5f7fb;
}
.metric-icon {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 8px;
}
.metric-icon svg {
  width: 12px;
}
.metric-blue {
  background: #e6efff;
  color: #1d4edb;
}
.metric-orange {
  background: #fff0df;
  color: #f27a09;
}
.home-metric div b,
.home-metric div small {
  display: block;
}
.home-metric div b {
  font:
    700 8px Manrope,
    sans-serif;
}
.home-metric div small {
  margin-top: 1px;
  color: #6f7c90;
  font-size: 6.5px;
}
.home-metric > strong {
  color: #1554d1;
  font:
    800 10px Manrope,
    sans-serif;
  white-space: nowrap;
}
.home-metric .pending-value {
  color: #e97800;
  font-size: 9px;
}
.quick-actions {
  margin-top: 8px;
}
.quick-actions h3 {
  margin: 0 0 5px;
  font:
    800 12px Manrope,
    sans-serif;
  letter-spacing: -0.4px;
}
.home-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.home-action-grid article {
  min-height: 54px;
  padding: 7px 9px;
  border: 1px solid #e9edf3;
  border-radius: 13px;
  background: #fff;
}
.quick-icon {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  margin-bottom: 5px;
  border-radius: 7px;
}
.quick-icon svg {
  width: 11px;
}
.quick-blue {
  background: #e8efff;
  color: #1458dc;
}
.quick-green {
  background: #dff9eb;
  color: #0eaa68;
}
.quick-orange {
  background: #fff0df;
  color: #f27a09;
}
.quick-red {
  background: #ffe7e7;
  color: #fb5353;
}
.home-action-grid b,
.home-action-grid small {
  display: block;
}
.home-action-grid b {
  font:
    700 9px Manrope,
    sans-serif;
}
.home-action-grid small {
  margin-top: 1px;
  color: #7d899a;
  font-size: 6.5px;
}
.home-bottom-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  flex: none;
  margin: 5px 8px 7px;
  padding: 4px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 13px #15203910;
}
.home-bottom-nav span {
  display: grid;
  min-height: 31px;
  place-items: center;
  align-content: center;
  gap: 2px;
  border-radius: 10px;
  color: #657287;
}
.home-bottom-nav span.is-active {
  background: #1d4edb;
  color: #fff;
}
.home-bottom-nav svg {
  width: 13px;
  height: 13px;
}
.home-bottom-nav b {
  font-size: 6px;
  font-weight: 500;
}
.float-card {
  position: absolute;
  z-index: 4;
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 15px 30px #001c5028;
  font-size: 10px;
  min-width: 190px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.hero-visual:hover .phone {
  box-shadow: 0 35px 78px #001a5548;
}
.hero-visual:hover .float-card {
  box-shadow: 0 19px 36px #001c5033;
}
.float-card b,
.float-card small {
  display: block;
}
.float-card small {
  font-size: 8px;
  color: #8b98a7;
  margin-top: 2px;
}
.float-icon {
  float: none;
  margin: 0;
  width: 29px;
  height: 29px;
}
.float-card-top {
  top: 88px;
  right: 8px;
  animation: float-card-top 5s ease-in-out infinite;
}
.float-card-bottom {
  bottom: 67px;
  left: 28px;
  animation: float-card-bottom 5.8s ease-in-out infinite;
}
.trusted {
  display: flex;
  gap: 35px;
  align-items: center;
  padding: 24px 0 27px;
  color: #9eb8ef;
  font-size: 11px;
  border-top: 1px solid #ffffff1c;
}
.trusted > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  color: #bcd0f8;
  letter-spacing: 1px;
  font-size: 11px;
}
.section {
  padding: 112px 0;
}
.problem {
  background: #fff;
}
.problem-grid {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 100px;
  align-items: center;
}
.blue-eyebrow {
  color: var(--blue);
}
.blue-eyebrow span {
  background: var(--blue);
}
h2 {
  font-size: clamp(36px, 4vw, 50px);
}
.section-lead {
  color: var(--muted);
  max-width: 480px;
  font-size: 17px;
  margin: 22px 0 0;
}
.pain-list article {
  display: grid;
  grid-template-columns: 40px 1fr 18px;
  gap: 16px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.pain-list article:first-child {
  border-top: 1px solid var(--line);
}
.pain-number {
  color: var(--blue);
  font: 700 12px Manrope;
}
.pain-list h3,
.feature-card h3,
.steps h3 {
  margin: 0 0 5px;
  font: 700 17px Manrope;
}
.pain-list p,
.feature-card p,
.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.pain-list svg {
  width: 17px;
  color: #b8c0cc;
}
.solution {
  background: #f4f6f9;
}
.section-heading {
  text-align: center;
}
.section-heading .section-lead {
  margin-left: auto;
  margin-right: auto;
}
.solution-heading {
  max-width: 670px;
  text-align: left;
}
.solution-heading .eyebrow {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.solution-heading h2 {
  max-width: 650px;
  font-size: clamp(36px, 4vw, 48px);
  letter-spacing: -2.5px;
}
.solution-heading .section-lead {
  max-width: 650px;
  margin: 12px 0 0;
  font-size: 16px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.feature-card {
  min-height: 174px;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e7e9ee;
  box-shadow:
    0 2px 3px #10182808,
    0 14px 28px #10182808;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 7px 10px #10182808,
    0 18px 35px #10182812;
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #edf3ff;
  color: #0957ff;
}
.feature-icon svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.2;
}
.feature-card h3 {
  margin-bottom: 4px;
  font-size: 16px;
  letter-spacing: -0.35px;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.4;
}
.feature-card a {
  margin-top: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.feature-card a svg {
  width: 14px;
}
.functionalities {
  background: #f4f6f9;
  padding-top: 98px;
}
.functionalities-heading {
  max-width: 760px;
}
.functionalities-heading .eyebrow {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.functionalities-heading h2 {
  font-size: clamp(36px, 4vw, 48px);
  letter-spacing: -2.5px;
}
.functionality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 38px;
}
.functionality-card {
  min-height: 233px;
  padding: 29px;
  border: 1px solid #e4e7ec;
  border-radius: 25px;
  background: #fff;
  box-shadow:
    0 2px 3px #10182806,
    0 13px 28px #10182807;
}
.functionality-title {
  display: flex;
  align-items: center;
  gap: 13px;
}
.functionality-title > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: #0b4ad8;
  color: #fff;
}
.functionality-title svg {
  width: 19px;
  height: 19px;
}
.functionality-title h3 {
  margin: 0;
  font:
    500 19px Manrope,
    sans-serif;
  letter-spacing: -0.55px;
}
.functionality-card ul {
  display: grid;
  gap: 9px;
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
}
.functionality-card li {
  display: flex;
  gap: 13px;
  color: #667085;
  font-size: 14px;
  line-height: 1.35;
}
.functionality-card li::before {
  content: "✓";
  color: #12a968;
  font-weight: 700;
}
.functionality-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.functionality-pills span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 20px;
  border: 1px solid #e2e5eb;
  border-radius: 999px;
  background: #fff;
  color: #667085;
  font-size: 14px;
  white-space: nowrap;
}
.functionality-pills svg {
  width: 17px;
  color: #0957ff;
}
.workflow {
  background: #fff;
}
.workflow-grid {
  display: grid;
  grid-template-columns: 52% 1fr;
  gap: 100px;
  align-items: center;
}
.workflow-visual {
  position: relative;
  min-height: 400px;
}
.dashboard-card {
  background: #182233;
  color: #fff;
  border-radius: 18px;
  padding: 28px 30px;
  width: 80%;
  box-shadow: 0 22px 40px #10182824;
}
.dash-head {
  display: flex;
  justify-content: space-between;
  color: #b5c1d2;
  font-size: 12px;
}
.dash-head svg {
  width: 17px;
}
.dash-total {
  margin-top: 40px;
}
.dash-total small {
  font-size: 11px;
  color: #9daabe;
  display: block;
}
.dash-total > b {
  font: 700 30px Manrope;
  display: block;
  margin: 6px 0;
}
.dash-total span {
  font-size: 10px;
  color: #71dfa7;
}
.dash-total span svg {
  width: 12px;
  vertical-align: middle;
}
.dash-total span small {
  display: inline;
  color: #8390a5;
  margin-left: 7px;
}
.chart {
  height: 115px;
  display: flex;
  align-items: end;
  gap: 13px;
  margin-top: 38px;
  border-bottom: 1px solid #ffffff18;
}
.chart span {
  width: 22px;
  background: #49658e;
  border-radius: 5px 5px 0 0;
}
.chart span:nth-child(1) {
  height: 34%;
}
.chart span:nth-child(2) {
  height: 49%;
}
.chart span:nth-child(3) {
  height: 43%;
}
.chart span:nth-child(4) {
  height: 68%;
}
.chart span:nth-child(5) {
  height: 57%;
}
.chart span:nth-child(6) {
  height: 82%;
}
.chart span:nth-child(7) {
  height: 94%;
}
.chart span.active {
  background: #5a6bff;
}
.chart-labels {
  display: flex;
  justify-content: space-between;
  color: #7f8da5;
  font-size: 8px;
  padding-top: 10px;
}
.side-note {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 15px;
  width: 185px;
  right: 0;
  bottom: 6px;
  box-shadow: 0 13px 27px #10182818;
}
.side-note svg {
  color: #e6aa18;
  width: 20px;
  float: left;
  margin-right: 9px;
}
.side-note b,
.side-note span {
  display: block;
  font-size: 11px;
}
.side-note span {
  font-size: 10px;
  color: var(--muted);
  margin-top: 7px;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 35px 0 0;
}
.steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 17px;
  padding: 0 0 24px;
  position: relative;
}
.steps li:not(:last-child):after {
  content: "";
  position: absolute;
  left: 13px;
  top: 29px;
  height: calc(100% - 13px);
  border-left: 1px dashed #c8d0db;
}
.steps li > b {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eaf2ff;
  color: var(--blue);
  font: 700 10px Manrope;
  z-index: 1;
}
.plans {
  background: var(--soft);
}
.plans h2 em {
  color: var(--blue-dark);
}
.plans-note {
  margin: 13px 0 0;
  color: #667085;
  font-size: 13px;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 53px;
  align-items: stretch;
}
.plan-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 29px 25px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-card.featured-plan {
  border: 2px solid var(--blue);
  padding: 28px 24px;
  box-shadow: 0 13px 30px #0b4ad817;
}
.popular {
  position: absolute;
  right: 20px;
  top: 18px;
  background: #e4edff;
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  padding: 5px 8px;
  border-radius: 5px;
}
.plan-label {
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 1.2px;
  font-weight: 700;
}
.plan-card h3 {
  font: 700 25px Manrope;
  margin: 12px 0 7px;
}
.plan-card > div > p {
  color: var(--muted);
  font-size: 13px;
  min-height: 42px;
  margin: 0;
}
.price {
  display: flex;
  align-items: baseline;
  margin: 24px 0 2px;
  gap: 7px;
}
.price b {
  font: 700 31px Manrope;
  letter-spacing: -1.5px;
}
.price span {
  color: var(--muted);
  font-size: 12px;
}
.annual {
  display: block;
  color: var(--muted);
  font-size: 11px;
  height: 20px;
}
.plan-card .button {
  width: 100%;
  margin-top: 17px;
}
.plan-card ul {
  list-style: none;
  padding: 20px 0 0;
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
}
.plan-card li {
  font-size: 12px;
  margin: 11px 0;
  color: #475467;
  display: flex;
  gap: 8px;
  align-items: start;
}
.plan-card li svg {
  width: 15px;
  color: var(--green);
  flex: none;
  margin-top: 1px;
}
.security {
  background: #182233;
  color: #fff;
  padding: 62px 0;
}
.security-inner {
  display: flex;
  align-items: center;
  gap: 27px;
}
.security-icon {
  width: 62px;
  height: 62px;
  border: 1px solid #ffffff28;
  color: #80c5ff;
  border-radius: 15px;
  display: grid;
  place-items: center;
  flex: none;
}
.security-icon svg {
  width: 29px;
}
.security .eyebrow {
  color: #80c5ff;
  margin-bottom: 11px;
}
.security h2 {
  font-size: 32px;
}
.security p:not(.eyebrow) {
  color: #aab6c7;
  margin: 10px 0 0;
  max-width: 620px;
  font-size: 14px;
}
.light-link {
  margin-left: auto;
  color: #fff;
  white-space: nowrap;
}
.faq {
  background: #fff;
}
.faq-grid {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 115px;
}
.faq-grid .section-lead {
  font-size: 15px;
  margin-bottom: 30px;
}
.accordion details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.accordion details:first-child {
  border-top: 1px solid var(--line);
}
.accordion summary {
  cursor: pointer;
  list-style: none;
  font: 700 15px Manrope;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary svg {
  width: 18px;
  color: var(--blue);
  transition: transform 0.2s;
}
.accordion details[open] summary svg {
  transform: rotate(45deg);
}
.accordion p {
  color: var(--muted);
  font-size: 14px;
  max-width: 630px;
  margin: 14px 30px 0 0;
}
.download {
  background: var(--blue);
  color: #fff;
  padding: 88px 0;
}
.download-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.download .eyebrow {
  color: #a1c1ff;
}
.download h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 43px;
}
.download p:not(.eyebrow) {
  color: #d0defc;
  margin: 20px auto 25px;
}
.store-buttons {
  display: flex;
  gap: 11px;
  justify-content: center;
}
.store-button {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--ink);
  border-radius: 9px;
  padding: 9px 15px;
  font-weight: 700;
  font-size: 13px;
}
.store-button svg {
  color: var(--blue);
  width: 22px;
}
.store-button small {
  font-size: 8px;
  font-weight: 400;
  display: block;
}
.site-footer {
  background: #0b1220;
  color: #bac6d9;
  padding: 38px 0 25px;
  font-size: 12px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-bottom: 28px;
  border-bottom: 1px solid #ffffff18;
}
.footer-top p {
  margin: 0;
  color: #8491a7;
}
.footer-contact {
  margin-left: auto;
  display: flex;
  gap: 24px;
}
.footer-contact a:hover,
.footer-bottom a:hover {
  color: #fff;
}
.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #718097;
  font-size: 11px;
}
.footer-legal {
  margin: 0;
}
.footer-legal small {
  display: block;
  margin-top: 4px;
  color: #5f6f88;
  font-size: 10px;
}
.footer-bottom div {
  display: flex;
  gap: 22px;
}
.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 85% 10%, #dbe8ff 0, transparent 34%),
    #f7f9fd;
}
.not-found-content {
  max-width: 700px;
  padding: 56px 0;
}
.not-found-content .brand {
  display: inline-flex;
  margin-bottom: 70px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--blue);
}
.not-found-content h1 {
  max-width: 610px;
  margin: 12px 0 16px;
  font: 800 clamp(38px, 7vw, 66px) / 1.04 Manrope, sans-serif;
  letter-spacing: -2px;
}
.not-found-content > p:not(.eyebrow) {
  max-width: 525px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
}
.reveal {
  animation: rise 0.7s ease both;
}
.reveal-delay {
  animation-delay: 0.15s;
}
.js-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.button::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(
    115deg,
    transparent 24%,
    #ffffff52 48%,
    transparent 72%
  );
  transform: translateX(-130%);
  transition: transform 0.55s ease;
}
.button:hover::after {
  transform: translateX(130%);
}
.main-nav a,
.footer-contact a,
.footer-bottom a {
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}
.main-nav a {
  position: relative;
}
.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.pain-list article {
  padding-right: 8px;
  padding-left: 8px;
  border-radius: 12px;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    padding 0.25s ease;
}
.pain-list article:hover {
  padding-right: 16px;
  padding-left: 16px;
  background: #f6f9ff;
  transform: translateX(5px);
}
.pain-list article:hover svg {
  color: var(--blue);
  transform: translate(2px, -2px);
}
.pain-list svg {
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
.feature-card:hover .feature-icon,
.functionality-card:hover .functionality-title > span {
  transform: scale(1.08) rotate(-5deg);
}
.feature-icon,
.functionality-title > span,
.functionality-pills span,
.steps li > b,
.security-icon {
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}
.functionality-card,
.plan-card,
.dashboard-card,
.side-note,
.functionality-pills span,
.store-button {
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}
.functionality-card:hover,
.plan-card:hover {
  border-color: #cbd8f8;
  transform: translateY(-6px);
  box-shadow: 0 18px 38px #10182814;
}
.functionality-card:hover li::before {
  animation: check-pop 0.35s ease both;
}
.functionality-pills span:hover {
  border-color: #b9cbf7;
  background: #f7faff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #1018280c;
}
.functionality-pills span:hover svg {
  transform: rotate(-10deg) scale(1.15);
}
.dashboard-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 30px 54px #10182835;
}
.side-note:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px #10182820;
}
.steps li:hover > b {
  background: var(--blue);
  color: #fff;
  transform: scale(1.12);
}
.steps li {
  transition: transform 0.25s ease;
}
.steps li:hover {
  transform: translateX(5px);
}
.accordion details {
  transition:
    background 0.25s ease,
    padding 0.25s ease;
}
.accordion details:hover {
  background: #f8faff;
}
.accordion details[open] {
  background: #f8faff;
  padding-right: 16px;
  padding-left: 16px;
  border-radius: 12px;
}
.accordion details[open] p {
  animation: accordion-in 0.3s ease both;
}
.store-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 13px 25px #001a5533;
}
.security-icon {
  animation: security-pulse 3.8s ease-in-out infinite;
}
.chart span {
  transform-origin: bottom;
  animation: bar-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.chart span:nth-child(2) {
  animation-delay: 0.08s;
}
.chart span:nth-child(3) {
  animation-delay: 0.16s;
}
.chart span:nth-child(4) {
  animation-delay: 0.24s;
}
.chart span:nth-child(5) {
  animation-delay: 0.32s;
}
.chart span:nth-child(6) {
  animation-delay: 0.4s;
}
.chart span:nth-child(7) {
  animation-delay: 0.48s;
}
@keyframes check-pop {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes accordion-in {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes security-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 #80c5ff00;
  }
  50% {
    box-shadow: 0 0 0 10px #80c5ff12;
  }
}
@keyframes bar-rise {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
.feature-card:nth-child(2),
.functionality-card:nth-child(2) {
  transition-delay: 0.08s;
}
.feature-card:nth-child(3),
.functionality-card:nth-child(3) {
  transition-delay: 0.16s;
}
.feature-card:nth-child(4),
.functionality-card:nth-child(4) {
  transition-delay: 0.24s;
}
@keyframes glow-pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}
@keyframes phone-front-float {
  0%,
  100% {
    transform: rotate(3deg) translateY(0);
  }
  50% {
    transform: rotate(3deg) translateY(-10px);
  }
}
@keyframes phone-back-float {
  0%,
  100% {
    transform: rotate(-10deg) translateY(0);
  }
  50% {
    transform: rotate(-10deg) translateY(10px);
  }
}
@keyframes phone-back-float-mobile {
  0%,
  100% {
    transform: rotate(-10deg) scale(0.88) translateY(0);
  }
  50% {
    transform: rotate(-10deg) scale(0.88) translateY(10px);
  }
}
@keyframes float-card-top {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes float-card-bottom {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@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 (max-width: 850px) {
  .container {
    width: min(100% - 36px, 600px);
  }
  .main-nav,
  .site-header .button-small {
    display: none;
  }
  .menu-button {
    display: block;
    margin-left: auto;
  }
  .hero {
    padding-top: 56px;
  }
  .hero-grid {
    display: block;
    min-height: 0;
  }
  .hero-copy {
    padding-bottom: 20px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero-text {
    font-size: 16px;
  }
  .hero-visual {
    height: 485px;
    margin-top: 18px;
  }
  .phone-front {
    right: calc(50% - 117px);
  }
  .phone-back {
    right: calc(50% + 28px);
    transform: rotate(-10deg) scale(0.88);
    animation-name: phone-back-float-mobile;
  }
  .float-card-top {
    right: calc(50% - 189px);
    top: 80px;
  }
  .float-card-bottom {
    left: calc(50% - 180px);
    bottom: 43px;
  }
  .trusted {
    display: block;
    text-align: center;
  }
  .trusted > div {
    gap: 13px;
    margin-top: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .section {
    padding: 78px 0;
  }
  .problem-grid,
  .workflow-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .functionality-pills {
    grid-template-columns: repeat(2, 1fr);
  }
  .workflow-visual {
    min-height: 360px;
  }
  .dashboard-card {
    width: 90%;
    margin: auto;
  }
  .side-note {
    right: 2%;
    bottom: 0;
  }
  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .plan-card.featured-plan {
    order: -1;
  }
  .security-inner {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .light-link {
    margin-left: 89px;
  }
  .download h2 {
    font-size: 37px;
  }
  .footer-top,
  .footer-bottom {
    display: block;
  }
  .footer-top p {
    margin: 15px 0;
  }
  .footer-contact {
    margin: 20px 0 0;
    display: block;
  }
  .footer-contact a {
    display: block;
    margin: 8px 0;
  }
  .footer-bottom div {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}
@media (max-width: 480px) {
  .container {
    width: calc(100% - 32px);
  }
  .legal-entity {
    padding: 20px;
  }
  .legal-entity > div {
    flex-direction: column;
  }
  .legal-entity > div span {
    min-width: 0;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .hero-visual {
    margin-left: -10px;
    margin-right: -10px;
    transform: scale(0.92);
    transform-origin: top center;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .functionality-grid,
  .functionality-pills {
    grid-template-columns: 1fr;
  }
  .functionality-card {
    min-height: 0;
    padding: 25px 22px;
  }
  .functionality-pills {
    gap: 10px;
  }
  .feature-card {
    min-height: 218px;
  }
  .feature-icon {
    margin-bottom: 24px;
  }
  .workflow-visual {
    transform: scale(0.9);
    transform-origin: left center;
    margin-right: -35px;
  }
  .dashboard-card {
    padding: 24px 20px;
  }
  .chart {
    gap: 8px;
  }
  .chart span {
    width: 19px;
  }
  .security h2 {
    font-size: 29px;
  }
  .light-link {
    margin-left: 89px;
    margin-top: 5px;
  }
  .download {
    padding: 66px 0;
  }
  .download h2 {
    font-size: 34px;
  }
  .store-buttons {
    flex-direction: column;
    width: 180px;
    margin-left: auto;
    margin-right: auto;
  }
  .trusted > div b {
    font-size: 9px;
  }
  .phone-back {
    display: none;
  }
  .phone-front {
    right: calc(50% - 125px);
  }
}
