@charset "UTF-8";
/* copy this :
@include button-color($color, $bgColor, $bgColor-hover, $color-hover)
*/
/* copy this :
@include link-color($color, $color-hover)
*/
/* put that inside .pricing-card selector */
/* copy this :
@include fade-down($offset, $duration, $delay)
*/
/* copy this :
@include keyframes--vertical-fade-in
*/
/**
 * ––––––––––––––––––––––––
 * Marquee
 * Infinite auto scroll loop
 * A marquee-element need at least two marquee-element-inner 
 *
 * Expected HTML structure :
 *
 *  <div class="marquee">
 *    <div class="marquee-wrapper">
 *      <div class="marquee-element">
 *        <div class="marquee-element-inner">item1, item2, item3...</div>
 *        <div class="marquee-element-inner">item1, item2, item3...</div> // clone
 *      </div>
 *    </div>
 *  </div>

 * Add as many ".marquee-element-inner" as needed
 * to cover twice the width of the visible area.
 * Add "overflow-x : hidden" to the marquee element or
 * to one of the marquee parents.
 * ––––––––––––––––––––––––
 * @param $inner-element-length - the number total of ".marquee-element-inner"
 * @param $duration - the duration of the loop
 * @param $animation-name - the unique name to define for the created keyframe
 * @param $vertical - set the direction of the marquee
 * @param $in-viewport - if true, marquee will run only if he has the ".in-viewport" class (js IntersectClassInViewport)
*/
/* copy this :
@include marquee($inner-element-length, $duration, $animation-name, $vertical, $in-viewport)
*/
.partners-logo-caption {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 20px;
  padding-bottom: 16px;
  margin-bottom: 32px;
  color: #9CA3AF;
  border-bottom: 1px solid #EFF1F5;
}
.partners-logo .marquee {
  --marquee-column-gap: 16px;
  --marquee-row-gap: 16px;
  display: flex;
}
.partners-logo .marquee-wrapper {
  display: grid;
  gap: var(--marquee-row-gap);
}
.partners-logo .marquee-element {
  display: flex;
}
.partners-logo .marquee-element-inner {
  display: flex;
  min-width: -moz-max-content;
  min-width: max-content;
  flex-shrink: 0;
  gap: var(--marquee-column-gap);
  padding-left: var(--marquee-column-gap);
}
.partners-logo .marquee-wrapper {
  animation: 20s linear 0s infinite normal none running partners-logo-marquee;
}
@keyframes partners-logo-marquee {
  to {
    transform: translateX(calc(-100% / 2));
  }
}
.partners-logo .partners-logo-marquee {
  --marquee-column-gap: 48px;
  overflow-x: hidden;
}

