@font-face {
    font-family: "Baumans";
    src: url("/__pawloop/assets/fonts/Baumans-Regular.ttf")
        format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("/__pawloop/assets/fonts/Poppins-Regular.ttf")
        format("truetype");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("/__pawloop/assets/fonts/Poppins-SemiBold.ttf")
        format("truetype");
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("/__pawloop/assets/fonts/Nunito.ttf")
        format("truetype");
    font-weight: 200 1000;
    font-display: swap;
}

:root {
    --navy: #182840;
    --coral: #F86850;
    --background: #F7F8FA;
    --white: #FFFFFF;
    --muted: #637083;
    --border: rgba(24, 40, 64, 0.10);
}

* {
    box-sizing: border-box;
}

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

body {
    min-height: 100vh;
    font-family: "Nunito", system-ui, sans-serif;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(248, 104, 80, 0.10),
            transparent 28rem
        ),
        var(--background);
    color: var(--navy);
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 32px clamp(24px, 5vw, 72px);
}

.logo {
    width: 166px;
    height: auto;
    display: block;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 0;
}

.content {
    width: 100%;
    max-width: 760px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--coral);
}

.error-code {
    font-family: "Baumans", sans-serif;
    font-size: clamp(72px, 14vw, 140px);
    line-height: 0.9;
}

h1 {
    max-width: 680px;
    margin: 28px 0 18px;
    font-family: "Baumans", sans-serif;
    font-size: clamp(36px, 6vw, 58px);
    line-height: 1.05;
    font-weight: 400;
}

h1 span {
    color: var(--coral);
}

.description {
    max-width: 590px;
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 14px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.button-primary {
    background: var(--coral);
    color: var(--white);
}

.button-secondary {
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--border);
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted);
}

footer strong {
    color: var(--navy);
    font-family: "Poppins", sans-serif;
}

@media (max-width: 600px) {
    .page {
        padding: 24px;
    }

    .logo {
        width: 145px;
    }

    main {
        padding: 48px 0;
        align-items: flex-start;
    }

    .actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    footer {
        flex-direction: column;
    }
}
