/* Tailwind CSS Pre-compiled Production Stylesheet for Juanqui */
/* Zero dependencies on Node.js and no runtime CDN warning */

:root {
  --color-primary: #00f2ff;
  --color-accent-lavender: #b794f4;
  --color-background-dark: #0a0f1e;
  --color-card-dark: rgba(16, 24, 45, 0.6);
}

/* Base reset & typography */
*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.1);
}

::selection {
  background-color: rgba(0, 242, 255, 0.3);
  color: inherit;
}

.font-display {
  font-family: "Space Grotesk", sans-serif;
}

.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Display & Layout */
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-grow { flex-grow: 1; }
.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }

/* Grid columns */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

/* Gaps */
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.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; }
.gap-16 { gap: 4rem; }

/* Spacing Helpers */
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }
.space-y-12 > :not([hidden]) ~ :not([hidden]) { margin-top: 3rem; }

/* Container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Margins */
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.ml-1 { margin-left: 0.25rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.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; }
.mb-32 { margin-bottom: 8rem; }

/* Paddings */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }
.p-\[2px\] { padding: 2px; }

.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; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.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-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }

.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-20 { padding-top: 5rem; }
.pt-32 { padding-top: 8rem; }

.pb-12 { padding-bottom: 3rem; }
.pb-24 { padding-bottom: 6rem; }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.inset-0 { inset: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }

.top-24 { top: 6rem; }
.top-\[20\%\] { top: 20%; }
.top-\[30\%\] { top: 30%; }
.top-\[-10\%\] { top: -10%; }
.left-4 { left: 1rem; }
.right-4 { right: 1rem; }
.left-\[-10\%\] { left: -10%; }
.right-\[-10\%\] { right: -10%; }
.bottom-\[-10\%\] { bottom: -10%; }

.-top-24 { top: -6rem; }
.-top-40 { top: -10rem; }
.-right-6 { right: -1.5rem; }
.-right-20 { right: -5rem; }
.-right-24 { right: -6rem; }
.-bottom-6 { bottom: -1.5rem; }
.-bottom-10 { bottom: -2.5rem; }
.-bottom-24 { bottom: -6rem; }
.-left-20 { left: -5rem; }
.-left-24 { left: -6rem; }
.-left-10 { left: -2.5rem; }

.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.-z-10 { z-index: -10; }

