/* lists.css — landing pages under /lists/ (marketing/SEO/LLM pages).
   Same paper identity as the app: warm cream page, ink text, one loud
   green object (the CTA). Lives INSIDE /lists/ on purpose — the service
   worker never intercepts /lists/*, so these pages stay out of the
   versioned app cache and never need a version bump of their own. */

:root { color-scheme: light dark; }

@media (prefers-color-scheme: dark) {
    /* identical to light — same Samsung force-dark defence as the app */
    html { background: #f7f2e6; }
    body { background: linear-gradient(180deg, #f7f2e6 0%, #efe7d6 100%); color: #2b2620; }
}

@font-face {
    font-family: 'Caveat';
    src: url('/caveat-var.woff2') format('woff2');
    font-weight: 400 700;
    font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(180deg, #f7f2e6 0%, #efe7d6 100%);
    color: #2b2620;
    min-height: 100vh;
    padding: 20px;
    line-height: 1.65;
}

.page { max-width: 700px; margin: 0 auto; padding-bottom: 60px; }

.brand { text-align: center; margin-bottom: 18px; }
.brand a {
    display: block;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    color: #4a443a;
    text-decoration: none;
    font-weight: 700;
}
.brand-sub {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    color: #6b6355;
}

h1 { font-size: 1.7rem; line-height: 1.25; margin: 18px 0 12px; color: #2b2620; }
h2 { font-size: 1.25rem; margin: 28px 0 10px; color: #3a342c; }
h3 { font-size: 1.05rem; margin: 18px 0 6px; color: #3a342c; }
p { margin: 10px 0; }
a { color: #1a63b0; }

.direct-answer { font-size: 1.08rem; }

.cta-row { text-align: center; margin: 22px 0 6px; }
.cta {
    display: inline-block;
    background: #2e7d32;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 18px 28px;          /* comfortably past the 72px touch target */
    border-radius: 14px;
    box-shadow: 0 3px 8px rgba(46, 125, 50, 0.35);
}
.cta-note { text-align: center; color: #6b6355; font-size: 0.92rem; margin-top: 4px; }

/* the checklist itself — ruled-paper feel */
.the-list {
    margin: 12px 0 12px 0;
    padding: 6px 12px 6px 40px;
    background: #fffdf7;
    border: 1px solid #e3dac4;
    border-radius: 10px;
}
.the-list li {
    padding: 7px 4px;
    border-bottom: 1px dashed #e3dac4;
    font-size: 1.03rem;
}
.the-list li:last-child { border-bottom: none; }

.qr-figure { text-align: center; margin: 30px 0; }
.qr-figure img { width: 180px; height: 180px; }
.qr-figure figcaption { color: #6b6355; font-size: 0.9rem; margin-top: 8px; }

.faq h3 { font-weight: 700; }

.ai-section {
    background: #fffdf7;
    border: 1px solid #e3dac4;
    border-radius: 10px;
    padding: 14px 16px;
    margin: 28px 0;
    font-size: 0.95rem;
}
.ai-section h2 { margin-top: 0; }

.related ul { margin: 8px 0 8px 24px; }
.related li { padding: 4px 0; }

.hub-list { list-style: none; margin: 20px 0; }
.hub-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 12px 14px;
    background: #fffdf7;
    border: 1px solid #e3dac4;
    border-radius: 10px;
    margin-bottom: 8px;
}
.hub-list a { font-size: 1.05rem; font-weight: 600; text-decoration: none; color: #1a63b0; }
.hub-count { color: #6b6355; font-size: 0.88rem; white-space: nowrap; }

.page-footer {
    margin-top: 40px;
    padding-top: 16px;
    border-top: 1px solid #e3dac4;
    color: #6b6355;
    font-size: 0.9rem;
    text-align: center;
}
.trust-strip { font-weight: 600; color: #4a443a; }

code { background: #efe7d6; padding: 1px 5px; border-radius: 4px; font-size: 0.9em; }
