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

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

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #09090b;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.card {
    width: 100%;
    max-width: 720px;
    padding: 60px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
}

.tag {
    color: #d4d4d8;
    font-size: .9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

h1 {
    margin-top: 16px;
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1;
    font-weight: 900;
}

.highlight {
    color: #7c9cff;
}

p {
    margin-top: 28px;
    color: #e4e4e7;
    font-size: 1.1rem;
    line-height: 1.8;
}

.links {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.links a {
    text-decoration: none;
    color: #fff;
    padding: 14px 24px;
    border-radius: 14px;
    background: #18181b;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .25s ease;
}

.links a:hover,
.links a:focus-visible {
    background: #7c9cff;
    color: #fff;
    transform: translateY(-3px);
    outline: none;
}

footer {
    margin-top: 60px;
    color: #d4d4d8;
    font-size: .9rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media(max-width:700px) {
    body {
        padding: 20px;
    }

    .card {
        padding: 35px 28px;
    }

    .links {
        flex-direction: column;
    }

    .links a {
        width: 100%;
        text-align: center;
    }
}