:root {
    --bg: #f4f4f1;
    --surface: #ffffff;
    --text: #1f1f1f;
    --muted: #5f5f5f;
    --accent: #1f5e99;
    --border: #d9d9d9;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Verdana", sans-serif;
    color: var(--text);
    background: var(--bg);
    display: grid;
    place-items: center;
    padding: 24px;
}

.card {
    width: min(860px, 100%);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
}

.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

h1 {
    margin: 12px 0 10px;
    font-size: clamp(24px, 3.2vw, 30px);
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 2em;
}

p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 2em;
}

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

a {
    text-decoration: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    padding: 12px 14px;
    border-radius: 6px;
    font-weight: 700;
    border: 1px solid transparent;
}

.button.primary {
    background: var(--accent);
    color: #ffffff;
}

.button.secondary {
    background: var(--surface);
    color: var(--accent);
    border-color: var(--border);
}

.button:hover {
    filter: brightness(0.96);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    margin-bottom: 2em;
}

.buttons {
    margin-bottom: 0;
}

.panel {
    padding: 0;
    border: 0;
    background: transparent;
}

.panel strong {
    display: block;
    margin-bottom: 4px;
}

.panel span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

@media (max-width: 640px) {
    .card {
        padding: 20px;
        border-radius: 8px;
    }

    h1 {
        font-size: 22px;
    }
}
