@font-face {
  font-family: "Snell";
  src: url("/fonts/SnellRoundhand.woff2") format("woff2"),
    url("/fonts/snell-roundhand-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.font-snell {
  font-family: "Snell", cursive;
}

.mirror-cta {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.03) 28%, rgba(0, 0, 0, 0.12) 62%, rgba(0, 0, 0, 0.42) 100%),
    rgba(0, 0, 0, 0.2);
  border: 1.59px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -20px 35px rgba(0, 0, 0, 0.28),
    0 12px 36px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.mirror-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.mirror-cta::after {
  content: none;
}

.mirror-cta-svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.mirror-cta-stroke {
  fill: none;
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1.2;
}

.mirror-cta-stroke-glow {
  fill: none;
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 1.05;
  stroke-linecap: round;
  stroke-dasharray: 140 980;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.48));
  animation: mirror-cta-outline-travel 3.6s linear infinite;
  will-change: stroke-dashoffset;
}

.mirror-cta:hover {
  transform: translateY(-2px) scale(1.015);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -24px 40px rgba(0, 0, 0, 0.34),
    0 18px 44px rgba(0, 0, 0, 0.36);
}

.mirror-cta:hover .mirror-cta-stroke-glow {
  animation-duration: 1.9s;
  stroke: rgba(255, 255, 255, 1);
}

.mirror-cta-content {
  position: relative;
  z-index: 2;
}

.mirror-cta-shadow {
  position: absolute;
  right: -10%;
  bottom: -58%;
  z-index: 1;
  width: 42%;
  height: 130%;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.22) 48%, rgba(0, 0, 0, 0) 100%);
  filter: blur(16px);
  transition: transform 350ms ease, opacity 350ms ease;
  pointer-events: none;
}

.mirror-cta-highlight {
  position: absolute;
  left: 3%;
  top: 3%;
  z-index: 1;
  width: 94%;
  height: 47%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.08) 58%, rgba(255, 255, 255, 0) 100%);
  filter: blur(7px);
  opacity: 0.75;
  pointer-events: none;
}

.mirror-cta:hover .mirror-cta-shadow {
  transform: translateX(-8px) scale(1.04);
  opacity: 0.95;
}

@media (max-width: 640px) {
  .mirror-cta-stroke-glow {
    animation: none;
  }
}

@keyframes mirror-cta-outline-travel {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -1064;
  }
}