:root {
	--bg: hsl(246 44% 7%);
	--border: hsl(280 10% 50% / 1);
	--card: hsl(237 36% 10%);
	--color: hsl(240 18% 80%);
	--border-width: 2px;
	--border-radius: 12px;
	--gradient: conic-gradient(from 180deg at 50% 70%,hsla(0,0%,98%,1) 0deg,#eec32d 72.0000010728836deg,#ec4b4b 144.0000021457672deg,#2617f7 216.00000858306885deg,#7635dd 288.0000042915344deg,hsla(0,0%,98%,1) 1turn);
}

.loading-page {
    width: 100vw;
    height: 100vh;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
}

.loader {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    background: linear-gradient(135deg, rgb(244, 107, 69) 0%, rgb(238, 168, 73) 100%);
    animation: loading-rotation 2s linear infinite;
}

.loader:before {
    position: absolute;
    content: '';
    width: calc(100% - 5px);
    height: calc(100% - 5px);
    background: linear-gradient(135deg, rgb(244, 107, 69) 0%, rgb(238, 168, 73) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.loader:after {
    position: absolute;
    content: '';
    z-index: -3;
    width: calc(100% + 15px);
    height: calc(100% + 15px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: inherit;
    filter: blur(15px);
    border-radius: 50%;
    animation: spin-pulse 2s linear infinite;
}

@keyframes scale-animation {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.loading-rotation {
    animation: rotate 2s linear infinite;
}

.cta-container {
  position: relative;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.8), transparent 80%);
  transform: translate(-50%, -50%) scale(0.8);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.cta-button {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  z-index: 1;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ef9047, #f27345, #ef9047);
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  text-decoration: none;
  clip-path: polygon(0% 10%, 100% 0%, 95% 83%, 10% 90%);
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 5px 0px rgba(0, 0, 0, 0.3);
}

.cta-button img {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
}

.emoji {
  position: absolute;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.emoji-left {
  --rotate: -20deg;
  top: -20%;
  left: -15%;
  transform: rotate(-20deg) scale(0.8);
}
.emoji-right {
  --rotate: 20deg;
  top: -20%;
  right: -15%;
  transform: rotate(20deg) scale(0.8);
}

  
.cta-container:hover .cta-button {
  transform: translateY(-5px) scale(1.04) rotate(-1deg);
  background: linear-gradient(135deg, #ff8c00, #e85c00, #d94700);
  animation: bounce 0.4s ease;
}

.cta-container:hover .cta-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cta-container:hover .emoji-left,
.cta-container:hover .emoji-right {
  opacity: 1;
  animation: bounce-emoji 0.4s ease;
}

.cta-container:hover .emoji-left {
  animation-delay: 0.05s;
}

.cta-container:hover .emoji-right {
  animation-delay: 0.1s;
}

@keyframes bounce {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.05);
  }
  100% {
    transform: translateY(-5px) scale(1.04) rotate(-1deg);
  }
}

@keyframes bounce-emoji {
  0% {
    transform: rotate(var(--rotate)) translateY(0) scale(0.8);
  }
  50% {
    transform: rotate(var(--rotate)) translateY(-6px) scale(0.9);
  }
  100% {
    transform: rotate(var(--rotate)) translateY(0) scale(0.8);
  }
}

  .floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  background: white;
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.25),
    0 10px 15px rgba(255, 106, 0, 0.2);
  animation: float 4s ease-in-out infinite;
  gap: 0.5rem;
  white-space: nowrap;
}

.floating-badges-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.floating-left {
  top: 20%;
  left: -40px;
  --angle: -6deg;
  animation-delay: 0s;
}

.floating-right {
  top: 40%;
  right: -40px;
  rotate: 6deg;
  --angle: 0deg;
  animation-delay: 2.5s;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(var(--angle));
  }
  50% {
    transform: translateY(-8px) rotate(var(--angle));
  }
  100% {
    transform: translateY(0px) rotate(var(--angle));
  }
}

del.strikeout {
    text-decoration: none;
}

del.strikeout::before {
    content: " ";
    display: block;
    width: 100%;
    border-top: 3px solid rgba(200, 0, 0, .8);
    height: 16px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: rotate(-7deg);
}

.legal-page h2 {
    margin-top: 30px;
    margin-bottom: 16px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.294em;
}

.legal-page h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.273em;
}

