/* ── Hall of Fame callout ────────────────────────────── */

.hof-callout {
    max-width: 560px;
    margin: 0 auto 32px;
    padding: 32px 28px;
    text-align: center;
    background: rgba(124, 106, 245, 0.05);
    border: 1px solid rgba(124, 106, 245, 0.15);
    border-radius: var(--radius-lg, 16px);
    position: relative;
    overflow: hidden;
}

.hof-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 106, 245, 0.5), transparent);
}

.hof-trophy {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.hof-callout h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--text-primary, #f0f0f0);
}

.hof-callout p {
    font-size: 14px;
    color: var(--text-secondary, #9aa0a6);
    line-height: 1.7;
    margin: 0 0 18px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.hof-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-cyan, #20a7bf);
    background: rgba(32, 167, 191, 0.1);
    border: 1px solid rgba(32, 167, 191, 0.25);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    letter-spacing: 0.01em;
}

.hof-cta:hover {
    background: rgba(32, 167, 191, 0.18);
    border-color: rgba(32, 167, 191, 0.45);
    color: var(--accent-cyan, #20a7bf);
    transform: translateY(-2px);
}

/* Wrap callout in the same max-width as timeline */
.hof-wrap {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Responsible disclosure process ─────────────────── */

.hof-process {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg, 16px);
    padding: 28px 28px 24px;
    margin-bottom: 32px;
}

.hof-process-title {
    font-family: 'Syne', var(--font-sans, 'Outfit'), sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary, #9aa0a6);
    margin: 0 0 20px;
}

.hof-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hof-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.hof-step-num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124, 106, 245, 0.2), rgba(32, 167, 191, 0.1));
    border: 1px solid rgba(124, 106, 245, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #a78bfa;
    margin-top: 1px;
}

.hof-step strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary, #f0f0f0);
    margin-bottom: 4px;
}

.hof-step p {
    font-size: 13px;
    color: var(--text-secondary, #9aa0a6);
    line-height: 1.65;
    margin: 0;
}

.hof-step a {
    color: var(--accent-cyan, #20a7bf);
    text-decoration: none;
    font-weight: 500;
}

.hof-step a:hover {
    text-decoration: underline;
}

/* ── Mobile ──────────────────────────────────────────── */

@media (max-width: 640px) {
    .hof-wrap {
        padding: 0 16px;
    }

    .hof-callout {
        padding: 24px 20px;
    }

    .hof-process {
        padding: 22px 20px 18px;
    }
}
