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

:root {
    --ink: #f0ede8;
    --bg0: #060606;
    --bg1: #0d0d0f;
    --dim: rgba(240, 237, 232, 0.7);
    --line: rgba(240, 237, 232, 0.14);
}

html,
body {
    min-height: 100%;
    background:
        radial-gradient(1200px 600px at 85% -10%, rgba(240, 237, 232, 0.06), transparent 55%),
        radial-gradient(900px 500px at -10% 10%, rgba(240, 237, 232, 0.04), transparent 60%),
        linear-gradient(180deg, var(--bg1), var(--bg0));
    color: var(--ink);
}

body {
    font-family: 'DM Mono', monospace;
    padding: 32px 18px 80px;
}

.shell {
    width: min(980px, 100%);
    margin: 0 auto;
}

.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.brand,
.back {
    color: var(--dim);
    text-decoration: none;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 11px;
}

.brand:hover,
.back:hover {
    color: var(--ink);
}

.hero {
    margin-bottom: 32px;
}

.eyebrow {
    color: var(--dim);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(34px, 6vw, 56px);
    letter-spacing: 0.02em;
    line-height: 1.06;
    margin-bottom: 14px;
}

.lede {
    color: var(--dim);
    max-width: 760px;
    line-height: 1.55;
    font-size: 13px;
}

.panel {
    border: 1px solid var(--line);
    background: rgba(6, 6, 6, 0.45);
    padding: 20px 18px;
    margin-top: 14px;
}

.panel.priority {
    border-color: rgba(240, 237, 232, 0.28);
    background: rgba(240, 237, 232, 0.04);
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 10px;
}

ul {
    list-style: none;
    display: grid;
    gap: 9px;
}

li {
    color: var(--dim);
    font-size: 12px;
    line-height: 1.55;
    padding-left: 16px;
    position: relative;
}

li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(240, 237, 232, 0.66);
    position: absolute;
    left: 0;
    top: 8px;
}

strong {
    color: var(--ink);
    font-weight: 400;
}

code {
    font-family: inherit;
    color: var(--ink);
}

.foot {
    margin-top: 26px;
}

.foot p,
.foot a {
    font-size: 12px;
    color: var(--dim);
}

.foot a:hover {
    color: var(--ink);
}

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

    .top {
        margin-bottom: 36px;
    }

    .panel {
        padding: 16px 14px;
    }

    h2 {
        font-size: 26px;
    }
}
