@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in:nth-child(1) {
  animation-delay: 0.1s;
}

.animate-fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

.animate-fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

.animate-fade-in:nth-child(4) {
  animation-delay: 0.4s;
}

.animate-fade-in:nth-child(5) {
  animation-delay: 0.5s;
}

.animate-fade-in:nth-child(6) {
  animation-delay: 0.6s;
}

.animate-fade-in:nth-child(7) {
  animation-delay: 0.7s;
}

.animate-fade-in:nth-child(8) {
  animation-delay: 0.8s;
}

.animate-fade-in:nth-child(9) {
  animation-delay: 0.9s;
}

.animate-fade-in:nth-child(10) {
  animation-delay: 1s;
}

.fade-in-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-scroll.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-scroll:nth-child(1) {
  transition-delay: 0s;
}

.fade-in-scroll:nth-child(2) {
  transition-delay: 0.1s;
}

.fade-in-scroll:nth-child(3) {
  transition-delay: 0.2s;
}

.fade-in-scroll:nth-child(4) {
  transition-delay: 0.3s;
}

.fade-in-scroll:nth-child(5) {
  transition-delay: 0.4s;
}

.fade-in-scroll:nth-child(6) {
  transition-delay: 0.5s;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-in-text {
  opacity: 0;
  animation: slideIn 0.6s ease-out forwards;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}

.hover-scale {
  transition: transform 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
}

@keyframes pulseSutle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}
.animate-pulse-subtle {
  animation: pulseSutle 3s ease-in-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
.pulse-ring {
  position: relative;
}
.pulse-ring::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid #441f68;
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-20px) translateX(10px);
  }
  66% {
    transform: translateY(10px) translateX(-10px);
  }
}
.floating-element {
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  animation-delay: 1s;
}

.floating-element:nth-child(3) {
  animation-delay: 2s;
}

.floating-element:nth-child(4) {
  animation-delay: 3s;
}

.floating-element:nth-child(5) {
  animation-delay: 4s;
}

.floating-element:nth-child(6) {
  animation-delay: 5s;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.gradient-animated {
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

.interactive-glow {
  position: relative;
}
.interactive-glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 1rem;
  background: linear-gradient(45deg, #441f68, #ec4899, #441f68);
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  animation: gradientShift 3s ease infinite;
}
.interactive-glow:hover::before {
  opacity: 0.1;
}

@keyframes blobFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}
.animated-gradient-blob {
  background: linear-gradient(45deg, #441f68, #ec4899, #8b5cf6);
  border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
  filter: blur(40px);
  animation: blobFloat 8s ease-in-out infinite;
}

.timeline-item {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease-out;
}
.timeline-item.fade-in-visible {
  opacity: 1;
  transform: translateX(0);
}

.team-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.team-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.team-card:hover::after {
  width: 300px;
  height: 300px;
}

.value-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.3s ease;
}
.value-card:hover {
  transform: translateY(-10px) rotateX(5deg);
}
.value-card .value-card-inner {
  position: relative;
  z-index: 10;
}

@keyframes sparkleFloat {
  0% {
    opacity: 1;
    transform: translateY(0) scale(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-20px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px) scale(0);
  }
}
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  animation: sparkleFloat 1s ease-out forwards;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

.button-hover-effect {
  transition: all 0.3s ease;
}
.button-hover-effect:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}
.button-hover-effect:active {
  transform: scale(0.98);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .hover-lift:hover {
    transform: translateY(-5px);
  }
  .animated-gradient-blob {
    display: none;
  }
  .value-card:hover {
    transform: translateY(-5px) rotateX(0deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
html {
  scroll-behavior: auto;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(139, 92, 246, 0.5) #1a1a1a;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.5);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.7);
}

.transition-all {
  transition: all 0.3s ease;
}

.transition-transform {
  transition: transform 0.3s ease;
}

.transition-opacity {
  transition: opacity 0.3s ease;
}

.transform-gpu {
  transform: translateZ(0);
  will-change: transform;
}

.laptop {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}
.laptop::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(180deg, #9ca3af 0%, #6b7280 100%);
  border-radius: 0 0 20px 20px;
}

.screen {
  background: #000 !important;
  border-radius: 8px 8px 0 0 !important;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.stat-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.chart-container {
  position: relative;
  height: 100%;
}

@keyframes pulse-slow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.pulse-slow {
  animation: pulse-slow 3s ease-in-out infinite;
}

.floating-element {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}
.spinner {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #667eea;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 2s linear infinite;
  display: inline-block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#card-element,
.StripeElement {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  box-sizing: border-box;
  transition: box-shadow 150ms ease;
}

.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.checkout-card,
.subscription-card,
.feature-card,
.plan-card,
.success-card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.checkout-card:hover,
.subscription-card:hover,
.feature-card:hover,
.plan-card:hover,
.success-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.plan-card.popular {
  border: 2px solid #667eea;
  background: rgba(102, 126, 234, 0.1);
}
.plan-card.popular::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.blog-content {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  line-height: 1.8;
}
.blog-content p {
  margin-bottom: 1.8rem;
  color: #e5e7eb;
}
.blog-content h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  margin: 3rem 0 1.5rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.blog-content h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 2.5rem 0 1rem;
  color: #ffffff;
}
.blog-content blockquote {
  border-left: 3px solid #8b5cf6;
  padding-left: 2rem;
  margin: 3rem 0;
  font-style: italic;
  font-size: 1.25rem;
  color: #d1d5db;
}
.blog-content img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 3rem 0;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  33% {
    transform: translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translateY(5px) rotate(-1deg);
  }
}
.floating-element {
  animation: float 6s ease-in-out infinite;
  opacity: 0.6;
}
.floating-element:nth-child(2) {
  animation-delay: -2s;
}
.floating-element:nth-child(3) {
  animation-delay: -4s;
}

.related-card {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

.sidebar-card {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.sidebar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.category-pill {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.2) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
  z-index: 100;
  transition: width 0.3s ease;
}

.share-btn {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.sidebar-sticky {
  position: sticky;
  top: 6rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}
.sidebar-sticky::-webkit-scrollbar {
  width: 6px;
}
.sidebar-sticky::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.sidebar-sticky::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.5);
  border-radius: 3px;
}
.sidebar-sticky::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.7);
}

.glass-card {
  background: rgba(17, 24, 39, 0.7);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}/*# sourceMappingURL=public.css.map */