@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)
*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.36em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

.cta {
  display: grid;
  -moz-column-gap: 80px;
  column-gap: 80px;
  align-items: center;
  padding: 40px;
  margin-inline: auto;
  border-radius: 16px;
  color: #111827;
}
.cta__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta__secondary {
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.01em;
}
@media (max-width: 600px) {
  .cta {
    -moz-column-gap: 40px;
    column-gap: 40px;
    padding: 40px 24px;
  }
}

.cta--2col-btn-right {
  grid-template-columns: 1fr auto;
}
.cta--2col-btn-right .cta__title {
  grid-area: 1/1/2/2;
}
.cta--2col-btn-right .cta__desc {
  grid-area: 2/1/3/2;
}
.cta--2col-btn-right .cta__button,
.cta--2col-btn-right .cta__link {
  grid-area: 1/2/3/3;
}
@media (max-width: 800px) {
  .cta--2col-btn-right {
    grid-template-columns: 1fr;
    place-items: center;
    text-align: center;
  }
  .cta--2col-btn-right .cta__title,
  .cta--2col-btn-right .cta__desc,
  .cta--2col-btn-right .cta__secondary,
  .cta--2col-btn-right .cta__button {
    grid-area: auto;
  }
  .cta--2col-btn-right .cta__button {
    width: 100%;
  }
}

.cta--2col-btn-left {
  grid-template-columns: 1fr auto;
}
.cta--2col-btn-left .cta__title {
  grid-area: 1/2/2/3;
}
.cta--2col-btn-left .cta__desc {
  grid-area: 2/2/3/3;
}
.cta--2col-btn-left .cta__button,
.cta--2col-btn-left .cta__link {
  grid-area: 1/1/3/2;
}
@media (max-width: 800px) {
  .cta--2col-btn-left {
    grid-template-columns: 1fr;
    place-items: center;
    text-align: center;
  }
  .cta--2col-btn-left .cta__title,
  .cta--2col-btn-left .cta__desc,
  .cta--2col-btn-left .cta__secondary,
  .cta--2col-btn-left .cta__button {
    grid-area: auto;
  }
  .cta--2col-btn-left .cta__button {
    width: 100%;
  }
}

.cta--center-copy {
  place-items: center;
  text-align: center;
}

.cta--2col-visu-left {
  padding: 0;
  grid-template-columns: 50% 50%;
  gap: 0;
  background: #fff;
}
.cta--2col-visu-left .cta__visu {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-area: 1/1/2/2;
  height: 100%;
}
.cta--2col-visu-left .cta__visu img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: unset;
  min-height: 100%;
  min-width: 100%;
}
.cta--2col-visu-left .cta__copy {
  grid-area: 1/2/2/3;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 800px) {
  .cta--2col-visu-left {
    grid-template-columns: 1fr;
    place-items: center;
    text-align: center;
  }
  .cta--2col-visu-left .cta__visu,
  .cta--2col-visu-left .cta__copy {
    grid-area: auto;
  }
  .cta--2col-visu-left .cta__visu img {
    max-width: 100%;
  }
  .cta--2col-visu-left .cta__copy {
    align-items: center;
  }
}

.ac {
  margin: 0;
  border: none;
  background-color: transparent;
}
.ac .ac-trigger {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 16px;
  font: 500 16px "Inter", -apple-system, "system-ui", "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 140%;
  letter-spacing: -0.03em;
  color: #4B5563;
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 1px solid #e4e4e7;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.ac .ac-trigger:hover {
  color: #111827;
}
.ac .ac-trigger:hover .ac-trigger-icon {
  color: #111827;
}
.ac .ac-trigger:after {
  all: unset;
}
.ac .ac-trigger:focus {
  color: #111827;
}
.ac .ac-trigger:focus-visible {
  outline-offset: 1px;
  outline: 2px solid #3B82F6;
  border-radius: 4px;
}
.ac > .ac-header .ac-trigger-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  position: relative;
  transition: 0.3s all;
  --ionicon-stroke-width: 32px;
  font-size: 24px;
}
.ac .ac-trigger-icon {
  flex-shrink: 0;
  display: block;
  color: #6B7280;
}
.ac .ac-trigger-icon line {
  stroke-width: 0.05em;
}
.ac .ac-panel .ac-panel-content {
  padding: 20px 0 20px 0;
  font-size: 15px;
  line-height: 150%;
  font-weight: 400;
}
.ac:last-child .ac-panel-content {
  padding-bottom: 0;
}
.ac.is-active > .ac-header .ac-trigger {
  color: #111827;
}
.ac.is-active > .ac-header .ac-trigger:after {
  all: unset;
}
.ac.is-active > .ac-header .ac-trigger .ac-trigger-icon {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  color: #111827;
}

.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;
}
.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: 48px;
  font-weight: 700;
  font-size: 52px;
  line-height: 120%;
  letter-spacing: -0.04em;
  color: #111827;
}
.hero #word-flip {
  position: relative;
  perspective: 500;
  transition: all 0.64s ease-in-out;
}
.hero #word-flip .word {
  font-weight: 400;
  display: inline-block;
  min-width: -moz-max-content;
  min-width: max-content;
  transition: all 0.64s ease-in-out;
  opacity: 0;
  transform-origin: 0% 0%;
  transform: rotateX(90deg);
  position: absolute;
  top: -20px;
  left: 0;
}
.hero #word-flip .word-0 {
  color: #22C55E;
}
.hero #word-flip .word-1 {
  color: #38BDF8;
}
.hero #word-flip .word-2 {
  color: #F738FF;
}
.hero #word-flip .word.active {
  top: 0;
  opacity: 1;
  transform-origin: 0% 0%;
  transform: rotateX(0deg);
}
.hero #word-flip .word.down {
  top: 40px;
  opacity: 0;
  transform-origin: 0% 0%;
  transform: rotateX(-90deg);
}
.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% 50% at 50% 50%, rgb(217, 217, 217) 15%, rgba(217, 217, 217, 0) 100%);
  -webkit-mask-image: radial-gradient(100% 50% at 50% 50%, rgb(217, 217, 217) 15%, 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: #fafafa;
  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;
}