:root {
    --bg-primary: #0a4a93;
    --bg-secondary: #0e67c8;
    --bg-deep: #072f5f;
    --surface: #f6f9ff;
    --surface-2: #ffffff;
    --accent: #68cbff;
    --text: #112338;
    --muted: #5a7495;
    --muted-2: #7590af;
    --success: #1e9f6e;
    --warning: #c78610;
    --danger: #c23b3b;
    --shadow: 0 14px 36px rgba(6, 40, 79, 0.18);
    --shadow-soft: 0 10px 24px rgba(7, 44, 86, 0.11);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.75), transparent 52%),
        radial-gradient(circle at 8% 8%, rgba(104, 203, 255, 0.2), transparent 42%),
        radial-gradient(circle at 88% 18%, rgba(32, 134, 219, 0.14), transparent 42%),
        linear-gradient(35deg, rgba(255, 255, 255, 0.58) 0%, transparent 35%),
        linear-gradient(120deg, #edf5ff 0%, #f9fbff 45%, #f3f8ff 100%);
    min-height: 100vh;
    letter-spacing: 0.01em;
}

.container {
    width: min(1160px, calc(100% - 2rem));
    margin-inline: auto;
}

.bg-orb {
    position: fixed;
    border-radius: 999px;
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
}

.orb-1 {
    width: 250px;
    height: 250px;
    background: rgba(90, 200, 255, 0.35);
    top: -80px;
    left: -60px;
}

.orb-2 {
    width: 340px;
    height: 340px;
    background: rgba(15, 111, 216, 0.2);
    bottom: -100px;
    right: -60px;
}

.topbar {
    position: sticky;
    top: 0;
    backdrop-filter: blur(12px);
    background: linear-gradient(120deg, rgba(8, 52, 104, 0.92), rgba(13, 88, 171, 0.88));
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    z-index: 20;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(145deg, #a8e2ff, #5ac8ff);
    color: #063873;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
}

.brand strong {
    font-family: 'Manrope', sans-serif;
    display: block;
    line-height: 1.1;
}

.brand small {
    color: rgba(255, 255, 255, 0.85);
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.topbar-ticker {
    min-width: min(560px, 60vw);
    max-width: 680px;
    display: grid;
    gap: 0.3rem;
    color: #ffffff;
    margin-left: auto;
    justify-items: end;
    text-align: right;
}

.ticker-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

.ticker-runner {
    border-radius: 11px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 600;
    padding: 0.46rem 0;
    letter-spacing: 0.02em;
}

.ticker-runner,
.ticker-runner * {
    color: #ffffff !important;
}

#live-datetime {
    color: #ffffff !important;
}

.nav-links a {
    color: #e4f3ff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.45rem 0.82rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: all 0.22s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
}

.main-space {
    padding: 1.6rem 0 2.3rem;
}

.hero {
    background: linear-gradient(130deg, #0a4d98, #0c5eb5 52%, #0f6dcd);
    color: #f6fbff;
    border-radius: 28px;
    padding: clamp(1.35rem, 4vw, 2.2rem);
    box-shadow: var(--shadow);
    margin-bottom: 1.35rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(190, 226, 255, 0.24);
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 70%);
    right: -120px;
    top: -120px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.06), transparent 55%);
    pointer-events: none;
}

.hero h1,
.hero h2,
h1,
h2,
h3 {
    font-family: 'Manrope', sans-serif;
    margin-top: 0;
}

.hero h1 {
    font-size: clamp(1.7rem, 3.6vw, 2.45rem);
    line-height: 1.12;
    margin-bottom: 0.7rem;
    letter-spacing: -0.01em;
}

.hero-lead {
    max-width: 62ch;
    color: rgba(237, 246, 255, 0.96);
    font-size: 1.04rem;
    line-height: 1.72;
    margin: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.panel,
.card {
    background: var(--surface-2);
    border-radius: 20px;
    padding: 1.08rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 111, 216, 0.11);
    color: var(--text);
}

.panel {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(6, 40, 79, 0.14);
}

