/* -- -- */

[data-ripple-container] {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  contain: layout paint;
}

[data-ripple] {
  position: absolute;
  inset: 0;

  /* animated by JS */
  --size: 10%;
  opacity: 0;

  will-change: opacity, -webkit-mask-image, mask-image;

  /* Purple background */
  background: url("https://cdn.prod.website-files.com/68937237eabfa7d69283d5cc/6944b2cad7166b3cad24f45c_asymmetry_text-ripple-purple.avif")
    center/cover no-repeat;

  /* Softer, smoother ring */
  -webkit-mask-image: radial-gradient(
    circle at 50% 50%,
    rgba(0, 0, 0, 0) calc(var(--size) - 30%),
    rgba(0, 0, 0, 0.18) calc(var(--size) - 18%),
    rgba(0, 0, 0, 0.95) var(--size),
    rgba(0, 0, 0, 0.18) calc(var(--size) + 18%),
    rgba(0, 0, 0, 0) calc(var(--size) + 30%)
  );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;

  mask-image: radial-gradient(
    circle at 50% 50%,
    rgba(0, 0, 0, 0) calc(var(--size) - 30%),
    rgba(0, 0, 0, 0.18) calc(var(--size) - 18%),
    rgba(0, 0, 0, 0.95) var(--size),
    rgba(0, 0, 0, 0.18) calc(var(--size) + 18%),
    rgba(0, 0, 0, 0) calc(var(--size) + 30%)
  );
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;

  z-index: 2;

  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* -- -- */

[data-processor-lottie] {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 990px) {
  [data-processor-lottie] svg {
    overflow: visible !important;
    width: 100vw !important;
    height: auto !important;
  }
}
/* -- -- */

/* [data-processor-track] {
  height: 200vh;
} */

/* -- -- */

[elem="tunnel-top-mask"] {
  background-image: linear-gradient(
    rgba(13, 13, 13, 1) 40%,
    rgba(13, 13, 13, 0.6)
  ) !important;
}

/* -- -- */
/* 
.swiper-slide.is--case {
  max-width: 10rem;
}

.swiper-slide.is--case.is--active {
  max-width: 19.75rem;
}

[data-case-slide] {
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

[data-case-slide="inner"] {
  padding: 0rem;
  border-color: transparent;
}

[data-case-slide="card-content"] {
  opacity: 0;
  pointer-events: none;
}

[data-case-slide="bottom-logo"] {
  opacity: 1;
  pointer-events: auto;
}

.swiper-slide.is--case.is--active [data-case-slide="inner"] {
  padding: 0.5rem;
  border-color: rgba(255, 255, 255, 0.2);
}

.swiper-slide.is--case.is--active [data-case-slide="card-content"] {
  opacity: 1;
  pointer-events: auto;
}

.swiper-slide.is--case.is--active [data-case-slide="bottom-logo"] {
  opacity: 0;
  pointer-events: none;
} */

/* -- -- */

.slider {
  height: 100%;
  position: absolute;
  border-radius: 6.25rem;
  background-color: white;
}

/* -- -- */

/* .slide_case-card_front::after {
  content: "";
  width: 100%;
  height: 15rem;
  position: absolute;
  bottom: 0;
  top: auto;
  transition: all 200ms ease;
  left: 0;
  opacity: 0;
  backdrop-filter: blur(1rem);
  mask-image: linear-gradient(to top, black, transparent);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.68) 37.02%,
    #000 100%
  );
  pointer-events: none;
}

.swiper-slide.is--case.is--active.is-active .slide_case-card_front::after {
  content: "";
  opacity: 1;
} */

[data-swiper-content-blur] {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.75) 40%,
    rgba(0, 0, 0, 1) 100%
  );

  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);

  mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
  height: 100%;
  opacity: 0;
  transition: all 200ms ease;
}

.swiper-slide.is--case.is--active.is-active [data-swiper-content-blur] {
  opacity: 1;
}

[data-swiper-content="card-content"] {
  position: relative;
  z-index: 1;
}

/* -- -- */

[data-chat-media-opacity] [data-chat-media] {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  transition: all 200ms ease;
  opacity: 0;
}

[data-chat-media-opacity] [data-chat-media].is--visible {
  opacity: 1;
}

[data-chat-cases-opacity] [data-chat-case] {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  transition: all 200ms ease;
  opacity: 0;
  pointer-events: none;
}

[data-chat-cases-opacity] [data-chat-case].is--visible {
  opacity: 1;
  pointer-events: auto !important;
}

/* -- -- */

/* [data-gallery="root"] * {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: transform;
} */

/* -- Media -- */

@media only screen and (max-width: 1900px) {
}

@media only screen and (max-width: 1440px) {
}

@media only screen and (max-width: 991px) {
  [data-swiper-content-blur] {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.75) 40%,
      rgba(0, 0, 0, 1) 100%
    );

    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);

    mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
    height: 100%;
    opacity: 0;
    transition: all 200ms ease;
  }
}

@media only screen and (max-width: 767px) {
}

@media only screen and (max-width: 479px) {
}

