:root {
    --brand-ink: #16324f;
    --brand-blue: #1d4e89;
    --brand-teal: #2a9d8f;
    --brand-orange: #d95d39;
}

body {
    background:
        radial-gradient(circle at top right, rgba(217, 93, 57, 0.08), transparent 28%),
        linear-gradient(180deg, #f5f7fb 0%, #edf2f8 100%);
    color: #1f2933;
}

.app-nav {
    background: linear-gradient(135deg, var(--brand-ink), var(--brand-blue));
}

.hero-panel {
    background: linear-gradient(135deg, rgba(22, 50, 79, 0.96), rgba(29, 78, 137, 0.92));
    color: white;
    border-radius: 1.25rem;
    position: relative;
    overflow: hidden;
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(240, 200, 8, 0.18);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.72);
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1rem;
    padding: 1rem;
    backdrop-filter: blur(8px);
}

.stat-card span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
}

.stat-card strong {
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
    margin-top: 0.35rem;
}

.card {
    border-radius: 1rem;
}

.table > :not(caption) > * > * {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}
