:root {
    --brand-primary: #4f46e5;
    --brand-secondary: #10b981;
    --brand-dark: #111827;
    --brand-muted: #6b7280;
    --card-radius: 20px;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f6f7fb;
    color: var(--brand-dark);
    min-height: 100vh;
}

.hero-card {
    border-radius: var(--card-radius);
    border: 0;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    background: #fff;
}

.hero-heading {
    font-weight: 700;
    color: var(--brand-dark);
}

.brand-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(79, 70, 229, 0.1);
    color: var(--brand-primary);
    padding: .35rem .9rem;
    border-radius: 999px;
    font-size: .85rem;
    letter-spacing: .03em;
}

.quick-actions .btn {
    min-width: 180px;
    border-radius: 999px;
    font-weight: 600;
}

.section-title {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .75rem;
    color: var(--brand-muted);
}

.status-card {
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.badge-soft {
    background: rgba(16, 185, 129, 0.08);
    color: var(--brand-secondary);
    border-radius: 999px;
    padding: .35rem .9rem;
    font-weight: 600;
}

.timeline-item {
    border-left: 2px solid rgba(107, 114, 128, 0.2);
    padding-left: 1.25rem;
    position: relative;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -6px;
    top: .4rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-primary);
}

.navbar-minimal {
    border-radius: 999px;
    padding: .35rem 1rem;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.navbar-minimal a {
    text-decoration: none;
    color: var(--brand-muted);
    font-weight: 600;
}

.navbar-minimal a.active {
    color: var(--brand-primary);
}

.navbar-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    width: 100%;
    background: var(--brand-secondary);
    color: #fff;
}

.navbar-sticky.navbar {
    background: var(--brand-secondary) !important;
}

.navbar-sticky .navbar-brand,
.navbar-sticky .navbar-brand span,
.navbar-sticky .nav-link {
    color: #fff !important;
}

.navbar-sticky .nav-link:hover,
.navbar-sticky .nav-link:focus,
.navbar-sticky .nav-link.active {
    color: #e0f7ea !important;
}

.navbar-sticky + .container {
    margin-top: 84px;
}

.form-floating > label {
    color: var(--brand-muted);
}

.btn-brand {
    background: linear-gradient(135deg, var(--brand-primary), #7c3aed);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    padding: .85rem;
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.35);
}

.btn-ghost {
    border-radius: 12px;
    border: 1px solid rgba(17, 24, 39, 0.1);
    color: var(--brand-dark);
    font-weight: 600;
    padding: .75rem;
}

.table-modern th {
    font-size: .78rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--brand-muted);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.table-modern td {
    vertical-align: middle;
}

.alert-brand {
    border-radius: 16px;
    border: none;
    background: rgba(16, 185, 129, 0.15);
    color: var(--brand-dark);
}

.bi {
    color: #facc15 !important;
}

@media (max-width: 576px) {
    .quick-actions .btn {
        width: 100%;
    }
}
