*,
::after,
::before {
  box-sizing: border-box;
}
:not(:defined) {
  /* visibility: hidden; */
  display: none;
}

:root {
  --wa-color-brand: var(--wa-color-indigo);
  --wa-color-brand-05: var(--wa-color-indigo-05);
  --wa-color-brand-10: var(--wa-color-indigo-10);
  --wa-color-brand-20: var(--wa-color-indigo-20);
  --wa-color-brand-30: var(--wa-color-indigo-30);
  --wa-color-brand-40: var(--wa-color-indigo-40);
  --wa-color-brand-50: var(--wa-color-indigo-50);
  --wa-color-brand-60: var(--wa-color-indigo-60);
  --wa-color-brand-70: var(--wa-color-indigo-70);
  --wa-color-brand-80: var(--wa-color-indigo-80);
  --wa-color-brand-90: var(--wa-color-indigo-90);
  --wa-color-brand-95: var(--wa-color-indigo-95);
}

.d-flex {
  display: flex;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.align-items-center {
  align-items: center;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.container {
  /* --grid-gap: 10px; */
  width: 100%;
  /* padding-left: calc(var(--grid-gap) * 0.5); */
  /* padding-right: calc(var(--grid-gap) * 0.5); */
  margin-left: auto;
  margin-right: auto;
}
.row {
  --grid-gap: 10px;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--grid-gap));
  margin-right: calc(-0.5 * var(--grid-gap));
  margin-left: calc(-0.5 * var(--grid-gap));
}
.row .col {
  width: 0;
  flex-grow: 1;
}
.row .col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.row .col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.row .col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.row .col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.row .col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.row .col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.row .col-auto {
  flex: 0 0 auto;
  width: auto;
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  margin-top: var(--grid-gap);
  padding-right: calc(var(--grid-gap) * 0.5);
  padding-left: calc(var(--grid-gap) * 0.5);
}
.g-none {
  --grid-gap: 0;
}
.g-small {
  --grid-gap: 10px;
}
.g-medium {
  --grid-gap: 20px;
}

/* sm */
@media screen and (min-width: 576px) {
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .row .col-sm {
    width: 0;
    flex-grow: 1;
  }
  .row .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .row .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .row .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .row .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .row .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
}
/* md */
@media screen and (min-width: 768px) {
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .row .col-md {
    width: 0;
    flex-grow: 1;
  }
  .row .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .row .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .row .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .row .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .row .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .row .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
}
/* End of grid system */

.ml-0 {
  margin-left: 0;
}
.ml-30 {
  margin-left: 30px;
}
.mr-0 {
  margin-right: 0;
}
.mr-30 {
  margin-right: 30px;
}
.mt-20 {
  margin-top: 20px;
}
.mb-20 {
  margin-bottom: 20px;
}

body {
  --header-height: 54px;
  /* --wa-font-family-body: 'Inter'; */
  padding: var(--header-height) 0 0 0;
  margin: 0;
  background: #282828;
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  font-family: 'Inter';
}

body > header {
  padding: 10px 20px;
  height: var(--header-height);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  background: rgb(255 255 255 / 86%);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid #d8e1ef;
  box-shadow: 0 8px 30px rgb(15 23 42 / 8%);
}

body > header::before {
  display: none;
}

.logo-link {
  position: relative;
  display: inline-block;
}

wa-toast#main-toast wa-toast-item::part(icon),
wa-toast#main-toast wa-toast-item::part(content) {
  padding: var(--wa-space-s);
}
wa-toast#main-toast wa-toast-item::part(close-button) {
  padding-inline: var(--wa-space-s);
}
wa-toast#main-toast wa-toast-item::part(progress-ring) {
  --size: calc(0.75 * var(--wa-form-control-height));
}

.bf-a,
.bf-a:hover,
.bf-a:active,
.bf-a:visited {
  color: #ffffff;
  text-decoration: none;
  outline: 2px dashed red;
  outline-offset: -2px;
  display: block;
}
.bf {
  width: 100%;
  background-color: black;
  padding: 4px 12px;
  text-align: center;
}
.bf-title {
  color: yellow;
  font-weight: bold;
}
.bf-code {
  color: yellow;
  font-weight: bold;
}
.bf-of {
  color: yellow;
  font-weight: bold;
}

.logo {
  height: 30px;
  display: block;
}
body > header .links {
  display: flex;
  gap: 14px;
  align-items: center;
}
footer a,
footer a:hover,
footer a:visited {
  color: #ffffff;
  text-decoration: none;
  font-weight: normal;
}

