/*! HTML5 Boilerplate v9.0.0-RC1 | MIT License | https://html5boilerplate.com/ */

  /* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
  /*
   * What follows is the result of much research on cross-browser styling.
   * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
   * Kroc Camen, and the H5BP dev community and team.
   */

  /* ==========================================================================
     Base styles: opinionated defaults
     ========================================================================== */
:root {
  --secondary-purple-100: #F0E7F6;
  --secondary-purple-200: #D3BFE0;
  --secondary-purple-300: #9C86AB;
  --secondary-purple-500: #795D8A;
  --secondary-purple-600: #573E6A;
  --secondary-purple-700: #462E57;
  --secondary-purple-750: #3A2449;
  --secondary-purple-800: #2F1B3C;
  --secondary-green-700: #01555A;
  --error-color: #E83A8E;
}

@font-face {
  font-family: 'Circular Bold';
  src: url('../fonts/CircularStd-Bold.woff2') format('woff2'),
  url('../fonts/CircularStd-Bold.woff') format('woff');
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Circular Medium';
  src: url('../fonts/CircularStd-Medium.woff2') format('woff2'),
  url('../fonts/CircularStd-Medium.woff') format('woff');
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Circular Book';
  src: url('../fonts/CircularStd-Book.woff2') format('woff2'),
  url('../fonts/CircularStd-Book.woff') format('woff');
  font-style: normal;
  font-display: swap;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  text-rendering: geometricPrecision;
  scroll-behavior: smooth;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

body {
  background: #3A2449;
  margin: 0;
}

/**
Standard Margins
 */

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-56 { margin-top: 56px; }
.mt-80 { margin-top: 80px; }
.mt-88 { margin-top: 88px; }

/**
Standard Max Widths
 */

.mw-800 { max-width: 800px; }
.mw-720 { max-width: 720px; }
.mw-560 { max-width: 560px; }
.mw-480 { max-width: 480px; }
.mw-400 { max-width: 400px; }

/**
Standard Z-Indexes
 */

.z10 { z-index: 10; }
.z20 { z-index: 20; }
.z30 { z-index: 30; }

/**
Header
 */

.header {
  width: calc(100% - 160px);
  max-width: 1600px;
  height: 62px;
  border-radius: 30px;
  background: var(--secondary-purple-750);
  border: 1px solid var(--secondary-purple-700);
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 8px 16px 0 rgba(31, 18, 41, 0.24);
  z-index: 100;
}

/**
Sections
 */

.section {
  padding: 120px 0;
  width: 100%;
  background: var(--secondary-purple-750);
  position: relative;
  overflow: hidden;
}

.section--hero {
  padding-top: 160px;
}

.section--features,
.section--how-it-works,
.section--roadmap {
  border-bottom: 1px solid var(--secondary-purple-700);
}

.section--calculator {
  overflow: unset;
}

/**
Containers
 */

.container {
  padding: 0 80px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.container--1760mw {
  max-width: 1760px;
}

.container--header {
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
}

.logo {
  padding: 0 8px;
}

/**
Layouts
 */

.layout {
  display: flex;
}

.layout--header {
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.layout--center {
  justify-content: center;
}

.layout--hero-buttons {
  align-items: center;
  gap: 8px;
}

.layout--feature-list {
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
}

.layout--social-media-post-and-social-media-influence {
  justify-content: center;
}

.layout--growth-boxes {
  flex-wrap: wrap;
  gap: 24px;
}

.layout--navigation-buttons {
  align-items: center;
  gap: 8px;
}

.layout--results {
  width: 100%;
  flex-direction: column;
}

.absolute-positioning-layout {
  position: relative;
}

.absolute-positioning-layout > .absolute {
  position: absolute;
}

.absolute-positioning-layout > * {
  position: relative;
}

.growth-doodle-circle {
  left: -4px;
  top: -4px;
}

/* Hand-drawn doodle animation */
.doodle-draw path {
  stroke-dasharray: var(--doodle-len, 1000);
  stroke-dashoffset: var(--doodle-len, 1000);
  transition: none;
}

.doodle-draw--active path {
  animation: doodle-draw 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s forwards;
}

@keyframes doodle-draw {
  to { stroke-dashoffset: 0; }
}

/* Doodle circle around hero Start free trial button */
.doodle-trigger--hero-btn {
  display: inline-flex;
}

.doodle-draw--hero-btn {
  left: -12px;
  top: -8px;
  pointer-events: none;
}

/* Doodle circle around $1 in pricing */
.pricing-card__price__amount .growth-doodle-circle {
  left: -20px;
  top: -8px;
}

.header-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.header-buttons__navigation-btn {
  margin-right: 16px;
}

.gradient-background {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  justify-content: center;
}

.humans-background {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
}

.humans-background__left {
  width: 296px;
  height: 380px;
  position: absolute;
  bottom: 64px;
  left: 72px;
}

.humans-background__right {
  width: 406px;
  height: 328px;
  position: absolute;
  bottom: 80px;
  right: 40px;
}

.humans-background__left > img,
.humans-background__right > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.social-media-post {
  flex: 0 0 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.post-wrapper {
  width: 320px;
  height: 580px;
  position: relative;
}

.social-media-post__video {
  width: 320px;
  height: 580px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.social-media-post__video > video {
  width: 100%;
}

.social-media-influence {
  flex: 1 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-media-influence > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.post-details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 320px;
  height: 240px;
  background: linear-gradient(180deg, rgba(30, 18, 38, 0.00) 0%, #1E1226 73.5%);
  padding: 24px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  gap: 16px;
  z-index: 10;
}

.post-details__author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.post-details__author__image {
  width: 28px;
  height: 28px;
  border-radius: 14px;
  overflow: hidden;
}

.post-details__author__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbs-up-illustration {
  position: absolute;
  right: -32px;
  top: -32px;
}

.post-video {
  position: relative;
  z-index: 5;
}

.box {
  flex: 0 0 calc(50% - 12px);
  border-radius: 70px;
  padding: 64px;
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  min-height: 400px;
  position: relative;
}

.box--full-width {
  flex-basis: 100%;
  width: 100%;
}

.box--existing-customers {
  background: var(--secondary-purple-800);
}

.box--referred-customers,
.box--calculate-growth {
  background: var(--secondary-purple-700);
}

.box__header {
  flex: 0 0 100%;
  position: relative;
}

.box__header .button,
.relaese-item__content > .button,
.get-started .button {
  width: fit-content;
}

.rounded-boxed-number {
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: var(--secondary-purple-700);
}

.rounded-boxed-number--reffered-customers {
  background: var(--secondary-purple-500);
}

.box__customers-avatar {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 20px;
}

.circled-image {
  width: 64px;
  height: 64px;
  border-radius: 32px;
  overflow: hidden;
}

.circled-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box__illustration {
  position: absolute;
  right: -10px;
  top: 20px;
}

.roadmap {
  max-width: 600px;
  padding: 24px 0;
  position: relative;
}

.roadmap__path {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 14px;
  width: 4px;
  background: var(--secondary-purple-700);
  border-radius: 2px;
  overflow: hidden;
}

.roadmap__path__line {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 420px;
  background: var(--secondary-green-700);
}

.roadmap__releases {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 200px;
}

.release-item__date-and-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.release-item__date-and-check__check {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--secondary-purple-700);
}

.release-item__date-and-check__check--checked {
  background: var(--secondary-green-700);
}

.release-item__date-and-check__date {
  height: 32px;
  background: var(--secondary-purple-700);
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 16px;
  padding: 0 16px;
}

.release-item__content {
  padding-left: 40px;
}

.text-item-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0;
}

.text-item-list > li {
  position: relative;
  padding-left: 32px;
  margin-left: 0;
}

.text-item-list > li:after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--secondary-purple-600);
  position: absolute;
  left: 0;
  top: 4px;
}

.layout--features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--secondary-purple-800);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--secondary-purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
}

