.help-hero {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.help-hero .eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--ink-faint);
}

.help-hero .eyebrow::before,
.help-hero .eyebrow::after {
    content: "";
    display: block;
    width: 54px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(159, 176, 195, .7));
}

.help-hero .eyebrow::after {
    background: linear-gradient(90deg, rgba(159, 176, 195, .7), transparent);
}

.help-hero h1 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -.025em;
    font-weight: 700;
    max-width: 16ch;
    text-wrap: balance;
}

.help-hero .sub {
    margin-top: 22px;
    font-size: clamp(16px, 1.5vw, 19px);
    color: var(--ink-dim);
    max-width: 56ch;
    text-wrap: pretty;
}

.help-guide {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    padding: 56px 32px 40px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-dim);
}

.help-guide h2 {
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: -.025em;
    color: var(--ink);
    margin-top: 72px;
    margin-bottom: 22px;
    padding-top: 52px;
    scroll-margin-top: 24px;
}

.help-guide h2::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    margin-bottom: 30px;
    background: linear-gradient(90deg, var(--mint), rgba(95, 212, 184, .15));
}

.help-guide h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-top: 34px;
    margin-bottom: 12px;
    scroll-margin-top: 24px;
}

.help-guide h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-top: 24px;
    margin-bottom: 6px;
}

.help-guide p {
    margin-bottom: 18px;
    text-wrap: pretty;
}

.help-guide b,
.help-guide strong {
    color: var(--ink);
    font-weight: 600;
}

.help-guide a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(234, 242, 245, .28);
    transition: color .15s, border-color .15s;
}

.help-guide a:hover {
    color: #fff;
    border-color: rgba(234, 242, 245, .6);
}

.help-guide ul,
.help-guide ol {
    margin: 18px 0;
    padding-left: 26px;
}

.help-guide li {
    margin-bottom: 10px;
}

.help-guide li::marker {
    color: var(--ink-faint);
}

.note {
    margin: 26px 0;
    padding: 20px 24px;
    border: 1px solid rgba(95, 212, 184, .28);
    background: rgba(95, 212, 184, .06);
    border-radius: 14px;
}

.note p {
    margin: 0;
    color: var(--ink);
}

.note p + p {
    margin-top: 12px;
}

.help-shot {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 34px auto;
    filter: drop-shadow(0 26px 50px rgba(0, 0, 0, .55)) drop-shadow(0 8px 18px rgba(0, 0, 0, .4));
}

.help-shot-crop {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
    margin: 34px auto;
    border-radius: 18px;
    border: 1px solid var(--line);
    box-shadow: 0 20px 44px rgba(0, 0, 0, .5);
}

.shot-caption {
    margin: -20px auto 34px;
    max-width: 340px;
    text-align: center;
    font-size: 13px;
    color: var(--ink-faint);
}

.shot-needed {
    margin: 28px auto;
    max-width: 320px;
    border: 1px dashed rgba(234, 242, 245, .25);
    border-radius: 16px;
    padding: 26px 22px;
    text-align: center;
    background: rgba(255, 255, 255, .02);
}

.shot-needed .shot-label {
    display: block;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 8px;
}

.shot-needed .shot-desc {
    display: block;
    font-size: 14px;
    color: var(--ink-dim);
    line-height: 1.5;
}

.toc {
    display: block;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px 28px 26px;
    margin-bottom: 12px;
}

.toc-eyebrow {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 8px;
}

.toc-title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -.01em;
    color: var(--ink);
    margin: 0 0 18px;
}

.toc-chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.toc-chips li {
    display: contents;
}

.toc-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--line);
    color: var(--ink-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    transition: border-color .15s, color .15s, transform .15s;
}

.toc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ink-faint);
    flex-shrink: 0;
    transition: background .15s;
}

.toc-chip:hover {
    border-color: rgba(234, 242, 245, .35);
    color: var(--ink);
    transform: translateY(-1px);
}

.toc-chip:hover .toc-dot {
    background: var(--ink);
}

.faq .question {
    font-weight: 600;
    color: var(--ink);
    margin-top: 24px;
    margin-bottom: 4px;
}

.faq .answer {
    margin-top: 0;
    margin-bottom: 18px;
}

.support-cta {
    margin-top: 20px;
    padding: 28px 30px;
    border: 1px solid var(--line);
    background: var(--card);
    border-radius: 18px;
}

.support-cta .round-link {
    display: inline-block;
    margin-top: 8px;
    font-weight: 600;
    font-size: 16px;
    color: #06140f;
    text-decoration: none;
    border: none;
    background: linear-gradient(180deg, #5ba3f9, #398cf7);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35);
    border-radius: 12px;
    padding: 13px 28px;
    transition: transform .15s;
}

.support-cta .round-link:hover {
    transform: translateY(-1px);
}

@media (max-width: 820px) {
    .help-guide {
        padding: 40px 22px 32px;
        font-size: 16px;
    }
    .help-guide h2 {
        margin-top: 52px;
        padding-top: 38px;
    }
    .toc {
        padding: 22px 20px 20px;
    }
    .toc-title {
        font-size: 19px;
    }
}
