/* Voir waiting.css : police auto-hébergée pour éviter tout transfert vers Google.
   Bloc dupliqué volontairement — un fichier CSS partagé coûterait une requête de
   plus sur chaque page pour huit lignes de déclaration. */
@font-face {
    font-family: 'Inter';
    src: url('font/inter-latin.woff2') format('woff2');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
    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+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --font-sans: 'Inter', sans-serif;
    --color-dark: #1a1a1a;
    --color-swatch-pink: #fcebee;
    --color-hot-text: #333bab;
    --color-off-white: #fff7f7;
    --color-muted: rgba(255, 247, 247, 0.62);
    --color-rule: rgba(255, 247, 247, 0.14);
    --color-todo-bg: #fcebee;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    background-color: var(--color-dark);
    color: var(--color-off-white);
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
}
.page {
    max-width: 720px;
    margin: 0 auto;
    padding: 72px 20px 96px;
}
.page__brand {
    display: block;
    margin-bottom: 64px;
    color: var(--color-off-white);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 9px;
    text-transform: uppercase;
    text-decoration: none;
}
.page__title {
    margin: 0 0 8px;
    font-weight: 600;
    font-size: 38px;
    line-height: 46px;
    text-transform: uppercase;
}
.page__lead {
    margin: 0 0 48px;
    color: var(--color-muted);
    font-size: 13px;
}
.page h2 {
    margin: 44px 0 12px;
    padding-top: 22px;
    border-top: 1px solid var(--color-rule);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}
.page p {
    margin: 0 0 14px;
    color: rgba(255, 247, 247, 0.86);
}
.page ul {
    margin: 0 0 14px;
    padding-left: 18px;
    color: rgba(255, 247, 247, 0.86);
}
.page li {
    margin-bottom: 6px;
}
.page a {
    color: var(--color-off-white);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.page a:hover,
.page a:focus-visible {
    color: var(--color-swatch-pink);
}
.page dl {
    margin: 0 0 14px;
}
.page dt {
    margin-top: 12px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.page dd {
    margin: 2px 0 0;
    color: rgba(255, 247, 247, 0.86);
}

/* Champs que seul l'éditeur du site peut renseigner. Le contraste est volontairement
   agressif : ces marqueurs ne doivent jamais atteindre la production sans être vus. */
.todo {
    background-color: var(--color-todo-bg);
    color: var(--color-hot-text);
    padding: 2px 8px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.4px;
}

.page__footer {
    margin-top: 64px;
    padding-top: 22px;
    border-top: 1px solid var(--color-rule);
    color: var(--color-muted);
    font-size: 11px;
}
.page__footer a {
    color: var(--color-muted);
}

.confirmation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 40px 20px;
    text-align: center;
}
.confirmation__brand {
    margin-bottom: 56px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 10px;
    text-transform: uppercase;
}
.confirmation__title {
    margin: 0 0 16px;
    font-weight: 600;
    font-size: 44px;
    line-height: 52px;
    text-transform: uppercase;
}
.confirmation__text {
    max-width: 460px;
    margin: 0 0 12px;
    color: rgba(255, 247, 247, 0.86);
    font-size: 14px;
    line-height: 24px;
}
.confirmation__note {
    max-width: 460px;
    margin: 24px 0 0;
    color: var(--color-muted);
    font-size: 11px;
    line-height: 18px;
}
.confirmation__links {
    margin-top: 56px;
    color: var(--color-muted);
    font-size: 10px;
}
.confirmation__links a {
    color: var(--color-muted);
    text-decoration: none;
}
.confirmation__links a:hover {
    color: var(--color-off-white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 560px) {
    .page {
        padding: 48px 18px 72px;
    }
    .page__title {
        font-size: 28px;
        line-height: 36px;
    }
    .confirmation__title {
        font-size: 30px;
        line-height: 38px;
    }
}
