@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("fonts/inter-v20-latin-regular.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("fonts/inter-v20-latin-600.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("fonts/inter-v20-latin-700.woff2") format("woff2");
}

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

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #2a2a2a;
    background: #fafafa;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
}

main {
    flex: 1;
}

.card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 7px;
    box-shadow: 1px 1px 23px 0 rgba(0, 0, 0, 0.05);
    padding: 32px;
}

h1 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    color: #1a1a1a;
}

.lead {
    font-size: 20px;
    font-weight: 600;
    color: #555;
    margin: 0 0 32px;
}

header {
    padding: 24px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #222432;
}

.brand-mark {
    display: inline-flex;
    color: #222;
    opacity: 0.5;
}

.brand-name {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

main {
    padding: 0 0 40px;
}

p {
    font-size: 17px;
    margin: 0 0 20px;
}

.cta {
    display: inline-block;
    margin-top: 24px;
    min-width: 150px;
    padding: 15px 24px;
    background: #1f73d2;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.25;
    box-shadow: 0 0 0 0 #1f73d2;
    transition: box-shadow 300ms ease-in-out, background 400ms linear;
}

.cta:hover,
.cta:focus-visible {
    background: #155ab8;
    box-shadow: 0 0 0 2px #1f73d2;
    outline: none;
}

footer {
    padding: 32px 0;
    border-top: 1px solid #eaeaea;
    background: #fff;
}

footer .container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-text {
    font-size: 14px;
    color: #666;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    color: #8a8a8a;
    text-decoration: none;
}

.footer-logo svg {
    height: 30px;
    width: auto;
    display: block;
}

@media (max-width: 480px) {
    header {
        padding: 20px 0;
    }

    main {
        padding: 0 0 24px;
    }

    .card {
        padding: 24px 20px;
    }

    h1 {
        font-size: 32px;
    }

    .lead {
        font-size: 18px;
    }
}