.hero {
  position: relative;
  background: radial-gradient(276.18% 190.38% at 50% 0%, #FFFFFF 0%, rgba(255, 255, 255, 0.84) 28.74%, rgba(255, 255, 255, 0.16) 100%), #FAFAFB;
  min-height: 980px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  z-index: -1;
  min-width: -moz-max-content;
  min-width: max-content;
  min-height: -moz-max-content;
  min-height: max-content;
  animation: hue-rotate-hero-bg 8s linear infinite alternate 2s;
}
@keyframes hue-rotate-hero-bg {
  0% {
    filter: hue-rotate(0deg);
  }
  33% {
    filter: hue-rotate(40deg);
  }
  66% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(-40deg);
  }
}
.hero .root-container {
  position: relative;
  display: flex;
  -moz-column-gap: 120px;
  column-gap: 120px;
  align-items: center;
}
.hero .hero-copy {
  flex-shrink: 0;
}
.hero .copy-title {
  max-width: 580px;
  margin-bottom: 40px;
  font-weight: 600;
  font-size: 52px;
  line-height: 120%;
  letter-spacing: -0.04em;
  color: #111827;
}
.hero .word-flip {
  display: inline;
  position: relative;
  perspective: 1000em;
}
.hero .word-flip .word {
  display: inline-block;
  min-width: -webkit-max-content;
  position: absolute;
  top: -0.2em;
  left: 0;
  opacity: 0;
  min-width: -moz-max-content;
  min-width: max-content;
  transition: all 0.64s ease-in-out;
  transform-origin: center top;
  transform: rotateX(90deg);
}
.hero .word-flip .word.active {
  top: 0;
  opacity: 1;
  transform: rotateX(0deg);
}
.hero .word-flip .word.down {
  top: 0.8em;
  opacity: 0;
  transform: rotateX(-90deg);
}
.hero #heroWordFlip .word {
  font-weight: 400;
}
.hero #heroWordFlip .word-0 {
  color: hsl(142, 71%, 40%);
}
.hero #heroWordFlip .word-1 {
  color: hsl(198, 99.62%, 45.83%);
}
.hero #heroWordFlip .word-2 {
  color: #F738FF;
}
.hero .copy-desc {
  max-width: 540px;
  margin-bottom: 48px;
  font-size: 24px;
  line-height: 160%;
  letter-spacing: -0.04em;
  color: #475569;
}
.hero .cta-container {
  display: flex;
  gap: 16px;
}
.hero .cta-container .cta-primary {
  color: #fafafa;
  background: #27272a;
}
.hero .cta-container .cta-primary:hover {
  background: #18181b;
  color: #FFFFFF;
}
.hero .cta-container .cta-primary:active {
  background: #27272a;
  color: #fafafa;
}
.hero .cta-container .cta-secondary {
  position: relative;
  padding: 0;
  border: 7px solid transparent;
  border-radius: 12px;
  background: linear-gradient(#FEFEFE, #FEFEFE), linear-gradient(270deg, rgba(224, 27, 241, 0.66) 0%, rgba(79, 134, 244, 0.66) 100%);
  background-repeat: no-repeat;
  background-origin: padding-box, border-box;
  font-size: 16px;
  color: #1F2937;
}
.hero .cta-container .cta-secondary::before {
  content: "";
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: -6px;
  right: -6px;
  border: 6px solid #FEFEFE;
  border-radius: 11px;
}
.hero .cta-container .cta-secondary > span {
  color: inherit;
  display: block;
  line-height: 18px;
  letter-spacing: -0.02em;
  text-align: center;
  padding: 10px 16px 8px 16px;
}
.hero .cta-container .cta-secondary:hover, .hero .cta-container .cta-secondary:active {
  background: linear-gradient(#ffffff, #ffffff), linear-gradient(270deg, rgba(224, 27, 241, 0.88) 0%, rgba(79, 134, 244, 0.88) 100%);
  background-repeat: no-repeat;
  background-origin: padding-box, border-box;
  color: #111827;
}
.hero .cta-container .cta-secondary:hover::before, .hero .cta-container .cta-secondary:active::before {
  content: "";
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: -6px;
  right: -6px;
  border: 6px solid #FFFFFF;
  border-radius: 11px;
}
.hero .hero-visual-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 36px 120px -16px rgba(12, 24, 58, 0.33);
}

#billieJean {
  position: absolute;
  left: -164px;
  z-index: -1;
  display: grid;
  grid-template-rows: repeat(var(--gridRows), var(--cellSize));
  grid-template-columns: repeat(var(--gridCols), var(--cellSize));
  width: -moz-fit-content;
  width: fit-content;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  mask-image: radial-gradient(100% 60% at 50% 55%, rgb(217, 217, 217) 15%, rgba(217, 217, 217, 0.6) 60%, rgba(217, 217, 217, 0) 100%);
  -webkit-mask-image: radial-gradient(100% 60% at 50% 55%, rgb(217, 217, 217) 15%, rgba(217, 217, 217, 0.6) 60%, rgba(217, 217, 217, 0) 100%);
  mix-blend-mode: hard-light;
  opacity: 0.65;
}
#billieJean .grid-cell {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}
#billieJean .grid-cell:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(250, 250, 250, 0.5) 0%, rgb(250, 250, 250) 100%);
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
#billieJean .grid-cell.light:after {
  opacity: var(--cell-background-opacity);
  transition: opacity 0.6s ease-in;
}

.partners-logo {
  padding-block: 48px;
}

.empty-place-holder {
  height: 100vh;
}