* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

html {
    background: #F6F5F2;
}

body {
    font-family: ui-rounded, -apple-system, "SF Pro Rounded", system-ui, sans-serif;
    background: #F6F5F2;
    color: #1C1B19;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 24px;
    -webkit-font-smoothing: antialiased;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: center;
    max-width: 560px;
}

.logo {
    width: 180px;
    height: 180px;
    animation: drift-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

h1 {
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-top: 32px;
}

.tagline {
    font-size: 17px;
    line-height: 1.5;
    margin-top: 12px;
    color: #8A8882;
}

.pill {
    margin-top: 28px;
    padding: 10px 20px;
    border-radius: 999px;
    background: #EDEBE7;
    color: #1C1B19;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

footer {
    padding-top: 32px;
    font-size: 13px;
    color: #B9B7B1;
}

footer p + p {
    margin-top: 6px;
}

footer a {
    color: #8A8882;
    text-decoration: none;
}

footer a:hover {
    color: #4E9CE8;
    text-decoration: underline;
}

@keyframes drift-in {
    from {
        opacity: 0;
        transform: translateY(18px) rotate(-1deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 36px;
    }

    .logo {
        width: 150px;
        height: 150px;
    }
}
