:root {
    --text: #1d1d1f;
    --muted: #6e6e73;
    --accent: #0f8078;
    --rule: #e3e3e6;
    --bg: #ffffff;
}

@media (prefers-color-scheme: dark) {
    :root {
        --text: #ececee;
        --muted: #9a9aa0;
        --accent: #4cc4ba;
        --rule: #333338;
        --bg: #1b1b1e;
    }
}

body {
    font: 17px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    max-width: 34rem;
    margin: 0 auto;
    padding: 3rem 1.25rem 2rem;
}

header img {
    width: 96px;
    height: 96px;
}

h1 {
    font-size: 1.7rem;
    margin: 0.5rem 0 0;
}

.tagline {
    color: var(--muted);
    margin-top: 0.25rem;
}

h2 {
    font-size: 1.05rem;
    margin: 2rem 0 0.5rem;
}

p {
    margin: 0.75rem 0;
}

ul {
    padding-left: 1.2rem;
    margin: 0.75rem 0;
}

li {
    margin: 0.35rem 0;
}

a {
    color: var(--accent);
}

.appstore {
    display: inline-block;
    background: var(--text);
    color: var(--bg);
    text-decoration: none;
    font-weight: 600;
    padding: 0.65rem 1.3rem;
    border-radius: 10px;
    margin: 1.25rem 0 0.25rem;
}

.fineprint {
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

footer {
    border-top: 1px solid var(--rule);
    margin-top: 3rem;
    padding-top: 1rem;
    color: var(--muted);
    font-size: 0.85rem;
}