/* links from dropdown */
body > header .links a {
  text-decoration: none;
}

body > header .links > a,
body > header .links > a:hover,
body > header .links > a:visited {
  color: #334155;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}
body > header .links > a:hover {
  background-color: #eef2ff;
  color: #4338ca;
}
body > header .links > .ph,
body > header .links > .ph:hover {
  font-size: 0;
}
img {
  max-width: 100%;
}
.text-muted {
  color: #676767;
}
.text-secondary {
  color: var(--wa-color-neutral-70);
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.no-scroll {
  overflow: hidden;
}

.main-title {
  line-height: 30px;
}
.main-title > span {
  color: #e2c200;
}
.main-container h1 {
  font-size: 40px;
  font-weight: 900;
  line-height: 48px;
  padding: 0;
  margin: 0 auto;
  /* max-width: 500px; */
  text-align: center;
}
.main-container h2 {
  font-size: 20px;
  padding: 0;
  margin: 0;
}
/* Hero */
.section-hero {
  display: flex;
  flex-direction: column;
}
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 30px;
}
.top {
  position: absolute;
  animation-name: fade;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 1.5s;
  animation-direction: alternate;
}
.hero-action-button {
  text-align: center;
}
.hero-action-button wa-button {
  margin-top: 20px;
  width: 100%;
  max-width: 200px;
}
.ph-button {
  margin-top: 30px;
  text-align: center;
}
.ph-button img {
  width: auto !important;
  height: 40px !important;
}

ul.main-features {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.main-features li {
  display: flex;
  line-height: 22px;
  padding: 4px 0;
  justify-content: center;
}
ul.main-features li wa-icon {
  padding-top: 2px;
  padding-right: 10px;
  flex-shrink: 0;
  color: #e2c200;
}
.stars {
  font-size: 12px;
  text-align: center;
}

.features h1,
.use-cases h1 {
  margin-bottom: 40px;
}
.section-use-case {
  display: flex;
  flex-direction: column;
}
.section-use-case.border {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #ffffff47;
}

.section-container.faq {
  line-height: 1.6em;
}
.faq h3 {
  display: flex;
  align-items: center;
  gap: 5px;
}

.section-bg-purple {
  /* background-color: #792287; */
  background-color: hsla(291, 59%, 33%, 1);
  background-image:
    radial-gradient(at 30% 59%, hsla(290, 58%, 33%, 1) 0px, transparent 50%),
    radial-gradient(at 60% 33%, hsla(291, 59%, 33%, 1) 0px, transparent 50%),
    radial-gradient(
      at 100% 0%,
      hsla(338, 100%, 54%, 0.42) 0px,
      transparent 50%
    ),
    radial-gradient(
      at 0% 100%,
      hsla(338, 100%, 75%, 0.47) 0px,
      transparent 50%
    ),
    radial-gradient(
      at 99% 100%,
      hsla(288, 100%, 17%, 0.51) 0px,
      transparent 50%
    );
}
.section-bg-purple h2,
.section-bg-purple h3 {
  color: rgb(255 255 255 / 93%);
  max-width: 500px;
  margin: 20px auto 0 auto;
  text-align: left;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
}
.section-bg-purple h2 > span,
.section-bg-purple h3 > span {
  display: block;
  margin-bottom: 10px;
}

.section-bg-gray {
  background-color: hsla(0, 0%, 15%, 1);
  background-image:
    radial-gradient(at 51% 56%, hsla(28, 0%, 15%, 1) 0px, transparent 50%),
    radial-gradient(at 51% 0%, hsla(286, 100%, 14%, 0.92) 0px, transparent 50%);
}
.section-content {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 0;
}
.section-text h2 {
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  line-height: 38px;
}

footer {
  background-color: #000000;
  padding: 30px 0;
}
.footer-row {
  display: flex;
  gap: 30px;
}
.footer-row > div {
  flex: 1 1 0;
  width: 0;
}

/* Features content */
.features-container {
  display: flex;
  margin-top: 40px;
  gap: 40px;
}
.features-container .feature {
  display: flex;
  flex: 1 1 0;
}
.features-container .feature > div {
  line-height: 25px;
  font-size: 18px;
  color: #dddddd;
}
.features-container .feature > div > strong {
  color: #fff;
}
.features-container .feature wa-icon {
  color: #f92a74;
  font-size: 20px;
  flex-shrink: 0;
  margin-right: 10px;
  background: rgb(0 0 0 / 80%);
  padding: 5px;
  border-radius: 8px;
  width: 20px;
  height: 20px;
}
.features-container .feature wa-icon:not(:defined) {
  visibility: hidden;
}
.features-container.youtube {
  justify-content: center;
  margin-top: 80px;
}
.youtube > iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

/* Pricing */
.pricing-content h1 {
  text-align: center;
}
.pricing-content h2 {
  text-align: center;
  font-size: 18px;
  font-weight: normal;
  margin-top: 10px;
}
.pricing-container,
.settings-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* margin-top: 40px; */
}
.pricing,
.settings {
  padding: 30px;
  border-radius: 20px;
  background-color: #fff;
}
.pricing.free {
  color: var(--wa-color-neutral-05);
  order: 1;
}
.pricing.pro {
  color: var(--wa-color-neutral-95);
  background-color: #c71b58;
}
.pricing h3 {
  padding: 0;
  margin: 0;
  font-size: 28px;
}
.pricing .amount {
  font-size: 55px;
  font-weight: bold;
  position: relative;
}
.pricing .original-amount {
  /* font-weight: normal; */
  font-size: 27px;
  position: absolute;
  top: -15px;
  right: -50px;
  color: #ffffff94;
}
.pricing .original-amount::before {
  content: '';
  display: block;
  width: 120%;
  height: 1px;
  background-color: #0000008f;
  position: absolute;
  top: 17px;
  left: -5px;
  transform: rotate(-17deg);
}

.pricing .frequency .bg-transparent::part(base) {
  background-color: transparent;
}

.pricing ul {
  list-style: none;
  padding: 10px 0 0 0;
  margin: 10px 0 20px 0;
  font-size: 18px;
}
.pricing ul li {
  line-height: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing ul li wa-icon {
  font-size: 22px;
  flex-shrink: 0;
  align-self: flex-start;
  padding-top: 3px;
}
.pricing.free ul {
  border-top: 1px solid #d7d7d7;
}
.pricing.pro ul {
  border-top: 1px solid #ffa1c6;
}
.pricing.free wa-button::part(label) {
  color: var(--wa-color-neutral-05);
}
.pricing.pro wa-button::part(label) {
  color: var(--wa-color-neutral-95);
}

.settings {
  background-color: rgb(0 0 0);
}

.billing-freq {
  display: flex;
  /* align-items: center; */
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 10px;
}
.billing-freq span {
  font-size: 16px;
  font-weight: bold;
  line-height: 30px;
  color: var(--wa-color-neutral-90);
}
.billing-freq wa-switch {
  height: 35px;
  margin-left: 12px;
  margin-right: 5px;
}
.billing-freq wa-switch::part(control) {
  background-color: var(--wa-color-brand-60);
}
.billing-freq wa-switch::part(thumb) {
  border-color: var(--wa-color-brand-60);
}

.faq .section-content > div {
  border-bottom: 1px solid #8080804a;
}
.faq .section-content > div:last-child {
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  /* Hero */
  .hero-text,
  .hero-image {
    /* flex: 1 1 0; */
    /* width: 0; */
    justify-content: end;
  }
  .hero-text h1 {
    text-align: left;
  }
  .hero-text {
    width: 40%;
  }
  .hero-image {
    width: 60%;
    margin-left: 40px;
    margin-top: 0;
  }
  .section-hero {
    display: flex;
    flex-direction: row;
  }
  .hero-action-button {
    text-align: left;
  }
  ul.main-features li {
    justify-content: flex-start;
  }
  .stars {
    text-align: left;
  }
  .ph-button {
    text-align: left;
  }
  .section-use-case {
    display: flex;
    flex-direction: row;
  }
  .section-use-case .section-image {
    width: 40%;
    margin-right: 30px;
  }
  .section-use-case .section-image.right {
    margin-left: 30px;
    margin-right: 0px;
  }
  .section-use-case .section-text {
    width: 60%;
  }
  .section-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .section-text h2 {
    text-align: left;
    margin: 0;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 900;
  }
  .section-text h3 {
    margin-left: 0;
    margin-right: 0;
  }

  .pricing-container {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .pricing {
    width: 0;
    flex-grow: 1;
  }
  .pricing.free {
    order: 0;
  }
}

@media screen and (max-width: 1063px) {
  /* Editor */
  .section-content {
    padding: 40px 20px;
  }
}

@media screen and (max-width: 768px) {
  /* Content */
  .section-content {
    padding: 60px 20px;
  }
  .features-container {
    flex-direction: column;
  }

  /* Footer */
  .footer-row {
    flex-direction: column;
  }
  .footer-row > div {
    width: 100%;
    text-align: center;
  }
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
