:root {
    --bg: #EFE6D2;
    --ink: #1a1a1a;
    --muted: #6b6354;
    --line: rgba(26, 26, 26, 0.12);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Home --- */

body.home {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
}

body.home main {
    text-align: center;
    max-width: 720px;
    width: 100%;
}

.icon {
    border-radius: 28px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
    margin-bottom: 2.5rem;
}

.tagline {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 3.5rem;
    color: var(--ink);
}

.appstore {
    display: inline-block;
    background: var(--ink);
    color: var(--bg);
    padding: 1.4rem 3rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    letter-spacing: 0.01em;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}

.appstore:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.home-footer {
    margin-top: 4rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.home-footer a {
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.home-footer a:hover {
    color: var(--ink);
    border-bottom-color: var(--ink);
}

.dot { margin: 0 0.5rem; opacity: 0.5; }

/* --- Inner pages (privacy, support) --- */

main.page {
    max-width: 680px;
    margin: 0 auto;
    padding: 4rem 1.5rem 6rem;
}

.page h1 {
    font-size: 2.25rem;
    margin-bottom: 0.25rem;
}

.page .meta {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

.page h2 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 2.5rem 0 0.5rem;
}

.page p { margin: 0.75rem 0; }
.page a { color: var(--ink); }

.back {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
}

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