:root {
    --brand-50: #f0fdf4;
    --brand-100: #dcfce7;
    --brand-200: #bbf7d0;
    --brand-300: #86efac;
    --brand-400: #4ade80;
    --brand-500: #22c55e;
    --brand-600: #16a34a;
    --brand-700: #15803d;
    --brand-800: #166534;
    --brand-900: #14532d;
    --brand-950: #052e16;
    
    --ink: #0f172a;
    --sand: #faf9f6;
    --coral: #f97316;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--sand);
    color: var(--ink);
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, .font-display {
    font-family: 'Outfit', sans-serif;
}

/* UI Components */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--brand-600);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(22, 163, 74, 0.2);
}

.btn-primary:hover {
    background-color: var(--brand-700);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(22, 163, 74, 0.3);
}

.btn-secondary {
    background-color: white;
    color: var(--ink);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    border-color: var(--brand-500);
    transform: translateY(-2px);
}

.btn-ink {
    background-color: var(--ink);
    color: white;
}

.btn-ink:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
}

/* Inputs */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
}

.form-input {
    width: 100%;
    border-radius: 1rem;
    border: 1.5px solid #e2e8f0;
    background-color: white;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    outline: none;
    transition: all 0.2s ease;
}

.form-input:focus {
    border-color: var(--brand-500);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

/* Cards */
.card {
    border-radius: 2rem;
    background-color: white;
    padding: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.card-premium {
    box-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.08);
}

.card-ink {
    background-color: var(--ink);
    color: white;
}

.card-glass {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    tracking: 0.05em;
}

.badge-pending {
    background-color: #fef3c7;
    color: #92400e;
}

.badge-verified {
    background-color: #dcfce7;
    color: #166534;
}

.badge-rejected {
    background-color: #fee2e2;
    color: #991b1b;
}

/* Utilities */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
}

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

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

/* Layout */
.sidebar-active {
    padding-left: 280px;
}

@media (max-width: 1024px) {
    .sidebar-active {
        padding-left: 0;
        padding-bottom: 80px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
