:root {
  font-family: Carlito, Arial, sans-serif;
  color: #14142b;
  background: #fdfcf9;
  --navy: #14142b;
  --cream: #f0eee7;
  --line: #d6d6dc;
  --muted: #626377;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
header {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  color: var(--navy);
  background: rgba(253, 252, 249, 0.94);
  border-bottom: 1px solid rgba(20, 20, 43, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(7, 7, 22, 0.12);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 178px;
}
.logo img {
  display: block;
  width: 100%;
  height: auto;
}
.logo i,
.success i {
  font-style: normal;
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 8px;
  background: white;
  color: var(--navy);
}
nav {
  margin-left: auto;
  display: flex;
  gap: 30px;
}
nav a {
  opacity: 0.7;
}
nav a:hover {
  opacity: 1;
}
.btn {
  border: 0;
  border-radius: 4px;
  background: white;
  color: var(--navy);
  padding: 15px 19px;
  font: 700 15px inherit;
  display: inline-flex;
  justify-content: space-between;
  gap: 26px;
  cursor: pointer;
}
.desktop {
  padding: 11px 15px;
  background: var(--navy);
  color: white;
}
.menu {
  display: none;
}
.hero {
  min-height: 790px;
  color: white;
  padding-top: 170px;
  position: relative;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0 50% auto;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background:
    radial-gradient(circle at 82% 32%, #353583 0, transparent 28%), var(--navy);
  z-index: -1;
}
.tag {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #c1c1d1;
}
.tag b,
.dash-title b {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #79f4b4;
  border-radius: 50%;
  margin-right: 8px;
}
h1 {
  font-size: clamp(60px, 8vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  margin: 40px 0 30px;
}
h1 em {
  font-weight: 400;
  color: #aaaad0;
}
.hero > p {
  font-size: 20px;
  line-height: 1.55;
  color: #c5c5d5;
  max-width: 650px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 37px 0 65px;
}
.actions > a:last-child,
.demo a {
  font-weight: 700;
  border-bottom: 1px solid #777;
  padding: 5px 0;
}
.dashboard {
  background: #fafaf7;
  color: var(--navy);
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 28px 55px #0005;
}
.dash-title {
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.dash-title span {
  font-size: 12px;
  color: #666;
}
.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 34px;
}
.flow article {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flow article.active {
  background: var(--navy);
  color: white;
}
.flow small {
  color: #858696;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  padding-top: 17px;
}
.metrics span {
  text-align: center;
  color: #777;
  border-right: 1px solid var(--line);
}
.metrics span:last-child {
  border: 0;
}
.metrics b {
  color: var(--navy);
  margin-left: 14px;
}
.problem {
  background: var(--cream);
  padding: 100px 0;
}
.split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 100px;
  align-items: end;
}
.section {
  padding-top: 120px;
  padding-bottom: 120px;
}
.section > small,
.section .wrap > small,
.problem small,
.contact small {
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #65667a;
}
h2 {
  font-size: clamp(42px, 5vw, 67px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 20px 0;
}
p {
  line-height: 1.6;
  color: var(--muted);
}
.problem p,
.title p,
.demo > div > p,
.faq > div > div:first-child > p,
.contact > div > p {
  font-size: 18px;
}
.title {
  margin-bottom: 65px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.cards article {
  padding: 28px 35px 20px 0;
  margin-right: 35px;
  border-right: 1px solid var(--line);
}
.cards article:last-child {
  border: 0;
}
.cards span {
  color: #8c8d9d;
}
.cards h3 {
  font-size: 27px;
  margin: 45px 0 10px;
}
.navy {
  background: var(--navy);
  color: white;
}
.navy small {
  color: #aaaac4 !important;
}
.navy p {
  color: #b8b8c9;
}
.steps {
  margin-top: 60px;
  border-top: 1px solid #3c3c51;
}
.steps article {
  display: grid;
  grid-template-columns: 90px 1fr;
  border-bottom: 1px solid #3c3c51;
  padding: 27px 0;
}
.steps article > span {
  color: #8686a2;
}
.steps h3 {
  font-size: 27px;
  margin: 0 0 8px;
}
.steps p {
  margin: 0;
  max-width: 650px;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.about > div:last-child {
  padding-top: 28px;
}
.about > div:last-child p:first-child {
  margin-top: 0;
  font-size: 20px;
  color: var(--navy);
}
.proof {
  background: #f7f6f2;
}
.async-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
}
.proof-intro {
  max-width: 760px;
  margin-top: 30px;
}
.proof-intro > small {
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #65667a;
}
.proof-intro p {
  max-width: 680px;
  font-size: 18px;
}
.proof-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  border-top: 1px solid var(--line);
}
.proof-steps article {
  padding: 30px 35px 10px 0;
  margin-right: 35px;
  border-right: 1px solid var(--line);
}
.proof-steps article:last-child {
  margin-right: 0;
  border-right: 0;
}
.proof-steps span {
  color: #8c8d9d;
}
.proof-steps h3 {
  margin: 32px 0 10px;
  font-size: 25px;
}
.proof-steps p {
  margin-top: 0;
}
.demo {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 90px;
  align-items: center;
}
.video {
  aspect-ratio: 16/10;
  background: radial-gradient(circle, #34346f, #111124 65%);
  border-radius: 8px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0d0d1c;
  border-radius: 8px;
}
.soft {
  background: #f1efe9;
}
.faq {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 100px;
}
.faq details {
  border-top: 1px solid #c8c7c1;
  padding: 21px 0;
}
.faq details:last-child {
  border-bottom: 1px solid #c8c7c1;
}
.faq summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}
.faq summary::marker {
  display: none;
}
.faq summary span {
  font-size: 24px;
}
.faq details[open] summary span {
  transform: rotate(45deg);
}
.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: 100px;
}
.contact > div > a {
  display: block;
  font-weight: 700;
  margin-top: 20px;
}
.contact form,
.success {
  background: #f2f0e9;
  border-radius: 8px;
  padding: 36px;
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
label {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 18px;
}
label em {
  font-weight: 400;
  float: right;
  color: #777;
}
input,
textarea,
select {
  font: 16px inherit;
  color: var(--navy);
  background: white;
  border: 1px solid #cfcec8;
  border-radius: 4px;
  padding: 13px;
  width: 100%;
  margin-top: 7px;
}
textarea {
  resize: vertical;
}
form .btn {
  width: 100%;
  background: var(--navy);
  color: white;
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-weight: 400;
  line-height: 1.45;
}
.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--navy);
}
.consent a {
  font-weight: 700;
  text-decoration: underline;
}
form > small {
  display: block;
  text-align: center;
  margin-top: 12px;
  color: #777;
}
.success {
  text-align: center;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.success[hidden] {
  display: none;
}
.success i {
  background: var(--navy);
  color: white;
}
.success h3 {
  font-size: 34px;
  margin: 18px 0 0;
}
.success button {
  background: none;
  border: 0;
  border-bottom: 1px solid;
  font: 700 15px inherit;
  cursor: pointer;
}
footer {
  background: #0d0d1c;
  color: white;
  padding: 55px 0;
}
footer .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto auto;
  align-items: center;
  gap: 25px;
}
footer p,
footer small {
  color: #9999aa;
}
footer span {
  display: flex;
  gap: 10px;
}
.legal-page {
  padding-top: 160px;
  padding-bottom: 110px;
}
.legal-page > header {
  position: static;
  height: auto;
  display: block;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.legal-page > header p {
  font-size: 18px;
  max-width: 720px;
}
.legal-content {
  max-width: 820px;
  margin-top: 70px;
}
.legal-content h2 {
  margin-top: 45px;
  font-size: 30px;
  letter-spacing: -0.02em;
}
.legal-content ul {
  color: var(--muted);
  line-height: 1.7;
}
.site-credit a {
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.site-credit a:hover {
  border-bottom-color: white;
}
.footer-logo {
  width: 170px;
  background: white;
  border-radius: 5px;
  padding: 7px 10px;
}
.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: var(--navy);
}
.thank-you-card {
  width: min(620px, 100%);
  padding: clamp(34px, 7vw, 70px);
  border-radius: 10px;
  background: #fdfcf9;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}
.thank-you-card > img {
  display: block;
  width: min(210px, 70%);
  margin-bottom: 60px;
}
.thank-you-card small {
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #65667a;
}
.thank-you-card h1 {
  margin: 18px 0 24px;
  font-size: clamp(54px, 9vw, 86px);
}
.thank-you-card p {
  margin-bottom: 32px;
  font-size: 18px;
}
.thank-you-card .btn {
  background: var(--navy);
  color: white;
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 32px);
  }
  header {
    padding: 0 16px;
  }
  .desktop {
    display: none;
  }
  .menu {
    display: block;
    margin-left: auto;
    border: 0;
    background: none;
    color: var(--navy);
    font-size: 25px;
  }
  nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    background: var(--navy);
    color: white;
    padding: 10px 20px 16px;
    flex-direction: column;
    gap: 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 18px 35px rgba(7, 7, 22, 0.28);
  }
  nav a {
    color: white;
    opacity: 1;
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  nav a:last-child {
    border-bottom: 0;
  }
  nav a:hover,
  nav a:focus-visible {
    color: #79f4b4;
  }
  nav.open {
    display: flex;
  }
  .hero {
    padding-top: 140px;
    min-height: auto;
    padding-bottom: 70px;
  }
  .hero:before {
    inset: 0 50% auto;
  }
  h1 {
    font-size: 58px;
  }
  .hero > p {
    font-size: 18px;
  }
  .actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .flow {
    grid-template-columns: 1fr;
    padding: 22px 0;
  }
  .flow > b {
    transform: rotate(90deg);
    text-align: center;
  }
  .metrics {
    gap: 5px;
  }
  .metrics span {
    display: flex;
    flex-direction: column;
  }
  .metrics b {
    margin: 4px 0 0;
  }
  .problem,
  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }
  .split,
  .demo,
  .faq,
  .contact,
  .about {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .title {
    margin-bottom: 38px;
  }
  .cards,
  .proof-steps {
    grid-template-columns: 1fr;
  }
  .cards article,
  .proof-steps article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    margin: 0;
  }
  .proof-steps article:last-child {
    border-bottom: 0;
  }
  .cards h3 {
    margin-top: 23px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .contact form {
    padding: 22px;
  }
  footer .wrap {
    grid-template-columns: 1fr;
  }
  footer span {
    margin: 8px 0;
  }
}


.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  max-width: 860px;
  margin: 0 auto;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  color: white;
  background: #14142b;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
}
.cookie-banner strong {
  font-size: 18px;
}
.cookie-banner p {
  margin: 7px 0 0;
  color: #d7d7e2;
  line-height: 1.45;
}
.cookie-banner a {
  color: white;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
}
.cookie-actions button,
.cookie-settings {
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  padding: 11px 14px;
  font: 700 14px inherit;
  cursor: pointer;
}
.cookie-accept {
  color: #14142b;
  background: white;
}
.cookie-reject {
  color: white;
  background: transparent;
}
.cookie-settings {
  color: #9999aa;
  background: transparent;
  padding: 7px 10px;
}
.cookie-settings:hover {
  color: white;
  border-color: white;
}
@media (max-width: 700px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-actions button {
    flex: 1;
  }
}
