* {
  font-family: "Inter", sans-serif;
  font-display: swap;
}

.font-mono {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
}

.gradient-bg-1 {
  background: linear-gradient(135deg, #667eea 0%, #10b981 100%);
}

.gradient-bg-2 {
  background: linear-gradient(135deg, #06d6a0 0%, #118ab2 100%);
}

.gradient-bg-3 {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-bg-primary {
  background: linear-gradient(135deg, #667eea 0%, #10b981 50%, #06d6a0 100%);
}

.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #10b981 50%, #06d6a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1))
    drop-shadow(0 4px 8px rgba(102, 126, 234, 0.15));
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-card-dark {
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

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

.glow-on-hover {
  transition: all 0.3s ease;
}

.glow-on-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.parallax-bg {
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(102, 126, 234, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(6, 214, 160, 0.1) 0%,
      transparent 50%
    );
}

.text-shadow {
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-pattern {
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
}

.service-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.morphing-bg {
  background: linear-gradient(-45deg, #1e293b, #0f172a, #020617, #1e293b);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

.subtle-gradient-overlay {
  background: linear-gradient(
    -45deg,
    rgba(102, 126, 234, 0.1),
    rgba(16, 185, 129, 0.1),
    rgba(6, 214, 160, 0.1),
    rgba(79, 172, 254, 0.1)
  );
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

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

.pulse-ring {
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.stagger-animation {
  animation: stagger 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes stagger {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stagger-1 {
  animation-delay: 0.1s;
}
.stagger-2 {
  animation-delay: 0.2s;
}
.stagger-3 {
  animation-delay: 0.3s;
}
.stagger-4 {
  animation-delay: 0.4s;
}

.custom-form-input {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.custom-form-input:focus {
  background: rgba(255, 255, 255, 1);
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.typing-animation {
  overflow: hidden;
  white-space: nowrap;
  animation: typing 4s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: white;
  }
}

.logo-animated-gradient {
  background: linear-gradient(
    90deg,
    #10b981 0%,
    #34d399 20%,
    #06d6a0 40%,
    #3b82f6 60%,
    #10b981 80%,
    #34d399 100%,
    #06d6a0 120%,
    #3b82f6 140%,
    #10b981 160%,
    #34d399 180%,
    #10b981 200%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logo-gradient-move 8s linear infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1))
    drop-shadow(0 4px 8px rgba(102, 126, 234, 0.15));
}

@keyframes logo-gradient-move {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Comprehensive CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  font-weight: 400;
  background-color: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}

p, blockquote, pre, address, hr, table, fieldset, figure {
  margin: 0;
  padding: 0;
}

ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

img, svg {
  flex-shrink: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, button, textarea, select {
  font: inherit;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Button and form element styles */
button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
}

button:focus {
  outline: none;
}

input, textarea, select {
  font: inherit;
}

/* Layout */
.flex { display: flex; }
.grid { display: grid; }
.block { display: block; }
.inline { display: inline; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

/* Flex utilities */
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1; }

/* Grid utilities */
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }

/* Positioning */
.top-0 { top: 0; }
.top-20 { top: 5rem; }
.top-1\/4 { top: 25%; }
.top-1\/3 { top: 33.333333%; }
.top-2\/3 { top: 66.666667%; }
.-top-10 { top: -2.5rem; }
.-top-20 { top: -5rem; }
.left-0 { left: 0; }
.left-10 { left: 2.5rem; }
.left-20 { left: 5rem; }
.left-1\/3 { left: 33.333333%; }
.left-1\/4 { left: 25%; }
.-left-10 { left: -2.5rem; }
.-left-20 { left: -5rem; }
.right-0 { right: 0; }
.right-10 { right: 2.5rem; }
.right-20 { right: 5rem; }
.right-1\/3 { right: 33.333333%; }
.right-1\/4 { right: 25%; }
.-right-10 { right: -2.5rem; }
.-right-20 { right: -5rem; }
.bottom-0 { bottom: 0; }
.bottom-20 { bottom: 5rem; }
.bottom-1\/4 { bottom: 25%; }
.-bottom-10 { bottom: -2.5rem; }
.-bottom-20 { bottom: -5rem; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* Z-index */
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Width & Height */
.w-full { width: 100%; }
.w-1 { width: 0.25rem; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-40 { width: 10rem; }
.w-72 { width: 18rem; }
.w-96 { width: 24rem; }
.w-1\.5 { width: 0.375rem; }
.w-3\/4 { width: 75%; }
.w-1\/2 { width: 50%; }
.w-1\/4 { width: 25%; }

.h-1 { height: 0.25rem; }
.h-1\.5 { height: 0.375rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-40 { height: 10rem; }
.h-72 { height: 18rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }

/* Max width */
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-sm { max-width: 24rem; }
.max-w-xs { max-width: 20rem; }

/* Spacing */
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.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; }
.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-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.py-40 { padding-top: 10rem; padding-bottom: 10rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-40 { padding-top: 10rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-32 { padding-bottom: 8rem; }
.pr-8 { padding-right: 2rem; }

.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-24 { margin-bottom: 6rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-4 { margin-left: 1rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-6 { margin-right: 1.5rem; }

/* Gaps */
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }

/* Space between */
.space-x-1 > * + * { margin-left: 0.25rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }

/* Colors */
.text-white { color: white; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-900 { color: #111827; }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-white\/40 { color: rgba(255, 255, 255, 0.4); }
.text-emerald-100 { color: #d1fae5; }
.text-emerald-200 { color: #a7f3d0; }
.text-emerald-400 { color: #34d399; }
.text-emerald-500 { color: #10b981; }
.text-emerald-600 { color: #059669; }
.text-blue-100 { color: #dbeafe; }
.text-teal-200 { color: #99f6e4; }
.text-green-400 { color: #4ade80; }
.text-blue-400 { color: #60a5fa; }
.text-purple-400 { color: #a78bfa; }
.text-pink-400 { color: #f472b6; }
.text-red-400 { color: #f87171; }

/* Background colors */
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-600 { background-color: #4b5563; }
.bg-gray-700 { background-color: #374151; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-900 { background-color: #111827; }
.bg-white { background-color: white; }
.bg-emerald-400 { background-color: #34d399; }
.bg-emerald-500 { background-color: #10b981; }
.bg-emerald-600 { background-color: #059669; }
.bg-blue-400 { background-color: #60a5fa; }
.bg-blue-500 { background-color: #3b82f6; }
.bg-teal-400 { background-color: #2dd4bf; }
.bg-teal-500 { background-color: #14b8a6; }
.bg-teal-600 { background-color: #0d9488; }
.bg-cyan-400 { background-color: #22d3ee; }
.bg-yellow-400 { background-color: #facc15; }
.bg-red-400 { background-color: #f87171; }
.bg-green-400 { background-color: #4ade80; }
.bg-green-500 { background-color: #22c55e; }

/* Background opacity */
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-gray-900\/80 { background-color: rgba(17, 24, 39, 0.8); }
.bg-gray-900\/90 { background-color: rgba(17, 24, 39, 0.9); }
.bg-gray-700\/50 { background-color: rgba(55, 65, 81, 0.5); }
.bg-gray-800\/50 { background-color: rgba(31, 41, 55, 0.5); }
.bg-emerald-500\/20 { background-color: rgba(16, 185, 129, 0.2); }
.bg-blue-500\/20 { background-color: rgba(59, 130, 246, 0.2); }
.bg-blue-500\/5 { background-color: rgba(59, 130, 246, 0.05); }
.bg-emerald-500\/5 { background-color: rgba(16, 185, 129, 0.05); }
.bg-emerald-900\/10 { background-color: rgba(6, 78, 59, 0.1); }
.bg-teal-900\/10 { background-color: rgba(19, 78, 74, 0.1); }
.bg-emerald-600\/20 { background-color: rgba(5, 150, 105, 0.2); }
.bg-teal-600\/20 { background-color: rgba(13, 148, 136, 0.2); }
.bg-blue-900\/8 { background-color: rgba(30, 58, 138, 0.08); }
.bg-emerald-900\/8 { background-color: rgba(6, 78, 59, 0.08); }
.bg-blue-900\/6 { background-color: rgba(30, 58, 138, 0.06); }
.bg-emerald-900\/6 { background-color: rgba(6, 78, 59, 0.06); }
.bg-emerald-500\/3 { background-color: rgba(16, 185, 129, 0.03); }
.bg-blue-500\/3 { background-color: rgba(59, 130, 246, 0.03); }

/* 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)); }

/* Specific gradient combinations */
.bg-gradient-to-r.from-emerald-600.to-teal-600 { 
  background-image: linear-gradient(to right, #059669, #0d9488); 
}
.bg-gradient-to-r.from-emerald-500.to-teal-500 { 
  background-image: linear-gradient(to right, #10b981, #14b8a6); 
}
.bg-gradient-to-r.from-blue-500.to-emerald-500 { 
  background-image: linear-gradient(to right, #3b82f6, #10b981); 
}
.bg-gradient-to-r.from-emerald-600\/20.to-teal-600\/20 { 
  background-image: linear-gradient(to right, rgba(5, 150, 105, 0.2), rgba(13, 148, 136, 0.2)); 
}
.bg-gradient-to-r.from-emerald-900\/10.to-teal-900\/10 { 
  background-image: linear-gradient(to right, rgba(6, 78, 59, 0.1), rgba(19, 78, 74, 0.1)); 
}
.bg-gradient-to-br.from-slate-900.via-gray-900.to-slate-900 {
  background-image: linear-gradient(to bottom right, #0f172a, #111827, #0f172a);
}
.bg-gradient-to-br.from-slate-50.via-white.to-slate-50 {
  background-image: linear-gradient(to bottom right, #f8fafc, #ffffff, #f8fafc);
}
.bg-gradient-to-br.from-white.via-slate-50.to-white {
  background-image: linear-gradient(to bottom right, #ffffff, #f8fafc, #ffffff);
}
.bg-gradient-to-br.from-gray-900.via-gray-800.to-gray-900 {
  background-image: linear-gradient(to bottom right, #111827, #1f2937, #111827);
}
.bg-gradient-to-br.from-gray-900.via-gray-800.to-black {
  background-image: linear-gradient(to bottom right, #111827, #1f2937, #000000);
}
.bg-gradient-to-r.from-gray-900.via-gray-800.to-gray-900 {
  background-image: linear-gradient(to right, #111827, #1f2937, #111827);
}

/* Button specific gradient fixes */
button.bg-gradient-to-r.from-emerald-500.to-teal-500,
.w-full.bg-gradient-to-r.from-emerald-500.to-teal-500 {
  background-image: linear-gradient(to right, #10b981, #14b8a6) !important;
}

a.bg-gradient-to-r.from-emerald-600.to-teal-600 {
  background-image: linear-gradient(to right, #059669, #0d9488) !important;
}

/* Glass card button effects */
.glass-card.hover\:bg-white\/20:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Ensure button background combinations work */
.w-full.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.w-full.bg-white\/10.hover\:bg-white\/20:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Navigation button styles */
.gradient-bg-primary.text-white.px-6.py-3.rounded-xl {
  background: linear-gradient(135deg, #667eea 0%, #10b981 50%, #06d6a0 100%);
}

/* Glass card combinations */
.glass-card.text-white.px-8.py-4 {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Ensure emerald border combinations work */
.mb-6.p-4.bg-white\/5.rounded-lg.border-l-4.border-emerald-400 {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #34d399;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
}

/* Decorative elements positioning fix */
.absolute.-top-10.-right-10.w-40.h-40.rounded-full {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 9999px;
}

.absolute.-top-10.-left-10.w-40.h-40.rounded-full {
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 9999px;
}

/* Ensure parent containers have proper relative positioning */
.service-card.group.relative {
  position: relative;
}

.glass-card-dark.group.relative {
  position: relative;
}
.from-slate-900 { --tw-gradient-from: #0f172a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 23, 42, 0)); }
.via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); }
.to-slate-900 { --tw-gradient-to: #0f172a; }
.from-slate-50 { --tw-gradient-from: #f8fafc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 250, 252, 0)); }
.via-white { --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); }
.to-slate-50 { --tw-gradient-to: #f8fafc; }
.from-white { --tw-gradient-from: #ffffff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); }
.to-white { --tw-gradient-to: #ffffff; }
.from-gray-900 { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); }
.via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); }
.to-gray-900 { --tw-gradient-to: #111827; }
.to-black { --tw-gradient-to: #000000; }
.from-emerald-600 { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); }
.to-teal-600 { --tw-gradient-to: #0d9488; }
.from-emerald-500 { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); }
.to-teal-500 { --tw-gradient-to: #14b8a6; }
.from-blue-500 { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); }
.to-emerald-500 { --tw-gradient-to: #10b981; }
.to-purple-500 { --tw-gradient-to: #8b5cf6; }
.from-green-500 { --tw-gradient-from: #22c55e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 197, 94, 0)); }
.to-green-600 { --tw-gradient-to: #16a34a; }
.from-blue-500 { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); }
.to-blue-600 { --tw-gradient-to: #2563eb; }
.from-purple-500 { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); }
.to-purple-600 { --tw-gradient-to: #7c3aed; }
.from-pink-500 { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); }
.to-pink-600 { --tw-gradient-to: #db2777; }

/* Typography */
.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-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

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

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

.text-center { text-align: center; }
.text-right { text-align: right; }

.italic { font-style: italic; }

/* Borders */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-l-4 { border-left-width: 4px; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-gray-700 { border-color: #374151; }
.border-emerald-400 { border-color: #34d399; }
.border-emerald-400\/30 { border-color: rgba(52, 211, 153, 0.3); }
.border-blue-500\/10 { border-color: rgba(59, 130, 246, 0.1); }

/* Border radius */
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-tl-none { border-top-left-radius: 0; }
.rounded-tr-none { border-top-right-radius: 0; }

/* Opacity */
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-25 { opacity: 0.25; }
.opacity-30 { opacity: 0.3; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.resize-none { resize: none; }

/* Transform */
.scale-105:hover { transform: scale(1.05); }
.scale-110:hover { transform: scale(1.1); }
.translate-x-1:hover { transform: translateX(0.25rem); }
.translate-x-2:hover { transform: translateX(0.5rem); }
.-translate-x-2:hover { transform: translateX(-0.5rem); }

/* Shadow */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

/* Filters */
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.filter { filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); }
.blur-3xl { --tw-blur: blur(64px); filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); }

/* Transitions */
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.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; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

/* Animations */
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-bounce { animation: bounce 1s infinite; }

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

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

/* Form controls */
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }

/* Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }

/* Disabled */
.disabled\:opacity-50:disabled { opacity: 0.5; }
.disabled\:cursor-not-allowed:disabled { cursor: not-allowed; }

/* Group hover states */
.group:hover .group-hover\:opacity-20 { opacity: 0.2; }
.group:hover .group-hover\:text-emerald-200 { color: #a7f3d0; }
.group:hover .group-hover\:text-teal-200 { color: #99f6e4; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }

/* Hover states */
.hover\:text-white:hover { color: white; }
.hover\:text-white:hover { color: white; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.hover\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2); }

/* Additional specific classes */
.w-1\.5 { width: 0.375rem; }
.h-1\.5 { height: 0.375rem; }

/* Missing body styles */
.bg-gray-50.text-gray-900 {
  background-color: #f9fafb;
  color: #111827;
}




/* Missing animation delay styles */
[style*="animation-delay: -2s"] { animation-delay: -2s !important; }
[style*="animation-delay: -4s"] { animation-delay: -4s !important; }
[style*="animation-delay: -1s"] { animation-delay: -1s !important; }
[style*="animation-delay: -3s"] { animation-delay: -3s !important; }
[style*="animation-delay: 0.1s"] { animation-delay: 0.1s !important; }
[style*="animation-delay: 0.2s"] { animation-delay: 0.2s !important; }

/* Responsive design */
@media (min-width: 640px) {
  .sm\:px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:mb-0 { margin-bottom: 0; }
  .md\:flex-row { flex-direction: row; }
}

@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:pr-8 { padding-right: 2rem; }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
}

/* Additional missing utility classes */
/* More width classes */
.w-10 { width: 2.5rem; }
.w-14 { width: 3.5rem; }
.w-18 { width: 4.5rem; }

/* More height classes */
.h-10 { height: 2.5rem; }
.h-14 { height: 3.5rem; }
.h-18 { height: 4.5rem; }

/* Additional padding classes */
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-5 { padding: 1.25rem; }
.p-7 { padding: 1.75rem; }
.p-9 { padding: 2.25rem; }
.p-11 { padding: 2.75rem; }

.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-7 { padding-top: 1.75rem; padding-bottom: 1.75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.py-36 { padding-top: 9rem; padding-bottom: 9rem; }
.py-40 { padding-top: 10rem; padding-bottom: 10rem; }

/* Additional margin classes */
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 0.75rem; }
.m-4 { margin: 1rem; }
.m-5 { margin: 1.25rem; }
.m-6 { margin: 1.5rem; }
.m-7 { margin: 1.75rem; }
.m-8 { margin: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.ml-1 { margin-left: 0.25rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-5 { margin-left: 1.25rem; }
.ml-6 { margin-left: 1.5rem; }
.ml-8 { margin-left: 2rem; }

.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-4 { margin-right: 1rem; }
.mr-5 { margin-right: 1.25rem; }
.mr-8 { margin-right: 2rem; }

/* Fix box-sizing for all elements */
*, *::before, *::after {
  box-sizing: border-box !important;
}

/* Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
