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

body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.min-h-screen {
    min-height: 100vh;
}

.pt-24 {
    padding-top: 6rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.max-w-\[1200px\] {
    max-width: 1200px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

.mb-32 {
    margin-bottom: 8rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

.gap-3 {
    gap: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.bg-purple-500\/10 {
    background-color: rgba(168, 85, 247, 0.1);
}

.border {
    border-width: 1px;
}

.border-purple-500\/30 {
    border-color: rgba(168, 85, 247, 0.3);
}

.rounded-full {
    border-radius: 9999px;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

.text-purple-400 {
    color: #c084fc;
}

.text-sm {
    font-size: 0.875rem;
}

.text-5xl {
    font-size: 3rem;
}

.md\:text-6xl {
    font-size: 3.75rem;
}

.font-\[\'Poppins\'\] {
    font-family: 'Poppins', sans-serif;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-white {
    --tw-gradient-from: #ffffff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.via-purple-400 {
    --tw-gradient-stops: var(--tw-gradient-from), #c084fc, var(--tw-gradient-to, rgba(192, 132, 252, 0));
}

.to-white {
    --tw-gradient-to: #ffffff;
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.text-transparent {
    color: transparent;
}

.text-xl {
    font-size: 1.25rem;
}

.text-gray-300 {
    color: #d1d5db;
}

.mb-8 {
    margin-bottom: 2rem;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-4 {
    gap: 1rem;
}

.justify-center {
    justify-content: center;
}

.button {
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.button-primary {
    background: linear-gradient(to right, #a855f7, #6366f1);
    color: white;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.button-primary:hover {
    box-shadow: 0 10px 15px -3px rgba(168, 85, 247, 0.3), 0 4px 6px -2px rgba(168, 85, 247, 0.15);
}

.button-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.button-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-6 {
    gap: 1.5rem;
}

.bg-white\/5 {
    background-color: rgba(255, 255, 255, 0.05);
}

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

.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.1);
}

.rounded-xl {
    border-radius: 0.75rem;
}

.p-6 {
    padding: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.md\:text-4xl {
    font-size: 2.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-4xl {
    font-size: 2.25rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(168, 85, 247, 0.5);
}

.w-12 {
    width: 3rem;
}

.h-12 {
    height: 3rem;
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-purple-500 {
    --tw-gradient-from: #a855f7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0));
}

.to-indigo-500 {
    --tw-gradient-to: #6366f1;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

.transition-transform {
    transition: transform 0.3s ease;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.text-white {
    color: #ffffff;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.p-12 {
    padding: 3rem;
}

.items-center {
    align-items: center;
}

.gap-12 {
    gap: 3rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.li-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.bg-purple-500\/20 {
    background-color: rgba(168, 85, 247, 0.2);
}

.rounded-full {
    border-radius: 9999px;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.relative {
    position: relative;
}

.aspect-square {
    aspect-ratio: 1 / 1;
}

.to-indigo-500\/20 {
    --tw-gradient-to: rgba(99, 102, 241, 0.2);
}

.border-purple-500\/30 {
    border-color: rgba(168, 85, 247, 0.3);
}

.w-32 {
    width: 8rem;
}

.h-32 {
    height: 8rem;
}

.text-purple-400\/30 {
    color: rgba(192, 132, 252, 0.3);
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.via-indigo-500\/10 {
    --tw-gradient-stops: var(--tw-gradient-from), rgba(99, 102, 241, 0.1), var(--tw-gradient-to, rgba(99, 102, 241, 0));
}

.to-purple-500\/20 {
    --tw-gradient-to: rgba(168, 85, 247, 0.2);
}

.border-purple-500\/30 {
    border-color: rgba(168, 85, 247, 0.3);
}

.scale-95 {
    transform: scale(0.95);
}

.transition-all {
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .md\:text-6xl {
        font-size: 3.75rem;
    }
    
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:text-4xl {
        font-size: 2.25rem;
    }
}