﻿:root {
    --brand: #6f42c1; /* Bootstrap purple */
    --grad1: rgba(111, 66, 193, 0.08);
    --grad2: rgba(179, 128, 255, 0.06);
}

body {
    background-color: #fff;
}

.bg-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--bs-border-color);
}

    .bg-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(800px 400px at 10% 20%, var(--grad1), transparent 60%), radial-gradient(800px 400px at 90% 10%, var(--grad2), transparent 60%), linear-gradient(180deg, rgba(111, 66, 193, 0.05), rgba(255,255,255,1));
        pointer-events: none;
    }

.chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    border-radius: 999px;
    background: rgba(111, 66, 193, 0.12);
    color: var(--brand);
    font-weight: 500;
    font-size: .9rem;
    border: 1px solid rgba(111, 66, 193, 0.25);
}

.btn-primary {
    background-color: var(--brand);
    border-color: var(--brand);
}

    .btn-primary:hover {
        background-color: #5b35a6;
        border-color: #5b35a6;
    }

.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .08) !important;
}

.cursor-pointer {
    cursor: pointer;
}

.bg-muted-30 {
    background: rgba(33, 37, 41, .03);
}

.text-primary {
    color: var(--brand) !important;
}

.bg-primary-subtle {
    background-color: rgba(111, 66, 193, 0.12) !important;
}

.text-secondary {
    color: #6c757d !important;
}
