/* ─── about.html Specific Extra CSS ─── */
/* These styles supplement top.css for about.html specific elements like evidence cards and step lists */

/* ─── Basic Page Tweaks ─── */
.about-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
}

.about-header .subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-top: 10px;
}

/* ─── Links in FAQ and Text ─── */
.faq-a a, .about-text a {
    color: var(--accent);
    text-decoration: underline;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.faq-a a:hover, .about-text a:hover {
    opacity: 1;
}

.about-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.95rem; /* Larger than old about, matches top lead */
    color: var(--text-body);
    line-height: 2.1;
    margin-bottom: 24px;
}

.section-sm {
    padding-top: 60px;
    padding-bottom: 60px;
}

.about-section h3 {
    font-size: 1.15rem;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: 0.08em;
}

/* ─── Evidence Card ─── */
.evidence-card {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (hover: hover) {
    .evidence-card:hover {
        border-color: rgba(108, 180, 238, 0.3);
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-2px);
    }
}

.evidence-card .ev-title {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.evidence-card .ev-title svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.evidence-card p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-body);
}

.evidence-card .ev-source {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.evidence-card .ev-source a {
    color: var(--accent);
    text-decoration: none;
}

@media (hover: hover) {
    .evidence-card .ev-source a:hover {
        text-decoration: underline;
    }
}

/* ─── Note Box ─── */
.note-box {
    background: rgba(108, 180, 238, 0.06);
    border-left: 3px solid var(--accent);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 32px 0;
}

.note-box p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.88rem;
    margin-bottom: 0;
    color: var(--text-body);
    line-height: 1.8;
}

.note-box a {
    color: var(--accent);
    text-decoration: underline;
}

/* ─── References ─── */
.ref-list {
    list-style: none;
    counter-reset: ref-counter;
}

.ref-list li {
    counter-increment: ref-counter;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    line-height: 1.7;
}

.ref-list li::before {
    content: "[" counter(ref-counter) "]";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.75rem;
}

.ref-list a {
    color: var(--accent);
    text-decoration: none;
    word-break: break-all;
}

@media (hover: hover) {
    .ref-list a:hover {
        text-decoration: underline;
    }
}

/* ─── Creator ─── */
.creator-section {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-top: 0;
}

.creator-section .creator-name {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.creator-section .creator-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.creator-section a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
}

@media (hover: hover) {
    .creator-section a:hover {
        text-decoration: underline;
    }
}

/* ─── Support Section ─── */
.support-section {
    text-align: center;
    margin-top: 32px;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: 1px solid rgba(108, 180, 238, 0.4);
    border-radius: 30px;
    background: rgba(108, 180, 238, 0.08);
    color: var(--accent);
    text-decoration: none;
    font-family: var(--font);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .support-link:hover {
        background: rgba(108, 180, 238, 0.15);
        border-color: var(--accent);
        transform: translateY(-2px);
    }
}

/* ─── Step List ─── */
.step-list {
    margin: 24px 0 32px;
}

.step-item {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    margin-bottom: 12px;
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    align-items: flex-start;
}

.step-num {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(108, 180, 238, 0.15);
    border: 1px solid rgba(108, 180, 238, 0.3);
    color: var(--accent);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.step-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-item p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.88rem;
    color: var(--text-body);
    margin-bottom: 0;
    line-height: 1.8;
}

/* ─── Feature Highlight ─── */
.feature-highlight {
    display: flex;
    gap: 20px;
    padding: 24px 28px;
    margin: 24px 0;
    background: rgba(108, 180, 238, 0.05);
    border: 1px solid rgba(108, 180, 238, 0.15);
    border-radius: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 14px;
    background: rgba(108, 180, 238, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-top: 2px;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-highlight p {
    font-family: var(--font-body);
    font-weight: 300;
    margin-bottom: 0;
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.9;
}

/* ─── Inline Tag ─── */
.inline-tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 10px;
    background: rgba(108, 180, 238, 0.15);
    border: 1px solid rgba(108, 180, 238, 0.3);
    color: var(--accent);
    font-size: 0.8rem;
    font-family: var(--font);
    vertical-align: middle;
    line-height: 1.4;
}

/* ─── Mobile Adjustments ─── */
@media (max-width: 480px) {
    .about-header {
        margin-bottom: 40px;
        padding-top: 20px;
    }
    .evidence-card {
        padding: 20px;
    }
    .step-item {
        padding: 16px;
        gap: 12px;
    }
    .feature-highlight {
        padding: 16px;
        gap: 16px;
    }
    .feature-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    .feature-icon svg {
        width: 18px;
        height: 18px;
    }
}
