:root {
    --bg: #f6faf7;
    --surface: #ffffff;
    --text: #17251f;
    --muted: #65746d;
    --green: #146b58;
    --green-soft: #e4f2eb;
    --pink: #c2185b;
    --pink-soft: #fff1f6;
    --border: #c5d8cf;
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.hub-shell {
    width: min(560px, 100%);
    margin: 0 auto;
    padding: 18px 12px 28px;
}

.hub-head {
    min-height: 116px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 14px 34px rgba(23, 37, 31, 0.08);
}

.eyebrow {
    margin: 0 0 5px;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: 28px;
    line-height: 1.1;
}

.status-pill {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius);
    padding: 5px 9px;
    color: var(--green);
    background: var(--green-soft);
    font-size: 12px;
    font-weight: 800;
}

.app-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.app-card {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    background: var(--surface);
    color: inherit;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(23, 37, 31, 0.06);
}

.app-card:active {
    transform: translateY(1px);
}

.app-card img {
    width: 54px;
    height: 54px;
    border-radius: var(--radius);
    flex: 0 0 auto;
}

.app-card strong,
.app-card small {
    display: block;
}

.app-card strong {
    font-size: 18px;
}

.app-card small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.app-card.archivator {
    border-color: #a9cfc0;
}

.app-card.expenses {
    border-color: #efbfd3;
    background: linear-gradient(90deg, var(--surface) 0%, var(--pink-soft) 100%);
}

.app-card.expenses strong {
    color: var(--pink);
}

.helper {
    margin: 14px 2px 0;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}
