/* CSS Mini Reset */
html,
body,
div,
form,
fieldset,
legend,
caption,
label,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre {
  font-size: 100%;
  font-weight: normal;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  vertical-align: top;
}

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

@font-face {
  font-family: "Barlow Black";
  src: url("../fonts/Barlow-Black.woff2") format("woff2"), url("../fonts/Barlow-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Bold";
  src: url("../fonts/Barlow-Bold.woff2") format("woff2"), url("../fonts/Barlow-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-Regular.woff2") format("woff2"), url("../fonts/Barlow-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofia Sans Condensed Bold";
  src: url("../fonts/SofiaSansCondensed-Bold.woff2") format("woff2"), url("../fonts/SofiaSansCondensed-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofia Sans Condensed";
  src: url("../fonts/SofiaSansCondensed-Regular.woff2") format("woff2"), url("../fonts/SofiaSansCondensed-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofia Sans Condensed Black";
  src: url("../fonts/SofiaSansCondensed-Black.woff2") format("woff2"), url("../fonts/SofiaSansCondensed-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
body {
  background-color: white;
  font-family: "Barlow", sans-serif;
  color: #231f20;
}

.hero-demo {
  background-color: white;
  padding: 20px 0 50px;
}
@media (min-width: 768px) {
  .hero-demo {
    padding-top: 50px;
  }
}

.hero {
  background-color: #17d977;
  padding: 20px 0 50px;
}
@media (min-width: 1340px) {
  .hero {
    padding-bottom: 0;
    background: #17d977;
    background: linear-gradient(180deg, #17d977 0%, #17d977 80%, rgb(255, 255, 255) 45%, rgb(255, 255, 255) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#17d977",endColorstr="#ffffff",GradientType=1);
  }
}

.inner-wrapper {
  display: grid;
  grid-template-columns: 1fr min(1300px, 100% - 48px) 1fr;
  grid-column-gap: 24px;
}

.inner-wrapper > * {
  grid-column: 2;
}

.full-bleed {
  width: 100%;
  grid-column: 1/4;
}

h1 {
  text-align: center;
  font-size: 3rem;
  font-family: "Barlow Black";
  text-transform: uppercase;
  color: white;
  line-height: 0.9;
  padding: 1.5rem 0;
}
@media (min-width: 768px) {
  h1 {
    font-size: 4rem;
    text-align: left;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 5rem;
  }
}
@media (min-width: 1340px) {
  h1 {
    font-size: 5.5rem;
  }
}

.hero-demo h1 {
  font-size: 2rem;
  text-align: left;
  font-family: "Barlow Black";
  text-transform: uppercase;
  color: #9e83ff;
  line-height: 0.9;
  padding: 1.5rem 0 1rem;
}
@media (min-width: 768px) {
  .hero-demo h1 {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .hero-demo h1 {
    font-size: 3.25rem;
  }
}
@media (min-width: 1340px) {
  .hero-demo h1 {
    font-size: 3.5rem;
  }
}

.strategy .headline h2,
.pricing h2 {
  text-transform: uppercase;
  font-family: "Sofia Sans Condensed Black";
  font-size: 2rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .strategy .headline h2,
  .pricing h2 {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .strategy .headline h2,
  .pricing h2 {
    width: 100%;
  }
}

.strategy .headline h2 {
  padding-bottom: 1rem;
}

.identity {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.identity .logo {
  max-width: 140px;
}
@media (min-width: 768px) {
  .identity .logo {
    max-width: 200px;
  }
}
.identity .tagline {
  text-transform: uppercase;
  font-size: 1rem;
  font-family: "Sofia Sans Condensed Bold";
  color: #231f20;
}
@media (min-width: 768px) {
  .identity .tagline {
    font-size: 1.25rem;
  }
}

.hero-content {
  padding: 2rem 0 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .hero-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 30px;
  }
}
@media (min-width: 1340px) {
  .hero-content {
    grid-template-rows: auto auto;
  }
  .hero-content .hero-text {
    grid-row: 1/2;
  }
  .hero-content .hero-image {
    grid-row: 1/-1;
  }
}

.hero-text {
  order: 2;
  max-width: 370px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero-text {
    order: 1;
    max-width: 100%;
    margin: unset;
  }
}
.hero-text .details {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-text .details {
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .hero-text .details {
    flex-direction: row;
  }
}

.hero-image {
  order: 1;
  max-width: 250px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero-image {
    max-width: 100%;
    margin: unset;
  }
}

.tags {
  position: relative;
  order: 2;
  padding-top: 1rem;
}
@media (min-width: 992px) {
  .tags {
    order: 1;
    padding-top: 0;
  }
}
.tags span {
  font-family: "Sofia Sans Condensed Bold";
  display: inline-block;
  padding: 0.5rem 1.25rem;
  text-transform: uppercase;
  text-wrap: nowrap;
  color: #231f20;
}
.tags span.hundred-percent {
  background-color: #f2e71c;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .tags span.hundred-percent {
    font-size: 1.1rem;
  }
}
@media (min-width: 992px) {
  .tags span.hundred-percent {
    font-size: 1.25rem;
  }
}
.tags span.seriously {
  background-color: #ff4a5c;
  color: white;
  position: absolute;
  font-size: 0.85rem;
  transform: rotate(-5deg);
  top: 85%;
  right: -20%;
}
@media (min-width: 768px) {
  .tags span.seriously {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .tags span.seriously {
    font-size: 1.15rem;
  }
}

.hero p {
  color: #231f20;
  font-size: 1.25rem;
  font-family: "Sofia Sans Condensed";
}
.hero p strong {
  font-family: "Sofia Sans Condensed Bold";
}
@media (min-width: 992px) {
  .hero p {
    font-size: 1.35rem;
    text-align: left;
    order: 2;
    padding-left: 80px;
  }
}
@media (min-width: 992px) {
  .hero p {
    line-height: 1.4;
  }
}

.hero-demo p {
  color: #231f20;
  font-size: 1.25rem;
  font-family: "Sofia Sans Condensed";
}
.hero-demo p strong {
  font-family: "Sofia Sans Condensed Bold";
}
@media (min-width: 768px) {
  .hero-demo p {
    font-size: 1.35rem;
  }
}
@media (min-width: 992px) {
  .hero-demo p {
    line-height: 1.4;
  }
}

.divider {
  padding: 3rem 0 1.5rem;
}

.actions {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .actions {
    align-items: flex-start;
  }
}
@media (min-width: 1340px) {
  .actions {
    flex-direction: row;
    justify-content: space-between;
  }
}
.actions .get-app ul {
  display: flex;
  justify-content: space-between;
}
.actions .coming-soon {
  background-color: #0071ff;
  padding: 0.75rem 1.75rem;
  color: white;
  text-transform: uppercase;
  font-family: "Sofia Sans Condensed";
  margin-top: 10px;
  font-size: 1.2rem;
}
@media (min-width: 1340px) {
  .actions .coming-soon {
    margin-top: 0;
  }
}
.actions .coming-soon span {
  display: block;
  text-align: center;
}

.blurbs {
  padding: 50px 0;
  max-width: 370px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .blurbs {
    max-width: 100%;
    padding: 100px 0;
  }
}
@media (min-width: 1340px) {
  .blurbs {
    padding-top: 50px;
  }
}
.blurbs .blurb {
  text-align: center;
}
@media (min-width: 1340px) {
  .blurbs .blurb {
    max-width: 330px;
    margin: 0 auto;
  }
}
.blurbs .blurb h3 {
  text-transform: uppercase;
  font-family: "Sofia Sans Condensed Black";
  color: #9e83ff;
  padding-bottom: 5px;
}
.blurbs .blurb p {
  font-size: 1.1rem;
  line-height: 1.4;
  color: #231f20;
}
@media (min-width: 1340px) {
  .blurbs .blurb p {
    font-size: 1.3rem;
  }
}
.blurbs .blurb + .blurb {
  padding-top: 50px;
}
@media (min-width: 768px) {
  .blurbs .blurb + .blurb {
    padding-top: 0;
  }
}

.copyright {
  text-align: center;
}

.footer {
  background-color: #0071ff;
  color: #231f20;
  padding: 3rem 0;
}

.social-content {
  display: flex;
  justify-content: center;
  padding: 40px 0 20px;
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .social-content {
    max-width: 500px;
  }
}
.social-content .social {
  width: 100%;
  text-align: center;
}
.social-content .social a {
  display: block;
  padding: 0.5rem 1.25rem;
  border-top: 2px solid #231f20;
  border-bottom: 2px solid #231f20;
  border-left: 2px solid #231f20;
  text-decoration: none;
  font-family: "Sofia Sans Condensed Bold";
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .social-content .social a {
    padding: 0.5rem 4rem;
  }
}
.social-content .social a:link,
.social-content .social a:active,
.social-content .social a:visited {
  color: #231f20;
}
.social-content .social:last-child a {
  border-right: 2px solid #231f20;
}

.get-app-content {
  padding: 40px 0;
  max-width: 300px;
  margin: 0 auto;
}
.get-app-content ul {
  display: flex;
  justify-content: center;
  gap: 10px;
}

@media (min-width: 768px) {
  .blurb-content {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
  }
  .blurb-content .blurb h3 {
    font-size: 1.3rem;
  }
}
@media (min-width: 768px) and (min-width: 1340px) {
  .blurb-content .blurb h3 {
    font-size: 1.5rem;
  }
}

.hero-demo-content {
  display: grid;
  gap: 30px;
  max-width: 370px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero-demo-content {
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: unset;
    padding-top: 30px;
  }
}

.hero-demo-text ul {
  padding: 1.5rem 0;
  color: #231f20;
  font-size: 1.25rem;
  font-family: "Sofia Sans Condensed";
  list-style: disc;
  padding-left: 20px;
}
@media (min-width: 992px) {
  .hero-demo-text ul {
    line-height: 1.4;
  }
}
.hero-demo-text .call-to-action {
  color: #231f20;
  font-size: 1.25rem;
  font-family: "Sofia Sans Condensed";
  text-transform: uppercase;
}
.hero-demo-text .call-to-action a {
  color: #0071ff;
  text-decoration: none;
}
@media (min-width: 992px) {
  .hero-demo-text .call-to-action {
    line-height: 1.4;
  }
}

.hero-demo-form {
  color: #231f20;
  font-size: 1.25rem;
  font-family: "Sofia Sans Condensed";
  padding: 1.5rem 0;
}
@media (min-width: 992px) {
  .hero-demo-form {
    line-height: 1.4;
  }
}
.hero-demo-form h4 {
  font-family: "Sofia Sans Condensed Bold";
  font-size: 1.3rem;
  color: #0071ff;
  padding-bottom: 10px;
  line-height: 1.1;
}
.hero-demo-form form ul {
  display: grid;
  gap: 10px;
}
.hero-demo-form input {
  color: #231f20;
  font-size: 1.25rem;
  font-family: "Sofia Sans Condensed";
  width: 100%;
  padding: 1rem 2rem;
  border: 1px solid #231f20;
  border-radius: 4px;
}
.hero-demo-form .form-actions ul {
  display: grid;
  gap: 5px;
  text-align: center;
}
@media (min-width: 992px) {
  .hero-demo-form .form-actions ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.hero-demo-form .form-actions ul li span {
  font-family: "Sofia Sans Condensed Black";
  font-size: 1.2rem;
  text-transform: uppercase;
}
.hero-demo-form .form-actions ul li a {
  display: block;
  padding: 0.75rem 1.25rem;
  text-transform: uppercase;
  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  font-family: "Sofia Sans Condensed";
  font-size: 1rem;
  border-radius: 4px;
}
@media (min-width: 1340px) {
  .hero-demo-form .form-actions ul li a {
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
  }
}
.hero-demo-form .form-actions ul li a.green {
  background-color: #17d977;
}
.hero-demo-form .form-actions ul li a.blue {
  background-color: #0071ff;
}

.form-actions {
  padding: 1.5rem 0;
}

.strategy-and-pricing {
  background: #17d977;
  padding-bottom: 80px;
}

.strategy {
  padding: 40px 0;
}
.strategy .headline {
  padding: 1.5rem 0;
  max-width: 370px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .strategy .headline {
    max-width: 400;
  }
}
@media (min-width: 992px) {
  .strategy .headline {
    max-width: 100%;
    margin: unset;
    display: flex;
    justify-content: space-between;
  }
}
.strategy .headline p {
  color: #231f20;
  font-size: 1.25rem;
  font-family: "Sofia Sans Condensed";
}
@media (min-width: 992px) {
  .strategy .headline p {
    line-height: 1.4;
  }
}
.strategy .promo-tags {
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}
.strategy .promo-tags ul {
  display: grid;
  justify-items: center;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  gap: 30px;
}
.strategy .promo-tags .promo-tag {
  padding: 1.25rem 2.5rem;
  background-color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  font-size: 0.8rem;
  text-align: center;
  border-radius: 10px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .strategy .promo-tags .promo-tag {
    font-size: 1.15rem;
  }
}
.strategy .app-screens {
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding: 3rem 0;
}
.strategy .app-screens ul {
  display: grid;
  justify-items: center;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  gap: 30px;
}
@media (min-width: 576px) {
  .strategy .app-screens ul {
    gap: 40px;
  }
}
@media (min-width: 768px) {
  .strategy .app-screens ul {
    gap: 30px;
  }
}
.strategy .app-screens ul li {
  max-width: 150px;
}
@media (min-width: 576px) {
  .strategy .app-screens ul li {
    max-width: 230px;
  }
}
@media (min-width: 768px) {
  .strategy .app-screens ul li {
    max-width: 280px;
  }
}
@media (min-width: 992px) {
  .strategy .app-screens ul li {
    max-width: 400px;
  }
}
@media (min-width: 1340px) {
  .strategy .app-screens ul li {
    max-width: 500px;
  }
}
.strategy .app-screens ul li:nth-child(odd) {
  transform: translateY(60px);
}

.pricing {
  padding: 1.5rem 0 50px;
  max-width: 370px;
  margin: 0 auto;
}
.pricing h2 {
  text-align: center;
  padding-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .pricing {
    max-width: 450px;
  }
}
@media (min-width: 992px) {
  .pricing {
    max-width: 600px;
  }
}

.pricing-tables .pricing-table {
  background-color: white;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 992px) {
  .pricing-tables .pricing-table {
    padding: 40px;
  }
}
.pricing-tables .pricing-table .heading {
  text-align: center;
}
.pricing-tables .pricing-table .heading h3 {
  font-family: "Sofia Sans Condensed Black";
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .pricing-tables .pricing-table .heading h3 {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .pricing-tables .pricing-table .heading h3 {
    font-size: 3rem;
  }
}
.pricing-tables .pricing-table .heading h3.starter {
  color: #0071ff;
}
.pricing-tables .pricing-table .heading h3.growth {
  color: #9e83ff;
}
.pricing-tables .pricing-table .heading p {
  color: #231f20;
  font-size: 1.25rem;
  font-family: "Sofia Sans Condensed";
}
@media (min-width: 992px) {
  .pricing-tables .pricing-table .heading p {
    line-height: 1.4;
  }
}
.pricing-tables .pricing-table .cta a {
  display: inline-block;
  text-transform: uppercase;
  font-family: "Sofia Sans Condensed";
  color: white;
  font-size: 1rem;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 4px;
}
.pricing-tables .pricing-table .cta a.starter {
  background-color: #0071ff;
}
.pricing-tables .pricing-table .cta a.growth {
  background-color: #9e83ff;
}
.pricing-tables .pricing-table .whats-included {
  width: 100%;
}
.pricing-tables .pricing-table .whats-included strong {
  font-family: "Sofia Sans Condensed Bold";
  font-size: 1.15rem;
  padding-bottom: 5px;
  display: block;
}
.pricing-tables .pricing-table .whats-included ul li {
  padding: 2px 0;
  font-family: "Sofia Sans Condensed";
  font-size: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .pricing-tables .pricing-table .whats-included ul li {
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) {
  .pricing-tables .pricing-table .whats-included ul li {
    font-size: 1.3rem;
  }
}

.align-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
@media (min-width: 992px) {
  .align-right {
    flex-direction: row;
    align-items: center;
  }
}
.align-right .merchant-login {
  font-weight: 500;
  font-size: 0.7rem;
  border: solid 1px #0071ff;
  padding: 10px 20px;
  text-align: right;
}
@media (min-width: 576px) {
  .align-right .merchant-login {
    font-size: 0.9rem;
    border: solid 1px #0071ff;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .align-right .merchant-login {
    margin-left: 16px;
    font-size: 1.1rem;
  }
}
@media (min-width: 1340px) {
  .align-right .merchant-login {
    margin-left: 16px;
    font-size: 1.3rem;
    padding: 10px 30px;
  }
}
.align-right .merchant-login a {
  text-transform: uppercase;
  text-decoration: none;
  color: #0071ff;
}

.footer-logo {
  max-width: 200px;
  margin: -120px auto 0 auto;
}/*# sourceMappingURL=styles.css.map */