/*=====================
    fonts
======================*/
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700;800&display=swap");
html,
body {
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 4vw;
  font-family: "Glegoo";
}
@media screen and (min-width: 525px) {
  body {
    font-size: 3.25vw;
  }
}
@media screen and (min-width: 525px) and (min-width: 768px) {
  body {
    font-size: 2.75vw;
  }
}
@media screen and (min-width: 525px) and (min-width: 768px) and (min-width: 1024px) {
  body {
    font-size: 1rem;
  }
}
body a:not(.logo, .footer-link, .base-link),
body button {
  display: flex;
  align-items: center;
  align-self: center;
  padding: 0.75em 1.5em;
  margin-bottom: 2em;
  background: white;
  border-color: #8201ba;
  border-radius: 4.75em;
  font-size: initial;
  font-family: "Glegoo";
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  color: #8201ba;
}
body .base-link {
  color: #8201ba;
}
body .cta-button {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  background: #ffffff;
  outline: none !important;
  padding-right: 0.25em;
  transition: background-color 0.3s ease-in-out;
}
body .cta-button span {
  z-index: 2;
}
body .cta-button svg {
  position: absolute;
  right: 0em;
  width: 3.25em;
  height: 3.25em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75em;
  background: inherit;
  border-radius: 50%;
  fill: currentColor;
  z-index: 1;
  fill: transparent;
  transform: translateX(0em) rotate(-180deg);
  transition: transform 0.5s ease-out, fill 0.3s ease-out;
}
body .cta-button svg:hover {
  transform: translateX(3.5em) rotate(0deg);
  transition: transform 0.3s ease-in 0.25s, fill 0.15s ease-out 0.4s;
  fill: currentColor;
}
body .cta-button:hover, body .cta-button:focus-within, body .cta-button:focus {
  background: #d9d9d9;
}
body .cta-button:hover svg, body .cta-button:focus-within svg, body .cta-button:focus svg {
  transform: translateX(3.5em) rotate(0deg);
  fill: currentColor;
  transition: transform 0.3s ease-in 0.25s, fill 0.15s ease-out 0.4s;
}
body main {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1em;
}
body main h1 {
  max-width: 10em;
  margin: 0.4em 0;
  font-weight: 700;
  font-size: 3.75em;
  line-height: 110%;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 525px) {
  body main h1 {
    font-size: clamp(1em, 5vw, 4.5em);
  }
}
body main p {
  font-size: inherit;
  letter-spacing: -0.06em;
}
body main hr {
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.35);
}
body main section {
  padding: 3em 0 0;
}
body main section h2 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: 400;
  font-size: 1em;
  line-height: 110%;
  letter-spacing: -0.06em;
  color: #22073a;
}
body main section h3 {
  margin-top: 0;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 160%;
  letter-spacing: -0.06em;
  color: #8201ba;
}
body main .header-container {
  position: absolute;
  inset: 0;
  bottom: unset;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1em;
  z-index: 900;
  transition: background 0.3s ease-in-out;
}
body main .header-container.fixed {
  position: fixed;
  background: linear-gradient(67.17deg, #060915 2.27%, #8200ba 89.68%);
  animation: flyIn 0.3s ease-in;
}
body main .header-container.fly-out {
  animation: flyOut 0.2s ease-out forwards;
}
@keyframes flyIn {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes flyOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}
body main header {
  position: relative;
  width: 100%;
  max-width: 1366px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
body main header img,
body main header .hamburger {
  width: 2.75em;
  aspect-ratio: 1/1;
}
body main header .logo {
  position: relative;
  left: 0;
  width: 2.75em;
  height: 2.75em;
  padding: 0;
  margin: 0;
  transition: left 0.1s ease-out;
}
@media screen and (min-width: calc(1366px + 11.5em)) {
  body main header .logo {
    position: relative;
    left: -4.75em;
    transition: left 0.2s ease-in;
  }
}
body main header .sidebar-backdrop {
  position: fixed;
  width: 100vw;
  inset: 0;
  left: 0;
  display: none;
  flex-direction: column;
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  body main header .sidebar-backdrop {
    position: initial;
    width: 100%;
    display: flex;
    flex-direction: row;
    z-index: unset;
    background: transparent;
    opacity: 1;
  }
}
body main header .sidebar-backdrop .mobile-sidebar {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 300px;
  left: -100%;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0.75em;
  overflow: hidden;
  background: linear-gradient(315deg, #090d1e 0.61%, #280438 73.81%);
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  transition: left 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  body main header .sidebar-backdrop .mobile-sidebar {
    position: initial;
    width: 100%;
    flex-direction: row;
    align-items: center;
    overflow: unset;
    background: transparent;
    max-width: unset;
    padding: initial;
    box-shadow: none;
  }
}
body main header .sidebar-backdrop .mobile-sidebar .close-button {
  width: 2em;
  height: 2em;
  padding: 0.5em;
  display: flex;
  justify-content: center;
  align-self: flex-end;
  align-items: center;
  margin-bottom: 0.5em;
  background: white;
  border: none;
  aspect-ratio: 1/1;
  border-radius: 50%;
  color: black;
}
@media screen and (min-width: 768px) {
  body main header .sidebar-backdrop .mobile-sidebar .close-button {
    display: none;
  }
}
body main header .sidebar-backdrop .mobile-sidebar .close-button svg {
  width: 1em;
  fill: currentColor;
}
body main header .sidebar-backdrop .mobile-sidebar > nav {
  width: 100%;
  display: flex;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  body main header .sidebar-backdrop .mobile-sidebar > nav {
    flex: 1;
    margin-bottom: initial;
  }
}
body main header .sidebar-backdrop .mobile-sidebar > nav ul {
  width: 100%;
  position: relative;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding: 0;
  margin: 0;
  transition: left 0.1s ease-out;
}
@media screen and (min-width: 768px) {
  body main header .sidebar-backdrop .mobile-sidebar > nav ul {
    flex-direction: row;
    gap: 1em;
    padding: 0 0 0 1em;
    margin: initial;
  }
}
@media screen and (min-width: calc(1366px + 11.5em)) {
  body main header .sidebar-backdrop .mobile-sidebar > nav ul {
    left: -4.5em;
    transition: left 0.2s ease-in;
  }
}
body main header .sidebar-backdrop .mobile-sidebar > nav ul li {
  list-style: none;
}
@media screen and (min-width: 768px) {
  body main header .sidebar-backdrop .mobile-sidebar > nav ul li {
    padding: initial;
    margin: 0;
  }
}
body main header .sidebar-backdrop .mobile-sidebar > nav ul li a:not(.base-link) {
  padding: 0.5em 1.75em;
  margin: 0;
  background: transparent;
  color: white;
}
@media screen and (min-width: 768px) {
  body main header .sidebar-backdrop .mobile-sidebar > nav ul li a:not(.base-link) {
    padding: 0.5em 0.75em;
    white-space: nowrap;
  }
}
body main header .sidebar-backdrop .mobile-sidebar .actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
@media screen and (min-width: 768px) {
  body main header .sidebar-backdrop .mobile-sidebar .actions {
    width: unset;
    flex-direction: row;
    gap: 1em;
  }
}
body main header .sidebar-backdrop .mobile-sidebar .actions a,
body main header .sidebar-backdrop .mobile-sidebar .actions button {
  width: 100%;
  padding: 0.5em 1.75em;
  margin: 0;
}
@media screen and (min-width: 768px) {
  body main header .sidebar-backdrop .mobile-sidebar .actions a,
  body main header .sidebar-backdrop .mobile-sidebar .actions button {
    width: unset;
    background: transparent;
    box-shadow: none;
    border: none;
    color: white;
  }
}
body main header .sidebar-backdrop .mobile-sidebar .actions a {
  border: 1px solid white;
}
body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  color: white;
}
@media screen and (min-width: 768px) {
  body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown {
    flex-direction: row;
  }
}
body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown button {
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown button {
    gap: 0.5em;
    justify-content: flex-start;
  }
}
body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown button svg {
  width: 1.5em;
  fill: currentColor;
  transition: transform 0.2s ease-in;
}
@media screen and (max-width: 767px) {
  body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown button svg {
    margin-right: -1.2em;
  }
}
body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown button:hover + .dropdown-menu, body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown button:focus + .dropdown-menu, body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown button:active + .dropdown-menu, body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown button:focus-within + .dropdown-menu {
  grid-template-rows: 1fr;
  bottom: -280%;
  padding: 0.25em;
  transition: grid-template-rows 0.3s, bottom 0.3s, padding 0.3s;
}
body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown .dropdown-menu {
  position: initial;
  bottom: 0;
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 0.25em;
  overflow: hidden;
  z-index: 1000;
  background: white;
  color: black;
  border-radius: 1.25em;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  transition: grid-template-rows 0.3s, bottom 0.3s, padding 0.3s;
}
@media screen and (min-width: 768px) {
  body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown .dropdown-menu {
    position: absolute;
  }
}
body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown .dropdown-menu ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown .dropdown-menu ul {
    width: -moz-min-content;
    width: min-content;
  }
}
body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown .dropdown-menu ul hr {
  display: none;
}
body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown .dropdown-menu ul li {
  width: 100%;
  list-style: none;
}
body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown .dropdown-menu ul li a {
  width: calc(100% - 0.4em);
  margin: 0.2em;
  color: inherit;
  white-space: nowrap;
}
body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown:hover button svg, body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown:focus button svg, body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown:focus-within button svg, body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown:active button svg {
  transform: rotate(180deg);
  transition: transform 0.2s ease-out;
}
body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown:hover .dropdown-menu, body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown:focus .dropdown-menu, body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown:focus-within .dropdown-menu, body main header .sidebar-backdrop .mobile-sidebar .actions .dropdown:active .dropdown-menu {
  grid-template-rows: 1fr;
  bottom: -280%;
  padding: 0.25em;
  transition: grid-template-rows 0.3s, bottom 0.3s, padding 0.3s;
}
body main header .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.35em;
  padding: 0.4em;
  margin: 0;
  font-size: inherit;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: gap 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  body main header .hamburger {
    display: none;
  }
}
body main header .hamburger:hover, body main header .hamburger:focus {
  gap: 0.215em;
}
body main header .hamburger span {
  width: 80%;
  height: 0.15em;
  border-radius: 1em;
  background: linear-gradient(67.17deg, #060915 2.27%, #8200ba 89.68%);
}
body main .hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em;
  margin: -1em;
  background: linear-gradient(67.17deg, #060915 2.27%, #8200ba 89.68%);
  color: #ffffff;
}
body main .hero-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body main .hero-actions {
  display: none;
}
@media screen and (min-width: 1024px) {
  body main .hero-actions {
    display: flex;
    margin-right: 3.25em;
  }
}
@media screen and (min-width: 1024px) {
  body main .hero-actions a {
    margin-bottom: 4.5em;
  }
}
body main .hero-content {
  width: 100%;
  max-width: 1366px;
}
body main .hero-main-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  body main .hero-main-content {
    flex-direction: row;
    gap: 2em;
  }
}
body main .hero-main-content article figure {
  position: relative;
  margin: 0;
}
body main .hero-main-content article:first-of-type {
  border-color: 1px solid yellow;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  body main .hero-main-content article:first-of-type {
    width: 35%;
  }
}
body main .hero-main-content article:first-of-type figure > img {
  width: 100%;
}
body main .hero-main-content article:first-of-type figcaption {
  padding: 2.5vw 12vw 2.5vw 2.5vw;
  position: absolute;
  width: 35%;
  height: 25.5vw;
  right: 0;
  bottom: 0;
  font-size: 3vw;
  background: #ffffff;
  border-radius: 5vw;
}
@media screen and (min-width: 1024px) {
  body main .hero-main-content article:first-of-type figcaption {
    padding: 1em 2.5em 1em 1.25em;
    height: unset;
    font-size: clamp(0.625em, 1vw, 0.9em);
    border-radius: 2em;
    bottom: 0.5em;
  }
}
body main .hero-main-content article:first-of-type figcaption h2 {
  margin: 0;
  font-weight: 700;
  font-size: 1em;
  line-height: 140%;
  display: flex;
  align-items: center;
  letter-spacing: -0.06em;
  color: #311a8f;
}
@media screen and (min-width: 1024px) {
  body main .hero-main-content article:first-of-type figcaption h2 {
    font-size: 1.25em;
  }
}
body main .hero-main-content article:first-of-type figcaption p {
  font-size: 0.5em;
  color: #311a8f;
}
@media screen and (min-width: 1024px) {
  body main .hero-main-content article:first-of-type figcaption p {
    font-size: 0.75em;
    margin: 0.25em 0;
  }
}
body main .hero-main-content article:first-of-type figcaption svg {
  position: absolute;
  width: 9vw;
  height: 9vw;
  right: 0.75vw;
  bottom: 0.5vw;
}
@media screen and (min-width: 1024px) {
  body main .hero-main-content article:first-of-type figcaption svg {
    width: 3.5em;
    height: 3.5em;
    right: 0.25em;
    bottom: 0.25em;
  }
}
body main .hero-main-content article:last-of-type {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  body main .hero-main-content article:last-of-type {
    width: 65%;
  }
}
body main .hero-main-content article:last-of-type figure > img:last-of-type {
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  body main .hero-main-content article:last-of-type figure > img:last-of-type {
    top: calc(clamp(1em, 7vw, 6em) * -1);
  }
}
body main .hero-main-content article:last-of-type figcaption {
  display: flex;
  gap: 1em;
  padding: 20vw 0 2vw;
  font-size: 6.5vw;
}
@media screen and (min-width: 1024px) {
  body main .hero-main-content article:last-of-type figcaption {
    padding: 1.1em 0 1em;
    font-size: clamp(3em, 4.5vw, 4.25em);
  }
}
body main .hero-main-content article:last-of-type figcaption img {
  width: 23%;
}
body main .hero-main-content article:last-of-type figcaption .engage-fans-container {
  width: 75.5%;
}
body main .hero-main-content article:last-of-type figcaption .engage-fans-container hr {
  display: none;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  body main .hero-main-content article:last-of-type figcaption .engage-fans-container hr {
    display: block;
  }
}
body main .hero-main-content article:last-of-type figcaption h2 {
  padding-top: 2.3em;
  font-weight: 700;
  font-size: 1.25em;
  line-height: 110%;
  letter-spacing: -0.06em;
  color: #ffffff;
}
@media screen and (min-width: 1024px) {
  body main .hero-main-content article:last-of-type figcaption h2 {
    width: 100%;
    padding-top: 5em;
    font-size: 0.625em;
    margin-bottom: 0.75em;
  }
}
body main .hero-main-content article:last-of-type figcaption .hero-footer {
  display: none;
  font-size: 0.235em;
}
@media screen and (min-width: 1024px) {
  body main .hero-main-content article:last-of-type figcaption .hero-footer {
    display: flex;
    align-items: center;
  }
}
body main .hero-main-content article:last-of-type figcaption .hero-footer hr {
  height: 10em;
}
body main .hero-main-content article:last-of-type figcaption .hero-footer > div {
  padding: 2.5em 1.2em;
  margin: 1em 0;
}
body main .hero-main-content article p {
  color: rgba(255, 255, 255, 0.75);
}
@media screen and (min-width: 1024px) {
  body main .hero-main-content > a {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  body main .hero hr {
    display: none;
  }
}
body main .hero-footer {
  display: flex;
}
@media screen and (min-width: 1024px) {
  body main .hero-footer {
    display: none;
  }
}
body main .hero-footer > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5em 1.2em;
}
body main .hero-footer > div strong {
  font-size: 2em;
}
body main .hero-footer > div small {
  font-size: 1em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
}
body main .hero:has(.header-container) {
  padding-top: 3em;
}
body main #features {
  width: 100%;
  max-width: 1366px;
  align-self: center;
}
body main #features .cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
}
@media screen and (min-width: 991px) {
  body main #features .cards {
    flex-direction: row;
    font-size: clamp(0.75em, 1.125vw, 1.25em);
  }
}
body main #features .card-container {
  width: 100%;
  max-width: 25em;
  display: flex;
  flex: 1;
  align-items: center;
  flex-direction: column;
  gap: 1em;
}
body main #features .card-container .card {
  position: relative;
  width: 85%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5em 2em 10%;
  border-radius: 2.5em;
  background: #311a8f;
  color: #ffffff;
  overflow: hidden;
  cursor: pointer;
  transition: width 0.4s ease-out, padding-bottom 0.4s ease-out, background-color 0.4s ease-out;
}
body main #features .card-container .card > span {
  width: 4em;
  background: white;
  padding: 1em;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
}
body main #features .card-container .card > span svg {
  width: 100%;
  fill: #311a8f;
  transition: fill 0.4s ease-out;
}
body main #features .card-container .card .title {
  font-weight: 700;
  font-size: 1em;
  line-height: 130%;
  letter-spacing: -0.06em;
  text-align: center;
}
body main #features .card-container .card .content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out;
  overflow: hidden;
}
body main #features .card-container .card .content p {
  overflow: hidden;
  text-align: center;
}
body main #features .card-container .card > svg:first-of-type {
  position: absolute;
  top: -25%;
  right: -25%;
  width: 25%;
  fill: white;
  transform: rotate(275deg);
  transition: top 0.4s ease-out, right 0.4s ease-out;
}
body main #features .card-container .card > svg:last-of-type {
  position: absolute;
  bottom: 1%;
  right: 1%;
  width: 20%;
  fill: white;
  transition: 0.2s bottom 0.4s ease-out, 0.2s right 0.4s ease-out;
}
body main #features .card-container .card-action {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.4s ease-out, opacity 0.4s ease-out;
  margin-bottom: 0;
}
body main #features .card-container .card-action > div {
  width: -moz-min-content;
  width: min-content;
  overflow: hidden;
}
body main #features .card-container .card-action .cta-button {
  background-color: #8201ba;
  color: white;
  margin: 2px;
}
body main #features .card-container .card-action .cta-button svg {
  fill: white;
}
body main #features .card-container:hover .card, body main #features .card-container:focus .card, body main #features .card-container:focus-within .card, body main #features .card-container:focus-visible .card, body main #features .card-container:active .card {
  padding: 2.5em 2em 17%;
  background-color: #8201ba;
  transition: width 0.4s ease-in 0.2s, padding-bottom 0.4s ease-in 0.2s, background-color 0.4s ease-in 0.2s;
}
@media screen and (min-width: 991px) {
  body main #features .card-container:hover .card, body main #features .card-container:focus .card, body main #features .card-container:focus-within .card, body main #features .card-container:focus-visible .card, body main #features .card-container:active .card {
    width: 100%;
  }
}
body main #features .card-container:hover .card > span svg, body main #features .card-container:focus .card > span svg, body main #features .card-container:focus-within .card > span svg, body main #features .card-container:focus-visible .card > span svg, body main #features .card-container:active .card > span svg {
  fill: #8201ba;
}
body main #features .card-container:hover .card .content, body main #features .card-container:focus .card .content, body main #features .card-container:focus-within .card .content, body main #features .card-container:focus-visible .card .content, body main #features .card-container:active .card .content {
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.6s ease-in-out 0.2s;
}
body main #features .card-container:hover .card > svg:first-of-type, body main #features .card-container:focus .card > svg:first-of-type, body main #features .card-container:focus-within .card > svg:first-of-type, body main #features .card-container:focus-visible .card > svg:first-of-type, body main #features .card-container:active .card > svg:first-of-type {
  top: 1%;
  right: 1%;
  transition: 0.4s top 0.4s ease-in, 0.4s right 0.4s ease-in;
}
body main #features .card-container:hover .card > svg:last-of-type, body main #features .card-container:focus .card > svg:last-of-type, body main #features .card-container:focus-within .card > svg:last-of-type, body main #features .card-container:focus-visible .card > svg:last-of-type, body main #features .card-container:active .card > svg:last-of-type {
  bottom: -25%;
  right: -25%;
  transition: bottom 0.4s ease-in 0.2s, right 0.4s ease-in 0.2s;
}
body main #features .card-container:hover .card-action, body main #features .card-container:focus .card-action, body main #features .card-container:focus-within .card-action, body main #features .card-container:focus-visible .card-action, body main #features .card-container:active .card-action {
  opacity: 1;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.4s ease-in, 0.2s opacity 0.4s ease-in;
}
body main #how-it-works {
  width: 100%;
  max-width: 1366px;
  align-self: center;
  padding-bottom: 4em;
}
body main #how-it-works .articles {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4em;
  padding-top: 2em;
}
body main #how-it-works .articles article {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
@media screen and (min-width: 991px) {
  body main #how-it-works .articles article {
    flex-direction: row;
    padding: 0 2em;
  }
  body main #how-it-works .articles article:nth-child(even) {
    flex-direction: row-reverse;
  }
  body main #how-it-works .articles article:nth-child(even) .step-info-container {
    padding-left: unset;
    padding-right: 3em;
  }
}
body main #how-it-works .articles article .step-info-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 991px) {
  body main #how-it-works .articles article .step-info-container {
    width: 40%;
    gap: 1em;
    flex-direction: row;
    align-items: flex-start;
    padding-left: 3em;
  }
}
body main #how-it-works .articles article .step-info {
  padding-left: 1.25em;
}
@media screen and (min-width: 991px) {
  body main #how-it-works .articles article .step-info {
    flex: 1;
    padding-left: 0;
    flex-direction: row;
  }
}
body main #how-it-works .articles article span {
  width: 2.5em;
  height: 2.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #311a8f;
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (min-width: 991px) {
  body main #how-it-works .articles article span {
    margin-bottom: 0;
  }
}
body main #how-it-works .articles article h4 {
  width: 90%;
  margin: 0;
  margin-bottom: 0.5em;
  font-weight: 700;
  color: #311a8f;
}
body main #how-it-works .articles article p {
  width: 90%;
  margin: 0;
}
body main #how-it-works .articles article .img-container {
  width: 100%;
  max-width: 95%;
}
@media screen and (min-width: 991px) {
  body main #how-it-works .articles article .img-container {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
body main #how-it-works .articles article .img-container img {
  width: 100vw;
}
@media screen and (min-width: 991px) {
  body main #how-it-works .articles article .img-container img {
    width: 70%;
    transition: transform 0.3s ease-out;
  }
}
@media screen and (min-width: 991px) {
  body main #how-it-works .articles article:hover .img-container img, body main #how-it-works .articles article:focus .img-container img, body main #how-it-works .articles article:focus-visible .img-container img {
    transform: scale(1.25);
    transition: transform 0.4s ease-in;
  }
}
body main #newsletter {
  display: flex;
  justify-content: flex-end;
  margin: 0 -1em;
  background-image: url("../images/human-touching-phone.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 70%;
}
@media screen and (min-width: 991px) {
  body main #newsletter {
    justify-content: center;
  }
}
body main #newsletter .card-container {
  max-width: 24em;
}
@media screen and (min-width: 991px) {
  body main #newsletter .card-container {
    width: 100%;
    max-width: 1366px;
    display: flex;
    justify-content: flex-end;
    padding: 0 3em;
  }
}
body main #newsletter .card-container .card {
  width: 30em;
  padding: 3em 7em 3em 3em;
  margin: 4em 0 10em;
  border-radius: 3em;
  background-color: white;
}
body main #newsletter .card-container .card p {
  color: #8201ba;
}
body main #products {
  width: 100%;
  max-width: 1366px;
  align-self: center;
  padding-bottom: 4em;
}
body main #products .carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
body main #products .carousel-container .carousel-wrapper {
  display: flex;
  transition: transform 0.6s ease-in-out;
}
body main #products .carousel-container .carousel-wrapper .slide {
  width: 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.8em;
}
body main #products .carousel-container .carousel-wrapper .slide > span {
  width: 3em;
  height: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #311a8f;
  border-radius: 50%;
}
body main #products .carousel-container .carousel-wrapper .slide > span svg {
  fill: white;
  width: 2em;
}
body main #products .carousel-container .carousel-wrapper .slide h4 {
  color: #311a8f;
  font-size: 1.25em;
}
body main #products .carousel-container .carousel-wrapper .slide > a {
  font-size: 1.125em;
  gap: 0.5em;
  font-weight: 700;
  padding: 0.75em 1.5em;
  background: white;
  border: 2px solid;
  border-color: #8201ba;
  border-radius: 4.75em;
  font-size: initial;
  font-family: "Glegoo";
  text-decoration: none;
  cursor: pointer;
  color: #8201ba;
}
body main #products .carousel-container .carousel-wrapper .slide > a svg {
  width: 2em;
  fill: currentColor;
}
body main #products .carousel-container .carousel-wrapper .slide .preview-container {
  position: relative;
  width: 100%;
  max-width: 25em;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  flex: 1;
  margin-bottom: 3em;
}
@media screen and (min-width: 991px) {
  body main #products .carousel-container .carousel-wrapper .slide .preview-container {
    max-width: clamp(0vw, 40vw, 35em);
    gap: 0.5em;
    justify-content: center;
  }
}
body main #products .carousel-container .carousel-wrapper .slide .preview-container .highlight {
  width: 100%;
  display: flex;
  gap: 1em;
  align-items: center;
}
@media screen and (max-width: 990px) {
  body main #products .carousel-container .carousel-wrapper .slide .preview-container .highlight {
    top: unset !important;
    right: unset !important;
    bottom: unset !important;
    left: unset !important;
  }
}
@media screen and (min-width: 991px) {
  body main #products .carousel-container .carousel-wrapper .slide .preview-container .highlight {
    width: -moz-max-content;
    width: max-content;
    position: absolute;
  }
}
body main #products .carousel-container .carousel-wrapper .slide .preview-container .highlight:nth-child(odd) {
  flex-direction: row-reverse;
}
body main #products .carousel-container .carousel-wrapper .slide .preview-container .highlight:nth-child(odd) span {
  display: flex;
  justify-content: flex-end;
}
body main #products .carousel-container .carousel-wrapper .slide .preview-container .highlight .icon {
  width: 2.5em;
  height: 2.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5em;
  background-color: #311a8f;
  border-radius: 50%;
}
body main #products .carousel-container .carousel-wrapper .slide .preview-container .highlight .icon svg {
  width: 1em;
  fill: white;
}
body main #products .carousel-container .carousel-wrapper .slide .preview-container .highlight span {
  flex: 1;
}
@media screen and (max-width: 990px) {
  body main #products .carousel-container .carousel-wrapper .slide .preview-container .highlight span {
    max-width: unset !important;
  }
}
body main #products .carousel-container .carousel-wrapper .slide .preview-container img {
  width: 100%;
}
body main #products .carousel-container .carousel-wrapper .slide .preview-container .img-container {
  width: 100%;
}
@media screen and (max-width: 990px) {
  body main #products .carousel-container .carousel-wrapper .slide .preview-container .img-container {
    overflow: hidden;
  }
}
body main #products .carousel-container .carousel-wrapper .slide .preview-container .img-container img {
  width: 120%;
}
body main #products .carousel-container .carousel-wrapper .slide:first-child .preview-container {
  width: 100%;
  max-width: 45em;
}
body main #products .carousel-container .carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
body main #products .carousel-container .carousel-controls button {
  width: 1.5em;
  height: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0.2em;
  border: none;
  background: transparent;
  font-size: 1em;
}
body main #products .carousel-container .carousel-controls button span {
  width: 0.75em;
  height: 0.75em;
  background: #d9d9d9;
  border-radius: 50%;
  transition: width 0.1s ease-in-out, height 0.1s ease-in-out;
}
body main #products .carousel-container .carousel-controls button.active span {
  width: 1.125em;
  height: 1.125em;
  background: #311a8f;
}
body main #case-studies {
  width: 100%;
  max-width: 1366px;
  align-self: center;
  padding-bottom: 4em;
}
body main #case-studies .articles {
  display: flex;
  flex-direction: column;
  gap: 3em;
}
@media screen and (min-width: 1024px) {
  body main #case-studies .articles {
    gap: 5em;
  }
}
body main #case-studies .articles article {
  --border-width: 2px;
  --border-radius: 3em;
  --border-color: #311a8f;
  --padding: 2em;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  body main #case-studies .articles article {
    flex-direction: row;
    --padding: 1.5em;
  }
}
body main #case-studies .articles article p {
  color: #311a8f;
}
body main #case-studies .articles article .top {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: var(--border-width) solid var(--border-color);
  border-bottom: none;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  padding: var(--padding);
  padding-bottom: 1px;
}
@media screen and (min-width: 1024px) {
  body main #case-studies .articles article .top {
    flex: 1;
    flex-direction: row;
    align-items: flex-start;
    gap: calc(var(--padding) * 1.5);
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border-right: none;
    padding: var(--padding) 0 var(--padding) calc(var(--padding) * 2);
    padding-right: 1px;
  }
}
body main #case-studies .articles article .top .left,
body main #case-studies .articles article .top .center {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body main #case-studies .articles article .top .left > img {
  width: 100%;
  margin-bottom: 1em;
}
@media screen and (min-width: 1024px) {
  body main #case-studies .articles article .top .left {
    width: 40%;
    height: 100%;
    flex: unset;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1024px) {
  body main #case-studies .articles article .top .center {
    height: 100%;
  }
}
@media screen and (min-width: 1024px) {
  body main #case-studies .articles article .top .center p {
    flex: 1;
  }
}
body main #case-studies .articles article .top h4 {
  margin: 0 0 0.5em;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 150%;
  color: #311a8f;
}
body main #case-studies .articles article .top .tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 0.5em;
  margin-bottom: 1em;
}
@media screen and (min-width: 1024px) {
  body main #case-studies .articles article .top .tags {
    width: 100%;
    justify-content: flex-end;
  }
}
body main #case-studies .articles article .top .tags span {
  width: 100%;
  max-width: 8em;
  padding: 0.5em 1em;
  border-radius: 63.8062px;
  background: rgba(247, 246, 251, 0.71);
  font-weight: 700;
  font-size: 0.75em;
  line-height: 200%;
  text-align: center;
  letter-spacing: -0.06em;
  color: #311a8f;
}
body main #case-studies .articles article .top .actions {
  display: flex;
  gap: 1.25em;
}
@media screen and (min-width: 1024px) {
  body main #case-studies .articles article .top .actions {
    align-self: flex-start;
  }
}
body main #case-studies .articles article .top .actions a,
body main #case-studies .articles article .top .actions button {
  margin-bottom: 0;
}
body main #case-studies .articles article .top .actions .cta-button {
  background: #8201ba;
  color: white;
}
body main #case-studies .articles article .top .actions .cta-button:hover, body main #case-studies .articles article .top .actions .cta-button:focus, body main #case-studies .articles article .top .actions .cta-button:focus-within {
  background: #62018b;
}
body main #case-studies .articles article .middle.horizontal {
  display: none;
  border-bottom: var(--border-width) solid var(--border-color);
}
@media screen and (min-width: 1024px) {
  body main #case-studies .articles article .middle.horizontal {
    display: block;
  }
}
body main #case-studies .articles article .middle.horizontal .middle-left {
  width: var(--border-radius);
  height: var(--border-radius);
  border: var(--border-width) solid var(--border-color);
  border-left: none;
  border-bottom: none;
  border-radius: 0 var(--border-radius) 0 0;
}
body main #case-studies .articles article .middle.horizontal .middle-center {
  width: var(--border-radius);
  height: calc(50% - var(--border-radius) * 2 + 2px);
  margin-right: calc(var(--border-radius) - 2px);
  border-right: var(--border-width) solid var(--border-color);
}
body main #case-studies .articles article .middle.horizontal .middle-right {
  position: relative;
  left: calc(var(--border-radius) - 2px);
  width: var(--border-radius);
  height: var(--border-radius);
  border: var(--border-width) solid var(--border-color);
  border-top: none;
  border-right: none;
  border-radius: 0 0 0 var(--border-radius);
}
body main #case-studies .articles article .right {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  body main #case-studies .articles article .right {
    width: 25%;
    min-height: 24em;
  }
}
body main #case-studies .articles article .middle.vertical {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border-left: var(--border-width) solid var(--border-color);
}
@media screen and (min-width: 1024px) {
  body main #case-studies .articles article .middle.vertical {
    height: 50%;
    border: none;
  }
  body main #case-studies .articles article .middle.vertical .middle-top,
  body main #case-studies .articles article .middle.vertical .middle-bottom {
    display: none;
  }
}
body main #case-studies .articles article .middle.vertical .middle-top {
  width: 2em;
  border: var(--border-width) solid var(--border-color);
  border-top: none;
  border-left: none;
  border-radius: 0 0 var(--border-radius) 0;
  padding-bottom: calc(var(--padding) / 1.25);
}
body main #case-studies .articles article .middle.vertical .middle-content {
  position: relative;
  right: 2em;
  width: calc(90% - 2em);
  margin-top: -2px;
  border: var(--border-width) solid var(--border-color);
  border-right: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}
