:root {
    --dash-navy: #12324a;
    --dash-mint: #4db6ac;
    --dash-coral: #f27a63;
    --dash-sun: #f4b942;
    --dash-sky: #56a6ff;
    --dash-paper: #f6f8fb;
    --dash-border: rgba(18, 50, 74, 0.10);
}

.dashboard-hero {
    background: linear-gradient(135deg, var(--dash-navy) 0%, #1d5c7a 58%, #6ec6c0 100%);
    border-radius: 24px;
    color: #fff;
    padding: 32px;
    box-shadow: 0 20px 45px rgba(18, 50, 74, 0.18);
    overflow: hidden;
    position: relative;
}

.dashboard-hero:before,
.dashboard-hero:after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.dashboard-hero:before {
    width: 220px;
    height: 220px;
    top: -90px;
    right: -40px;
}

.dashboard-hero:after {
    width: 160px;
    height: 160px;
    bottom: -70px;
    right: 180px;
}

.dashboard-hero-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    opacity: 0.7;
    margin-bottom: 10px;
}

.dashboard-hero-title {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 12px;
    max-width: 560px;
}

.dashboard-hero-copy {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
}

.dashboard-pill-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.dashboard-pill {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    padding: 16px 18px;
    backdrop-filter: blur(8px);
}

.dashboard-pill .label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.72;
    margin-bottom: 8px;
}

.dashboard-pill .value {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.dashboard-card {
    display: block;
    border: 1px solid var(--dash-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(18, 50, 74, 0.06);
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(18, 50, 74, 0.11);
    border-color: rgba(18, 50, 74, 0.18);
}

.dashboard-stat {
    padding: 24px;
    height: 100%;
}

.dashboard-stat .eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6d8395;
    margin-bottom: 12px;
}

.dashboard-stat .value {
    font-size: 36px;
    line-height: 1;
    font-weight: 700;
    color: var(--dash-navy);
    margin-bottom: 10px;
}

.dashboard-stat .subline {
    color: #607789;
    margin-bottom: 0;
}

.dashboard-accent-coral {
    border-top: 4px solid var(--dash-coral);
}

.dashboard-accent-mint {
    border-top: 4px solid var(--dash-mint);
}

.dashboard-accent-sun {
    border-top: 4px solid var(--dash-sun);
}

.dashboard-accent-sky {
    border-top: 4px solid var(--dash-sky);
}

.dashboard-panel {
    padding: 28px;
}

.dashboard-panel-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dash-navy);
    margin-bottom: 8px;
}

.dashboard-panel-copy {
    color: #6d8395;
    margin-bottom: 24px;
}

.dashboard-bars {
    display: grid;
    gap: 18px;
}

.dashboard-bar-row {
    display: grid;
    grid-template-columns: 170px 1fr 56px;
    gap: 14px;
    align-items: center;
}

.dashboard-bar-label {
    font-weight: 600;
    color: var(--dash-navy);
}

.dashboard-bar-track {
    height: 14px;
    border-radius: 999px;
    background: var(--dash-paper);
    overflow: hidden;
}

.dashboard-bar-fill {
    height: 100%;
    border-radius: 999px;
}

.dashboard-bar-value {
    text-align: right;
    font-weight: 700;
    color: var(--dash-navy);
}

.handover-list {
    display: grid;
    gap: 12px;
}

.handover-item,
.dashboard-next {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-radius: 18px;
    background: var(--dash-paper);
}

a.handover-item,
a.dashboard-next {
    color: inherit;
    text-decoration: none;
    transition: transform 0.18s ease, background-color 0.18s ease;
}

a.handover-item:hover,
a.dashboard-next:hover {
    transform: translateY(-1px);
    background: #edf4fb;
}

.handover-time,
.dashboard-next-time {
    border-radius: 16px;
    padding: 14px 10px;
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(180deg, #1d5c7a 0%, var(--dash-navy) 100%);
}

.handover-meta-title,
.dashboard-next-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dash-navy);
    margin-bottom: 4px;
}

.handover-meta-copy,
.dashboard-next-copy {
    color: #607789;
    margin-bottom: 0;
}

.dashboard-empty {
    border: 1px dashed rgba(18, 50, 74, 0.18);
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    color: #6d8395;
    background: linear-gradient(180deg, rgba(77, 182, 172, 0.08) 0%, rgba(255, 255, 255, 0.9) 100%);
}

@media (max-width: 991px) {
    .dashboard-pill-grid,
    .dashboard-bar-row {
        grid-template-columns: 1fr;
    }

    .dashboard-hero-title {
        font-size: 28px;
    }
}