/* CSS Variables based on Tailwind config */
:root {
    --background: hsl(240, 20%, 99%);
    --foreground: hsl(240, 10%, 10%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(240, 10%, 10%);
    --popover: hsl(0, 0%, 100%);
    --popover-foreground: hsl(240, 10%, 10%);
    --primary: hsl(262, 83%, 58%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(220, 70%, 97%);
    --secondary-foreground: hsl(240, 10%, 10%);
    --muted: hsl(220, 14%, 96%);
    --muted-foreground: hsl(240, 5%, 45%);
    --accent: hsl(262, 83%, 95%);
    --accent-foreground: hsl(262, 83%, 38%);
    --destructive: hsl(0, 84.2%, 60.2%);
    --destructive-foreground: hsl(0, 0%, 100%);
    --border: hsl(240, 12%, 92%);
    --input: hsl(240, 12%, 92%);
    --ring: hsl(262, 83%, 58%);
    --radius: 0.75rem;
    --gradient-primary: linear-gradient(135deg, hsl(262, 83%, 58%), hsl(280, 90%, 65%));
    --gradient-card: linear-gradient(135deg, hsl(262, 83%, 98%), hsl(280, 70%, 99%));
    --shadow-glow: 0 10px 40px -10px hsl(262, 83%, 58%, 0.3);
}

.dark {
    --background: hsl(240, 20%, 8%);
    --foreground: hsl(0, 0%, 98%);
    --card: hsl(240, 15%, 12%);
    --card-foreground: hsl(0, 0%, 98%);
    --popover: hsl(240, 15%, 12%);
    --popover-foreground: hsl(0, 0%, 98%);
    --primary: hsl(262, 83%, 58%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(240, 15%, 15%);
    --secondary-foreground: hsl(0, 0%, 98%);
    --muted: hsl(240, 15%, 15%);
    --muted-foreground: hsl(240, 5%, 65%);
    --accent: hsl(262, 83%, 20%);
    --accent-foreground: hsl(262, 83%, 88%);
    --destructive: hsl(0, 62.8%, 50%);
    --destructive-foreground: hsl(0, 0%, 100%);
    --border: hsl(240, 15%, 20%);
    --input: hsl(240, 15%, 20%);
    --ring: hsl(262, 83%, 58%);
    --gradient-primary: linear-gradient(135deg, hsl(262, 83%, 58%), hsl(280, 90%, 65%));
    --gradient-card: linear-gradient(135deg, hsl(240, 15%, 15%), hsl(240, 20%, 18%));
    --shadow-glow: 0 10px 40px -10px hsl(262, 83%, 58%, 0.5);
}

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

body {
    font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
}

/* Utility classes */
.min-h-screen { min-height: 100vh; }
.bg-background { background-color: var(--background); }
.text-foreground { color: var(--foreground); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-card-foreground { color: var(--card-foreground); }
.text-accent-foreground { color: var(--accent-foreground); }
.decoration-none { text-decoration: none; }
.bg-primary { background-color: var(--primary); }
.bg-card { background-color: var(--card); }
.bg-accent { background: var(--accent); }
.bg-secondary-30 { background-color: hsl(220, 70%, 97%, 0.3); }
.bg-primary-10 { background-color: hsl(262, 83%, 58%, 0.1); }
.bg-primary-5 { background-color: hsl(262, 83%, 58%, 0.05); }
.bg-primary-20 { background-color: hsl(262, 83%, 58%, 0.2); }
.bg-white-10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white-20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-white-40 { background-color: rgba(255, 255, 255, 0.4); }
.bg-white-50 { background-color: rgba(255, 255, 255, 0.5); }
.bg-card-50 { background-color: hsl(0, 0%, 100%, 0.5); }
.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-to-br { background: linear-gradient(to bottom right, var(--background), hsl(220, 70%, 97%, 0.3)); }
.border { border: 1px solid var(--border); }
.border-border { border-color: var(--border); }
.border-primary { border-color: var(--primary); }
.border-primary-20 { border-color: hsl(262, 83%, 58%, 0.2); }
.border-white-20 { border-color: rgba(255, 255, 255, 0.2); }
.border-white-30 { border-color: rgba(255, 255, 255, 0.3); }
.border-border-50 { border-color: hsl(240, 12%, 92%, 0.5); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-2 { border-width: 2px; }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.backdrop-blur-2xl { backdrop-filter: blur(40px); }
.blur { filter: blur(1px); }
.blur-2xl { filter: blur(40px); }
.blur-3xl { filter: blur(64px); }
.drop-shadow-lg { filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1)); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-4 { left: 1rem; }
.right-4 { right: 1rem; }
.left-10 { left: 2.5rem; }
.right-10 { right: 2.5rem; }
.top-20 { top: 5rem; }
.bottom-20 { bottom: 5rem; }
.top-1\/2 { top: 50%; }
.left-1\/2 { left: 50%; }
.-top-10 { top: -2.5rem; }
.-right-10 { right: -2.5rem; }
.-inset-0\.5 { top: -0.125rem; right: -0.125rem; bottom: -0.125rem; left: -0.125rem; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.transform { transform: translateX(var(--tw-translate-x, 0)) translateY(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)); }
.-translate-x-1\/2 { --tw-translate-x: -50%; }
.-translate-y-1\/2 { --tw-translate-y: -50%; }

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

/* Grid */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }

/* Spacing */
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.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-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-20 { padding-top: 5rem; }
.pb-4 { padding-bottom: 1rem; }
.mb-1 { margin-bottom: 0.25rem; }
.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-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-2 { margin-top: 0.1rem; }
.mt-4 { margin-top: 1rem; }
.mt-0\.5 { margin-top: 0.125rem; }

/* Sizing */
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-40 { width: 10rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-96 { width: 24rem; }
.w-full { width: 100%; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-40 { height: 10rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-\[200px\] { max-width: 200px; }
.max-w-\[500px\] { max-width: 500px; }
.aspect-\[9\/16\] { aspect-ratio: 9/16; }

/* Typography */
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-xl-2 { 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-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-wider { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }

/* 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-transform { transition-property: transform; 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; }
.duration-200 { transition-duration: 200ms; }
.duration-500 { transition-duration: 500ms; }

/* Hover effects */
.hover\:text-foreground:hover { color: var(--foreground); }
.hover\:text-primary:hover { color: var(--primary); }
.hover\:bg-white-50:hover { background-color: rgba(255, 255, 255, 0.5); }
.hover\:scale-105:hover { --tw-scale-x: 1.05; --tw-scale-y: 1.05; }
.hover\:scale-110:hover { --tw-scale-x: 1.1; --tw-scale-y: 1.1; }
.hover\:-translate-y-2:hover { --tw-translate-y: -0.5rem; }
.hover\:opacity-60:hover { opacity: 0.6; }

/* Group hover effects */
.group:hover .group-hover\:text-primary { color: var(--primary); }
.group:hover .group-hover\:scale-105 { --tw-scale-x: 1.05; --tw-scale-y: 1.05; }
.group:hover .group-hover\:scale-110 { --tw-scale-x: 1.1; --tw-scale-y: 1.1; }
.group:hover .group-hover\:-translate-y-2 { --tw-translate-y: -0.5rem; }
.group:hover .group-hover\:opacity-60 { opacity: 0.6; }

/* Opacity */
.opacity-30 { opacity: 0.3; }
.opacity-50 { opacity: 0.5; }
.opacity-90 { opacity: 0.9; }

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    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;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    z-index: 1;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

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

.btn-primary:hover {
    background-color: hsl(262, 83%, 52%);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.btn-secondary:hover {
    background-color: hsl(220, 70%, 90%);
}

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

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

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

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

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    min-width: 100%;
}

@media (min-width: 640px) {
    .btn-lg {
        min-width: auto;
    }
}

/* Cards */
.card {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background-color: var(--card);
    color: var(--card-foreground);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

/* Liquid Glass Effect for Feature Cards */
.liquid-glass {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.liquid-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%);
}

.liquid-glass::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(139, 92, 246, 0.1) 0%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.liquid-glass:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.15) 100%);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.liquid-glass:hover::after {
    opacity: 1;
}

.liquid-glass .icon-container {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.9) 0%,
        rgba(168, 85, 247, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 16px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.liquid-glass:hover .icon-container {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 1) 0%,
        rgba(168, 85, 247, 1) 100%);
    box-shadow: 
        0 12px 24px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: scale(1.1) rotate(5deg);
}

/* Floating particles effect */
.liquid-glass .floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(139, 92, 246, 0.6);
    border-radius: 50%;
    animation: float-particle 6s infinite ease-in-out;
    opacity: 0;
}

.liquid-glass .floating-particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.liquid-glass .floating-particle:nth-child(2) {
    top: 60%;
    right: 30%;
    animation-delay: 2s;
}

.liquid-glass .floating-particle:nth-child(3) {
    bottom: 30%;
    left: 70%;
    animation-delay: 4s;
}

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

/* Liquid ripple effect on hover */
.liquid-glass .ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(139, 92, 246, 0.3) 0%,
        rgba(139, 92, 246, 0.1) 50%,
        transparent 100%);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Dark mode adjustments for liquid glass */
@media (prefers-color-scheme: dark) {
    .liquid-glass {
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.03) 50%,
            rgba(255, 255, 255, 0.06) 100%);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    }
    
    .liquid-glass:hover {
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.12) 0%,
            rgba(255, 255, 255, 0.06) 50%,
            rgba(255, 255, 255, 0.09) 100%);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    }
}

/* Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.3s ease;
    padding: 0 1rem;
}

.carousel-item {
    flex: 0 0 auto;
    width: 200px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    background-color: var(--accent);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

/* Accordion */
.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: var(--card);
    margin-bottom: 1rem;
}

.accordion-trigger {
    width: 100%;
    padding: 1rem 0;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
}


.accordion-content {
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.open {
    max-height: 200px !important;
}

.accordion-trigger.open svg {
    transform: rotate(180deg);
}

/* Animations */
@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

/* Responsive */
@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
    .sm\:basis-1\/2 { flex-basis: 50%; }
}

@media (min-width: 768px) {
    .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\:col-span-2 { grid-column: span 2 / span 2; }
    .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
    .md\:p-16 { padding: 4rem; }
    .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\:basis-1\/4 { flex-basis: 25%; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:basis-1\/5 { flex-basis: 20%; }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .dark {
        --background: hsl(240, 20%, 8%);
        --foreground: hsl(0, 0%, 98%);
        --card: hsl(240, 15%, 12%);
        --card-foreground: hsl(0, 0%, 98%);
        --popover: hsl(240, 15%, 12%);
        --popover-foreground: hsl(0, 0%, 98%);
        --primary: hsl(262, 83%, 58%);
        --primary-foreground: hsl(0, 0%, 100%);
        --secondary: hsl(240, 15%, 15%);
        --secondary-foreground: hsl(0, 0%, 98%);
        --muted: hsl(240, 15%, 15%);
        --muted-foreground: hsl(240, 5%, 65%);
        --accent: hsl(262, 83%, 20%);
        --accent-foreground: hsl(262, 83%, 88%);
        --destructive: hsl(0, 62.8%, 50%);
        --destructive-foreground: hsl(0, 0%, 100%);
        --border: hsl(240, 15%, 20%);
        --input: hsl(240, 15%, 20%);
        --ring: hsl(262, 83%, 58%);
        --gradient-primary: linear-gradient(135deg, hsl(262, 83%, 58%), hsl(280, 90%, 65%));
        --gradient-card: linear-gradient(135deg, hsl(240, 15%, 15%), hsl(240, 20%, 18%));
        --shadow-glow: 0 10px 40px -10px hsl(262, 83%, 58%, 0.5);
    }
    
    .bg-white-10 { background-color: rgba(255, 255, 255, 0.05); }
    .bg-white-40 { background-color: rgba(255, 255, 255, 0.05); }
    .bg-white-50 { background-color: rgba(255, 255, 255, 0.1); }
    .hover\:bg-white-50:hover { background-color: rgba(255, 255, 255, 0.1); }
} 