.cursor-cta-shell,
.cursor-cta-shell * {
  box-sizing: border-box;
}

.cursor-cta-shell {
  width: 100%;
  padding-inline: 0;
  background: #f6f5f3;
}

.cursor-cta-section {
  --cursor-purple: #7157ff;
  --cursor-purple-light: #9f8cff;
  --cursor-lavender: #e9e4ff;
  --cursor-text: #29244f;
  --cursor-line: rgba(41, 36, 79, 0.45);
  position: relative;
  isolation: isolate;
  width: min(100%, 1298px);
  height: 420px;
  min-height: 420px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid #44424bb3;
  display: flex;
  flex-direction: column;
  color: var(--cursor-text);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.82), transparent 32%),
    radial-gradient(circle at 78% 78%, rgba(113, 87, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #f1eeff 0%, #e9e4ff 46%, #dcd4ff 100%);
}

.cursor-cta-shader-layer,
.cursor-cta-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cursor-cta-shader-layer {
  z-index: -2;
}

.cursor-cta-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.cursor-cta-grain {
  z-index: -1;
  opacity: 0.1;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.35'/%3E%3C/svg%3E");
}

.cursor-cta-container {
  width: min(calc(100% - 48px), 1298px);
  margin-inline: auto;
}

.cursor-cta-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 36px 28px;
}

.cursor-cta-eyebrow {
  margin: 0 0 20px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--cursor-purple);
}

.cursor-cta-headline {
  max-width: 930px;
  margin: 0;
  font-family: "Clash Grotesk", sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.cursor-cta-link {
  margin-top: clamp(36px, 6vh, 62px);
  padding-top: 20px;
  border-top: 1px solid var(--cursor-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: inherit;
  font-family: Manrope, sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cursor-cta-link-text {
  position: relative;
  display: inline-block;
}

.cursor-cta-link-text::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -8px;
  left: 50%;
  height: 2px;
  background: currentColor;
  transition:
    left 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cursor-cta-link:hover {
  color: var(--cursor-purple);
}

.cursor-cta-link:hover .cursor-cta-link-text::after {
  right: 0;
  left: 0;
}

.cursor-cta-arrow {
  font-size: 34px;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cursor-cta-link:hover .cursor-cta-arrow {
  transform: translateX(8px);
}

.cursor-cta-reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: cursorCtaReveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes cursorCtaReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .cursor-cta-shell {
    padding-inline: 0;
  }

  .cursor-cta-section {
    height: 420px;
    min-height: 420px;
  }

  .cursor-cta-container {
    width: min(calc(100% - 32px), 1298px);
  }

  .cursor-cta-content {
    padding-block: 38px 24px;
  }

  .cursor-cta-eyebrow {
    margin-bottom: 18px;
  }

  .cursor-cta-headline {
    font-size: clamp(38px, 11vw, 52px);
  }

  .cursor-cta-link {
    margin-top: 52px;
    padding-top: 18px;
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-cta-reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .cursor-cta-link,
  .cursor-cta-link-text::after,
  .cursor-cta-arrow {
    transition: none;
  }
}




/* Animated CTA arrow sourced from CTA arrow-1.svg. */
.cursor-cta-link {
  align-items: center;
}

.cursor-cta-arrow {
  display: grid;
  flex: 0 0 50px;
  place-items: center;
  width: 50px;
  height: 50px;
  overflow: visible;
  color: inherit;
  background: transparent !important;
  transform: none;
}

.cursor-cta-svg {
  display: block;
  width: 25px;
  height: 25px;
  overflow: visible !important;
  color: inherit;
  transform: rotate(90deg);
  transform-origin: center;
}

.cursor-cta-pixel {
  fill: currentColor;
}

.cursor-cta-pixel-1 { transform: translateX(10px); }
.cursor-cta-pixel-2 { --pixel-base: translate(5px, 5px); transform: var(--pixel-base); }
.cursor-cta-pixel-3 { --pixel-base: translateY(10px); transform: var(--pixel-base); }
.cursor-cta-pixel-4 { --pixel-base: translate(15px, 5px); transform: var(--pixel-base); }
.cursor-cta-pixel-5 { --pixel-base: translate(20px, 10px); transform: var(--pixel-base); }

.cursor-cta-link:hover .cursor-cta-arrow {
  color: inherit;
  background: transparent !important;
  transform: none;
}

.cursor-cta-link:hover .cursor-cta-pixel-1 {
  animation: cursorCtaAssetPixel1 0.401s linear 1 both;
}

.cursor-cta-link:hover .cursor-cta-pixel-2,
.cursor-cta-link:hover .cursor-cta-pixel-4 {
  animation: cursorCtaAssetPixel24 0.401s linear 1 both;
}

.cursor-cta-link:hover .cursor-cta-pixel-3,
.cursor-cta-link:hover .cursor-cta-pixel-5 {
  animation: cursorCtaAssetPixel35 0.401s linear 1 both;
}

@keyframes cursorCtaAssetPixel1 {
  0%, 49.25% { transform: translateX(10px) translateY(0); }
  100% { transform: translateX(10px) translateY(-4.984px); }
}

@keyframes cursorCtaAssetPixel24 {
  0%, 24.44% { transform: var(--pixel-base); }
  75.19%, 100% { transform: var(--pixel-base) translateY(-4.984px); }
}

@keyframes cursorCtaAssetPixel35 {
  0% { transform: var(--pixel-base); }
  50.75%, 100% { transform: var(--pixel-base) translateY(-4.984px); }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-cta-link:hover .cursor-cta-pixel {
    animation: none;
  }
}


.cursor-cta-content,
.cursor-cta-link,
.cursor-cta-arrow,
.cursor-cta-svg {
  overflow: visible !important;
}


