.bg-brand {
    background-color: #461d7c;
}

.text-brand {
    color: #461d7c;
}

.hover-brand:hover {
    background-color: #371666;
}

.border-brand {
    border-color: #461d7c;
}

.focus-ring-brand:focus {
    --tw-ring-color: #461d7c;
}

/* Brand fonts */
.font-display {
    font-family: 'neue-kabel', sans-serif;
    font-weight: 600;
}

.font-body {
    font-family: 'proxima-nova', sans-serif;
}

body {
    font-family: 'proxima-nova', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'neue-kabel', sans-serif;
    font-weight: 600;
}

/* Stats styling */
.stat-number {
    font-family: 'neue-kabel', sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg, #461d7c 0%, #6a3aa0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtle animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

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

/* Skip to content */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #461d7c;
    color: white;
    padding: 8px 16px;
    z-index: 100;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}
