
.faq-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 3rem);
}
.faq-wrap.why-wide,
.faq-wrap.roadmap-wide {
    max-width: 1060px;
}

.faq-brand,
.faq-legal-links {
    display: none;
}


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

.faq-back::before {
    /*content: "← ";*/
    /*<kbd><</kbd>*/
    /*content: "<kbd><</kbd>";*/
    color: var(--accent-ink);
}

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

.faq-back:last-of-type {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}


.faq-title {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 700;
    text-transform: uppercase;
}
.faq-intro {
    font-family: var(--sans);
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.55;
    margin-top: 0.9rem;
    max-width: 68ch;
}


.faq-section {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--rule-soft);
}
.faq-section-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--faint);
    margin-bottom: 1.25rem;
}
.faq-section-title::before {
    content: "# ";
    color: var(--accent-ink);
}


.faq-q {
    margin-bottom: 1.75rem;
}
.faq-q:last-child {
    margin-bottom: 0;
}
.faq-q h3 {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.faq-q p {
    font-family: var(--sans);
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.6;
    margin-top: 0.75rem;
}
.faq-q h3 + p {
    margin-top: 0.4rem;
}
.faq-q strong {
    color: var(--fg);
}

.faq-q br {
    display: none;
}


.site-link,
.tl-link,
.faq-q a,
.faq-intro a {
    color: var(--accent-ink);
    text-decoration: none;
    font-weight: 600;
}
.site-link:hover,
.tl-link:hover,
.faq-q a:hover,
.faq-intro a:hover {
    text-decoration: underline;
}
.site-link {
    display: inline-block;
}


.faq-wrap pre {
    font-family: var(--mono);
    font-size: 0.85rem;
    background: var(--code-bg);
    border: 1px solid var(--rule-soft);
    padding: 0.7rem 0.85rem;
    margin-top: 0.85rem;
    overflow-x: auto;
    white-space: pre;
}
code {
    font-family: var(--mono);
    font-size: 0.88em;
    background: var(--code-bg);
    border: 1px solid var(--rule-soft);
    padding: 0.05em 0.35em;
}
.faq-wrap pre code {
    background: transparent;
    border: 0;
    padding: 0;
    font-size: inherit;
}


.faq-q ol,
.faq-q ul {
    margin-top: 0.85rem;
    padding-left: 1.5rem;
}
.faq-q li {
    font-family: var(--sans);
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 0.55rem;
}
.faq-q li p {
    margin: 0;
}
.faq-q li::marker {
    color: var(--accent-ink);
}


.why-screenshot {
    margin-top: 1.25rem;
}
.why-screenshot img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 1px solid var(--rule);
}
.why-screenshot figcaption {
    font-family: var(--sans);
    color: var(--faint);
    font-size: 0.82rem;
    margin-top: 0.55rem;
}


.tl-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
    margin-top: 1rem;
}
@media (max-width: 720px) {
    .tl-cols {
        grid-template-columns: 1fr;
    }
}
.tl-section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--faint);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--rule-soft);
}
.tl-section-label::before {
    content: "# ";
    color: var(--accent-ink);
}
.tl {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tl-item {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 1.3rem;
}
.tl-item::before {
    position: absolute;
    left: 0;
    top: 0.05rem;
    font-weight: 700;
}
.tl-done::before {
    content: "✓";
    color: var(--accent-bright);
}
.tl-planned::before {
    content: "○";
    color: var(--faint);
}
.tl-title {
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.3;
}
.tl-desc {
    font-family: var(--sans);
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-top: 0.3rem;
}