.grid {
    display: grid;
    gap: 1rem;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

input,
select,
textarea,
button {
    font: inherit;
}

.field {
    display: grid;
    gap: 0.4rem;
}

label {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.9rem;
}

.input,
select,
textarea {
    width: 100%;
    border: 1px solid #d6e6fb;
    border-radius: 13px;
    background: #fcfdff;
    padding: 0.76rem 0.92rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

select:disabled {
    background: #f0f5fb;
    color: var(--muted-2);
    cursor: not-allowed;
    border-color: #e2eaf5;
}

.input-hint {
    display: block;
    font-size: 0.8rem;
    margin-top: 0.28rem;
    color: var(--muted-2);
    min-height: 1em;
}

.hint-info  { color: #2270b8; }
.hint-ok    { color: var(--success); font-weight: 600; }
.hint-error { color: var(--danger); font-weight: 600; }

.bank-hint {
    font-size: 0.86rem;
    color: var(--muted);
    background: #f1f7ff;
    border: 1px solid #d6e8fb;
    border-radius: 10px;
    padding: 0.55rem 0.8rem;
    line-height: 1.5;
}

/* ── Panel info jenis kemitraan ── */
.kemitraan-info {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
    border: 1px solid #c3ddf7;
    border-left: 4px solid var(--bg-secondary);
    border-radius: 12px;
    padding: 1.1rem 1.2rem;
    margin-top: 0.25rem;
    animation: fadeRise 0.25s ease;
}
.km-header {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}
.km-icon {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.km-header strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bg-primary);
    display: block;
    margin-bottom: 0.3rem;
}
.km-header p {
    font-size: 0.84rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.55;
}
.km-list {
    margin: 0;
    padding-left: 1.3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem 1rem;
}
.km-list li {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.45;
}
@media (max-width: 600px) {
    .km-list { grid-template-columns: 1fr; }
}

.input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 4px rgba(90, 200, 255, 0.2);
}

.btn {
    border: none;
    border-radius: 14px;
    padding: 0.75rem 1.02rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    color: #fff;
    box-shadow: 0 9px 22px rgba(13, 95, 188, 0.31);
}

.btn-muted {
    background: #ecf4ff;
    color: #275487;
}

.btn:hover {
    transform: translateY(-1px);
}

.actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.eyebrow {
    display: inline-flex;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #d9eeff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.trust-strip {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin: 0.9rem 0 1rem;
}

.trust-strip span {
    padding: 0.32rem 0.72rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #e9f5ff;
}

.glass-panel {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 255, 0.9));
    border: 1px solid rgba(181, 217, 255, 0.62);
    backdrop-filter: blur(8px);
}

.muted-copy {
    margin-top: -0.2rem;
    color: var(--muted-2);
    font-size: 0.92rem;
    line-height: 1.55;
}

.insight-row {
    margin: 0.95rem 0 1rem;
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.insight-pill {
    min-width: 220px;
    padding: 0.6rem 0.8rem;
    border-radius: 14px;
    border: 1px solid rgba(217, 238, 255, 0.44);
    background: rgba(255, 255, 255, 0.14);
}

.insight-pill strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
}

.insight-pill small {
    color: rgba(224, 240, 255, 0.93);
    font-size: 0.8rem;
}

.section-gap {
    margin-top: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.03rem;
}

.feature-card p {
    margin: 0;
    color: #4f6f90;
    line-height: 1.65;
}

.process-panel {
    background: linear-gradient(175deg, #fcfeff, #f5f9ff);
}

.process-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
    border-radius: 16px;
    border: 1px solid #dcecff;
    background: #fff;
    padding: 1rem;
    position: relative;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(165deg, rgba(90, 200, 255, 0.06), transparent 50%);
    pointer-events: none;
}

.step-no {
    display: inline-grid;
    place-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    background: linear-gradient(145deg, var(--bg-secondary), var(--bg-primary));
    margin-bottom: 0.6rem;
}

.step-card h3 {
    margin: 0 0 0.4rem;
}

.step-card p {
    margin: 0;
    color: #5a7698;
    line-height: 1.62;
}

.hero,
.feature-card,
.process-panel,
.step-card {
    animation: fadeRise 0.55s ease both;
}

@keyframes fadeRise {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert {
    border-radius: 12px;
    padding: 0.7rem 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.alert-success {
    background: rgba(30, 159, 110, 0.16);
    color: #136848;
}

.alert-warning {
    background: rgba(199, 134, 16, 0.16);
    color: #815609;
}

.alert-danger {
    background: rgba(194, 59, 59, 0.15);
    color: #8b2525;
}

.kpi {
    border-left: 4px solid var(--bg-secondary);
}

.hero .kpi {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.09));
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 4px solid rgba(255, 255, 255, 0.72);
    color: #f1f8ff;
}

.hero .kpi span,
.hero .kpi small {
    color: rgba(226, 241, 255, 0.92);
}

.hero .kpi strong {
    color: #ffffff;
}

