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

:root {
    --bg: #f6f0e5;
    --bg-alt: #f1e6d2;
    --ink: #121212;
    --muted: #2f2f2f;
    --accent: #ff5f1f;
    --accent-2: #00b7ff;
    --accent-3: #ffd400;
    --card: #ffffff;
    --stroke: #121212;
    --shadow: 10px 10px 0 var(--stroke);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: repeating-linear-gradient(45deg, var(--bg) 0 18px, var(--bg-alt) 18px 36px);
    animation: drift-x 22s linear infinite;
    display: grid;
    place-items: center;
    padding: 28px 18px 40px;
}

.page {
    width: min(960px, 100%);
    background: var(--card);
    border: 4px solid var(--stroke);
    border-radius: 10px;
    padding: 36px clamp(24px, 6vw, 64px) 32px;
    box-shadow: var(--shadow);
    animation: pop 0.5s ease-out;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 52px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--accent-3);
    border: 3px solid var(--stroke);
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 6px 6px 0 var(--stroke);
}

.wordmark {
    font-size: 14px;
    color: var(--muted);
}

.hero h1 {
    font-size: clamp(32px, 6vw, 56px);
    line-height: 1.05;
    margin: 0 0 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 12px;
    font-weight: 700;
    background: var(--accent-2);
    padding: 6px 10px;
    display: inline-flex;
    border: 3px solid var(--stroke);
    box-shadow: 6px 6px 0 var(--stroke);
}

.lead {
    margin: 0 0 32px;
    color: var(--muted);
    font-size: clamp(16px, 2.5vw, 19px);
    max-width: 620px;
}

.status {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.card {
    padding: 18px 20px;
    border-radius: 8px;
    background: var(--card);
    border: 3px solid var(--stroke);
    box-shadow: 6px 6px 0 var(--stroke);
    animation: rise 0.6s ease-out both;
}

.card:nth-child(2) {
    animation-delay: 0.08s;
}

.card:nth-child(3) {
    animation-delay: 0.16s;
}

.card-label {
    margin: 0 0 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink);
    background: var(--accent);
    display: inline-flex;
    padding: 4px 8px;
    border: 2px solid var(--stroke);
}

.card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.footer {
    margin-top: 56px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@keyframes pop {
    0% {
        transform: translateY(16px) scale(0.98);
        opacity: 0;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes rise {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes drift-x {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 360px 0;
    }
}

@media (max-width: 640px) {
    .page {
        padding: 28px 20px;
    }

    .brand {
        margin-bottom: 40px;
    }

    .footer {
        margin-top: 40px;
    }
}
