.js-cursor-layer {
  opacity: 0 !important;
  visibility: hidden !important;
}

.c-tech-cursor-lottie-layer {
  --cursor-ripple-x: 0px;
  --cursor-ripple-y: 0px;
  z-index: 9998;
  opacity: 0;
  contain: layout paint style;
  transition: opacity 0.18s ease;
  mix-blend-mode: normal;
}

.c-tech-cursor-lottie-layer.is-visible {
  opacity: 1;
}

.c-tech-cursor-lottie {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(var(--cursor-ripple-x), var(--cursor-ripple-y), 0)
    scale(var(--cursor-ripple-scale, 1));
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

.c-tech-cursor-lottie svg,
.c-tech-cursor-lottie canvas {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.c-tech-cursor-lottie-layer.is-fallback .c-tech-cursor-lottie {
  overflow: visible;
}

.c-tech-cursor-lottie-layer.is-fallback .c-tech-cursor-lottie::before,
.c-tech-cursor-lottie-layer.is-fallback .c-tech-cursor-lottie::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
}

.c-tech-cursor-lottie--ambient {
  --cursor-ripple-scale: 1;
  width: 72px;
  height: 72px;
  margin: -36px 0 0 -36px;
  opacity: 0.94;
  filter: drop-shadow(0 0 12px rgba(127, 215, 93, 0.24))
    drop-shadow(0 0 26px rgba(127, 215, 93, 0.14));
  transition:
    transform 0.24s ease,
    opacity 0.24s ease,
    filter 0.24s ease;
}

.c-tech-cursor-lottie-layer.is-fallback .c-tech-cursor-lottie--ambient::before {
  border: 1px solid rgba(143, 235, 101, 0.84);
  background: radial-gradient(
    circle,
    rgba(170, 255, 144, 0.24) 0%,
    rgba(127, 215, 93, 0.12) 48%,
    rgba(127, 215, 93, 0) 74%
  );
  box-shadow:
    0 0 0 1px rgba(198, 255, 180, 0.08) inset,
    0 0 18px rgba(127, 215, 93, 0.28),
    0 0 34px rgba(127, 215, 93, 0.14);
}

.c-tech-cursor-lottie-layer.is-fallback .c-tech-cursor-lottie--ambient::after {
  inset: -8px;
  background: radial-gradient(
    circle,
    rgba(127, 215, 93, 0.28) 0%,
    rgba(127, 215, 93, 0.12) 44%,
    rgba(127, 215, 93, 0) 72%
  );
  filter: blur(9px);
  opacity: 0.78;
}

.c-tech-cursor-lottie--pulse {
  --cursor-ripple-scale: 0.96;
  width: 88px;
  height: 88px;
  margin: -44px 0 0 -44px;
  opacity: 1;
  filter: drop-shadow(0 0 16px rgba(127, 215, 93, 0.24))
    drop-shadow(0 0 28px rgba(127, 215, 93, 0.12));
  transition:
    transform 0.22s ease,
    opacity 0.22s ease,
    filter 0.22s ease;
}

.c-tech-cursor-lottie-layer.is-fallback .c-tech-cursor-lottie--pulse {
  opacity: 0;
}

.c-tech-cursor-lottie-layer.is-fallback .c-tech-cursor-lottie--pulse::before {
  border: 2px solid rgba(166, 248, 130, 0.84);
  box-shadow: 0 0 24px rgba(127, 215, 93, 0.24);
  transform: scale(0.46);
  opacity: 0;
}

.c-tech-cursor-lottie-layer.is-fallback .c-tech-cursor-lottie--pulse::after {
  inset: -10px;
  background: radial-gradient(
    circle,
    rgba(127, 215, 93, 0.24) 0%,
    rgba(127, 215, 93, 0.1) 40%,
    rgba(127, 215, 93, 0) 72%
  );
  filter: blur(10px);
  transform: scale(0.52);
  opacity: 0;
}

.c-tech-cursor-lottie-layer.is-hover .c-tech-cursor-lottie--ambient {
  --cursor-ripple-scale: 1.12;
  opacity: 1;
  filter: drop-shadow(0 0 16px rgba(127, 215, 93, 0.32))
    drop-shadow(0 0 32px rgba(127, 215, 93, 0.18));
}

.c-tech-cursor-lottie-layer.is-hover .c-tech-cursor-lottie--pulse {
  --cursor-ripple-scale: 1.04;
  opacity: 0.96;
}

.c-tech-cursor-lottie-layer.is-clicked .c-tech-cursor-lottie--ambient {
  --cursor-ripple-scale: 1.06;
}

.c-tech-cursor-lottie-layer.is-clicked .c-tech-cursor-lottie--pulse {
  --cursor-ripple-scale: 1.12;
  filter: drop-shadow(0 0 22px rgba(127, 215, 93, 0.34))
    drop-shadow(0 0 38px rgba(127, 215, 93, 0.18));
}

.c-tech-cursor-lottie-layer.is-fallback.is-clicked .c-tech-cursor-lottie--pulse {
  opacity: 1;
}

.c-tech-cursor-lottie-layer.is-fallback.is-clicked
  .c-tech-cursor-lottie--pulse::before {
  animation: tech-cursor-fallback-pulse-ring 0.34s
    cubic-bezier(0.22, 1, 0.36, 1) both;
}

.c-tech-cursor-lottie-layer.is-fallback.is-clicked
  .c-tech-cursor-lottie--pulse::after {
  animation: tech-cursor-fallback-pulse-glow 0.34s
    cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes tech-cursor-fallback-pulse-ring {
  0% {
    transform: scale(0.46);
    opacity: 0.78;
  }

  100% {
    transform: scale(1.12);
    opacity: 0;
  }
}

@keyframes tech-cursor-fallback-pulse-glow {
  0% {
    transform: scale(0.52);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  html,
  body {
    cursor: auto !important;
  }

  body * {
    cursor: auto !important;
  }

  a,
  button,
  [role="button"],
  label[for],
  summary,
  select,
  input[type="submit"],
  input[type="button"] {
    cursor: pointer !important;
  }

  input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
  textarea {
    cursor: text !important;
  }

  .js-cursor-layer,
  .c-premium-cursor-layer {
    display: none !important;
  }
}

@media (hover: none), (pointer: coarse) {
  .c-tech-cursor-lottie-layer {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .c-tech-cursor-lottie-layer,
  .c-tech-cursor-lottie--ambient,
  .c-tech-cursor-lottie--pulse {
    transition-duration: 0.01ms;
  }
}

html.is-performance-scrolling .c-tech-cursor-lottie-layer,
html.is-performance-scrolling .c-premium-cursor-layer {
  opacity: 0 !important;
}

/* Keep the local About reel in the same full-width 16:9 frame as the old embed. */
.c-about-reel,
.c-about-reel > div,
.c-about-reel .c-vimeo-video,
.c-about-reel .plyr {
  width: 100%;
}

.c-about-reel .c-vimeo-video,
.c-about-reel .plyr,
.c-about-reel .plyr__video-wrapper {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.c-about-reel .c-about-reel__video,
.c-about-reel .plyr video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.c-about-reel--mobile .c-vimeo-video {
  position: relative;
}

.c-about-reel--mobile .plyr__controls,
.c-about-reel--mobile .plyr__control--overlaid {
  display: none !important;
}

.c-about-reel__tap-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.c-about-reel__tap-layer[hidden] {
  display: none;
}
