.landing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: radial-gradient(ellipse at center, #1e2d3d 0%, #0f1923 60%, #0a1118 100%);
}

.landing__footer {
    position: absolute;
    bottom: 1.5rem;
    display: flex;
    gap: 1.5rem;
    font-size: 0.8125rem;
}

.landing__footer a {
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.2s;
}

.landing__footer a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.landing__logo {
    max-width: 480px;
    width: 90%;
    height: auto;
    border-radius: 16px;
}
