:root {
    --primary: #3367d6;
    --primary-dark: #2851a8;
    --bg: #f4f6fb;
    --text: #1a1d26;
    --muted: #5c6370;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    background-image:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(51, 103, 214, 0.1), transparent);
}

.home {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.home-card {
    max-width: 440px;
    width: 100%;
    padding: 48px 36px 40px;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(26, 29, 38, 0.08);
}

.home-logo {
    max-width: min(200px, 70vw);
    height: auto;
    margin-bottom: 28px;
}

.home-card h1 {
    margin: 0 0 16px;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text);
}

.home-text {
    margin: 0 0 28px;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--muted);
}

.home-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(51, 103, 214, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.home-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(51, 103, 214, 0.45);
}
