:root {
    --home-bg: #ececef;
    --home-ink: #111111;
    --home-card: #ffffff;
    --home-border: rgba(24, 36, 54, 0.12);
    --font: "Instrument Sans", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body.home {
    min-height: 100vh;
    font-family: var(--font);
    color: var(--home-ink);
    background: var(--home-bg);
}

.home-stage {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 1.25rem 2rem;
}

.home-card {
    position: relative;
    width: min(420px, 100%);
    background: var(--home-card);
    border: 1px solid var(--home-border);
    border-radius: 28px;
    padding: 5.5rem 1.75rem 1.75rem;
    text-align: center;
}

.home-logo {
    position: absolute;
    top: 0;
    left: 50%;
    width: 148px;
    height: 148px;
    object-fit: cover;
    border-radius: 50%;
    border: 0;
    background: #d7e6f2;
    transform: translate(-50%, -50%);
}

.home-card h1 {
    margin: 0;
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.home-card p {
    margin: 0.95rem 0 0;
    font-size: 1.02rem;
    line-height: 1.45;
    font-weight: 500;
}

.home-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    min-width: 168px;
    padding: 0.85rem 1.4rem;
    border: 3px solid var(--home-ink);
    border-radius: 18px;
    background: #fff;
    color: var(--home-ink);
    font: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.15s ease;
}

.home-cta:hover {
    background: #f7f7f8;
    transform: translateY(-1px);
}

.home-credit {
    margin: 1.35rem 0 0;
    font-size: 0.92rem;
    font-weight: 500;
}

.home-credit a {
    color: inherit;
    font-weight: 700;
    text-underline-offset: 0.15em;
}

@media (max-width: 480px) {
    .home-stage {
        padding-top: 4.5rem;
    }

    .home-logo {
        width: 124px;
        height: 124px;
    }

    .home-card {
        padding-top: 4.75rem;
        border-radius: 24px;
    }

    .home-card h1 {
        font-size: 1.6rem;
    }
}
