html,
body {
    margin: 0;
    padding: 0;
    background: #f3f3f1;
    font-family: Arial, sans-serif;
    color: #111;
    min-height: 100%;
}

* {
    box-sizing: border-box;
}

/* Login */

.pro-login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.pro-login-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 18px;
    padding: 36px 32px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.pro-login-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pro-login-logo-image {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.pro-login-logo-text {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.pro-login-title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 8px;
}

.pro-login-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 28px;
}

.pro-field {
    margin-bottom: 16px;
}

.pro-field label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: #333;
}

.pro-field input[type="text"],
.pro-field input[type="password"] {
    width: 100%;
    height: 46px;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    padding: 0 14px;
    box-sizing: border-box;
    font-size: 15px;
    background: #fff;
}

.pro-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin: 6px 0 18px;
}

.pro-login-button {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 12px;
    background: #111;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.pro-login-button:hover {
    opacity: 0.92;
}

.pro-error {
    background: #fff1f1;
    color: #9f1d1d;
    border: 1px solid #f0caca;
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 14px;
}

/* App */

.pro-app {
    min-height: 100vh;
    padding: 42px 28px 60px;
}

.pro-shell {
    max-width: 1180px;
    margin: 0 auto;
}

.pro-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 34px;
}

.pro-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pro-brand-image {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.pro-brand-text {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
}

.pro-topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.pro-user {
    font-size: 14px;
    color: #555;
}

.pro-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.pro-hero {
    background: #fff;
    border-radius: 24px;
    padding: 34px 34px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 26px;
}

.pro-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #777;
    margin-bottom: 10px;
}

.pro-title {
    margin: 0 0 10px;
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.pro-subtitle {
    margin: 0;
    max-width: 760px;
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

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

.pro-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: #111;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.pro-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.pro-card.is-disabled,
.pro-card[aria-disabled="true"] {
    opacity: 0.58;
    cursor: default;
    pointer-events: none;
}

.pro-card-top {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pro-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1ef;
    font-size: 24px;
}

.pro-card-title {
    margin: 0;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.pro-card-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #5a5a5a;
    max-width: 480px;
}

.pro-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
}

.pro-badge {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f1f1ef;
    color: #444;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.pro-arrow {
    font-size: 22px;
    line-height: 1;
}

.pro-empty {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    font-size: 15px;
    color: #555;
}

@media (max-width: 900px) {
    .pro-grid {
        grid-template-columns: 1fr;
    }

    .pro-title {
        font-size: 34px;
    }
}

@media (max-width: 640px) {
    .pro-app {
        padding: 22px 16px 40px;
    }

    .pro-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .pro-topbar-right {
        width: 100%;
        justify-content: space-between;
    }

    .pro-hero,
    .pro-card,
    .pro-empty {
        border-radius: 20px;
    }

    .pro-hero {
        padding: 24px 22px;
    }

    .pro-card {
        min-height: 220px;
        padding: 22px;
    }

    .pro-title {
        font-size: 30px;
    }

    .pro-card-title {
        font-size: 24px;
    }
}