/* Placeholder page while the site copy is being rewritten. The full stylesheet of the
   previous site is in git history (main before the `placeholder` branch). */

@font-face {
    font-family: 'Public Sans'; font-style: normal; font-weight: 100 900; font-display: swap;
    src: url('fonts/public-sans-latin-wght-normal.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Public Sans'; font-style: normal; font-weight: 100 900; font-display: swap;
    src: url('fonts/public-sans-latin-ext-wght-normal.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
    --color-bg: oklch(0.985 0.004 250);
    --color-text: oklch(0.22 0.01 250);
    --color-text-muted: oklch(0.42 0.01 250);
    --color-primary: oklch(0.55 0.19 256);
    --color-primary-hover: oklch(0.46 0.19 256);
    --color-border: oklch(0.9 0.01 250);
    --gutter: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; }

html { height: 100%; }

body {
    margin: 0;
    min-height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    font-family: 'Public Sans', Helvetica, Arial, sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-hover); }
a:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: 4px; }

.top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px var(--gutter);
}
.logo { display: inline-flex; }
.logo img { height: 36px; width: auto; display: block; }
.login { font-size: 15px; font-weight: 600; color: var(--color-text); }

.main {
    align-self: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px var(--gutter) 72px;
}
h1 {
    margin: 0 0 28px;
    max-width: 17ch;
    font-size: clamp(36px, 6.4vw, 72px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.025em;
    text-wrap: balance;
}
.lead {
    margin: 0 0 24px;
    max-width: 52ch;
    font-size: clamp(17px, 1.6vw, 19px);
    line-height: 1.6;
    color: var(--color-text-muted);
}
.mail {
    font-size: clamp(19px, 2.2vw, 24px);
    font-weight: 700;
    border-bottom: 2px solid currentColor;
    padding-bottom: 2px;
}

.bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 20px var(--gutter);
    border-top: 1px solid var(--color-border);
    font-size: 14px;
    color: var(--color-text-muted);
}
