/* Page bouchon notiflair.com — palette reprise de l'app
   (mobile/lib/theme/app_colors.dart). Aucune dependance externe :
   ni police distante, ni CDN, ni JS. */

:root {
    --bg: #ffffff;
    --surface: #f6f7f9;
    --ink: #1b1a2e;
    --sub: #474c5a;
    --muted: #6d7180;
    --accent: #0f766e;
    --accent-soft: #e8f3f1;
    --border: rgba(27, 26, 46, 0.08);
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #15141c;
        --surface: #1f1e29;
        --ink: #f4f3f7;
        --sub: #b6b4c4;
        --muted: #8e8ca0;
        --accent: #45bfb2;
        --accent-soft: #10312c;
        --border: rgba(244, 243, 247, 0.1);
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--bg);
    color: var(--ink);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

main {
    width: 100%;
    max-width: 26rem;
    text-align: center;
}

.mark {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: var(--accent-soft);
    color: var(--accent);
}

.mark svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

h1 {
    margin: 0 0 12px;
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.01em;
}

p {
    margin: 0 0 16px;
    color: var(--sub);
}

.store {
    margin: 32px 0 0;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    color: var(--muted);
    font-size: 0.875rem;
}

.store strong {
    display: block;
    color: var(--ink);
    font-weight: 600;
}