.layout--steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
  overflow: hidden;
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.step-card__number {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: var(--secondary-green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Circular Bold", Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--secondary-purple-100);
  position: relative;
  z-index: 1;
}

/* Horizontal connector lines between steps */
.step-card:not(:last-child) .step-card__number::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  height: 3px;
  width: 300px;
  transform: translateY(-50%);
  background: var(--secondary-green-700);
  transform-origin: left center;
  scale: 0 1;
}

.step-card:not(:last-child) .step-card__number.step-line--active::after {
  animation: step-line-draw 0.6s ease-out forwards;
}

.step-card:nth-child(2) .step-card__number.step-line--active::after {
  animation-delay: 0.6s;
}

.step-card:nth-child(3) .step-card__number.step-line--active::after {
  animation-delay: 1.2s;
}

@keyframes step-line-draw {
  to { scale: 1 1; }
}

/* Coming soon / Integrations */
.section--coming-soon {
  border-bottom: 1px solid var(--secondary-purple-700);
}

.layout--coming-soon {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: center;
}

.coming-soon__content {
  display: flex;
  flex-direction: column;
}

.coming-soon__content > .coming-soon__list {
  margin-top: 20px !important;
}

.coming-soon__content > .body--1 {
  margin-bottom: 0;
}

.coming-soon__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.coming-soon__list > li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Circular Book", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: var(--secondary-purple-200);
  line-height: 24px;
}

