/* ---------- Home page ---------- */

.greeting {
    display: flex;
    justify-content: center;
    align-items: center;
}

.greeting.greeting-active {
    min-height: 50vh;
}

.greeting h2 {
    font-size: 2rem;
    font-weight: 400;
    color: #1a1a1a;
}

/* ---------- Nav settings ---------- */
.nav-settings {
    max-width: 420px;
    margin: 0 auto 2rem;
    padding: 1.2rem 1.5rem;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}
.nav-settings h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.3rem;
    color: #1a1a1a;
}
.settings-hint {
    font-size: 0.8rem;
    color: #777;
    margin: 0 0 0.8rem;
}
.module-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.module-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    font-size: 0.85rem;
}
.module-toggle:has(input:checked) {
    border-color: #db1b1b;
    background: #fdf0f0;
}
.module-toggle input {
    accent-color: #db1b1b;
}
.module-label {
    user-select: none;
}

/* ---------- Public landing ---------- */
.landing {
    max-width: 640px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: left;
    color: #333;
    line-height: 1.8;
}
.landing h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}
.landing p {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.landing .features {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0;
}
.landing .features li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
}
.landing .features li::before {
    content: "—  ";
    color: #db1b1b;
}
