:root {
  --color--background-color: white;
  --fonts--heading-font: Manrope, sans-serif;
  --color--font-color: #07185a;
  --fonts--paragraph-font: Manrope, sans-serif;
  --color--paragraph-color: #425072;
  --color--blue: #1f7bff;
  --color--purple: #6a3bff;
  --color--orange: #11d7c2;
  --color--grey-sections: #f8faff;
  --color--money-green: #11d7c2;
  --color--secondary-navy: #081b63;
  --color--soft-violet: #7b45f5;
  --color--cyan: #22c7f6;
  --color--teal: #11d7c2;
  --gradient--brand: linear-gradient(135deg, #6a3bff 0%, #1f7bff 42%, #22c7f6 72%, #11d7c2 100%);
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--color--background-color);
  font-family: var(--fonts--heading-font);
  color: var(--color--font-color);
  font-size: 14px;
  line-height: 1.2;
}

h1 {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 110px;
  font-weight: 800;
  line-height: 1.2;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 55px;
  font-weight: 500;
  line-height: 1.2;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.2;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

p {
  font-family: var(--fonts--paragraph-font);
  color: var(--color--paragraph-color);
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

a {
  color: var(--color--font-color);
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  font-family: var(--fonts--paragraph-font);
  color: var(--color--paragraph-color);
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}

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

blockquote {
  border-right: 2px solid var(--color--blue);
  border-left: 2px solid var(--color--blue);
  text-transform: none;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 50px 20px;
  font-family: var(--fonts--paragraph-font);
  font-size: 20px;
  font-style: normal;
  line-height: 1.7;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
  font-family: var(--fonts--paragraph-font);
  font-size: 16px;
}

.white-colors-show-case {
  background-color: #fff;
  border-radius: 300px;
  width: 54px;
  height: 54px;
  box-shadow: 0 0 9px #00000047;
}

.yellow-color-show-case {
  background-color: var(--color--blue);
  border-radius: 300px;
  width: 54px;
  height: 54px;
}

.yellow-color-show-case.blue {
  background-color: var(--color--purple);
}

.yellow-color-show-case.orange {
  background-color: var(--color--orange);
}

.color-container {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.center-top {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.black-background {
  background-color: #d8d8d8;
}

.color-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  display: flex;
}

._4-col-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.black-background-padding {
  padding: 40px;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 2em;
}

.container.navbar-container {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 16px;
  align-items: center;
  width: auto;
  max-width: none;
  height: 50px;
  padding: 4px 4px 4px 5px;
  display: flex;
}

.container.no-paddings {
  padding-top: 0;
  padding-bottom: 0;
}

._100width {
  width: 100%;
}

.border-box {
  border: 1px solid #cdcdcd;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.button {
  border: 1px solid var(--color--grey-sections);
  font-family: var(--fonts--paragraph-font);
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  transition: background-position .25s, background-color .45s;
}

.button:hover {
  color: #fff;
  background-color: #222;
}

.button.navbar-button {
  background-color: var(--color--font-color);
  height: 41px;
  color: var(--color--background-color);
  border-style: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.button.navbar-button:hover {
  background-color: #292929;
}

.button.transparent {
  border-color: var(--color--grey-sections);
  color: var(--color--grey-sections);
  background-color: #fff0;
  transition-property: color, background-color;
}

.button.transparent:hover {
  color: #adadad;
}

.button.white {
  color: #000;
  text-align: center;
  background-color: #fff;
  border: 1px solid #0f0f0f;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 10px 42px;
  font-size: 16px;
  display: flex;
}

.button.white:hover {
  background-color: #fff;
}

.button.form-button {
  background-color: var(--color--purple);
  color: #fff;
  border: 1px solid #b27cff;
  border-radius: 8px;
  height: 42px;
  padding: 10px 22px;
  font-size: 14px;
  transition-property: border-color, background-color;
}

.button.form-button:hover {
  background-color: #640d7e;
  border-color: #922ab1;
}

.style-guide-box-holder {
  background-color: #fff;
  padding: 20px;
}

.style-guide-box-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}

.colors-buttons {
  grid-column-gap: 90px;
  align-items: center;
  display: flex;
}

.section.grey-section {
  background-color: var(--color--grey-sections);
}

.section.hero-section {
  margin-top: -72px;
}

.button-container {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  background-color: #eee;
  border: 2px solid #ebebeb;
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  display: flex;
}

._8-col-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._6-col-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.cols-text {
  font-size: 15px;
  font-weight: 400;
}

.paragraph-xl {
  font-size: 20px;
  line-height: 1.5;
}

.navbar {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70px;
  display: flex;
  position: sticky;
  top: 0;
}

.navbar-holder {
  width: 100%;
  height: 100%;
}

.navbar-container, .nav-menu-link-holder {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.nav-menu-link-container {
  flex: 1;
  justify-content: center;
  height: 100%;
  display: flex;
}

.brand-image {
  width: 100%;
}

.nav-menu {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 12px;
  display: flex;
}

.nav-links {
  grid-column-gap: 6px;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
}

.nav-link {
  font-family: var(--fonts--paragraph-font);
  color: var(--color--paragraph-color);
  border-bottom: 3px solid #fff0;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 9px 12px 8px;
  font-size: 14px;
  transition: background-color .6s;
  display: flex;
}

.nav-link.w--current {
  background-color: var(--color--blue);
  color: #fff;
}

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-block {
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.title-small {
  font-family: var(--fonts--paragraph-font);
  color: var(--color--font-color);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.footer-link {
  color: var(--color--paragraph-color);
  font-family: var(--fonts--paragraph-font);
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  transition: color .475s;
}

.footer-link:hover {
  color: #fff;
}

.footer-divider {
  border-top: 1px solid #d3d3d3;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 120px;
  padding-top: 40px;
  display: flex;
}

.footer-copyright-center {
  text-transform: uppercase;
  font-size: 15px;
}

.black-link {
  color: var(--color--font-color);
  text-decoration: underline;
  transition: color .375s;
}

.black-link:hover {
  color: #a1a1a1;
}

.title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
}

.black-text {
  color: var(--color--font-color);
}

.featured-logo-wrapper {
  width: 110px;
}

.title-container {
  max-width: 762px;
}

.paragraph-holder {
  max-width: 465px;
}

.early-access-card {
  perspective: 1500px;
  width: 100%;
  min-width: 370px;
  position: relative;
}

.early-access-tag-holder {
  grid-column-gap: 10px;
  align-items: center;
  font-family: var(--fonts--paragraph-font);
  font-size: 18px;
  display: flex;
}

.early-access-title-holder {
  max-width: 349px;
}

.power-feature-card-container {
  background-color: #0d0d0d;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.power-feature-heading {
  font-size: 20px;
}

.testimonial-slide {
  width: 100%;
  height: auto;
  margin-left: 15px;
  margin-right: 15px;
  left: -15px;
}

.hide {
  display: none;
}

.pricing-tag {
  text-transform: uppercase;
  border: 1px solid #fff3;
  border-radius: 100px;
  padding: 9px 16px;
  font-size: 18px;
}

.pricing-header {
  font-size: 42px;
  font-weight: 500;
}

.pricing-list-holder {
  border-top: 1px solid #414142;
  border-bottom: 1px solid #414142;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 55px;
  padding-bottom: 55px;
}

.checked-list-holder {
  grid-column-gap: 18px;
  align-items: center;
  display: flex;
}

.pricing-footer-holder {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.cta-form-holder {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 75px;
  padding-bottom: 32px;
  display: flex;
  position: relative;
}

.cta-form-holder.no-paddings {
  padding-top: 13px;
  padding-bottom: 13px;
}

.text-field {
  width: 100%;
  height: 42px;
  color: var(--color--font-color);
  background-color: #fafafa;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  margin-bottom: 0;
  font-size: 16px;
  transition: border-color .45s, box-shadow .425s;
}

.text-field:hover {
  border-color: #fff;
}

.text-field:focus {
  border-color: var(--color--blue);
}

.text-field::placeholder {
  color: #7d7d7d;
  font-size: 15px;
}

.submit-button {
  background-color: var(--color--blue);
  background-image: url('../images/Arrow.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 30px;
  width: 30px;
  height: 30px;
  padding: 14px 2px 2px;
  transition: background-color .375s;
  position: absolute;
  right: 10px;
}

.submit-button:hover {
  background-color: #0f56c3;
}

.error-message {
  color: #fff;
  text-align: center;
  background-color: #333;
  border: 1px solid #aa5252;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 0;
  font-size: 14px;
  box-shadow: 0 4px 4px #0000003d, 0 0 14px #0000003d, 0 21px 36px #ff00041f;
}

.error-message::placeholder {
  color: #7d7d7d;
  font-family: var(--fonts--paragraph-font);
  font-size: 15px;
}

.help-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.help-container {
  border-right: 1px solid #ddd;
  min-width: 270px;
  padding-top: 80px;
  position: relative;
}

.help-content-holder {
  grid-row-gap: 30px;
  flex-direction: column;
  padding-top: 80px;
  display: flex;
}

.help-back-link-holder {
  grid-column-gap: 8px;
  color: #7d7d7d;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  transition: color .4s;
  display: flex;
}

.help-back-link-holder:hover {
  color: #fff;
}

.help-icon-holder {
  width: 8px;
}

.help-icon {
  width: 100%;
}

.help-link-holder {
  grid-row-gap: 36px;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.help-link-container {
  z-index: 3;
  grid-column-gap: 16px;
  opacity: .5;
  color: var(--color--font-color);
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  position: relative;
  left: 2px;
}

.help-link-container.w--current {
  border-right: 3px solid var(--color--blue);
  opacity: 1;
}

.help-link-icon-holder {
  width: 26px;
}

.help-link-icon {
  filter: invert();
  width: 100%;
}

.help-center-pragraph-holder {
  max-width: 570px;
}

.figma-file-holder {
  margin-top: 40px;
  margin-bottom: 40px;
}

.figma-file-container {
  grid-column-gap: 32px;
  opacity: 1;
  background-color: #ebebeb;
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  align-items: flex-start;
  padding: 26px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 4px #00000040, 1px 1px 14px #00000040, 0 21px 36px #635bff21;
}

.figma-file-container.center {
  white-space: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.figma-file-icon-holder {
  width: 41px;
  min-width: 41px;
  height: 41px;
}

.figla-file-icon {
  filter: invert();
  width: 100%;
}

.figma-file-content-holder {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.figma-header {
  font-size: 24px;
}

.full-width-image-holder {
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
}

.full-width-image {
  border-radius: 20px;
  width: 100%;
}

.sticky {
  position: sticky;
  top: 85px;
}

.link {
  color: var(--color--font-color);
  text-decoration: underline;
  transition: color .375s;
}

.link:hover {
  color: #afafaf;
}

.change-log-block-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 600px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

._404 {
  grid-column-gap: 30px;
  grid-row-gap: 15px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.brand {
  width: 36px;
  padding-bottom: 0;
}

.reviews-logos-holder {
  align-items: center;
  padding-bottom: 8em;
  display: flex;
  overflow: hidden;
}

.deploying-app-title-holder {
  max-width: 440px;
  margin-bottom: 20px;
}

.deploying-app-link-holder {
  grid-column-gap: 8px;
  align-items: center;
  margin-top: 32px;
  font-family: var(--fonts--paragraph-font);
  font-size: 16px;
  display: flex;
}

.deploying-app-images-holder {
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.deploying-app-paragraph-holder {
  max-width: 530px;
}

.gradient-line {
  opacity: .5;
  background-image: linear-gradient(to right, #ebebeb00, #ebebeb 17% 81%, #ebebeb00);
  width: 100%;
  height: 1px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.tab-link {
  background-color: #19191b;
  border: 1px solid #2f2f2f;
  border-radius: 16px;
  height: 100%;
  padding: 23px;
  transition: border-color .425s;
}

.tab-link:hover {
  border-color: #8a8a8a;
}

.tab-link.w--current {
  background-color: #1b1c1d;
  border-color: #fff;
}

.footer-signup-holder {
  grid-row-gap: 30px;
  flex-direction: column;
  width: 320px;
  display: flex;
}

.footer-title {
  font-family: var(--fonts--paragraph-font);
  font-size: 16px;
  font-weight: 500;
}

.form {
  grid-column-gap: 12px;
  align-items: center;
  display: flex;
}

.success-message {
  color: var(--color--background-color);
  background-color: #191919;
  border: 1px solid #5d5d5d;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
}

.form-block {
  margin-bottom: 0;
}

.social-media-holder {
  grid-column-gap: 30px;
  align-items: center;
  display: flex;
}

.social-media-container {
  width: 24px;
}

.social-media-image {
  width: 100%;
}

.footer-container {
  z-index: 2;
  background-color: var(--color--background-color);
  padding-top: 50px;
  padding-bottom: 30px;
  position: relative;
}

.footer-brand-holder {
  width: 64px;
}

.footer-brand {
  width: 100%;
}

.hero-center-text-holder {
  grid-row-gap: 24px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.gradient-text {
  background-image: linear-gradient(to right, var(--color--blue), var(--color--purple) 54%, var(--color--orange));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
}

.hero-paragraph-holder {
  max-width: 680px;
}

.hero-phone-holder {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.hero-phone-container {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  perspective: 1500px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 400px 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 120%;
  padding-top: 100px;
  display: grid;
  position: relative;
}

.hero-section-phone-holder {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.hero-section-phone-holder.cta {
  width: 400px;
  margin-bottom: -26%;
}

.hero-section-phone-image {
  z-index: 1;
  width: 100%;
  position: relative;
}

.hero-section-phone-screenshot-holder {
  padding: 5%;
  position: absolute;
  inset: 0%;
}

.hero-section-phone-screenshot-image {
  object-fit: cover;
  border-radius: 40px;
  width: 100%;
  height: 100%;
}

.home-hero-holder {
  padding-top: 80px;
  overflow: hidden;
}

.hero-card-image-holder {
  width: 100%;
  max-width: 370px;
  height: 360px;
  display: flex;
  position: relative;
}

.hero-card-image {
  perspective: 1500px;
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.blured-bg {
  z-index: -1;
  background-image: linear-gradient(225deg, var(--color--blue), var(--color--purple) 51%, var(--color--orange) 64%);
  opacity: .37;
  filter: blur(120px);
  border-radius: 400px;
  width: 600px;
  height: 600px;
  position: absolute;
  top: -5%;
}

.blured-bg.pricing {
  opacity: .76;
  width: 100%;
  height: 430px;
  top: 11%;
}

.reviews-logos-container {
  grid-column-gap: 90px;
  flex-direction: row;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.title-holder {
  grid-row-gap: 12px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 30px;
  display: flex;
}

.reviews-logos {
  min-width: 130px;
}

.reviews-logos-wrapper {
  position: relative;
}

.reviews-logo-image {
  filter: invert(51%);
  width: 100%;
}

.features-title-holder {
  max-width: 760px;
}

.fetaures-paragraph-holder {
  max-width: 642px;
}

.data-collection {
  padding-top: 65px;
  padding-bottom: 65px;
}

.data-collection-tab-holder {
  padding-top: 58px;
  padding-bottom: 58px;
}

.tab-link-tab-2 {
  border: 1px solid var(--color--purple);
  background-color: var(--color--background-color);
  color: var(--color--font-color);
  border-radius: 8px;
  margin-right: 12px;
  padding: 14px 36px;
  font-family: var(--fonts--paragraph-font);
  font-size: 16px;
  font-weight: 500;
  transition: color .275s, border-color .2s, background-color .35s;
}

.tab-link-tab-2.w--current {
  border: 1px solid var(--color--blue);
  background-color: var(--color--blue);
  color: var(--color--background-color);
  border-radius: 8px;
}

.tabs-content {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}

.tab-pane-holder {
  border-radius: 22px;
  width: 100%;
  overflow: hidden;
}

.tab-pane {
  width: 100%;
}

.data-collection-stats-grid {
  grid-column-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
}

.style-heading-04 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 45px;
  font-weight: 600;
}

.data-collection-spacing {
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.data-collection-stats {
  grid-column-gap: 40px;
  grid-row-gap: 120px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.stats {
  align-items: center;
  display: flex;
}

.stats-line {
  background-image: linear-gradient(to bottom, var(--color--blue), var(--color--purple) 53%, var(--color--orange));
  width: 6px;
  height: 100%;
}

.stats-number-holder {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 24px;
}

.stats-number {
  font-family: var(--fonts--paragraph-font);
  font-size: 55px;
  font-weight: 500;
}

.stats-description {
  font-family: var(--fonts--paragraph-font);
  font-size: 20px;
}

.collaborate-grid-holder {
  grid-row-gap: 100px;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.collaborate-grid {
  grid-column-gap: 100px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  align-items: center;
}

.collaborate-grid._02 {
  grid-template-columns: .75fr 1fr;
}

.collaborate-content-holder {
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.tag {
  font-family: var(--fonts--paragraph-font);
  color: #5757cc;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.collaborate-button-holder {
  margin-top: 31px;
}

.collaborante-image-holder {
  background-image: linear-gradient(to bottom, var(--color--blue), var(--color--purple) 52%, var(--color--orange));
  perspective: 1500px;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  padding: 70px 42px;
  display: flex;
  overflow: hidden;
}

.collaborate-image {
  border-radius: 14px;
  width: 100%;
  box-shadow: 0 5px 5px #00000040;
}

.pricing-header-holder {
  grid-row-gap: 24px;
  flex-direction: column;
  padding-top: 120px;
  display: flex;
}

.pricing-tab-menu {
  justify-content: flex-end;
  display: flex;
  top: -105px;
}

.pricing-table-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pricing-table {
  z-index: 1;
  background-color: var(--color--background-color);
  border-radius: 11px;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px;
  display: flex;
  position: relative;
}

.pricing-table.middle {
  margin: 1px;
}

.pricing-tags {
  color: #34d594;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 4px;
  margin-bottom: 12px;
  padding: 4px 6px;
  font-family: var(--fonts--paragraph-font);
  font-size: 16px;
}

.pricing-tags.blue {
  color: var(--color--purple);
}

.pricing-tags.orange {
  color: var(--color--orange);
}

.pricing-price {
  font-family: var(--fonts--paragraph-font);
  font-size: 60px;
  font-weight: 600;
}

.pricing-line {
  background-color: #0003;
  width: 100%;
  height: 1px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.pricing-list {
  padding-left: 0;
  list-style-type: none;
}

.pricing-check {
  width: 14px;
  min-width: 14px;
}

.pricing-check-icon {
  width: 100%;
}

.pricing-text {
  font-family: var(--fonts--paragraph-font);
  color: var(--color--font-color);
  font-size: 18px;
}

.list-item {
  grid-column-gap: 8px;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.pricing-button-holder {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-top: 50px;
  display: flex;
}

.pricing-gradient {
  background-image: linear-gradient(135deg, var(--color--blue), var(--color--purple) 50%, var(--color--orange));
  border-radius: 11px;
  position: absolute;
  inset: 0%;
}

.pricing-block {
  position: relative;
}

.pricing-tabs {
  justify-content: center;
  align-items: center;
  padding-top: 45px;
  padding-bottom: 120px;
  display: flex;
  position: relative;
}

.pricing-tab {
  z-index: 1;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.pricing-content {
  width: 100%;
}

.cta-holder {
  grid-row-gap: 40px;
  background-color: var(--color--grey-sections);
  border-radius: 36px;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  display: flex;
  overflow: hidden;
}

.cta-icon-holder {
  justify-content: center;
  align-items: center;
  width: 85px;
  display: flex;
}

.cta-icon {
  object-fit: contain;
  width: 68px;
  height: 68px;
}

.cta-heading {
  text-align: center;
  max-width: 528px;
  margin-top: 40px;
  margin-bottom: 25px;
  font-size: 60px;
  font-weight: 600;
}

.cta-content {
  z-index: 1;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.hero-card {
  perspective: 1500px;
}

.hero-card {
  display: none;
}

@media screen and (min-width: 1440px) {
  .container {
    max-width: 1340px;
  }

  .featured-logo-wrapper {
    width: 130px;
  }

  .hero-card-image-holder {
    height: 420px;
  }

  .pricing-content {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 24px;
  }

  h6 {
    font-size: 20px;
  }

  ._8-col-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .navbar-container {
    grid-column-gap: 80px;
  }

  .nav-menu-link-holder {
    grid-row-gap: 20px;
    background-color: #fff;
    flex-direction: column;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-menu-link-container {
    height: auto;
  }

  .nav-menu {
    height: auto;
    padding-left: 0;
  }

  .nav-links {
    grid-row-gap: 20px;
    flex-direction: column;
    height: auto;
  }

  .footer-wrapper {
    grid-row-gap: 60px;
    flex-direction: column;
  }

  .footer-content {
    grid-column-gap: 60px;
  }

  .footer-divider {
    margin-top: 60px;
    padding-top: 20px;
  }

  .featured-logo-wrapper {
    width: 150px;
  }

  .help-holder {
    flex-direction: column;
    display: flex;
  }

  .help-container {
    border-right-style: none;
  }

  .help-link-holder {
    grid-column-gap: 30px;
    flex-direction: row;
  }

  .help-link-container.w--current {
    border-right-style: none;
  }

  .menu-button {
    border-radius: 8px;
    padding: 10px;
    transition: background-color .4s;
  }

  .menu-button.w--open {
    background-color: var(--color--blue);
    border-radius: 8px;
    padding: 10px;
  }

  .footer-container {
    border-radius: 20px;
  }

  .hero-phone-holder {
    padding-bottom: 120px;
  }

  .hero-phone-container {
    grid-column-gap: 24px;
    grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
  }

  .hero-section-phone-screenshot-image {
    border-radius: 20px;
  }

  .hero-card-image-holder {
    height: 160px;
  }

  .title-holder {
    padding-top: 30px;
  }

  .data-collection {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .data-collection-stats-grid {
    grid-row-gap: 50px;
    flex-direction: column;
    display: flex;
  }

  .style-heading-04 {
    font-size: 28px;
  }

  .collaborate-grid {
    grid-column-gap: 30px;
  }

  .collaborante-image-holder {
    border-radius: 8px;
    padding: 22px;
  }

  .pricing-tab-menu {
    padding-bottom: 24px;
    top: auto;
  }

  .pricing-table-grid {
    grid-row-gap: 60px;
    flex-direction: column;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  p {
    font-size: 16px;
  }

  .border-box {
    padding: 2px;
  }

  .section.overflow-hidden {
    overflow: hidden;
  }

  ._6-col-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .footer-wrapper {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
  }

  .footer-content {
    text-align: left;
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    text-align: left;
    align-items: flex-start;
  }

  .footer-link {
    text-align: left;
  }

  .footer-link:hover {
    color: #1a1b1fbf;
  }

  .footer-divider {
    margin-top: 60px;
  }

  .help-link-holder {
    flex-direction: column;
  }

  .brand {
    padding-left: 0;
  }

  .tab-link {
    justify-content: center;
    display: flex;
  }

  .hero-phone-container {
    padding-top: 82px;
  }

  .reviews-logos-container {
    grid-column-gap: 30px;
  }

  .reviews-logos {
    min-width: 100px;
  }

  .tab-pane-holder {
    border-radius: 12px;
  }

  .collaborate-grid {
    grid-row-gap: 120px;
    flex-direction: column;
    display: flex;
  }

  .collaborate-grid._02 {
    flex-direction: column-reverse;
  }

  .cta-heading {
    font-size: 42px;
  }
}

@media screen and (max-width: 479px) {
  ._4-col-grid {
    grid-template-columns: 1fr 1fr;
  }

  .black-background-padding {
    padding: 7px;
  }

  .container {
    padding-left: 1em;
    padding-right: 1em;
  }

  .container.navbar-container {
    width: 100%;
    padding-left: 1em;
    padding-right: 1em;
  }

  .style-guide-box-holder {
    padding: 4px;
  }

  .style-guide-box-container {
    grid-row-gap: 7px;
  }

  .colors-buttons {
    flex-direction: column;
    padding-top: 29px;
    padding-bottom: 29px;
  }

  ._8-col-grid {
    grid-template-columns: 1fr 1fr;
  }

  ._6-col-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .navbar {
    padding-left: 1em;
    padding-right: 1em;
  }

  .footer-divider {
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    padding-top: 20px;
  }

  .featured-logo-wrapper {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .early-access-card {
    min-width: 0;
  }

  .power-feature-card-container {
    border-radius: 20px;
  }

  .pricing-list-holder {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .pricing-footer-holder {
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .figma-file-container {
    grid-row-gap: 32px;
    flex-direction: column;
  }

  .full-width-image {
    border-radius: 7px;
  }

  .footer-signup-holder {
    width: 100%;
  }

  .form {
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-phone-container {
    flex-direction: column;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    justify-content: center;
    display: flex;
    position: relative;
  }

  .hero-section-phone-holder {
    z-index: 5;
    width: 240px;
  }

  .hero-section-phone-holder.cta {
    width: 80%;
  }

  .hero-card-image-holder {
    width: 140px;
  }

  .hero-card-image-holder._03 {
    left: -47px;
  }

  .blured-bg {
    opacity: .33;
    filter: blur(50px);
    width: 400px;
    height: 400px;
  }

  .tab-link-tab-2 {
    justify-content: center;
    align-items: center;
    margin-bottom: 2px;
    display: flex;
  }

  .data-collection-stats {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .stats-description {
    font-size: 16px;
  }

  .pricing-tab {
    align-items: flex-start;
  }

  .cta-heading {
    margin-top: 29px;
    margin-bottom: 29px;
    padding: 10px;
    font-size: 32px;
  }

  .hero-card._01 {
    position: absolute;
    inset: 21% auto auto 0%;
  }

  .hero-card._02 {
    position: absolute;
    inset: 37% 0% auto auto;
  }

  .hero-card._03 {
    z-index: 5;
    position: absolute;
    inset: auto auto 17% 0%;
  }

  .hero-card._04 {
    position: absolute;
    inset: auto 0% 0% auto;
  }
}

#w-node-_0ca86054-05d7-3132-dbdb-ef7e3379e3f6-69351e1e, #w-node-_0c684335-918c-f765-979f-8bced67f7913-69351e1e, #w-node-ec4139b9-2f9b-487c-56d8-bab7b29247f8-69351e1e, #w-node-_2ea26615-1f2d-f940-4255-41e059308978-69351e1e, #w-node-_4130dd8a-da09-c877-f6b4-c1326edd76cd-69351e1e, #w-node-c0c286dd-49bb-d488-890d-0db8d549cfb1-69351e1e, #w-node-c583a2df-3b4a-0332-bc8e-ad5d5349e8f9-69351e1e, #w-node-_269096b8-3720-f967-c7b0-889f5cbacc66-69351e1e, #w-node-_59555aee-14fa-a649-eefd-a0219a7dbe38-69351e1e, #w-node-_505f0ea8-259a-3a95-8ead-a4af1a2460d3-69351e1e, #w-node-_75e07dbe-7879-5e9f-3030-013cfe582ec8-69351e1e, #w-node-_829530d7-5611-fb8e-1e6c-48098ea7d74d-69351e1e, #w-node-_570a3245-e2cd-675f-7038-312461ada22b-69351e1e, #w-node-_7be3dff8-544d-78b5-37c9-2e7c6505d64b-69351e1e, #w-node-_7be3dff8-544d-78b5-37c9-2e7c6505d641-69351e1e, #w-node-e92bf484-a605-4132-f141-4518468af7e2-468af7d9, #w-node-e92bf484-a605-4132-f141-4518468af7ef-468af7d9, #w-node-e92bf484-a605-4132-f141-4518468af7fa-468af7d9, #w-node-_1a28ebeb-9162-d3cb-8468-7300a05229ba-69351e21, #w-node-_8595b4cc-f73c-3ac7-f9ab-37cddb2978a1-69351e22, #w-node-_63c7100f-9342-3d29-c1e8-a026ad70c2f3-69351e23, #w-node-_50d429f7-a276-3f83-9b9a-bc93d36794c2-69351e24, #w-node-_50d429f7-a276-3f83-9b9a-bc93d36794c4-69351e24 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b894a5fe-f86c-a319-2754-9c68f095fdc2-69351e24, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdc5-69351e24, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdc8-69351e24, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdcb-69351e24, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdce-69351e24, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdd1-69351e24, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdd4-69351e24, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdd7-69351e24, #w-node-b894a5fe-f86c-a319-2754-9c68f095fddc-69351e24, #w-node-b894a5fe-f86c-a319-2754-9c68f095fddf-69351e24, #w-node-b894a5fe-f86c-a319-2754-9c68f095fde2-69351e24, #w-node-b894a5fe-f86c-a319-2754-9c68f095fde5-69351e24, #w-node-b894a5fe-f86c-a319-2754-9c68f095fde8-69351e24, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdeb-69351e24, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdf0-69351e24, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdf3-69351e24, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdf6-69351e24, #w-node-b894a5fe-f86c-a319-2754-9c68f095fdf9-69351e24 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-b894a5fe-f86c-a319-2754-9c68f095fdfe-69351e24, #w-node-b894a5fe-f86c-a319-2754-9c68f095fe02-69351e24 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: center;
}

@media screen and (max-width: 479px) {
  #w-node-b894a5fe-f86c-a319-2754-9c68f095fdfe-69351e24, #w-node-b894a5fe-f86c-a319-2754-9c68f095fe02-69351e24 {
    grid-column: span 2 / span 2;
  }
}

html, body {
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(ellipse at 50% 0%, #eef5ff 0%, #ffffff 48%),
    var(--color--background-color);
  letter-spacing: 0;
}

h1, h2, h3, h4, h5, h6, p, a, li, div, span, input, label {
  letter-spacing: 0;
}

p {
  line-height: 1.55;
}

.navbar {
  z-index: 50;
  background-color: #ffffffd9;
  border-bottom: 1px solid #e8eefc;
  backdrop-filter: blur(18px);
}

.container.navbar-container {
  border-color: #dfe8fb;
  box-shadow: 0 14px 34px #07185a0d;
}

.brand {
  align-items: center;
  width: auto;
  min-width: 130px;
  display: flex;
}

.navbar-logo {
  width: auto;
  height: 36px;
  max-width: 140px;
  display: block;
}

.wordmark-text {
  color: var(--color--font-color);
  align-items: baseline;
  font-family: var(--fonts--heading-font);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  opacity: 1;
  transform: skewX(-7deg);
}

.wordmark-ai {
  background-image: var(--gradient--brand);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.wordmark-mark {
  background-image: var(--gradient--brand);
  color: #fff;
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  width: 68px;
  height: 68px;
  font-family: var(--fonts--heading-font);
  font-size: 21px;
  font-weight: 700;
  display: flex;
  box-shadow: 0 18px 45px #1f7bff30;
}

.nav-link {
  color: #314164;
  font-family: var(--fonts--paragraph-font);
  font-weight: 600;
}

.nav-link:hover {
  color: var(--color--font-color);
  background-color: #edf4ff;
}

.button {
  background-image: var(--gradient--brand);
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 13px 28px;
  font-family: var(--fonts--paragraph-font);
  font-weight: 700;
  box-shadow: 0 16px 38px #1f7bff2e;
}

.button:hover {
  background-image: linear-gradient(135deg, #5b2ff0 0%, #166ee8 42%, #19b7e3 72%, #0fcab7 100%);
  background-color: var(--color--blue);
}

.button.navbar-button {
  background-image: var(--gradient--brand);
  color: #fff;
  border-radius: 999px;
  height: 42px;
  padding-left: 18px;
  padding-right: 18px;
  font-weight: 700;
  box-shadow: 0 12px 28px #1f7bff24;
}

.button.navbar-button:hover {
  background-color: var(--color--blue);
}

.button.secondary {
  color: var(--color--font-color);
  background-color: #fff;
  background-image: none;
  border: 1px solid #dfe8fb;
  box-shadow: none;
}

.button.secondary:hover {
  color: var(--color--blue);
  background-color: #f8faff;
  background-image: none;
}

.button.white {
  color: var(--color--font-color);
  background-color: #fff;
  background-image: none;
  border: 1px solid #d8e4fb;
  border-radius: 12px;
  box-shadow: 0 16px 38px #07185a1f;
}

.section.hero-section {
  margin-top: -70px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8faff 50%, #ffffff 100%),
    radial-gradient(ellipse at 50% 24%, #e8f1ff 0%, #ffffff00 58%),
    radial-gradient(ellipse at 18% 54%, #f0ecff 0%, #ffffff00 42%),
    radial-gradient(ellipse at 82% 50%, #ebfcff 0%, #ffffff00 44%);
  position: relative;
  overflow: hidden;
}

.home-hero-holder {
  padding-top: 142px;
  position: relative;
}

.hero-center-text-holder {
  grid-row-gap: 22px;
}

.hero-eyebrow, .section-kicker {
  color: var(--color--blue);
  text-transform: uppercase;
  background-color: #edf5ff;
  border: 1px solid #d9e8ff;
  border-radius: 999px;
  margin-bottom: 16px;
  padding: 8px 14px;
  font-family: var(--fonts--paragraph-font);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
}

.section-kicker {
  margin-bottom: 0;
}

.gradient-text {
  background-image: linear-gradient(135deg, #07185a 0%, #081b63 46%, #125fd8 78%, #1597c8 100%);
  max-width: 1060px;
  font-size: 92px;
  line-height: 1.05;
  position: relative;
  z-index: 1;
  font-family: var(--fonts--heading-font);
  font-weight: 800;
  filter: drop-shadow(0 18px 34px #07185a17);
}

.hero-center-text-holder .content {
  position: relative;
}

.hero-center-text-holder .content:before {
  content: "";
  z-index: 0;
  background: linear-gradient(180deg, #ffffffcc, #ffffff2e);
  border-radius: 42px;
  pointer-events: none;
  width: 104%;
  height: 92%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(18px);
}

.hero-paragraph-holder {
  max-width: 760px;
}

.hero-paragraph-holder p {
  color: #314164;
  font-size: 20px;
}

.hero-actions {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.hero-phone-container {
  grid-column-gap: 22px;
  grid-template-columns: 170px 170px 410px 170px 170px;
  width: min(1120px, 100%);
  padding-top: 86px;
}

.hero-card-image-holder {
  width: 100%;
  max-width: 170px;
  height: auto;
  min-height: 154px;
}

.input-card {
  color: var(--color--font-color);
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid #dfe8fb;
  border-radius: 18px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  min-height: 154px;
  padding: 16px;
  display: flex;
  box-shadow: 0 24px 54px #07185a14;
}

.input-card.accent-card {
  background: linear-gradient(180deg, #ffffff 0%, #f2fbff 100%);
  border-color: #cbefff;
}

.input-card-icon {
  color: #fff;
  background-image: var(--gradient--brand);
  border-radius: 999px;
  align-self: flex-start;
  padding: 8px 12px;
  font-family: var(--fonts--paragraph-font);
  font-size: 12px;
  font-weight: 800;
}

.input-card-title {
  color: var(--color--font-color);
  margin-top: 16px;
  font-family: var(--fonts--heading-font);
  font-size: 17px;
  font-weight: 700;
}

.input-card-copy {
  color: var(--color--paragraph-color);
  margin-top: 12px;
  font-family: var(--fonts--paragraph-font);
  font-size: 13px;
  line-height: 1.45;
}

.hero-card {
  display: block !important;
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
  animation: heroFloat 8s ease-in-out infinite;
}

.hero-card._01, .hero-card._04 {
  transform: translate3d(0, 24px, 0) !important;
}

.hero-card._02 {
  animation-delay: -2.2s;
}

.hero-card._03 {
  animation-delay: -4.6s;
}

.hero-card._04 {
  animation-delay: -6.1s;
}

.hero-section-phone-holder:not(.cta) {
  animation: heroPhoneBreath 9s ease-in-out infinite;
}

.section.hero-section:before {
  content: "";
  pointer-events: none;
  background: linear-gradient(115deg, #6a3bff00 0%, #6a3bff12 24%, #1f7bff14 50%, #22c7f612 70%, #11d7c200 100%);
  width: 140%;
  height: 50%;
  position: absolute;
  top: 11%;
  left: -20%;
  transform: rotate(-4deg);
  animation: heroGradientDrift 14s ease-in-out infinite alternate;
}

@keyframes heroFloat {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -14px;
  }
}

@keyframes heroPhoneBreath {
  0%, 100% {
    scale: 1;
  }

  50% {
    scale: 1.018;
  }
}

@keyframes heroGradientDrift {
  0% {
    translate: -1.5% 0;
    opacity: .72;
  }

  100% {
    translate: 1.5% -2%;
    opacity: .92;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-card,
  .hero-section-phone-holder:not(.cta),
  .section.hero-section:before {
    animation: none !important;
  }
}

.vengys-phone-screen {
  color: var(--color--font-color);
  background:
    radial-gradient(circle at 85% 5%, #dbfbff 0%, #ffffff00 34%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid #d9e4fb;
  border-radius: 40px;
  flex-direction: column;
  height: 100%;
  padding: 26px 22px;
  display: flex;
  gap: 14px;
  overflow: hidden;
}

.phone-topbar {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.phone-brand {
  color: var(--color--font-color);
  font-family: var(--fonts--heading-font);
  font-size: 17px;
  font-weight: 800;
}

.phone-status {
  color: var(--color--blue);
  background-color: #edf5ff;
  border-radius: 999px;
  padding: 6px 9px;
  font-family: var(--fonts--paragraph-font);
  font-size: 11px;
  font-weight: 800;
}

.phone-product-card, .phone-result-card, .phone-explanation-card {
  background-color: #fff;
  border: 1px solid #e3ebfb;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 16px 36px #07185a0f;
}

.phone-product-card {
  grid-column-gap: 12px;
  align-items: center;
  display: flex;
}

.phone-product-image {
  background:
    linear-gradient(135deg, #edf3ff, #ffffff),
    var(--gradient--brand);
  border: 1px solid #dfe8fb;
  border-radius: 14px;
  width: 58px;
  min-width: 58px;
  height: 58px;
  position: relative;
}

.phone-product-image:after {
  content: "";
  background-image: var(--gradient--brand);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  position: absolute;
  top: 12px;
  left: 12px;
  opacity: .9;
}

.phone-label {
  color: #7180a0;
  text-transform: uppercase;
  font-family: var(--fonts--paragraph-font);
  font-size: 10px;
  font-weight: 800;
}

.phone-product-title, .phone-result-title {
  color: var(--color--font-color);
  margin-top: 5px;
  font-family: var(--fonts--heading-font);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.22;
}

.phone-input-row {
  grid-column-gap: 7px;
  display: flex;
}

.phone-input-row span {
  color: var(--color--font-color);
  background-color: #edf5ff;
  border: 1px solid #d9e8ff;
  border-radius: 999px;
  padding: 7px 9px;
  font-family: var(--fonts--paragraph-font);
  font-size: 11px;
  font-weight: 800;
}

.phone-score {
  color: #fff;
  background-image: var(--gradient--brand);
  border-radius: 999px;
  align-self: flex-start;
  margin-top: 12px;
  padding: 8px 10px;
  font-family: var(--fonts--paragraph-font);
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
}

.phone-explanation-card p {
  color: var(--color--paragraph-color);
  margin-top: 7px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.45;
}

.phone-tradeoff-list {
  grid-row-gap: 8px;
  flex-direction: column;
  margin-top: auto;
  display: flex;
}

.phone-tradeoff-list div {
  color: #314164;
  align-items: center;
  font-family: var(--fonts--paragraph-font);
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.phone-tradeoff-list span {
  background-image: var(--gradient--brand);
  border-radius: 999px;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  display: inline-block;
}

.blured-bg, .blured-bg.pricing {
  background-image: var(--gradient--brand);
}

.problem-section {
  padding-top: 20px;
}

.product-signal-strip {
  padding-top: 52px;
  padding-bottom: 7em;
}

.product-signal-container {
  grid-column-gap: 18px;
}

.product-signal {
  color: var(--color--font-color);
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #dfe8fb;
  border-radius: 999px;
  min-width: auto;
  padding: 16px 24px;
  font-family: var(--fonts--paragraph-font);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 16px 36px #07185a0d;
}

.feature-card-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 60px;
  display: grid;
}

.feature-card, .how-step, .clarity-card, .early-access-form-card {
  background-color: #fff;
  border: 1px solid #dfe8fb;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 24px 60px #07185a0d;
}

.feature-icon, .step-number {
  color: #fff;
  background-image: var(--gradient--brand);
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  font-family: var(--fonts--heading-font);
  font-size: 15px;
  font-weight: 800;
  display: flex;
}

.feature-card-title {
  color: var(--color--font-color);
  margin-top: 0;
  margin-bottom: 12px;
  font-family: var(--fonts--heading-font);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

.feature-card p, .how-step p, .clarity-card p {
  margin-bottom: 0;
}

.how-steps-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 70px;
  display: grid;
}

.how-step .style-heading-04 {
  font-size: 27px;
}

.value-panel {
  grid-column-gap: 40px;
  grid-row-gap: 32px;
  background-color: var(--color--grey-sections);
  border: 1px solid #e4ebfb;
  border-radius: 28px;
  grid-template-rows: auto;
  grid-template-columns: .8fr 1fr;
  align-items: center;
  margin-top: 56px;
  padding: 34px;
  display: grid;
}

.value-chip-grid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-wrap: wrap;
  display: flex;
}

.value-chip {
  color: var(--color--font-color);
  background-color: #fff;
  border: 1px solid #dfe8fb;
  border-radius: 999px;
  padding: 12px 16px;
  font-family: var(--fonts--paragraph-font);
  font-weight: 800;
}

.clarity-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  display: grid;
}

.clarity-card {
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}

.early-access-header {
  padding-top: 100px;
}

.early-access-grid {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: .9fr 1.1fr;
  align-items: stretch;
  padding-top: 48px;
  padding-bottom: 120px;
  display: grid;
  position: relative;
  z-index: 1;
}

.early-access-table {
  height: 100%;
  padding: 28px;
}

.early-access-form-card {
  position: relative;
}

.early-access-form {
  grid-row-gap: 14px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.form-label {
  color: var(--color--font-color);
  font-family: var(--fonts--paragraph-font);
  font-weight: 800;
}

.text-field {
  background-color: #fff;
  border-color: #d9e4fb;
  border-radius: 12px;
  height: 48px;
  padding-left: 16px;
  font-family: var(--fonts--paragraph-font);
}

.text-field:hover, .text-field:focus {
  border-color: var(--color--blue);
  box-shadow: 0 0 0 4px #1f7bff14;
}

.button.form-button {
  background-image: var(--gradient--brand);
  border: 0;
  border-radius: 12px;
  height: 48px;
  margin-top: 4px;
  font-weight: 800;
}

.pricing-tags {
  color: var(--color--teal);
  background-color: #f3fcff;
  font-family: var(--fonts--paragraph-font);
  font-weight: 800;
}

.pricing-tags.blue {
  color: var(--color--blue);
}

.pricing-tags.orange {
  color: var(--color--teal);
}

.pricing-text {
  font-family: var(--fonts--paragraph-font);
  font-size: 17px;
  line-height: 1.35;
}

.cta-holder {
  background:
    radial-gradient(circle at 50% 115%, #bff7ff 0%, #f8faff00 45%),
    linear-gradient(180deg, #f8faff 0%, #eef6ff 100%);
  border: 1px solid #e1eafb;
  border-radius: 28px;
}

.cta-heading {
  color: var(--color--font-color);
  max-width: 720px;
}

.compact-screen {
  justify-content: flex-start;
  padding-top: 34px;
}

.footer-container {
  border-top: 1px solid #e8eefc;
}

.footer-brand-holder {
  width: auto;
}

.footer-wordmark {
  font-size: 24px;
}

.footer-title {
  color: var(--color--paragraph-color);
  font-family: var(--fonts--paragraph-font);
}

.footer-content {
  grid-template-columns: auto auto;
}

.footer-link {
  color: var(--color--paragraph-color);
  font-family: var(--fonts--paragraph-font);
}

.footer-link:hover, .black-link:hover {
  color: var(--color--blue);
}

.footer-copyright-center {
  color: #7180a0;
  text-transform: none;
  font-family: var(--fonts--paragraph-font);
}

.tab-link-tab-2, .stats-number, .stats-description, .pricing-price, .pricing-tags, .footer-link, .footer-title {
  font-family: var(--fonts--paragraph-font);
}

@media screen and (max-width: 991px) {
  .gradient-text {
    font-size: 64px;
  }

  .hero-phone-container {
    grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
  }

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

  .how-steps-grid, .value-panel, .early-access-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .home-hero-holder {
    padding-top: 130px;
  }

  .gradient-text {
    font-size: 48px;
  }

  .hero-paragraph-holder p {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .value-panel {
    padding: 24px;
  }
}

@media screen and (max-width: 479px) {
  .wordmark-text {
    font-size: 20px;
  }

  .brand {
    min-width: 112px;
  }

  .container.navbar-container {
    border-color: #d5e4ff;
  }

  .navbar .wordmark-text {
    color: var(--color--font-color) !important;
    opacity: 1;
  }

  .navbar-logo {
    height: 32px;
    max-width: 124px;
  }

  .menu-button {
    color: var(--color--font-color);
    background-color: #f3f7ff;
  }

  .gradient-text {
    font-size: 39px;
  }

  .hero-phone-container {
    padding-top: 62px;
  }

  .hero-section-phone-holder {
    width: 245px;
  }

  .hero-card {
    display: none !important;
  }

  .vengys-phone-screen {
    border-radius: 24px;
    padding: 18px 14px;
    gap: 10px;
  }

  .phone-product-title, .phone-result-title {
    font-size: 15px;
  }

  .phone-explanation-card p {
    font-size: 11px;
  }

  .phone-input-row {
    flex-wrap: wrap;
  }

  .product-signal {
    padding: 12px 18px;
    font-size: 14px;
  }

  .feature-card, .how-step, .clarity-card, .early-access-form-card {
    border-radius: 18px;
    padding: 22px;
  }

  .cta-holder {
    border-radius: 20px;
  }
}