.kpi strong {
    font-size: 1.5rem;
    display: block;
}

.nav-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.icon-chip {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-content: center;
    background: linear-gradient(145deg, #f1f8ff, #e3f0ff);
    border: 1px solid #d8e9ff;
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.table-wrap {
    overflow: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}

th,
td {
    text-align: left;
    padding: 0.72rem;
    border-bottom: 1px solid #e5efff;
    font-size: 0.92rem;
}

th {
    color: var(--muted);
    background: #f5f9ff;
}

.badge {
    display: inline-block;
    border-radius: 999px;
    padding: 0.22rem 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.badge-pending {
    background: rgba(199, 134, 16, 0.18);
    color: #86590c;
}

.badge-verified {
    background: rgba(30, 159, 110, 0.17);
    color: #126947;
}

.badge-suspended {
    background: rgba(194, 59, 59, 0.17);
    color: #7c2323;
}

.site-footer {
    margin-top: 1.2rem;
    padding: 1rem 0 1.5rem;
    color: #58708f;
}

@media (max-width: 860px) {
    .hero-grid,
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 0.2rem;
        font-size: 0.92rem;
    }

    .topbar-ticker {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }

    .ticker-runner {
        font-size: 0.8rem;
    }

    .topbar-inner {
        min-height: 64px;
        display: grid;
        gap: 0.6rem;
        grid-template-columns: 1fr;
    }

    .btn {
        min-height: 44px;
    }

    .admin-module-nav {
        gap: 0.4rem;
    }

    .admin-module-item {
        padding: 0.55rem 0.75rem;
        font-size: 0.82rem;
    }
}

/* ── Admin Module Navigation ── */
.admin-module-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.58rem;
    margin-bottom: 1.45rem;
    padding: 0.78rem 0.92rem;
    border-radius: 18px;
    border: 1px solid rgba(176, 206, 240, 0.64);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 247, 255, 0.9));
    backdrop-filter: blur(10px);
    box-shadow:
        0 10px 22px rgba(8, 53, 111, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.admin-module-item {
    display: flex;
    align-items: center;
    gap: 0.54rem;
    padding: 0.52rem 0.94rem;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 0.845rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #385a84;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    white-space: nowrap;
}

.admin-module-item:hover {
    background: linear-gradient(135deg, #edf6ff, #e1f0ff);
    border-color: #cde3fb;
    color: var(--bg-primary);
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(15, 89, 176, 0.14);
}

.admin-module-item.active {
    background: linear-gradient(135deg, #0f71d9, #0a4f9f);
    border-color: rgba(8, 66, 136, 0.35);
    color: #fff;
    box-shadow: 0 9px 18px rgba(10, 78, 155, 0.36);
}

.admin-module-icon {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: inset 0 0 0 1px rgba(175, 208, 241, 0.7);
    flex-shrink: 0;
}

.admin-module-item.active .admin-module-icon {
    background: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.admin-module-item:nth-child(1) .admin-module-icon { color: #0b6bd1; }
.admin-module-item:nth-child(2) .admin-module-icon { color: #0f8f64; }
.admin-module-item:nth-child(3) .admin-module-icon { color: #7a4eb5; }
.admin-module-item:nth-child(4) .admin-module-icon { color: #0b7fa8; }
.admin-module-item:nth-child(5) .admin-module-icon { color: #b15c06; }
.admin-module-item:nth-child(6) .admin-module-icon { color: #355ac7; }
.admin-module-item:nth-child(7) .admin-module-icon { color: #3d7194; }
.admin-module-item:nth-child(8) .admin-module-icon { color: #b23f3f; }

.admin-module-item.active .admin-module-icon {
    color: #f2f8ff;
}

.status-chart {
    display: grid;
    gap: 0.85rem;
}

.status-row {
    display: grid;
    grid-template-columns: 180px 1fr 68px;
    align-items: center;
    gap: 0.8rem;
}

.status-label {
    font-size: 0.87rem;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
}

.status-label strong {
    color: var(--text);
}

.status-track {
    width: 100%;
    height: 11px;
    border-radius: 999px;
    background: #e9f2fd;
    overflow: hidden;
}

.status-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
}

.status-fill.pending {
    background: linear-gradient(135deg, #f2bb4d, #cf870f);
}

.status-fill.verified {
    background: linear-gradient(135deg, #28c38a, #149161);
}

.status-fill.suspended {
    background: linear-gradient(135deg, #ea7676, #c84848);
}

.status-pct {
    font-size: 0.82rem;
    font-weight: 700;
    color: #40638d;
    text-align: right;
}

.activity-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
}

.activity-card {
    border: 1px solid #d9e9fb;
    background: linear-gradient(135deg, #f9fcff, #eef6ff);
    border-radius: 12px;
    padding: 0.78rem 0.85rem;
}

.activity-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #163f70;
    margin-bottom: 0.3rem;
}

.activity-meta {
    font-size: 0.79rem;
    color: #567698;
}

.admin-login-hero {
    margin-bottom: 1rem;
}

.admin-login-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.admin-login-panel,
.admin-login-info {
    min-height: 100%;
}

.admin-login-panel h2 {
    margin-bottom: 0.2rem;
}

.admin-login-help {
    margin-top: 0.9rem;
    font-size: 0.85rem;
    color: #5c7b9c;
}

.admin-login-info {
    background: linear-gradient(165deg, #f8fcff, #edf6ff);
}

.admin-login-info h3 {
    margin: 0 0 0.7rem;
}

.admin-login-list {
    margin: 0;
    padding-left: 1.15rem;
    display: grid;
    gap: 0.45rem;
    color: #4e6d90;
    line-height: 1.5;
}

.admin-login-note {
    margin-top: 0.9rem;
    border-radius: 12px;
    border: 1px solid #d2e5fb;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 0.85rem;
}

.admin-login-note strong {
    display: block;
    color: #1f4f82;
    margin-bottom: 0.25rem;
}

.admin-login-note p {
    margin: 0;
    color: #567698;
    font-size: 0.9rem;
}

.mitra-hero .hero-grid {
    align-items: stretch;
}

.mitra-kpi-stack {
    display: grid;
    gap: 0.75rem;
}

.mitra-kpi-card {
    min-height: 132px;
}

.mitra-kpi-card strong {
    font-size: 1.8rem;
}

.status-pill {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.status-pill.verified {
    background: rgba(30, 159, 110, 0.26);
}

.status-pill.pending {
    background: rgba(199, 134, 16, 0.24);
}

.status-pill.suspended {
    background: rgba(194, 59, 59, 0.24);
}

.mitra-nav-grid {
    margin-top: 0.25rem;
}

.mitra-nav-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #d6e7fb;
    background: linear-gradient(165deg, #ffffff, #f4f9ff);
    min-height: 230px;
    display: flex;
    flex-direction: column;
}

.mitra-nav-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(90, 200, 255, 0.08), transparent 45%);
    pointer-events: none;
}

.mitra-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.35rem;
}

.mitra-nav-tag {
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    color: #2b5f93;
    background: #eaf4ff;
    border: 1px solid #d4e8ff;
    font-weight: 700;
}

.mitra-nav-card h3 {
    margin: 0.1rem 0 0.45rem;
}

.mitra-nav-card p {
    margin: 0;
    color: #547395;
    line-height: 1.6;
}

.mitra-nav-metric {
    margin-top: 0.85rem;
    padding-top: 0.65rem;
    border-top: 1px dashed #cfe2f9;
    margin-top: auto;
}

.mitra-nav-metric span {
    display: block;
    font-size: 0.8rem;
    color: #6785a8;
}

.mitra-nav-metric strong {
    display: block;
    margin-top: 0.2rem;
    color: #143d69;
    font-size: 1.04rem;
}

.mitra-mini-grid .kpi strong {
    font-size: 1.15rem;
    line-height: 1.4;
}

.mitra-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin: 1.05rem 0 0.6rem;
}

.mitra-section-head h2 {
    margin: 0;
    font-size: 1.08rem;
    color: #163f70;
}

.mitra-section-head p {
    margin: 0;
    color: #6483a5;
    font-size: 0.9rem;
}

.mitra-section-head.compact {
    margin-top: 1.15rem;
}

.mitra-mini-grid {
    margin-top: 0.2rem;
}

.mitra-mini-card {
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mitra-mini-card small {
    color: #6e89a8;
    font-size: 0.81rem;
}

.mitra-mini-card .actions {
    margin-top: 0.4rem;
}

@media (max-width: 860px) {
    .admin-login-layout {
        grid-template-columns: 1fr;
    }

    .status-row {
        grid-template-columns: 1fr;
        gap: 0.38rem;
    }

    .status-pct {
        text-align: left;
    }

    .activity-cards {
        grid-template-columns: 1fr;
    }

    .mitra-kpi-card strong {
        font-size: 1.55rem;
    }

    .mitra-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.22rem;
    }

    .mitra-nav-card {
        min-height: 0;
    }
}