/* -- -- */
/* 
.custom-cursor {
  --tw-translate-y: -50%;
  z-index: 50;
  top: 0;
  left: 0;
  position: fixed;
  pointer-events: none;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

.js-cursor-inner {
  --tw-scale-x: 0;
  --tw-scale-y: 0;
  border-radius: 9999px;
  text-transform: lowercase;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  width: 100%;
  height: 100%;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 0;
  padding: 0;
  font: inherit;
  vertical-align: baseline;
}

.cursor-balloon {
  --tw-bg-opacity: 1;
  background-color: rgb(27 33 29 / var(--tw-bg-opacity));
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
  left: -0.5rem;
  flex-shrink: 0;
  border-radius: 9999px;
  position: absolute;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 8px;
  top: -8px;
} */

.custom-cursor {
  --tw-translate-y: -50%;
  z-index: 50;
  top: 0;
  left: 0;
  position: fixed;
  pointer-events: none;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

.js-cursor-inner {
  --tw-scale-x: 0;
  --tw-scale-y: 0;
  border-radius: 9999px;
  text-transform: lowercase;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  width: 100%;
  height: 100%;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 0;
  padding: 0;
  font: inherit;
  vertical-align: baseline;
}

.ll-balloon {
  --tw-bg-opacity: 1;
  background-color: #c0ff0d;
  color: var(--1100);
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
  left: -0.5rem;
  flex-shrink: 0;
  border-radius: 9999px;
  position: absolute;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  display: inline-block;
  padding: 0rem;
  top: -8px;
  white-space: nowrap;
  overflow: hidden; /* ADD THIS */
}

.ll-balloon__text-container {
  display: block;
  white-space: nowrap;
  position: relative; /* ADD THIS */
  z-index: 1; /* ADD THIS */
}

.ll-balloon__spacer {
  display: inline-block;
  transition: width 0.3s ease-out;
  width: 0px;
  height: 0px; /* ADD THIS - minimal height */
  position: absolute; /* ADD THIS - remove from flow */
  visibility: hidden; /* ADD THIS - hide it */
}

.ll-balloon__letter {
  display: inline-block;
  white-space: pre;
}

/* -- -- */

.sticky_pannel-divider {
  opacity: 1;
  transition: all 200ms ease;
}

.sticky_pannel-tab.active .sticky_pannel-divider {
  opacity: 0;
}

/* -- -- */

/* Optional: Add specific variant styles */
/* [data-ripple-variant="purple"] {
  background: radial-gradient(
    circle,
    rgba(147, 51, 234, 0.4) 0%,
    rgba(147, 51, 234, 0) 70%
  );
} */

[data-ripple-variant="green"] {
  background: radial-gradient(
    circle,
    rgba(34, 197, 94, 0.4) 0%,
    rgba(34, 197, 94, 0) 70%
  );
}

/* -- -- */

[data-not-clickable="true"] {
  pointer-events: none !important;
}

/* -- -- */
[data-barba="container"] {
  background-color: var(--1000) !important;
}

/* -- -- */

body {
  min-height: 100vh !important;
  position: relative;
}

.page-transition-next {
  visibility: visible !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 9999 !important;
  will-change: transform !important;
  pointer-events: none !important;
}

/* Current container - stays in place */
.page-transition-current {
  visibility: visible !important;
  overflow: hidden !important;
  position: absolute !important;
  left: 0 !important;
  will-change: transform !important;
  width: 100% !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* -- -- */

/* @media (min-width: 990px) {
  [data-process-track] {
    position: relative;
    height: 250vh;
  }

  [data-process-sticky] {
    position: sticky;
    top: 6.25rem;
  }
} */

/* -- -- */

video[poster] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -- -- */

@keyframes marqueeGlobal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes marqueeRevGlobal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.partners_marquee-line {
  animation: marqueeGlobal 35s linear infinite !important;
}

.partners_marquee-wrapper::before {
  content: "";
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 15%;
  height: 100%;
  position: absolute;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(13, 13, 13, 0) 0%, #0d0d0d 100%);
}

.partners_marquee-wrapper::after {
  content: "";
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 15%;
  height: 100%;
  position: absolute;
  pointer-events: none;
  background: linear-gradient(270deg, rgba(13, 13, 13, 0) 0%, #0d0d0d 100%);
}

/* -- -- */

/* [data-partner-media-type="video"]::after {
  content: "";
  z-index: 2;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 3.75rem;
  height: 3.75rem;
  position: absolute;
  cursor: pointer;
  background: url("https://cdn.prod.website-files.com/68937237eabfa7d69283d5cc/6995d8229c10b92f9b78d4f4_glass-play.png")
    center/contain no-repeat;
} */

/* -- -- */

.hero-section::after {
  content: "";
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 100vw;
  top: auto;
  transition: all 250ms ease;
  height: 5rem;
  bottom: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0) 0%, #0d0d0d 100%);
}

/* -- -- */

.is--disabled {
  opacity: 0;
  pointer-events: none;
}

/* -- -- */

[data-heading-reveal] {
  opacity: 0;
}