@media screen and (min-width: 1024px) {
  body main #case-studies .articles article .middle.vertical .middle-content {
    width: 100%;
    height: 100%;
    right: unset;
    border: none;
  }
}
body main #case-studies .articles article .middle.vertical .middle-content > div {
  width: calc(100% + 2em);
  display: flex;
  flex-direction: column;
  padding: calc(var(--padding) / 2) calc(var(--padding) / 1.2);
  padding-right: 0;
  font-size: 0.7em;
}
@media screen and (min-width: 1024px) {
  body main #case-studies .articles article .middle.vertical .middle-content > div {
    width: 100%;
    height: 100%;
    margin-top: -3em;
    margin-left: calc(var(--border-radius) / 1.5 * -1);
    padding: 0;
  }
}
body main #case-studies .articles article .middle.vertical .middle-content > div p {
  font-size: 1.5em;
  margin: 0;
  margin-bottom: 0.5em;
  white-space: nowrap;
}
body main #case-studies .articles article .middle.vertical .middle-content > div .card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  justify-content: center;
  align-items: center;
  justify-items: center;
  gap: 1.75em;
  row-gap: 1.75em;
  background: #311a8f;
  color: white;
  border-radius: var(--border-radius);
  padding: calc(var(--padding) / 2) calc(var(--padding) / 1.2);
}
@media screen and (min-width: 1024px) {
  body main #case-studies .articles article .middle.vertical .middle-content > div .card {
    width: calc(100% + var(--border-radius) / 1.5);
    height: 100%;
    padding: 1em calc(var(--border-radius));
    border-radius: var(--border-radius);
  }
}
body main #case-studies .articles article .middle.vertical .middle-content > div .card .item {
  display: grid;
  grid-template-rows: 1fr 1.5em;
  justify-content: center;
  align-items: center;
  justify-items: center;
  gap: 1em;
  row-gap: 0.5em;
  color: currentColor;
}
body main #case-studies .articles article .middle.vertical .middle-content > div .card .item span {
  width: 3.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  background: rgba(252, 252, 255, 0.2);
  border-radius: 30%;
}
@media screen and (min-width: 1024px) {
  body main #case-studies .articles article .middle.vertical .middle-content > div .card .item span {
    border-radius: 1em;
  }
}
body main #case-studies .articles article .middle.vertical .middle-content > div .card .item svg {
  width: 50%;
  fill: currentColor;
}
body main #case-studies .articles article .middle.vertical .middle-bottom {
  margin-top: -2px;
  width: 2em;
  border: var(--border-width) solid var(--border-color);
  border-bottom: none;
  border-left: none;
  border-radius: 0 var(--border-radius) 0 0;
  padding-top: calc(var(--padding) / 1.25);
}
body main #case-studies .articles article .bottom {
  border: var(--border-width) solid var(--border-color);
  border-top: none;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  padding: var(--padding);
  padding-top: 1px;
}
@media screen and (min-width: 1024px) {
  body main #case-studies .articles article .bottom {
    height: 50%;
    border: var(--border-width) solid var(--border-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    border-left: 0;
    padding: var(--padding);
  }
}
body main #case-studies .articles article .bottom p:first-of-type {
  margin-top: 0;
}
body main .get-updates {
  width: 100%;
  display: flex;
  border: 1.06667px solid #8201ba;
  border-radius: 4.75em;
}
body main .get-updates input {
  flex: 1;
  padding: 1em;
  border: none;
  background: transparent;
  outline: none;
}
body main .get-updates button {
  margin: 0;
  padding: 0.5em 1em;
  background: linear-gradient(89.29deg, #060915 0.61%, #8200BA 73.81%);
  border: none;
  color: white;
  border-radius: 0 4.75em 4.75em 0;
  cursor: pointer;
}
body main .get-updates.loading button {
  opacity: 0.6;
  cursor: wait;
}
body main .get-updates.success {
  border-color: #4CAF50;
}
body main .get-updates.error {
  border-color: #f44336;
}
body footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3em;
  padding-bottom: 6em;
  background: linear-gradient(89.29deg, #060915 0.61%, #8200ba 73.81%);
  color: #ffffff;
  font-style: normal;
  font-size: 1em;
  letter-spacing: -0.06em;
  overflow: hidden;
}
body footer > svg {
  position: absolute;
  fill: white;
  fill-opacity: 0.04;
}
body footer > svg:nth-child(1) {
  width: 32vw;
  top: -7vw;
  left: -7vw;
}
body footer > svg:nth-child(2) {
  width: 6vw;
  top: 20vw;
  left: 30vw;
}
body footer > svg:nth-child(3) {
  width: 19vw;
  bottom: -7vw;
  right: 20vw;
}
body footer > svg:nth-child(4) {
  width: 7vw;
  top: 5vw;
  right: 25vw;
}
body footer > svg:nth-child(5) {
  width: 3vw;
  top: 6vw;
  left: 40vw;
}
body footer > svg:nth-child(6) {
  width: 2.7vw;
  bottom: 8vw;
  left: 42vw;
}
body footer h2 {
  max-width: 23em;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.025em;
  margin: 0;
  margin-bottom: 2.5em;
}
body footer button {
  background: transparent;
  color: white;
  border-color: white;
}
body footer .links {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: calc(100% + 6em);
  justify-content: center;
  align-items: center;
  padding: 2.5em 0;
  margin: 3em -3em -6em -3em;
  background: black;
}
body footer .links .divider {
  display: none;
}
@media screen and (min-width: 768px) {
  body footer .links {
    flex-direction: row;
  }
  body footer .links .divider {
    display: inline;
  }
}
body footer .links .footer-link:not(.base-link) {
  text-decoration: none;
  color: white;
  font-family: "Work Sans";
}
body footer .get-updates {
  width: 100%;
  max-width: 23em;
  display: flex;
  border: 1.06667px solid #8201ba;
  border-radius: 4.75em;
  background: white;
}
body footer .get-updates input {
  flex: 1;
  padding: 1em;
  border: none;
  background: transparent;
  outline: none;
}
body footer .get-updates button {
  margin: 0;
  padding: 0.5em 1em;
  background: linear-gradient(89.29deg, #060915 0.61%, #8200BA 73.81%);
  border: none;
  color: white;
  border-radius: 0 4.75em 4.75em 0;
  cursor: pointer;
}
body footer .get-updates.loading button {
  opacity: 0.6;
  cursor: wait;
}
body footer .get-updates.success {
  border-color: #4CAF50;
}
body footer .get-updates.error {
  border-color: #f44336;
}
body #message,
body #message1 {
  font-size: 0.9em;
}/*# sourceMappingURL=main.css.map */