.coming-soon__list > li > svg {
  flex-shrink: 0;
}

.coming-soon__image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.coming-soon__image > img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.15));
}

.coming-soon__circles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.coming-soon__overline {
  font-family: "Circular Medium", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary-purple-300);
}

.section--pricing {
  border-bottom: 1px solid var(--secondary-purple-700);
}

.section--cta {
  padding: 100px 0;
}

/* Social proof */
.section--social-proof {
  padding: 40px 0;
}

.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack__image {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid var(--secondary-purple-900);
  margin-left: -10px;
  flex-shrink: 0;
}

.avatar-stack__image:first-child {
  margin-left: 0;
}

.avatar-stack__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA people background */
.people-background--cta {
  opacity: 0.12;
  pointer-events: none;
}

.people-background__image--cta {
  width: 500px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.people-background__image--cta > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.pricing-card {
  background: var(--secondary-purple-800);
  border-radius: 32px;
  padding: 56px;
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-card__price__amount {
  font-family: "Circular Bold", Helvetica, Arial, sans-serif;
  font-size: 4rem;
  color: var(--secondary-purple-100);
  line-height: 1;
  letter-spacing: -.02em;
}

.pricing-card__price__period {
  font-family: "Circular Book", Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  color: var(--secondary-purple-300);
}

.pricing-card__divider {
  height: 1px;
  background: var(--secondary-purple-700);
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-features-list > li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Circular Book", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: var(--secondary-purple-200);
  line-height: 24px;
}

.pricing-features-list > li > svg {
  flex-shrink: 0;
}

@media only screen and (max-width: 1120px) {
  .section {
    padding: 80px 0;
  }
  .section--hero {
    padding-top: 120px;
  }
  .container {
    padding: 0 48px;
  }
  .heading--1 {
    font-size: 3.5rem;
    line-height: 64px;
  }
  .heading--2 {
    font-size: 2.75rem;
    line-height: 52px;
  }
  .layout--features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .layout--steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .step-card:not(:last-child) .step-card__number::after {
    display: none;
  }
  .layout--coming-soon {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .coming-soon__image {
    order: -1;
  }
  .coming-soon__image > img {
    max-width: 600px;
  }
  .humans-background__left,
  .humans-background__right {
    display: none;
  }
  .header {
    width: calc(100% - 48px);
  }
}

@media only screen and (max-width: 720px) {
  .section {
    padding: 64px 0;
  }
  .section--hero {
    padding-top: 100px;
  }
  .section--cta {
    padding: 64px 0;
  }
  .container {
    padding: 0 24px;
  }
  .heading--1 {
    font-size: 2.5rem;
    line-height: 48px;
  }
  .heading--2 {
    font-size: 2rem;
    line-height: 40px;
  }
  .layout--features-grid {
    grid-template-columns: 1fr;
  }
  .layout--steps {
    grid-template-columns: 1fr;
  }
  .step-card:not(:last-child) .step-card__number::after {
    display: none;
  }
  .layout--coming-soon {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .coming-soon__image {
    order: -1;
  }
  .coming-soon__image > img {
    max-width: 400px;
  }
  .pricing-card {
    padding: 40px 32px;
  }
  .social-proof {
    flex-direction: column;
    gap: 16px;
  }
  .people-background__image--cta {
    width: 300px;
  }
  .header {
    width: calc(100% - 32px);
  }
  .pricing-card__price__amount {
    font-size: 3rem;
  }
}

.get-started {
  flex: 1 0 0;
  padding: 88px;
}

.people-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
}

.people-background__image {
  width: 540px;
  height: 860px;
  position: absolute;
  right: 80px;
  top: 0;
}

.people-background__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/**
Text - Body
 */
.body {
  font-family: "Circular Book", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.body--1 {
  font-size: 1rem;
  color: var(--secondary-purple-200);
  line-height: 24px;
}

.body--2 {
  font-size: .875rem;
  color: var(--secondary-purple-100);
  line-height: 20px;
}

.body--3 {
  font-size: 12px;
  color: var(--secondary-purple-100);
  line-height: 18px;
}

.body--secondary-purple-300-fill {
  color: var(--secondary-purple-300);
}

.body--error-color-fill {
  color: var(--error-color);
}

/**
Text - Labels
 */

.label {
  font-family: "Circular Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
}

.label--5 {
  font-size: 10px;
  line-height: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--secondary-purple-200);
}

.label--4 {
  font-size: .75rem;
  line-height: 12px;
  color: var(--secondary-purple-100);
}

.label--3 {
  font-size: .875rem;
  line-height: 14px;
  color: var(--secondary-purple-100);
}

.label--2 {
  font-size: 1rem;
  line-height: 16px;
  color: var(--secondary-purple-100);
}

.label--1 {
  font-size: 1.125rem;
  line-height: 20px;
  color: var(--secondary-purple-100);
}

.label--secondary-purple-200 {
  color: var(--secondary-purple-200);
}

/**
Text - Headings
 */

.heading {
  font-family: "Circular Bold", Helvetica, Arial, sans-serif;
  font-weight: 500;
}

.heading--1 {
  font-size: 4.5rem;
  color: var(--secondary-purple-100);
  letter-spacing: -.02em;
  line-height: 80px;
}

.heading--2 {
  font-size: 3.5rem;
  color: var(--secondary-purple-100);
  letter-spacing: -.01em;
  line-height: 64px;
}

.heading--4 {
  font-size: 2.5rem;
  color: var(--secondary-purple-100);
  letter-spacing: -.01em;
  line-height: 48px;
}

.heading--6 {
  font-size: 1.5rem;
  color: var(--secondary-purple-100);
  letter-spacing: 0;
  line-height: 28px;
}

.heading--stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Circular Bold", Helvetica, Arial, sans-serif;
  font-size: 6.25rem;
  letter-spacing: -.02em;
  line-height: 1;
  color: #F0E7F6;
}

.heading--secondary-purple-600-fill {
  color: var(--secondary-purple-600);
}

.heading--secondary-purple-500-fill {
  color: var(--secondary-purple-500);
}

.heading--secondary-purple-200-fill {
  color: var(--secondary-purple-200);
}

/**
Text - Alignment
 */

.text--center {
  text-align: center;
}

/**
Buttons
 */

.button {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  outline: none;
  font-family: "Circular Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  text-rendering: geometricPrecision;
  cursor: pointer;
  width: fit-content;
}

.button--large {
  font-size: 1rem;
  height: 56px;
  border-radius: 28px;
  padding: 0 32px;
}

.button--medium {
  font-size: .875rem;
  height: 44px;
  border-radius: 22px;
  padding: 0 24px;
}

.button--small {
  font-size: .875rem;
  height: 36px;
  border-radius: 18px;
  padding: 0 20px;
}

.button--primary {
  background: var(--secondary-purple-100);
  color: var(--secondary-purple-750);
}

.button--secondary {
  background: none;
  border: 1px solid var(--secondary-purple-100);
  color: var(--secondary-purple-100);
}

.button--secondary-purple-600-outline {
  border: 1px solid var(--secondary-purple-600);
}

.button--tertiary {
  background: none;
  border: none;
  padding: 8px;
  color: var(--secondary-purple-100);
}

.button--secondary-purple-600-fill {
  background: var(--secondary-purple-600);
  color: var(--secondary-purple-100);
}

.button--primary:disabled {
  background: var(--secondary-purple-600);
  color: var(--secondary-purple-500);
  cursor: default;
}

/**
Label Pill
 */

.label-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 12px;
  background: var(--secondary-purple-600);
  border-radius: 12px;
}

.step {
  max-width: 520px;
  display: none;
  opacity: 0;
}

.step--active {
  display: block;
  opacity: 1;
}

.input-frame__field {
  position: relative;
  height: 64px;
  border-radius: 13px;
  background: #462E57;
  overflow: hidden;
}

.input-frame__trailing-icon {
  position: absolute;
  top: 12px;
  right: 16px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.input-field {
  width: 100%;
  height: 64px;
  padding: 16px 20px;
  background: none;
  border: none;
  border-radius: 13px;
  outline: none;
  font-family: "Circular Book", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  color: #F0E7F6;
}

.input-field--error {
  border: 1px solid #E83A8E;
}

.input-field::placeholder {
  color: #A18AB1;
}

.results-screen {
  display: none;
  margin-top: -80px;
  width: 100%;
  opacity: 0;
}

.results-screen--active {
  display: block;
  opacity: 1;
}

.horizontal-scroll {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 1px solid #483059;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.horizontal-scroll-wrapper {
  max-width: 1760px;
  padding: 0 80px;
  margin: 0 auto;
}

.inputs-top-bar {
  flex: 1 0 0;
  display: flex;
  padding: 32px 0;
  flex-wrap: nowrap;
  gap: 32px;
}

.input-item {
  flex: 0 0 auto;
  white-space: nowrap;
  display: flex;
  gap: 8px;
  align-items: center;
}

.input-item:last-of-type {
  padding-right: 120px;
}

.input-item__icon {
  display: flex;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
}

.analytics-container {
  flex: 1 0 0;
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 0;
}

.growth-stat-container {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 360px;
  padding: 64px 0;
  border-bottom: 1px solid #483059;
}

.growth-stat-container__header {
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.people-image {
  position: absolute;
  right: 2.2222vw;
  top: 0;
  width: 50vw;
  height: 100vh;
}

.people-image > img {
  position: absolute;
  right: 0;
  top: 0;
  width: 520px;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 560px) {
  .button--calendly {
    display: none;
  }
}

@media only screen and (max-width: 720px) {
  .heading--1 {
    font-size: 3.5rem;
    line-height: 64px;
    letter-spacing: -.03em;
  }
  .heading--2 {
    font-size: 2.75rem;
    line-height: 48px;
  }
  .heading--stat {
    font-size: 12vw !important;
  }
  .growth-stat-container {
    height: 320px;
  }
  .growth-doodle-circle {
    left: -24px;
    top: -16px;
  }
}

@media only screen and (max-width: 840px) {
  .humans-background__right {
    display: none;
  }
  .humans-background__left {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 1120px) {
  .header {
    width: calc(100% - 16px);
  }
  .header-buttons > .button:last-child {
    display: none;
  }
  .section--cta {
    padding-bottom: 560px;
  }
  .container,
  .horizontal-scroll-wrapper {
    padding: 0 16px;
  }
  .container--header {
    padding: 0 16px;
  }
  .layout--social-media-post-and-social-media-influence {
    flex-direction: column;
  }
  .social-media-influence {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    flex: 0 0 640px;
  }
  .social-media-influence > img {
    object-fit: cover;
  }
  .box {
    flex: 0 0 100%;
    padding: 48px;
  }
  .box__illustration {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 24px;
  }
  .get-started {
    padding: 0;
  }
  .people-background {
    height: 480px;
    bottom: 0;
    top: unset;
  }
  .people-background__image {
    width: 100%;
    height: 100%;
    right: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .people-background__image > img {
    object-fit: cover;
    width: 480px;
    height: 100vw;
    transform: rotate(90deg);
  }
  .people-image {
    display: none;
  }
  iframe {
    top: unset;
    bottom: 0;
    transform: translateX(-50%);
    height: 80vh;
  }
  .heading--stat {
    font-size: 8.92vw;
  }
}

@media only screen and (max-width: 1280px) {
  .section--hero {
    padding-bottom: 480px;
    border-bottom: 1px solid var(--secondary-purple-700);
  }
}

@media screen and (min-width: 1880px) {
  .humans-background__left {
    left: 10%;
  }
  .humans-background__right {
    right: 10%;
  }
  .people-background__image {
    right: 20%;
  }
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}