
/* RAVE AI Production CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Reset and base styles */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
img.man-money-large { max-width: none !important; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }

/* Custom animations */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes glow-pulse {
  from { box-shadow: 0 0 20px rgba(147, 51, 234, 0.5), 0 0 40px rgba(147, 51, 234, 0.3), 0 0 60px rgba(147, 51, 234, 0.1); }
  to { box-shadow: 0 0 30px rgba(147, 51, 234, 0.8), 0 0 60px rgba(147, 51, 234, 0.5), 0 0 90px rgba(147, 51, 234, 0.3); }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0,0,0);
  }
  40%, 43% {
    transform: translate3d(0, -6px, 0);
  }
  70% {
    transform: translate3d(0, -3px, 0);
  }
  90% {
    transform: translate3d(0, -1px, 0);
  }
}

/* Animation utility classes */
.gradient-shift { 
  background-size: 400% 400%; 
  animation: gradient-shift 8s ease-in-out infinite;
}
.float { animation: float 6s ease-in-out infinite; }
.glow-pulse { animation: glow-pulse 2s ease-in-out infinite alternate; }
.animate-slide-up { animation: slide-up 0.3s ease-out; }
.animate-slide-in { animation: slide-in 0.3s ease-out; }
.animate-bounce { animation: bounce 1s infinite; }

/* Font families */
.font-poppins { font-family: 'Poppins', sans-serif; }
.font-inter { font-family: 'Inter', sans-serif; }