.translate-x-1\/2 { transform: translateX(50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }

/* Width & Height */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-1 { width: 0.25rem; }
.w-2 { width: 0.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-32 { width: 8rem; }
.w-40 { width: 10rem; }
.w-64 { width: 16rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.w-3\/4 { width: 75%; }
.w-\[50\%\] { width: 50%; }
.w-\[66\%\] { width: 66%; }
.w-\[300px\] { width: 300px; }
.w-\[400px\] { width: 400px; }
.w-\[500px\] { width: 500px; }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-\[50\%\] { height: 50%; }
.h-\[400px\] { height: 400px; }
.h-\[500px\] { height: 500px; }

.size-4 { width: 1rem; height: 1rem; }
.size-5 { width: 1.25rem; height: 1.25rem; }
.size-6 { width: 1.5rem; height: 1.5rem; }
.size-7 { width: 1.75rem; height: 1.75rem; }
.size-8 { width: 2rem; height: 2rem; }
.size-10 { width: 2.5rem; height: 2.5rem; }
.size-12 { width: 3rem; height: 3rem; }
.size-32 { width: 8rem; height: 8rem; }

.min-h-screen { min-height: 100vh; }
.min-h-\[85vh\] { min-height: 85vh; }

.max-w-xs { max-width: 20rem; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

.aspect-square { aspect-ratio: 1 / 1; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }

/* Typography */
.text-\[10px\] { font-size: 10px; line-height: 14px; }
.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; }
.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; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.uppercase { text-transform: uppercase; }

.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.whitespace-nowrap { white-space: nowrap; }

/* Text Colors */
.text-white { color: #ffffff; }
.text-slate-100 { color: #f1f5f9; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-green-400 { color: #4ade80; }
.text-primary { color: #00f2ff; }
.text-accent-lavender { color: #b794f4; }
.text-background-dark { color: #0a0f1e; }
.text-transparent { color: transparent; }

.hover\:text-white:hover { color: #ffffff; }
.hover\:text-primary:hover { color: #00f2ff; }
.hover\:underline:hover { text-decoration-line: underline; }

/* Gradients & Background Clips */
.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-primary { --tw-gradient-from: #00f2ff; --tw-gradient-to: rgba(0, 242, 255, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-primary\/10 { --tw-gradient-from: rgba(0, 242, 255, 0.1); --tw-gradient-to: rgba(0, 242, 255, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-slate-100 { --tw-gradient-from: #f1f5f9; --tw-gradient-to: rgba(241, 245, 249, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-background-dark { --tw-gradient-from: #0a0f1e; --tw-gradient-to: rgba(10, 15, 30, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-background-dark\/80 { --tw-gradient-to: rgba(10, 15, 30, 0); --tw-gradient-stops: var(--tw-gradient-from), rgba(10, 15, 30, 0.8), var(--tw-gradient-to); }
.to-accent-lavender { --tw-gradient-to: #b794f4; }
.to-cyan-400 { --tw-gradient-to: #22d3ee; }
.to-slate-500 { --tw-gradient-to: #64748b; }
.to-transparent { --tw-gradient-to: transparent; }

/* Background Colors */
.bg-background-dark { background-color: #0a0f1e; }
.bg-background-dark\/50 { background-color: rgba(10, 15, 30, 0.5); }
.bg-background-dark\/80 { background-color: rgba(10, 15, 30, 0.8); }

.bg-primary { background-color: #00f2ff; }
.bg-primary\/5 { background-color: rgba(0, 242, 255, 0.05); }
.bg-primary\/10 { background-color: rgba(0, 242, 255, 0.1); }
.bg-primary\/20 { background-color: rgba(0, 242, 255, 0.2); }
.bg-primary\/30 { background-color: rgba(0, 242, 255, 0.3); }

.bg-accent-lavender { background-color: #b794f4; }
.bg-accent-lavender\/5 { background-color: rgba(183, 148, 244, 0.05); }
.bg-accent-lavender\/10 { background-color: rgba(183, 148, 244, 0.1); }
.bg-accent-lavender\/20 { background-color: rgba(183, 148, 244, 0.2); }
.bg-accent-lavender\/30 { background-color: rgba(183, 148, 244, 0.3); }

.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-green-500\/10 { background-color: rgba(34, 197, 94, 0.1); }

.hover\:bg-primary\/90:hover { background-color: rgba(0, 242, 255, 0.9); }
.hover\:bg-primary\/5:hover { background-color: rgba(0, 242, 255, 0.05); }
.hover\:bg-white\/5:hover { background-color: rgba(255, 255, 255, 0.05); }
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }
.hover\:bg-transparent:hover { background-color: transparent; }

/* Borders & Radius */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-r { border-right-width: 1px; }
.border-l-2 { border-left-width: 2px; }
.border-l-4 { border-left-width: 4px; }
.border-t-4 { border-top-width: 4px; }

.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }

.border-primary { border-color: #00f2ff; }
.border-primary\/20 { border-color: rgba(0, 242, 255, 0.2); }
.border-primary\/30 { border-color: rgba(0, 242, 255, 0.3); }
.border-primary\/40 { border-color: rgba(0, 242, 255, 0.4); }
.border-primary\/50 { border-color: rgba(0, 242, 255, 0.5); }

.border-l-primary { border-left-color: #00f2ff; }
.border-l-primary\/50 { border-left-color: rgba(0, 242, 255, 0.5); }
.border-t-accent-lavender { border-top-color: #b794f4; }
.border-accent-lavender\/20 { border-color: rgba(183, 148, 244, 0.2); }

.hover\:border-primary:hover { border-color: #00f2ff; }
.hover\:border-primary\/20:hover { border-color: rgba(0, 242, 255, 0.2); }
.hover\:border-primary\/30:hover { border-color: rgba(0, 242, 255, 0.3); }
.hover\:border-primary\/40:hover { border-color: rgba(0, 242, 255, 0.4); }
.hover\:border-white\/10:hover { border-color: rgba(255, 255, 255, 0.1); }
.hover\:border-white\/40:hover { border-color: rgba(255, 255, 255, 0.4); }

.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-\[3rem\] { border-radius: 3rem; }
.rounded-full { border-radius: 9999px; }

/* Filters & Effects */
.blur-3xl { filter: blur(64px); }
.blur-\[50px\] { filter: blur(50px); }
.blur-\[80px\] { filter: blur(80px); }
.blur-\[100px\] { filter: blur(100px); }
.blur-\[120px\] { filter: blur(120px); }

.backdrop-blur-xl {
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.opacity-30 { opacity: 0.3; }
.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.pointer-events-none { pointer-events: none; }
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }
.resize-none { resize: none; }

/* Glassmorphism Classes */
.glass {
  background-color: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
  background-color: rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-cyan {
  text-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
}

/* Shadows */
.shadow-\[0_0_15px_rgba\(0\,242\,255\,0\.3\)\] { box-shadow: 0 0 15px rgba(0, 242, 255, 0.3); }
.shadow-\[0_0_20px_rgba\(0\,242\,255\,0\.1\)\] { box-shadow: 0 0 20px rgba(0, 242, 255, 0.1); }
.shadow-\[0_0_20px_rgba\(0\,242\,255\,0\.4\)\] { box-shadow: 0 0 20px rgba(0, 242, 255, 0.4); }
.shadow-\[0_0_30px_rgba\(0\,242\,255\,0\.2\)\] { box-shadow: 0 0 30px rgba(0, 242, 255, 0.2); }
.shadow-\[0_0_30px_rgba\(0\,242\,255\,0\.4\)\] { box-shadow: 0 0 30px rgba(0, 242, 255, 0.4); }
.hover\:shadow-\[0_0_20px_rgba\(0\,242\,255\,0\.4\)\]:hover { box-shadow: 0 0 20px rgba(0, 242, 255, 0.4); }
.hover\:shadow-\[0_0_30px_rgba\(0\,242\,255\,0\.4\)\]:hover { box-shadow: 0 0 30px rgba(0, 242, 255, 0.4); }
.hover\:shadow-\[0_0_40px_rgba\(0\,242\,255\,0\.4\)\]:hover { box-shadow: 0 0 40px rgba(0, 242, 255, 0.4); }

/* Form inputs & Focus */
.placeholder\:text-slate-600::placeholder { color: #475569; }
.focus\:border-primary:focus { border-color: #00f2ff; }
.focus\:ring-1:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 1px #00f2ff;
}
.focus\:ring-primary:focus {
  --tw-ring-color: #00f2ff;
}

/* Transitions & Transforms */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.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-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-300 { transition-duration: 300ms; }
.duration-700 { transition-duration: 700ms; }

.transform { transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1)); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.active\:scale-\[0\.98\]:active { transform: scale(0.98); }

/* Group Hover States */
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:opacity-70 { opacity: 0.7; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:text-primary { color: #00f2ff; }
.group:hover .group-hover\:text-white { color: #ffffff; }
.group:hover .group-hover\:text-background-dark { color: #0a0f1e; }
.group:hover .group-hover\:bg-primary\/10 { background-color: rgba(0, 242, 255, 0.1); }
.group:hover .group-hover\:bg-primary\/20 { background-color: rgba(0, 242, 255, 0.2); }
.group:hover .group-hover\:border-primary { border-color: #00f2ff; }
.group:hover .group-hover\:border-primary\/40 { border-color: rgba(0, 242, 255, 0.4); }
.group:hover .group-hover\:border-white\/40 { border-color: rgba(255, 255, 255, 0.4); }

/* Animations & Keyframes */
@keyframes pulse {
  50% { opacity: .5; }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}
.animate-marquee {
  animation: marquee 30s linear infinite;
}

@keyframes marquee2 {
  0% { transform: translateX(100%); }
  100% { transform: translateX(0%); }
}
.animate-marquee2 {
  animation: marquee2 30s linear infinite;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-\[fadeIn_0\.3s_ease-out\] { animation: fadeIn 0.3s ease-out forwards; }
.animate-\[fadeIn_0\.4s_ease-out\] { animation: fadeIn 0.4s ease-out forwards; }
.animate-\[fadeIn_0\.5s_ease-out\] { animation: fadeIn 0.5s ease-out forwards; }
.animate-\[fadeIn_0\.5s_ease-out_0\.2s\] { animation: fadeIn 0.5s ease-out 0.2s forwards; }
.animate-\[fadeIn_0\.6s_ease-out\] { animation: fadeIn 0.6s ease-out forwards; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-\[fadeInUp_0\.5s_ease-out\] { animation: fadeInUp 0.5s ease-out forwards; }

/* Responsive Breakpoints */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .hidden.md\:flex { display: flex; }

  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

  .md\:col-span-1 { grid-column: span 1 / span 1; }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:col-span-4 { grid-column: span 4 / span 4; }
  .md\:col-span-6 { grid-column: span 6 / span 6; }
  .md\:col-span-8 { grid-column: span 8 / span 8; }
  .md\:col-span-12 { grid-column: span 12 / span 12; }
  .md\:row-span-2 { grid-row: span 2 / span 2; }

  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }

  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }

  .md\:p-12 { padding: 3rem; }
  .md\:p-16 { padding: 4rem; }

  .md\:w-2 { width: 0.5rem; }
  .md\:w-\[450px\] { width: 450px; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .hidden.lg\:block { display: block; }

  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }

  .lg\:text-8xl { font-size: 6rem; line-height: 1; }
}