.legal-page h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.417em;
}

.legal-page p {
    margin-top: 0;
    margin-bottom: 16px;
}

.legal-page a {
    text-decoration-line: underline;
    color: rgb(67 56 202);
}

.legal-page a:hover {
    color: rgb(79 70 229);
}

.legal-page ul {
    list-style-type: disc;
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 40px;
    font-size: 16px;
}

.legal-page ul > li {
    margin-bottom: 8px;
    padding-left: 8px;
}

@keyframes loading-rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-pulse {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1.1);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
    }
}

/* FAQ Animations */
.faq-answer {
    max-height: 0;
    transition: max-height 0.5s ease-out;
}
.faq-answer.open {
    max-height: 500px; /* Adjust based on content height */
}
.faq-content.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.faq-arrow.rotate-180 {
    transform: rotate(180deg);
}

@media screen and (max-width: 640px) {
    .end-blur-y {
        --mask: linear-gradient(to bottom,
            rgba(0,0,0, 1) 0,   rgba(0,0,0, 1) 80%,
            rgba(0,0,0, 0) 95%, rgba(0,0,0, 0) 0
        ) 100% 50% / 100% 100% repeat-x;

        -webkit-mask: var(--mask);
        mask: var(--mask);

    }
}

/* Generic X-axis fade using mask-image so it works over any background */
.mask-fade-x {
	--fade-size: 4rem; /* customize per container */
	-webkit-mask-image: linear-gradient(to right,
		transparent,
		#000 var(--fade-size),
		#000 calc(100% - var(--fade-size)),
		transparent
	);
	mask-image: linear-gradient(to right,
		transparent,
		#000 var(--fade-size),
		#000 calc(100% - var(--fade-size)),
		transparent
	);
}

/* benefit 4 mic waves */
.benefit-4-mic .mic-waves .wave {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  border: 2px solid rgba(37,99,235,0.25);
  transform: scale(0.6);
  opacity: 0;
  animation: benefit4-ripple 3.2s ease-out infinite;
  will-change: transform, opacity;
}
.benefit-4-mic .mic-waves .wave-2 { animation-delay: 1.05s; }
.benefit-4-mic .mic-waves .wave-3 { animation-delay: 2.1s; }
.benefit-4-mic .aura {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: radial-gradient(closest-side, rgba(37,99,235,0.30) 0%, rgba(59,130,246,0.20) 45%, transparent 70%);
  filter: blur(10px);
  z-index: 0;
  transform-origin: center;
  transform: scale(0.92);
  animation: benefit4-aura-pulse 3.6s ease-in-out infinite;
}
@keyframes benefit4-ripple {
  0%   { transform: scale(0.65); opacity: 0.0; }
  10%  { opacity: 0.55; }
  60%  { opacity: 0.20; }
  100% { transform: scale(1.9); opacity: 0.0; }
}
.benefit-4-mic .aura { will-change: transform, opacity; }
@keyframes benefit4-aura-pulse {
  0%, 100% { transform: scale(0.92); opacity: 0.75; }
  50%      { transform: scale(1.06); opacity: 1; }
}
.animate-benefit4-float {
  animation: benefit4-float 4.2s ease-in-out infinite;
}
.animate-benefit4-float-slow {
  animation: benefit4-float 6.5s ease-in-out infinite;
}
@keyframes benefit4-float {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-6px); }
}

/* Tooltip Styles */
.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: help;
  border-bottom: 1px dashed #64748b;
}

.tooltip-text {
  display: inline;
}

.tooltip-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1e293b;
  color: #f1f5f9;
  text-align: center;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.4;
  width: max-content;
  max-width: 250px;
  z-index: 1000;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  pointer-events: none;
}

.tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #1e293b transparent transparent transparent;
}

.tooltip-container:hover .tooltip-content {
  visibility: visible;
  opacity: 1;
}

/* Mobile adjustments for tooltips */
@media screen and (max-width: 640px) {
  .tooltip-content {
    max-width: 200px;
    font-size: 0.7rem;
  }
}