/* Google Fonts - Syne for display, Inter for body */
/* Fonts loaded via HTML link tag */

/* Object-fit utilities */
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }

/* Text color utilities */
.text-white { color: #ffffff; }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-primary\/50 { color: rgba(168, 85, 247, 0.5); }

/* Max-width utilities */
.max-w-20 { max-width: 5rem; }
.max-w-2xl { max-width: 42rem; }

/* Additional sizing */
.w-7 { width: 1.75rem; }
.h-7 { height: 1.75rem; }

/* Automation steps - evenly spaced row */
.automation-steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 2rem;
}

.automation-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 8rem;
}

.automation-step-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
  white-space: nowrap;
}

.automation-step-arrow {
  display: flex;
  align-items: center;
  padding-top: 0.875rem;
  color: rgba(168, 85, 247, 0.5);
  flex-shrink: 0;
  margin: 0 0.25rem;
}

@media (max-width: 640px) {
  .automation-steps-row {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .automation-step-arrow {
    display: none;
  }
  .automation-step {
    max-width: none;
    width: calc(33% - 1rem);
  }
}

/* Additional spacing */
.mt-2 { margin-top: 0.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; }

/* Flex utilities */
.flex-1 { flex: 1; }

/* Sizing */
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.w-20 { width: 5rem; }
.h-20 { height: 5rem; }

/* Gradient backgrounds */
.bg-gradient-to-br { background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.05)); }

/* Border */
.border-primary\/30 { border-color: rgba(168, 85, 247, 0.3); }

/* Responsive layout */
@media (min-width: 1024px) {
  .lg\:flex-row { flex-direction: row; }
  .lg\:text-left { text-align: left; }
  .lg\:mx-0 { margin-left: 0; margin-right: 0; }
}

/* Responsive display */
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
}

/* CSS Variables for consistent theming */
:root {
  --primary: 262 83% 58%;
  --primary-foreground: 210 40% 98%;
  --secondary: 210 40% 96%;
  --secondary-foreground: 222.2 84% 4.9%;
  --muted: 210 40% 96%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 210 40% 96%;
  --accent-foreground: 222.2 84% 4.9%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 262 83% 58%;
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --card: 0 0% 100%;
  --card-foreground: 222.2 84% 4.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 222.2 84% 4.9%;
}

/* Base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}

/* Animation keyframes */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 hsla(var(--primary), 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px hsla(var(--primary), 0);
    transform: scale(1.02);
  }
}

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

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

@keyframes gradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================================================
   ADVANCED ANIMATIONS - Awwwards/Dribbble Style
   ============================================================================ */

/* Slide up with fade */
@-webkit-keyframes slideUpFade {
  from {
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideUpFade {
  from {
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Slide in from left */
@-webkit-keyframes slideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-60px);
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-60px);
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* Slide in from right */
@-webkit-keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(60px);
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(60px);
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* Scale up with fade */
@-webkit-keyframes scaleUpFade {
  from {
    opacity: 0;
    -webkit-transform: scale(0.5) translateY(40px);
    transform: scale(0.5) translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
  }
}
@keyframes scaleUpFade {
  from {
    opacity: 0;
    -webkit-transform: scale(0.5) translateY(40px);
    transform: scale(0.5) translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
  }
}

/* Rotate in */
@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

/* Blur in */
@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

/* Bounce in */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Floating with rotation */
@-webkit-keyframes floatRotate {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  25% {
    -webkit-transform: translateY(-8px) rotate(1deg);
    transform: translateY(-8px) rotate(1deg);
  }
  75% {
    -webkit-transform: translateY(-4px) rotate(-1deg);
    transform: translateY(-4px) rotate(-1deg);
  }
}
@keyframes floatRotate {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  25% {
    -webkit-transform: translateY(-8px) rotate(1deg);
    transform: translateY(-8px) rotate(1deg);
  }
  75% {
    -webkit-transform: translateY(-4px) rotate(-1deg);
    transform: translateY(-4px) rotate(-1deg);
  }
}

/* Gentle breathing/pulsing */
@-webkit-keyframes breathe {
  0%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    opacity: 0.9;
  }
}
@keyframes breathe {
  0%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    opacity: 0.9;
  }
}

/* Shimmer effect */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Glow pulse - for containers */
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.4), 0 0 60px rgba(168, 85, 247, 0.2);
  }
}

/* Text glow pulse - follows character shapes */
@keyframes textGlowPulse {
  0%, 100% {
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.4), 0 0 20px rgba(168, 85, 247, 0.2);
  }
  50% {
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.6), 0 0 40px rgba(168, 85, 247, 0.4), 0 0 60px rgba(168, 85, 247, 0.2);
  }
}

/* Text reveal - clip */
@keyframes textReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

/* Typewriter cursor */
@keyframes blink {
  0%, 50% {
    border-color: transparent;
  }
  51%, 100% {
    border-color: currentColor;
  }
}

/* Wave animation for icons */
@keyframes wave {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(20deg);
  }
  75% {
    transform: rotate(-15deg);
  }
}

/* Stagger delay variables */
:root {
  --stagger-1: 0ms;
  --stagger-2: 100ms;
  --stagger-3: 200ms;
  --stagger-4: 300ms;
  --stagger-5: 400ms;
  --stagger-6: 500ms;
}

