/* Sideloading guide — page-specific redesign on top of guide.css. */

/* ---------- Full-bleed centered hero (text-only, no device art) ---------- */

.sl-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.sl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(74, 158, 255, 0.14);
    border: 1px solid rgba(74, 158, 255, 0.3);
    color: var(--accent-blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.sl-hero-inner .guide-hero-title {
    max-width: none;
}

.sl-hero-inner p {
    margin: 0 0 0.9rem;
    margin-left: auto;
    margin-right: auto;
}

.sl-hero-inner p:last-of-type {
    margin-bottom: 0;
}

.sl-hero-inner .dir-hero-actions {
    justify-content: center;
    margin-top: 1.4rem;
}

/* ---------- Quick-nav pills ---------- */

.sl-quicknav {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.2rem;
    margin: -1rem 0 0.5rem;
}

.sl-quicknav::-webkit-scrollbar {
    display: none;
}

.sl-quicknav a {
    flex: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    scroll-snap-align: start;
}

.sl-quicknav a:hover {
    text-decoration: none;
    color: var(--text);
    border-color: rgba(148, 163, 184, 0.34);
}

/* ---------- Section heading with icon badge ---------- */

.guide-heading {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.guide-heading-icon {
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 11px;
    background: rgba(74, 158, 255, 0.14);
    font-size: 1.05rem;
}

/* ---------- Method cards: colored accent + icon badge ---------- */

.guide-card {
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-blue);
}

.guide-card--pink::before { background: #ec4899; }
.guide-card--navy::before { background: #3b82f6; }
.guide-card--grey::before { background: #94a3b8; }

.guide-card-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 12px;
    background: rgba(74, 158, 255, 0.14);
    color: var(--accent-blue);
    font-size: 1.1rem;
    font-weight: 800;
}

.guide-card--pink .guide-card-badge { background: rgba(236, 72, 153, 0.14); color: #ec4899; }
.guide-card--navy .guide-card-badge { background: rgba(59, 130, 246, 0.14); color: #3b82f6; }
.guide-card--grey .guide-card-badge { background: rgba(148, 163, 184, 0.16); color: #cbd5e1; }

/* ---------- Signing limitations as tag chips ---------- */

.guide-tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.9rem 0;
}

.guide-tag {
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 109, 58, 0.32);
    background: rgba(255, 109, 58, 0.1);
    color: #ffb08a;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ---------- FAQ polish ---------- */

.guide-faq-item {
    transition: border-color 0.15s ease;
}

.guide-faq-item[open] {
    border-color: rgba(74, 158, 255, 0.4);
}

.guide-faq-item summary {
    display: flex;
    align-items: center;
}

/* ---------- Closing CTA cards: icon + accent ---------- */

.guide-cta-card {
    position: relative;
}

.guide-cta-card .guide-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 11px;
    background: rgba(74, 158, 255, 0.14);
    color: var(--text);
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

@media (max-width: 480px) {
    .sl-quicknav {
        margin-top: -0.5rem;
    }
}
