:root {
    --brand-500: #22c55e;
    --brand-600: #16a34a;
    --brand-900: #0f172a;
    --slate-50: #f8fafc;
    --slate-600: #475569;
    --slate-900: #0f172a;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--slate-50);
    color: var(--slate-600);
    -webkit-font-smoothing: antialiased;
}

.font-heading {
    font-family: 'Outfit', sans-serif;
}

.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.btn-brand {
    background-color: var(--brand-500);
    color: white;
    transition: all 0.3s ease;
}

.btn-brand:hover {
    background-color: var(--brand-600);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Premium Card Style */
.card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}
