:root {
    --ink: #0a2342;
    --muted: #5f6672;
    --paper: #f6f8fb;
    --surface: #ffffff;
    --line: #dbe1ea;
    --accent: #e8a235;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    font-family: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        linear-gradient(120deg, rgba(246, 248, 251, .96), rgba(246, 248, 251, .78)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.panel {
    width: min(880px, 100%);
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 24px 70px rgba(10, 35, 66, .12);
}

img {
    width: min(260px, 80%);
    height: auto;
    display: block;
    margin-bottom: 28px;
}

.label {
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

h1 {
    max-width: 680px;
    margin: 10px 0 16px;
    font-size: clamp(34px, 6vw, 62px);
    line-height: 1;
    letter-spacing: 0;
}

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

ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 28px 0;
    list-style: none;
}

li {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    font-weight: 700;
}

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

a {
    min-height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #111827;
    background: var(--accent);
    font-weight: 800;
    text-decoration: none;
}

a.secondary {
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
}