/* Core Tailwind-style utilities */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-white { color: white; }
.text-black { color: black; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-purple-400 { color: #c084fc; }
.text-purple-500 { color: #a855f7; }
.text-indigo-400 { color: #818cf8; }
.text-yellow-400 { color: #facc15; }
.text-green-500 { color: #10b981; }

.bg-black { background-color: black; }
.bg-white { background-color: white; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-700 { background-color: #374151; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-800\/50 { background-color: rgba(31, 41, 55, 0.5); }
.bg-gray-900 { background-color: #111827; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.flex-grow { flex-grow: 1; }
.mt-auto { margin-top: auto; }
.w-full { width: 100%; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gap-2 { gap: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.bg-purple-600 { background-color: #9333ea; }
.bg-indigo-600 { background-color: #4f46e5; }
.rounded-2xl { border-radius: 1rem; }
.rounded-xl { border-radius: 0.75rem; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

.min-h-screen { min-height: 100vh; }
.w-full { width: 100%; }
.h-auto { height: auto; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-5xl { max-width: 64rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* Gradient backgrounds */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-purple-500 { --tw-gradient-from: #a855f7; --tw-gradient-to: rgba(168, 85, 247, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-pink-500 { --tw-gradient-to: #ec4899; }
.from-blue-500 { --tw-gradient-from: #3b82f6; --tw-gradient-to: rgba(59, 130, 246, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-cyan-500 { --tw-gradient-to: #06b6d4; }
.from-green-500 { --tw-gradient-from: #22c55e; --tw-gradient-to: rgba(34, 197, 94, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-emerald-500 { --tw-gradient-to: #10b981; }

/* Rounded corners */
.rounded-xl { border-radius: 0.75rem; }

/* Shadows */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

/* Margin and padding */
.mb-4 { margin-bottom: 1rem; }
.mt-32 { margin-top: 8rem; }
.p-3 { padding: 0.75rem; }

/* Custom sizing for man with money */
.man-money-large { 
    width: 600px !important; 
    height: 600px !important; 
    object-fit: contain !important; 
    background: transparent !important;
}

/* Positioning */
.absolute { position: absolute; }
.relative { position: relative; }
.bottom-4 { bottom: 1rem; }
.left-4 { left: 1rem; }
.right-4 { right: 1rem; }
.z-10 { z-index: 10; }

/* Transitions and animations */
.transition-opacity { transition-property: opacity; }
.transition-all { transition-property: all; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* Transform utilities */
.transform { transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.hover\:scale-110:hover { --tw-scale-x: 1.1; --tw-scale-y: 1.1; }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }

/* Ring styles */
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(147, 51, 234, 0.5); }
.focus\:ring-purple-500:focus { --tw-ring-color: #a855f7; }
.focus\:ring-opacity-50:focus { --tw-ring-opacity: 0.5; }
.focus\:outline-none:focus { outline: none; }

/* Hover states */
.hover\:bg-black\/80:hover { background-color: rgba(0, 0, 0, 0.8); }
.hover\:bg-purple-600:hover { background-color: #9333ea; }
.hover\:bg-red-600:hover { background-color: #dc2626; }
.hover\:bg-red-700:hover { background-color: #b91c1c; }
.hover\:bg-blue-600:hover { background-color: #2563eb; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:bg-gray-600:hover { background-color: #4b5563; }
.hover\:bg-green-600:hover { background-color: #16a34a; }
.hover\:bg-green-700:hover { background-color: #15803d; }

/* Background colors with opacity */
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.6); }
.bg-black\/70 { background-color: rgba(0, 0, 0, 0.7); }
.bg-purple-600\/80 { background-color: rgba(147, 51, 234, 0.8); }
.bg-red-600 { background-color: #dc2626; }
.bg-blue-600 { background-color: #2563eb; }
.bg-green-600 { background-color: #16a34a; }

/* Rounded styles */
.rounded-full { border-radius: 9999px; }

/* Backdrop blur */
.backdrop-blur-sm { backdrop-filter: blur(4px); }

.space-y-8 > * + * { margin-top: 2rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }

/* Size utilities */
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }

.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.p-8 { padding: 2rem; }
.p-6 { padding: 1.5rem; }

.mb-16 { margin-bottom: 4rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-4 { margin-top: 1rem; }

.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-light { font-weight: 300; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.rounded-xl { border-radius: 0.75rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-full { border-radius: 9999px; }

.border { border-width: 1px; }
.border-purple-600 { border-color: #9333ea; }
.border-gray-700 { border-color: #374151; }

.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

.hover\:bg-purple-700:hover { background-color: #7c3aed; }
.hover\:bg-indigo-700:hover { background-color: #3730a3; }
.hover\:scale-105:hover { transform: scale(1.05); }

.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

.cursor-pointer { cursor: pointer; }

/* Gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-purple-600 { --tw-gradient-from: #9333ea; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 51, 234, 0)); }
.to-indigo-600 { --tw-gradient-to: #4f46e5; }
.from-purple-400 { --tw-gradient-from: #c084fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 132, 252, 0)); }
.to-pink-600 { --tw-gradient-to: #db2777; }

/* Additional mobile improvements */
.overflow-x-hidden { overflow-x: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.bottom-4 { bottom: 1rem; }
.right-4 { right: 1rem; }
.left-0 { left: 0; }
.inline-block { display: inline-block; }
.transform { transform: translateX(0) translateY(0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1); }

/* Responsive utilities */
@media (min-width: 640px) {
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .sm\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:w-6 { width: 1.5rem; }
  .sm\:h-6 { height: 1.5rem; }
}

@media (min-width: 768px) {
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:flex-row { flex-direction: row; }
  .md\:space-y-0 > * + * { margin-top: 0; }
  .md\:space-x-6 > * + * { margin-left: 1.5rem; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:mb-12 { margin-bottom: 3rem; }
  .md\:mb-20 { margin-bottom: 5rem; }
  .md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .md\:py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
  .md\:p-12 { padding: 3rem; }
}

@media (min-width: 1024px) {
  .lg\:text-8xl { font-size: 6rem; line-height: 1; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
}

/* Grid utilities */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-6 { gap: 1.5rem; }

/* Mobile-first responsive typography and spacing */
@media (max-width: 768px) {
  body { font-size: 14px; }
  .main-content { 
    padding: 0.5rem !important;
    min-height: 100vh;
    justify-content: flex-start;
    padding-top: 2rem !important;
  }
  .mobile-headline { 
    font-size: 2.5rem !important;
    line-height: 1.1 !important;
    margin-bottom: 1rem !important;
    padding: 0 1rem;
  }
  .mobile-subtitle { 
    font-size: 1rem !important;
    line-height: 1.4 !important;
    margin-bottom: 1.5rem !important;
    padding: 0 1rem;
  }
  .mobile-features { 
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 1rem !important;
  }
  .mobile-feature-item { 
    padding: 1rem !important;
    text-align: center !important;
  }
  .mobile-feature-title { 
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
  }
  .mobile-feature-text { 
    font-size: 0.9rem !important;
    line-height: 1.3 !important;
  }
  .mobile-cta { 
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
    margin: 1rem !important;
    min-height: 48px !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .mobile-section { margin-bottom: 1.5rem !important; }
  .mobile-video-section { margin-bottom: 1rem !important; }
}

@media (max-width: 480px) {
  .main-content { 
    padding: 0.25rem !important;
    padding-top: 1rem !important;
  }
  .mobile-headline { 
    font-size: 2rem !important;
    padding: 0 0.5rem;
  }
  .mobile-subtitle { 
    font-size: 0.9rem !important;
    padding: 0 0.5rem;
  }
  .mobile-features { 
    padding: 0.5rem !important;
    gap: 1rem !important;
  }
  .mobile-feature-item { padding: 0.75rem !important; }
  .mobile-feature-title { font-size: 1rem !important; }
  .mobile-feature-text { font-size: 0.85rem !important; }
  .mobile-cta { 
    padding: 0.6rem 1.2rem !important;
    font-size: 0.9rem !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
  
  /* Force footer centering on mobile */
  .fixed.bottom-4 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    text-align: center !important;
  }
}

/* CTA Button improvements */
.glow-button {
  background: linear-gradient(45deg, #9333ea, #7c3aed, #8b5cf6);
  transition: all 0.3s ease;
  gap: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
}

.glow-button:hover {
  transform: translateY(-2px);
  animation: glow-pulse 2s ease-in-out infinite alternate;
}

.glow-button:hover .arrow-circle {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(2px);
}

.arrow-circle {
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.flex-shrink-0 { flex-shrink: 0; }

/* Footer centering */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-fit { max-width: fit-content; }
.flex { display: flex; }
.justify-center { justify-content: center; }
.w-full { width: 100%; }

/* Background colors for curved section */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-yellow-400 { --tw-gradient-from: #facc15; --tw-gradient-to: rgba(250, 204, 21, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-amber-300 { --tw-gradient-to: rgba(252, 211, 77, 0); --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to); }
.to-yellow-500 { --tw-gradient-to: #eab308; }
.h-1\/3 { height: 33.333333%; }
.h-24 { height: 6rem; }
.text-gray-900 { color: #111827; }
.font-medium { font-weight: 500; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.fixed { position: fixed; }

/* Additional utility classes */
.text-green-400 { color: #4ade80; }
.text-yellow-400 { color: #facc15; }
.text-orange-400 { color: #fb923c; }
.text-purple-300 { color: #d8b4fe; }
.text-yellow-300 { color: #fde047; }
.text-purple-400 { color: #c084fc; }
.bg-purple-600 { background-color: #9333ea; }
.bg-yellow-600 { background-color: #ca8a04; }
.bg-green-500 { background-color: #22c55e; }
.bg-emerald-500 { background-color: #10b981; }
.bg-yellow-400 { background-color: #facc15; }
.bg-yellow-500 { background-color: #eab308; }
.bg-orange-500 { background-color: #f97316; }
.bg-transparent { background-color: transparent; }
.border-2 { border-width: 2px; }
.border-green-500 { border-color: #22c55e; }
.border-yellow-500 { border-color: #eab308; }
.border-purple-500 { border-color: #a855f7; }
.hover\:bg-green-500:hover { background-color: #22c55e; }
.hover\:bg-green-600:hover { background-color: #16a34a; }
.hover\:bg-yellow-600:hover { background-color: #ca8a04; }
.hover\:bg-orange-600:hover { background-color: #ea580c; }
.hover\:text-white:hover { color: white; }
.hover\:text-purple-300:hover { color: #d8b4fe; }
.transform { transform: translateX(0) translateY(0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1); }
.space-y-3 > * + * { margin-top: 0.75rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.focus\:ring-green-500:focus { --tw-ring-color: #22c55e; }
.focus\:ring-yellow-500:focus { --tw-ring-color: #eab308; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.mr-3 { margin-right: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.rounded-full { border-radius: 9999px; }
.rounded-3xl { border-radius: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-6 { padding: 1.5rem; }
.p-3 { padding: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.max-w-6xl { max-width: 72rem; }
.transform { transform: translateX(0) translateY(0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1); }
.-translate-x-1\/2 { --tw-translate-x: -50%; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.left-1\/2 { left: 50%; }
.-top-3 { top: -0.75rem; }
.-top-2 { top: -0.5rem; }
.-right-2 { right: -0.5rem; }
.w-20 { width: 5rem; }
.h-20 { height: 5rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-8xl { font-size: 6rem; line-height: 1; }
.text-9xl { font-size: 8rem; line-height: 1; }
.text-10xl { font-size: 10rem; line-height: 1; }
.text-11xl { font-size: 12rem; line-height: 1; }

/* Background and visual effects */
.bg-clip-text { background-clip: text; -webkit-background-clip: text; }
.text-transparent { color: transparent; }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.blur-xl { filter: blur(24px); }
.blur-2xl { filter: blur(40px); }

/* Responsive grid classes */
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:text-8xl { font-size: 6rem; line-height: 1; }
}

@media (min-width: 1024px) {
    .lg\:text-9xl { font-size: 8rem; line-height: 1; }
}

@media (min-width: 1280px) {
    .xl\:text-10xl { font-size: 10rem; line-height: 1; }
}

/* Video container styling - Override inline styles */
.video-container {
    position: relative !important;
    width: 100% !important;
    max-width: 800px !important;
    height: 450px !important; /* Fixed height instead of padding-bottom */
    border-radius: 20px !important;
    overflow: hidden !important;
    background: linear-gradient(145deg, #1a1a2e, #16213e) !important;
    padding: 8px !important;
    margin: 0 auto !important;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(147, 51, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.video-inner-frame {
    position: absolute !important;
    top: 8px !important;
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #000 !important;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

.video-inner-frame iframe,
.video-inner-frame img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 12px !important;
    object-fit: cover !important;
}

.video-frame-glow {
    position: absolute !important;
    inset: -2px !important;
    background: linear-gradient(45deg, #9333ea, #7c3aed, #8b5cf6, #9333ea) !important;
    background-size: 400% 400% !important;
    border-radius: 22px !important;
    opacity: 0.6 !important;
    z-index: -1 !important;
    animation: gradient-shift 8s ease-in-out infinite !important;
    filter: blur(8px) !important;
}

/* Mobile video fixes */
@media (max-width: 768px) {
    .video-container {
        max-width: 100% !important;
        width: 100% !important;
        height: 300px !important;
        padding: 4px !important;
        margin: 1rem auto !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .video-inner-frame {
        position: absolute !important;
        top: 4px !important;
        left: 4px !important;
        right: 4px !important;
        bottom: 4px !important;
        width: calc(100% - 8px) !important;
        height: calc(100% - 8px) !important;
        display: block !important;
    }
    
    .video-container video,
    .video-container iframe,
    .video-inner-frame iframe,
    .video-inner-frame img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 12px !important;
        -webkit-playsinline: true;
        playsinline: true;
        display: block !important;
        visibility: visible !important;
    }
    
    .video-frame-glow {
        display: block !important;
        visibility: visible !important;
    }
}

@media (max-width: 480px) {
    .video-container {
        height: 250px !important;
        padding: 3px !important;
        margin: 0.5rem auto !important;
    }
    
    .video-inner-frame {
        top: 3px !important;
        left: 3px !important;
        right: 3px !important;
        bottom: 3px !important;
        width: calc(100% - 6px) !important;
        height: calc(100% - 6px) !important;
    }
}



/* Pricing card backgrounds */
.pricing-card-bg {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Smaller button styles */
.pricing-button {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
    min-height: 44px !important;
}

/* Additional mobile video section styling */
@media (max-width: 768px) {
    .mobile-video-section {
        width: 100% !important;
        padding: 0 1rem !important;
        margin: 2rem auto !important;
        display: block !important;
        visibility: visible !important;
        max-width: none !important;
    }
    
    .mobile-video-section .video-container {
        display: block !important;
        visibility: visible !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .mobile-video-section .video-inner-frame {
        display: block !important;
        visibility: visible !important;
        position: absolute !important;
        z-index: 11 !important;
    }
    
    .mobile-video-section img {
        display: block !important;
        visibility: visible !important;
        z-index: 12 !important;
    }
    
    /* Mobile play button fixes */
    .mobile-video-section .absolute.inset-0.flex {
        display: flex !important;
        visibility: visible !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 15 !important;
    }
    
    .mobile-video-section [style*="width: 80px"] {
        display: flex !important;
        visibility: visible !important;
        width: 60px !important;
        height: 60px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border-radius: 50% !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        z-index: 16 !important;
    }
    
    .mobile-video-section svg {
        display: block !important;
        visibility: visible !important;
        width: 24px !important;
        height: 24px !important;
        color: #dc2626 !important;
        z-index: 17 !important;
    }
    
    /* Direct class targeting for mobile play button */
    .mobile-play-overlay {
        display: flex !important;
        visibility: visible !important;
        position: absolute !important;
        z-index: 20 !important;
    }
    
    .mobile-play-button {
        display: flex !important;
        visibility: visible !important;
        width: 60px !important;
        height: 60px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border-radius: 50% !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 21 !important;
    }
    
    .mobile-play-icon {
        display: block !important;
        visibility: visible !important;
        width: 24px !important;
        height: 24px !important;
        color: #dc2626 !important;
        z-index: 22 !important;
    }
}