/* Utility classes */
.animate-pulse-glow {
  animation: pulse-glow 2s infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-fadeIn {
  animation: fadeIn 0.2s ease-out;
}

.animate-slide-in-up {
  animation: slide-in-up 0.6s ease-out;
}

/* Advanced animation utility classes */
.animate-slide-up-fade {
  -webkit-animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-slide-left {
  animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-slide-right {
  animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-scale-up {
  animation: scaleUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-rotate-in {
  animation: rotateIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-blur-in {
  animation: blurIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-bounce-in {
  animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

.animate-float-rotate {
  -webkit-animation: floatRotate 6s ease-in-out infinite;
  animation: floatRotate 6s ease-in-out infinite;
}

.animate-breathe {
  animation: breathe 4s ease-in-out infinite;
}

.animate-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

.animate-glow-pulse {
  animation: glowPulse 3s ease-in-out infinite;
}

.animate-text-glow-pulse {
  animation: textGlowPulse 3s ease-in-out infinite;
}

.animate-text-reveal {
  animation: textReveal 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-wave {
  animation: wave 2s ease-in-out infinite;
  transform-origin: 70% 70%;
}

/* Stagger delay classes */
.stagger-1 { animation-delay: var(--stagger-1); }
.stagger-2 { animation-delay: var(--stagger-2); }
.stagger-3 { animation-delay: var(--stagger-3); }
.stagger-4 { animation-delay: var(--stagger-4); }
.stagger-5 { animation-delay: var(--stagger-5); }
.stagger-6 { animation-delay: var(--stagger-6); }

/* Scroll-triggered animations - elements start hidden */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-right {
  opacity: 0;
  transform: translateX(80px);
  /* Exit transition */
  transition: opacity 0.35s ease-in, transform 0.35s ease-in;
}

.scroll-animate-right.is-visible {
  opacity: 1;
  transform: translateX(0);
  /* Enter transition */
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Hover micro-interactions */
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hover-glow {
  transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.3), 0 0 60px rgba(168, 85, 247, 0.15);
}

.hover-scale {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-rotate {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-rotate:hover {
  transform: rotate(5deg);
}

.animate-gradient {
  background: linear-gradient(-45deg, hsl(var(--primary)), hsl(280 70% 55%), hsl(262 50% 45%));
  background-size: 400% 400%;
  animation: gradient 3s ease infinite;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-gradient {
  background: linear-gradient(-45deg, hsl(var(--primary)), hsl(280 70% 55%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-gradient {
  background: linear-gradient(135deg, 
    hsla(var(--primary), 0.05) 0%, 
    hsla(280 70% 55%, 0.05) 50%, 
    hsla(var(--background), 1) 100%);
}

.gradient-bg {
  background: linear-gradient(135deg, 
    hsla(var(--primary), 0.02) 0%, 
    hsla(var(--background), 1) 50%, 
    hsla(280 70% 55%, 0.02) 100%);
}

.loading-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Navigation styles */
.nav-blur {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: hsla(var(--background), 0.8);
}


/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.15s ease-in-out;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  padding: 0.5rem 1rem;
}

.btn:hover {
  opacity: 0.9;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

.btn-primary:hover {
  background: hsl(var(--primary) / 0.9);
}

.btn-ghost {
  background: transparent;
  color: hsl(var(--muted-foreground));
}

.btn-ghost:hover {
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
}

.btn-outline {
  background: transparent;
  border-color: hsl(var(--border));
  color: hsl(var(--foreground));
}

.btn-outline:hover {
  background: hsl(var(--muted));
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

/* Card styles */
.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  transition: all 0.15s ease-in-out;
}

.card:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.card-header {
  padding: 1.5rem 1.5rem 0;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0;
}

/* Badge styles */
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid transparent;
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.badge-primary {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  border-color: hsl(var(--primary) / 0.2);
}

/* Form styles */
.form-input {
  display: flex;
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  transition: all 0.15s ease-in-out;
}

.form-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px hsl(var(--ring));
  border-color: hsl(var(--ring));
}

.form-input::placeholder {
  color: hsl(var(--muted-foreground));
}

/* Organization grid styles */



/* Stats grid */




/* Profile styles */


/* Dashboard specific styles */






/* Tailwind-like utilities */
.min-h-screen { min-height: 100vh; }
.max-w-7xl { max-width: 80rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-24 { padding-top: 6rem; }
.pb-16 { padding-bottom: 4rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-16 { margin-top: 4rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-full { width: 100%; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-7xl { font-size: 4.5rem; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.transition-all { transition: all 0.15s ease-in-out; }
.transition-colors { transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; }
.transition-shadow { transition: box-shadow 0.15s ease-in-out; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-1000 { transition-duration: 1000ms; }
.hover\:text-primary:hover { color: hsl(var(--primary)); }
.hover\:bg-primary:hover { background: hsl(var(--primary)); }
.hover\:bg-primary\/90:hover { background: hsl(var(--primary) / 0.9); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.05); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }

/* Grid utilities */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.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)); }
.lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Flexbox utilities */
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }

/* Shadow utilities */
.shadow-2xs { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }

/* Border utilities */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }

/* Background utilities */
.bg-background { background: hsl(var(--background)); }
.bg-muted { background: hsl(var(--muted)); }
.bg-card { background: hsl(var(--card)); }
.bg-primary { background: hsl(var(--primary)); }
.bg-transparent { background: transparent; }
.bg-muted\/30 { background: hsl(var(--muted) / 0.3); }
.bg-primary\/10 { background: hsl(var(--primary) / 0.1); }

/* Color utilities */
.text-foreground { color: hsl(var(--foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-primary { color: hsl(var(--primary)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-card-foreground { color: hsl(var(--card-foreground)); }
.text-secondary-foreground { color: hsl(var(--secondary-foreground)); }
.text-green-500 { color: #10b981; }
.text-yellow-400 { color: #fbbf24; }

/* Color backgrounds */
.bg-pink-100 { background-color: #fce7f3; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-green-100 { background-color: #dcfce7; }
.bg-purple-100 { background-color: #f3e8ff; }
.bg-orange-100 { background-color: #fed7aa; }
.bg-indigo-100 { background-color: #e0e7ff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-gray-900 { background-color: #111827; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-slate-900 { background-color: #0f172a; }
.bg-zinc-50 { background-color: #fafafa; }
.bg-zinc-100 { background-color: #f4f4f5; }
.bg-zinc-900 { background-color: #18181b; }

/* Text colors */
.text-pink-600 { color: #db2777; }
.text-blue-600 { color: #2563eb; }
.text-green-600 { color: #16a34a; }
.text-purple-600 { color: #9333ea; }
.text-orange-600 { color: #ea580c; }
.text-indigo-600 { color: #4f46e5; }
.text-gray-50 { color: #f9fafb; }
.text-gray-100 { color: #f3f4f6; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }
.text-slate-900 { color: #0f172a; }
.text-zinc-900 { color: #18181b; }

/* Border colors */
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-slate-200 { border-color: #e2e8f0; }
.border-zinc-200 { border-color: #e4e4e7; }

/* Fixed positioning */
.fixed { position: fixed; }
.top-0 { top: 0; }
.z-50 { z-index: 50; }

/* Backdrop filter */
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

/* Responsive utilities */
@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .sm\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:gap-6 { gap: 1.5rem; }
  .sm\:h-32 { height: 8rem; }
  .sm\:w-32 { width: 8rem; }
  .sm\:h-40 { height: 10rem; }
  .sm\:w-40 { width: 10rem; }
  .sm\:h-64 { height: 16rem; }
  .sm\:w-64 { width: 16rem; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:text-7xl { font-size: 4.5rem; }
  .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)); }
}

@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .lg\:p-8 { padding: 2rem; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
}

/* Advanced shadcn/tailwind utilities */
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

/* Ring utilities */
.ring-1 { box-shadow: 0 0 0 1px rgb(0 0 0 / 0.05); }
.ring-2 { box-shadow: 0 0 0 2px rgb(0 0 0 / 0.05); }
.ring-offset-2 { box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgb(0 0 0 / 0.05); }
.focus-visible\:ring-2:focus-visible { box-shadow: 0 0 0 2px hsl(var(--ring)); }
.focus-visible\:ring-offset-2:focus-visible { box-shadow: 0 0 0 2px #fff, 0 0 0 4px hsl(var(--ring)); }

/* Advanced spacing */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-x-1 > * + * { margin-left: 0.25rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }

/* Sizing utilities */
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-9 { height: 2.25rem; }
.h-14 { height: 3.5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-9 { width: 2.25rem; }
.w-14 { width: 3.5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-40 { width: 10rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.size-4 { width: 1rem; height: 1rem; }
.size-5 { width: 1.25rem; height: 1.25rem; }
.size-6 { width: 1.5rem; height: 1.5rem; }

/* Text utilities */
.text-2xs { font-size: 0.625rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }

/* Position utilities */
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.right-0 { right: 0; }
.left-0 { left: 0; }
.bottom-0 { bottom: 0; }
.top-4 { top: 1rem; }
.right-4 { right: 1rem; }

/* Z-index utilities */
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }

/* Transform utilities */
.transform { transform: var(--tw-transform); }
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.translate-x-1 { transform: translateX(0.25rem); }
.translate-y-0 { transform: translateY(0); }
.-translate-y-1 { transform: translateY(-0.25rem); }

/* Opacity utilities */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

/* Divide utilities */
.divide-y > * + * { border-top-width: 1px; }
.divide-y-2 > * + * { border-top-width: 2px; }
.divide-gray-100 > * + * { border-color: #f3f4f6; }
.divide-gray-200 > * + * { border-color: #e5e7eb; }
.divide-slate-200 > * + * { border-color: #e2e8f0; }

/* Overflow utilities */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* Whitespace utilities */
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre-wrap { white-space: pre-wrap; }

/* Cursor utilities */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

/* Select utilities */
.select-none { user-select: none; }

/* Aspect ratio utilities */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }

/* Focus utilities */
.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px hsl(var(--ring)); }
.focus\:ring-offset-2:focus { box-shadow: 0 0 0 2px #fff, 0 0 0 4px hsl(var(--ring)); }

/* Group utilities */
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:opacity-0 { opacity: 0; }
.group:hover .group-hover\:text-white { color: #fff; }

/* Animation delays */
.delay-75 { transition-delay: 75ms; }
.delay-100 { transition-delay: 100ms; }
.delay-150 { transition-delay: 150ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Landing page section styles */
.landing-section {
  padding: 5rem 1.5rem;
  margin: 0 auto;
}

.landing-hero {
  padding: 10rem 1.5rem 6rem;
  background: linear-gradient(135deg,
    hsla(var(--primary), 0.03) 0%,
    hsla(var(--background), 1) 50%,
    hsla(280 70% 55%, 0.03) 100%);
}

.landing-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.landing-hero p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 3rem;
}

.hero-cta .btn {
  min-width: 200px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 0.5rem;
}

/* Features section */
.features-section {
  padding: 6rem 1.5rem;
  background: hsl(var(--muted) / 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto 0;
}

.feature-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Centered feature icon for feature cards */
.feature-card .feature-icon {
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feature-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  font-size: 1rem;
}

/* Pricing section */
.pricing-section {
  padding: 6rem 1.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 4rem auto 0;
}

.pricing-card {
  background: hsl(var(--card));
  border: 2px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: hsl(var(--primary));
  box-shadow: 0 10px 15px -3px hsla(var(--primary), 0.1);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.pricing-header .badge {
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--foreground));
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Testimonials section */
.testimonials-section {
  padding: 6rem 1.5rem;
  background: hsl(var(--muted) / 0.3);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto 0;
}

.testimonial-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

/* CTA section */
.cta-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg,
    hsla(var(--primary), 0.05) 0%,
    hsla(var(--background), 1) 50%,
    hsla(280 70% 55%, 0.05) 100%);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.cta-buttons .btn {
  min-width: 200px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Contact section */
.contact-section {
  padding: 6rem 1.5rem;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 1rem;
  transition: all 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsla(var(--primary), 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Original responsive utilities */
@media (max-width: 1023px) {
  .grid-cols-1.lg\:grid-cols-2,
  .grid-cols-1.lg\:grid-cols-3 {
    grid-template-columns: 1fr !important;
  }
}

/* Artifact generator - hide mobile nav on desktop */

@media (max-width: 768px) {
  
  
  
  
  
  /* Landing page mobile styles */
  .landing-hero {
    padding: 6rem 1.5rem 3rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .cta-card {
    padding: 3rem 2rem;
  }

  .cta-section .max-w-4xl {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about-section .grid-cols-3,
  .about-section .md\:grid-cols-3 {
    grid-template-columns: 1fr;
  }

  .contact-section .md\:grid-cols-2 {
    grid-template-columns: 1fr;
  }

  .landing-section,
  .features-section,
  .pricing-section,
  .testimonials-section,
  .cta-section,
  .contact-section {
    padding: 4rem 2rem;
  }

  .landing-hero {
    padding-left: 2rem;
    padding-right: 2rem;
  }




  .md\:grid-cols-2,
  .lg\:grid-cols-4 {
    grid-template-columns: 1fr;
  }




  /* Settings pages - mobile */








  /* Members table - stack on mobile */





  /* View auth content wrapper - mobile */

  /* Artifact detail views - mobile */





  /* Edit mode footer - mobile */



  /* Chat with Opti - mobile */







  /* Artifact generator modal - mobile */






  /* Artifact rows - mobile */


}

@media (max-width: 480px) {
  
  
  .btn-lg {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
  }
  
  /* Small mobile adjustments */
  .landing-hero {
    padding: 5rem 1rem 2rem;
  }
  
  .feature-card,
  .pricing-card,
  .testimonial-card {
    padding: 1.5rem 1rem;
  }

  .cta-card {
    padding: 2rem 1rem;
  }

  .cta-section .max-w-4xl {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .contact-form {
    padding: 2rem 1rem;
  }

  .landing-section,
  .features-section,
  .pricing-section,
  .testimonials-section,
  .cta-section,
  .contact-section {
    padding: 3rem 1.5rem;
  }

  .landing-hero {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Additional responsive breakpoint for larger screens */
@media (min-width: 1200px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Mobile-only utilities (max-md = below 768px) */
@media (max-width: 767px) {
  .max-md\:fixed { position: fixed; }
  .max-md\:inset-y-0 { top: 0; bottom: 0; }
  .max-md\:left-0 { left: 0; }
  .max-md\:z-\[56\] { z-index: 56; }
  .max-md\:-translate-x-full { transform: translateX(-100%); }
  .max-md\:translate-x-0 { transform: translateX(0); }
}

/* ============================================================================
   FUTURISTIC DARK THEME - Landing Page Only
   ============================================================================ */

/* Landing page navbar */
.landing-nav {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-nav-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  height: 2.5rem;
  padding: 0 1.5rem;
  background: #a855f7;
  color: #ffffff;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.25);
}

.landing-nav-btn-primary:hover {
  background: #c084fc;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
  transform: translateY(-1px);
}

.landing-nav-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  height: 2.5rem;
  padding: 0 1rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.landing-nav-btn-secondary:hover {
  color: #a855f7;
}

/* Landing page footer */
.landing-footer {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.landing-dark {
  /* Custom dark theme variables */
  --ld-bg: #0a0a0a;
  --ld-surface: rgba(255, 255, 255, 0.03);
  --ld-surface-hover: rgba(255, 255, 255, 0.06);
  --ld-glass: rgba(255, 255, 255, 0.05);
  --ld-glass-border: rgba(255, 255, 255, 0.1);
  --ld-text: #ffffff;
  --ld-text-secondary: rgba(255, 255, 255, 0.7);
  --ld-text-muted: rgba(255, 255, 255, 0.5);
  --ld-primary: #a855f7;
  --ld-primary-light: #c084fc;
  --ld-primary-dark: #9333ea;
  --ld-primary-glow: rgba(168, 85, 247, 0.25);
  --ld-border: rgba(255, 255, 255, 0.12);
  --ld-success: #4ade80;
  --ld-warning: #f59e0b;
  --ld-error: #f87171;

  /* Override standard CSS variables for dark theme */
  --background: 0 0% 6%;
  --foreground: 0 0% 100%;
  --card: 0 0% 8%;
  --card-foreground: 0 0% 100%;
  --popover: 0 0% 8%;
  --popover-foreground: 0 0% 100%;
  --primary: 270 91% 65%;
  --primary-foreground: 0 0% 100%;
  --secondary: 0 0% 12%;
  --secondary-foreground: 0 0% 100%;
  --muted: 0 0% 15%;
  --muted-foreground: 0 0% 65%;
  --accent: 0 0% 15%;
  --accent-foreground: 0 0% 100%;
  --border: 0 0% 20%;
  --input: 0 0% 20%;
  --ring: 270 91% 65%;

  background: var(--ld-bg);
  color: var(--ld-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
}

/* Syne for headings in dark theme */
.landing-dark h1,
.landing-dark h2,
.landing-dark h3,
.landing-dark h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Hero Section - Dark Theme */
.landing-dark .landing-hero {
  background: transparent;
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.landing-dark .landing-hero h1 {
  color: var(--ld-text);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.landing-dark .landing-hero .text-primary {
  color: var(--ld-primary);
  background: linear-gradient(135deg, var(--ld-primary) 0%, var(--ld-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-dark .landing-hero p {
  color: var(--ld-text-secondary);
  font-size: 1.25rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

/* Hero CTA Button - Dark Theme */
.landing-dark .hero-cta {
  position: relative;
  z-index: 20;
}

.landing-dark .hero-cta .btn-primary {
  background: var(--ld-primary);
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 20;
  overflow: hidden;
  cursor: pointer;
}

.landing-dark .hero-cta .btn-primary:hover {
  background: var(--ld-primary-light);
  box-shadow: 0 0 40px var(--ld-primary-glow), 0 0 80px rgba(168, 85, 247, 0.15);
  transform: translateY(-2px);
}

.landing-dark .hero-cta .btn-primary.animate-pulse-glow {
  animation: none;
}

/* Hero Cards - Glass Morphism */
.landing-dark .landing-hero .feature-card {
  background: var(--ld-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--ld-glass-border);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-dark .landing-hero .feature-card:hover {
  background: var(--ld-surface-hover);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--ld-primary-glow);
}

.landing-dark .landing-hero .feature-card h3 {
  color: var(--ld-text);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.landing-dark .landing-hero .feature-card p {
  color: var(--ld-text-muted);
  font-size: 0.875rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.landing-dark .landing-hero .feature-icon {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 4px;
}

.landing-dark .landing-hero .bg-gradient-to-r {
  background: transparent;
  border-radius: 4px;
  padding: 0;
}

/* Features Section - Dark Theme */
.landing-dark .features-section {
  background: linear-gradient(135deg, #1a0a2e 0%, #0d0015 50%, #1a0a2e 100%);
  padding: 6rem 1.5rem;
  border-top: 1px solid rgba(168, 85, 247, 0.3);
  border-bottom: 1px solid rgba(168, 85, 247, 0.3);
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay */
.landing-dark .features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.landing-dark .features-section .section-header {
  position: relative;
  z-index: 1;
}

.landing-dark .features-section .section-header h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  text-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
}

.landing-dark .features-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.landing-dark .features-grid {
  position: relative;
  z-index: 1;
}

.landing-dark .feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.landing-dark .feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(168, 85, 247, 0.15);
  transform: translateY(-4px);
}

.landing-dark .feature-card h3 {
  color: #ffffff;
}

.landing-dark .feature-card p {
  color: rgba(255, 255, 255, 0.7);
}

/* End-to-End Automation Box - Full Width */
.landing-dark .automation-box {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 4px;
  padding: 3rem 2rem;
  position: relative;
  z-index: 1;
}

.landing-dark .automation-step-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.landing-dark .automation-step-icon:hover {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.5);
  transform: translateY(-2px);
}

.landing-dark .automation-team-tag {
  padding: 0.5rem 1rem;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.2s ease;
}

.landing-dark .automation-team-tag:hover {
  background: rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.4);
}

/* Scroll-triggered animations for feature cards - unique per card */

/* Card 0: Slide up */
.feature-card.scroll-animate-up {
  opacity: 0;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card.scroll-animate-up.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* Card 1: Slide from left */
.feature-card.scroll-animate-left {
  opacity: 0;
  -webkit-transform: translateX(-60px);
  transform: translateX(-60px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card.scroll-animate-left.is-visible {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/* Card 2: Slide from right */
.feature-card.scroll-animate-right {
  opacity: 0;
  -webkit-transform: translateX(60px);
  transform: translateX(60px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card.scroll-animate-right.is-visible {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/* Card 3: Scale up */
.feature-card.scroll-animate-scale {
  opacity: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card.scroll-animate-scale.is-visible {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* Card 4: Flip in */
.feature-card.scroll-animate-flip {
  opacity: 0;
  -webkit-transform: perspective(800px) rotateY(-25deg);
  transform: perspective(800px) rotateY(-25deg);
  -webkit-transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card.scroll-animate-flip.is-visible {
  opacity: 1;
  -webkit-transform: perspective(800px) rotateY(0);
  transform: perspective(800px) rotateY(0);
}

/* Card 5: Zoom rotate */
.feature-card.scroll-animate-zoom {
  opacity: 0;
  -webkit-transform: scale(0.7) rotate(-5deg);
  transform: scale(0.7) rotate(-5deg);
  -webkit-transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card.scroll-animate-zoom.is-visible {
  opacity: 1;
  -webkit-transform: scale(1) rotate(0);
  transform: scale(1) rotate(0);
}

/* Generic scroll animations (for non-feature-card elements) */
.scroll-animate-right {
  opacity: 0;
  -webkit-transform: translateX(80px);
  transform: translateX(80px);
  /* Exit transition - faster, ease-in for accelerating out */
  -webkit-transition: opacity 0.35s ease-in, transform 0.35s ease-in;
  transition: opacity 0.35s ease-in, transform 0.35s ease-in;
}
.scroll-animate-right.is-visible {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  /* Enter transition - slower, ease-out for smooth entry */
  -webkit-transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate-scale {
  opacity: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-animate-scale.is-visible {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.landing-dark .feature-card:hover {
  background: var(--ld-surface-hover);
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px var(--ld-primary-glow);
}

.landing-dark .feature-card .feature-icon {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.landing-dark .feature-card h3 {
  color: var(--ld-text);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.landing-dark .feature-card p {
  color: var(--ld-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Contact Section - Dark Theme */
.landing-dark .contact-section {
  background: transparent;
  padding: 6rem 1.5rem;
}

.landing-dark .contact-section .section-header h2 {
  color: var(--ld-text);
}

.landing-dark .contact-section .section-header p {
  color: var(--ld-text-secondary);
}

.landing-dark .contact-section .font-semibold {
  color: var(--ld-text);
}

.landing-dark .contact-section .text-muted-foreground {
  color: var(--ld-text-muted);
}

.landing-dark .contact-section .feature-icon {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 4px;
}

.landing-dark .contact-section .contact-form {
  background: var(--ld-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--ld-glass-border);
  border-radius: 4px;
  box-shadow: none;
  position: relative;
  z-index: 20;
}

.landing-dark .contact-section .contact-form h3 {
  color: var(--ld-text);
}

.landing-dark .contact-section .contact-form p {
  color: var(--ld-text-muted);
}

.landing-dark .contact-section .bg-primary,
.landing-dark .contact-section .btn-primary {
  background: var(--ld-primary);
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 0 30px var(--ld-primary-glow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 20;
  cursor: pointer;
}

.landing-dark .contact-section .bg-primary:hover,
.landing-dark .contact-section .btn-primary:hover {
  background: var(--ld-primary-light);
  box-shadow: 0 0 40px var(--ld-primary-glow), 0 0 80px rgba(168, 85, 247, 0.15);
  transform: translateY(-2px);
}

/* CTA Section - Transparent background (feathers show through) */
.landing-dark .cta-section {
  background: transparent;
  padding: 6rem 1.5rem;
  position: relative;
  z-index: 1;
}

.landing-dark .cta-card {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 4px;
  padding: 4rem 3rem;
  box-shadow: 0 0 60px rgba(168, 85, 247, 0.1);
}

.landing-dark .cta-tag {
  padding: 0.5rem 1rem;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #a855f7;
  transition: all 0.2s ease;
}

.landing-dark .cta-tag:hover {
  background: rgba(168, 85, 247, 0.25);
  border-color: rgba(168, 85, 247, 0.5);
}

.landing-dark .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ld-primary);
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 1.25rem 3rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 0 40px var(--ld-primary-glow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.landing-dark .cta-button:hover {
  background: var(--ld-primary-light);
  box-shadow: 0 0 50px var(--ld-primary-glow), 0 0 100px rgba(168, 85, 247, 0.2);
  transform: translateY(-3px);
}

/* About Section - Dark Theme (background handled by .about-section) */
.landing-dark #about {
  position: relative;
}

.landing-dark #about h2 {
  color: var(--ld-text);
}

.landing-dark #about .text-primary {
  color: var(--ld-primary);
}

.landing-dark #about .prose {
  color: var(--ld-text-secondary);
}

.landing-dark #about .prose .font-semibold {
  color: var(--ld-text);
}

.landing-dark #about .bg-card {
  background: rgba(15, 10, 25, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.landing-dark #about .bg-card:hover {
  background: rgba(20, 12, 35, 0.8);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(168, 85, 247, 0.15);
}

.landing-dark #about .bg-card h3 {
  color: var(--ld-text);
}

.landing-dark #about .bg-card p {
  color: var(--ld-text-muted);
}

.landing-dark #about .bg-primary\/10 {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
}

/* About Section - Amorphous Animated Gradient */
@keyframes about-gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
    background-size: 200% 200%;
  }
  25% {
    background-position: 100% 50%;
    background-size: 200% 250%;
  }
  50% {
    background-position: 100% 100%;
    background-size: 250% 200%;
  }
  75% {
    background-position: 0% 100%;
    background-size: 200% 220%;
  }
}

@keyframes about-blob-1 {
  0%, 100% {
    transform: translate(0%, 0%) scale(1);
    opacity: 0.4;
  }
  33% {
    transform: translate(30%, -20%) scale(1.2);
    opacity: 0.5;
  }
  66% {
    transform: translate(-20%, 30%) scale(0.9);
    opacity: 0.35;
  }
}

@keyframes about-blob-2 {
  0%, 100% {
    transform: translate(0%, 0%) scale(1);
    opacity: 0.3;
  }
  33% {
    transform: translate(-40%, 20%) scale(1.1);
    opacity: 0.4;
  }
  66% {
    transform: translate(25%, -30%) scale(1.3);
    opacity: 0.35;
  }
}

.landing-dark .about-section {
  background: linear-gradient(
    135deg,
    #0a0a0a 0%,
    #120818 20%,
    #1a0a2e 40%,
    #0d0015 60%,
    #150820 80%,
    #0a0a0a 100%
  );
  background-size: 200% 200%;
  animation: about-gradient-shift 20s ease-in-out infinite;
  padding: 6rem 1.5rem;
  border-top: 1px solid rgba(168, 85, 247, 0.25);
  border-bottom: 1px solid rgba(168, 85, 247, 0.25);
  position: relative;
  overflow: hidden;
}

/* Animated blob overlays */
.landing-dark .about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    ellipse 40% 60% at 30% 40%,
    rgba(168, 85, 247, 0.12) 0%,
    transparent 50%
  );
  animation: about-blob-1 15s ease-in-out infinite;
  pointer-events: none;
}

.landing-dark .about-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    ellipse 50% 40% at 70% 60%,
    rgba(139, 92, 246, 0.1) 0%,
    transparent 50%
  );
  animation: about-blob-2 18s ease-in-out infinite;
  pointer-events: none;
}

/* Ensure content is above animated background */
.landing-dark .about-section > * {
  position: relative;
  z-index: 1;
}

/* About section buttons - match hero button styling */
.landing-dark .about-section .btn-primary {
  background: var(--ld-primary);
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 0 30px var(--ld-primary-glow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-dark .about-section .btn-primary:hover {
  background: var(--ld-primary-light);
  box-shadow: 0 0 40px var(--ld-primary-glow), 0 0 80px rgba(168, 85, 247, 0.15);
  transform: translateY(-2px);
}

.landing-dark #about .bg-muted\/50 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--ld-glass-border);
}

.landing-dark #about .bg-gradient-to-br {
  background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.1), rgba(168, 85, 247, 0.02));
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.landing-dark #about .bg-red-500\/10 {
  background: rgba(239, 68, 68, 0.1);
}

.landing-dark #about .bg-orange-500\/10 {
  background: rgba(249, 115, 22, 0.1);
}

.landing-dark #about .bg-yellow-500\/10 {
  background: rgba(234, 179, 8, 0.1);
}

.landing-dark #about .text-red-500 {
  color: #ef4444;
}

.landing-dark #about .text-orange-500 {
  color: #f97316;
}

.landing-dark #about .text-yellow-500 {
  color: #eab308;
}

.landing-dark #about .rounded-full.bg-card {
  background: var(--ld-surface);
}

.landing-dark #about h4 {
  color: var(--ld-text);
}

.landing-dark #about .text-sm {
  color: var(--ld-text-muted);
}

.landing-dark #about .text-2xl {
  color: var(--ld-primary);
}

.landing-dark #about .border-primary\/30 {
  border-color: rgba(168, 85, 247, 0.3);
}

/* Text Color Overrides for Dark Theme */
.landing-dark .text-foreground {
  color: var(--ld-text);
}

.landing-dark .text-muted-foreground {
  color: var(--ld-text-muted);
}

.landing-dark .text-primary {
  color: var(--ld-primary);
}

/* Border Color Override */
.landing-dark .border-border {
  border-color: var(--ld-border);
}

/* Label styling for dark theme */
.landing-dark .text-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ld-text-muted);
}

/* Purple glow effect */
.landing-dark .glow-purple {
  box-shadow: 0 0 20px var(--ld-primary-glow);
}

/* Animation override - disable pulse glow in dark theme for cleaner look */
.landing-dark .animate-pulse-glow {
  animation: none;
}

/* Float animation adjustment for dark theme */
.landing-dark .animate-float {
  animation: dark-float 4s ease-in-out infinite;
}

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

/* Animation delays for staggered cards */
.landing-dark .animation-delay-200 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.landing-dark .animation-delay-400 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

/* Feature card staggered transition delays - only apply when entering (is-visible) */
.feature-card-delay-0.is-visible {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.feature-card-delay-1.is-visible {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.feature-card-delay-2.is-visible {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.feature-card-delay-3.is-visible {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.feature-card-delay-4.is-visible {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.feature-card-delay-5.is-visible {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
/* No delay on exit - all cards exit immediately */
.feature-card-delay-0:not(.is-visible),
.feature-card-delay-1:not(.is-visible),
.feature-card-delay-2:not(.is-visible),
.feature-card-delay-3:not(.is-visible),
.feature-card-delay-4:not(.is-visible),
.feature-card-delay-5:not(.is-visible) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

/* Logo styling for dark theme */
.landing-dark .landing-hero img[alt="OptibitAI Logo"] {
  filter: drop-shadow(0 0 30px var(--ld-primary-glow)) drop-shadow(0 0 60px rgba(168, 85, 247, 0.1));
  transition: filter 0.3s ease;
}

.landing-dark .landing-hero img[alt="OptibitAI Logo"]:hover {
  filter: drop-shadow(0 0 40px var(--ld-primary-glow)) drop-shadow(0 0 80px rgba(168, 85, 247, 0.2));
}

/* Icon styling in dark theme */
.landing-dark .text-primary svg,
.landing-dark .feature-icon svg {
  color: var(--ld-primary);
}

/* ============================================================================
   ENHANCED ANIMATIONS FOR DARK THEME
   ============================================================================ */

/* Hover lift with purple glow for dark theme */
.landing-dark .hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(168, 85, 247, 0.15);
}

/* Hover glow enhanced for dark theme */
.landing-dark .hover-glow:hover {
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.25), 0 0 80px rgba(168, 85, 247, 0.1);
}

/* Glow pulse animation for text */
.landing-dark .animate-glow-pulse {
  animation: glowPulse 3s ease-in-out infinite;
}

/* Feature cards enhanced hover in dark theme - use specific transitions to not conflict with animations */
.landing-dark .feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 40px rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.3);
}

/* Breathing icon containers */
.landing-dark .feature-icon.animate-breathe,
.landing-dark .animate-breathe {
  animation: breathe 4s ease-in-out infinite;
}

/* Float rotate for icons */
.landing-dark .animate-float-rotate {
  -webkit-animation: floatRotate 6s ease-in-out infinite;
  animation: floatRotate 6s ease-in-out infinite;
}

/* Wave animation for icons */
.landing-dark .animate-wave {
  animation: wave 2s ease-in-out infinite;
  transform-origin: 70% 70%;
  display: inline-block;
}


/* Smooth reveal for sections */
.landing-dark section {
  overflow: hidden;
}

/* Logo glow animation */
.landing-dark .animate-breathe img,
.landing-dark img.animate-breathe {
  animation: logoBreath 4s ease-in-out infinite;
}

@keyframes logoBreath {
  0%, 100% {
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.15)) drop-shadow(0 0 60px rgba(168, 85, 247, 0.08));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.25)) drop-shadow(0 0 80px rgba(168, 85, 247, 0.12));
    transform: scale(1.02);
  }
}

/* Button hover enhanced */
.landing-dark .btn:hover,
.landing-dark button:hover {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Mission/Vision cards enhanced hover */
.landing-dark #about .bg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(168, 85, 247, 0.12);
}

/* Contact form card glow */
.landing-dark .contact-form:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 40px rgba(168, 85, 247, 0.15);
}

/* Responsive adjustments for dark theme */
@media (max-width: 768px) {
  .landing-dark .landing-hero {
    padding: 6rem 1.5rem 4rem;
  }

  .landing-dark .landing-hero h1 {
    font-size: 2.25rem;
  }

  .landing-dark .landing-hero p {
    font-size: 1rem;
  }

  .landing-dark .features-section,
  .landing-dark .contact-section {
    padding: 4rem 1.5rem;
  }

  .landing-dark .feature-card {
    padding: 2rem 1.5rem;
  }

}

@media (max-width: 480px) {
  .landing-dark .landing-hero {
    padding: 5rem 1rem 3rem;
  }

  .landing-dark .landing-hero h1 {
    font-size: 1.875rem;
  }

  .landing-dark .hero-cta .btn-primary {
    padding: 0.875rem 2rem;
    font-size: 0.6875rem;
  }
}

/* Custom scrollbar for dark theme */
.landing-dark::-webkit-scrollbar {
  width: 8px;
}

.landing-dark::-webkit-scrollbar-track {
  background: var(--ld-bg);
}

.landing-dark::-webkit-scrollbar-thumb {
  background: rgba(168, 85, 247, 0.3);
  border-radius: 4px;
}

.landing-dark::-webkit-scrollbar-thumb:hover {
  background: rgba(168, 85, 247, 0.5);
}

/* Smooth scroll behavior */
.landing-dark {
  scroll-behavior: smooth;
}

/* Section divider accent */
.landing-dark section {
  position: relative;
}

/* Ensure content is above canvas background */
.landing-dark {
  position: relative;
  overflow-x: hidden;
}

.landing-dark > *:not([style*="position: fixed"]) {
  position: relative;
  z-index: 1;
}

/* Ensure buttons are always clickable */
.landing-dark button,
.landing-dark a,
.landing-dark input,
.landing-dark [role="button"] {
  position: relative;
  z-index: 20;
  cursor: pointer;
}

/* Ensure all sections create proper stacking context */
.landing-dark section,
.landing-dark .landing-hero,
.landing-dark .features-section,
.landing-dark .contact-section,
.landing-dark #about {
  position: relative;
  z-index: 1;
}