
@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.1;
    }
}
.typeform-wrapper {
    background: rgba(30, 41, 59, 0.3);
    border-radius: 12px;
    overflow: hidden;
    margin-top: -1rem;
}
body {
    padding-top: 1rem;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(15, 23, 42, 0.9) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(30, 58, 138, 0.2) 0%, transparent 60%),
        linear-gradient(to bottom, #020617, #0f172a);
background-attachment: fixed;
}
header {
    margin-top: 2rem;
    margin-bottom: 1rem;
}
header h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}
header h1 span:first-of-type {
    letter-spacing: -0.025em;
}
header h1 span:last-of-type {
    letter-spacing: -0.025em;
}
header h1 span.relative {
    display: inline-block;
    margin: 0 0.15em;
    padding: 0 0.05em;
}
header p {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
wistia-player {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 4rem;
    }
    header p {
        font-size: 1.5rem;
    }
    wistia-player {
        max-width: 100%;
    }
}
/* Continuous Pulse Circle Animation */
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 0.1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}
.pulse-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  background: transparent;
}
.pulse-circle {
  position: absolute;
  border: 4px solid rgba(96, 165, 250, 0.8);
  border-radius: 50%;
  animation: pulse linear forwards;
  box-shadow: 
    0 0 60px rgba(96, 165, 250, 0.6),
    inset 0 0 40px rgba(96, 165, 250, 0.5);
  mix-blend-mode: overlay;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.3) 0%, transparent 70%);
pointer-events: none;
  will-change: transform, opacity;
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111827;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}